mirror of https://github.com/citusdata/citus.git
pg12 doesn't support client_min_messages as 'fatal'
parent
2b7f5552c8
commit
ac14f1dd49
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue