Delete maintenance_connection_timeout.sql temporarily to pass the tests

pull/7286/head
ivyazmitinov 2024-06-12 13:59:10 +02:00
parent 02e71918dd
commit 53869e0ae6
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
-- Create a new database
ALTER SYSTEM SET citus.max_maintenance_shared_pool_size = 1;
SELECT pg_reload_conf();
set citus.enable_create_database_propagation to on;
CREATE DATABASE role_operations_test_db;
SET citus.superuser TO 'postgres';
-- Connect to the new database
\c role_operations_test_db
CREATE ROLE test_role1;
\c regression - - :master_port
-- Clean up: drop the database
set citus.enable_create_database_propagation to on;
DROP DATABASE role_operations_test_db;
reset citus.enable_create_database_propagation;
ALTER SYSTEM SET citus.max_maintenance_shared_pool_size = 1;
SELECT pg_reload_conf();