Skip to content

Commit acfa0fe

Browse files
committed
Spell out locale verbosely (POSIX=C), see issue ldbc#157
1 parent 4034a1f commit acfa0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgres/scripts/load.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fi
6363

6464
if [ "${PG_LOAD_TO_DB}x" = "loadx" ]; then
6565
/usr/bin/dropdb --if-exists $PG_DB_NAME -U $PG_USER -p $PG_PORT
66-
/usr/bin/createdb $PG_DB_NAME -U $PG_USER -p $PG_PORT --template template0 -l "C"
66+
/usr/bin/createdb $PG_DB_NAME -U $PG_USER -p $PG_PORT --template template0 --locale "POSIX"
6767
/usr/bin/psql -d $PG_DB_NAME -U $PG_USER -p $PG_PORT -a -f schema.sql
6868
(cat snb-load.sql | sed "s|PATHVAR|$PG_CSV_DIR|g"; echo "\q\n") | /usr/bin/psql -d $PG_DB_NAME -U $PG_USER -p $PG_PORT
6969
/usr/bin/psql -d $PG_DB_NAME -U $PG_USER -p $PG_PORT -a -f schema_constraints.sql

0 commit comments

Comments
 (0)