pg12 doesn't support client_min_messages as 'fatal'

pull/2987/head
Philip Dubé 2019-09-17 20:37:06 +00:00
parent 2b7f5552c8
commit ac14f1dd49
5 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ SELECT * FROM run_command_on_workers('SELECT function_tests.dup(42);') ORDER BY
(2 rows)
-- clear objects
SET client_min_messages TO fatal; -- suppress cascading objects dropping
SET client_min_messages TO error; -- suppress cascading objects dropping
DROP SCHEMA function_tests CASCADE;
SELECT run_command_on_workers($$DROP SCHEMA function_tests CASCADE;$$);
run_command_on_workers

View File

@ -351,7 +351,7 @@ SELECT run_command_on_workers($$SELECT count(*) FROM pg_type where typname IN ('
RESET citus.enable_create_type_propagation;
-- clear objects
SET client_min_messages TO fatal; -- suppress cascading objects dropping
SET client_min_messages TO error; -- suppress cascading objects dropping
DROP SCHEMA type_tests CASCADE;
SELECT run_command_on_workers($$DROP SCHEMA type_tests CASCADE;$$);
run_command_on_workers

View File

@ -351,7 +351,7 @@ SELECT run_command_on_workers($$SELECT count(*) FROM pg_type where typname IN ('
RESET citus.enable_create_type_propagation;
-- clear objects
SET client_min_messages TO fatal; -- suppress cascading objects dropping
SET client_min_messages TO error; -- suppress cascading objects dropping
DROP SCHEMA type_tests CASCADE;
SELECT run_command_on_workers($$DROP SCHEMA type_tests CASCADE;$$);
run_command_on_workers

View File

@ -34,7 +34,7 @@ SELECT create_distributed_function('dup(int)');
SELECT * FROM run_command_on_workers('SELECT function_tests.dup(42);') ORDER BY 1,2;
-- clear objects
SET client_min_messages TO fatal; -- suppress cascading objects dropping
SET client_min_messages TO error; -- suppress cascading objects dropping
DROP SCHEMA function_tests CASCADE;
SELECT run_command_on_workers($$DROP SCHEMA function_tests CASCADE;$$);
DROP USER functionuser;

View File

@ -231,7 +231,7 @@ SELECT run_command_on_workers($$SELECT count(*) FROM pg_type where typname IN ('
RESET citus.enable_create_type_propagation;
-- clear objects
SET client_min_messages TO fatal; -- suppress cascading objects dropping
SET client_min_messages TO error; -- suppress cascading objects dropping
DROP SCHEMA type_tests CASCADE;
SELECT run_command_on_workers($$DROP SCHEMA type_tests CASCADE;$$);
DROP SCHEMA type_tests2 CASCADE;