From 6eeeddd5490bb65cca4d46ba00508c5ae073d498 Mon Sep 17 00:00:00 2001 From: gindibay Date: Fri, 27 Oct 2023 17:11:01 +0300 Subject: [PATCH] Fixes pg14 tests --- .../regress/expected/create_drop_database_propagation.out | 6 +----- src/test/regress/sql/create_drop_database_propagation.sql | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) 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;