Skip to content

Commit 37616d1

Browse files
committed
Use C.UTF-8 locale in doctests
1 parent f7410b1 commit 37616d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/update-tester/src/testrunner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl TestClient {
257257
.simple_query(&drop)
258258
.unwrap_or_else(|e| panic!("could not drop db {} due to {}", test_db_name, e));
259259
let create = format!(
260-
r#"CREATE DATABASE "{}" LC_COLLATE 'C' LC_CTYPE 'C'"#,
260+
r#"CREATE DATABASE "{}" LC_COLLATE 'C.UTF-8' LC_CTYPE 'C.UTF-8'"#,
261261
test_db_name
262262
);
263263
db_creation_client

0 commit comments

Comments
 (0)