diff --git a/src/test/regress/expected/create_drop_database_propagation.out b/src/test/regress/expected/create_drop_database_propagation.out index add4ddac7..ffd85f7c5 100644 --- a/src/test/regress/expected/create_drop_database_propagation.out +++ b/src/test/regress/expected/create_drop_database_propagation.out @@ -162,15 +162,11 @@ SELECT result from run_command_on_all_nodes( -- create a template database with all options set and allow connections false CREATE DATABASE my_template_database WITH TEMPLATE = 'template0' - OWNER = create_drop_db_test_user + OWNER = create_drop_db_test_user ENCODING = 'UTF8' - STRATEGY = 'wal_log' LOCALE = 'en_US.utf8' LC_COLLATE = 'POSIX' LC_CTYPE = 'POSIX' - ICU_LOCALE = 'en-US' - LOCALE_PROVIDER = 'icu' - COLLATION_VERSION = '1.0' TABLESPACE = create_drop_db_tablespace ALLOW_CONNECTIONS = false IS_TEMPLATE = true; diff --git a/src/test/regress/sql/create_drop_database_propagation.sql b/src/test/regress/sql/create_drop_database_propagation.sql index d7174808e..a81880092 100644 --- a/src/test/regress/sql/create_drop_database_propagation.sql +++ b/src/test/regress/sql/create_drop_database_propagation.sql @@ -140,15 +140,11 @@ SELECT result from run_command_on_all_nodes( -- create a template database with all options set and allow connections false CREATE DATABASE my_template_database WITH TEMPLATE = 'template0' - OWNER = create_drop_db_test_user + OWNER = create_drop_db_test_user ENCODING = 'UTF8' - STRATEGY = 'wal_log' LOCALE = 'en_US.utf8' LC_COLLATE = 'POSIX' LC_CTYPE = 'POSIX' - ICU_LOCALE = 'en-US' - LOCALE_PROVIDER = 'icu' - COLLATION_VERSION = '1.0' TABLESPACE = create_drop_db_tablespace ALLOW_CONNECTIONS = false IS_TEMPLATE = true;