Fixes test errors

pull/7563/head
gurkanindibay 2024-03-25 15:30:59 +03:00
parent 1f0ec0fc90
commit 2cbf8708cf
4 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,4 @@
-- File to create functions and helpers needed for subsequent tests
-- create a helper function to create objects on each node
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
RETURNS void LANGUAGE plpgsql AS $$

View File

@ -1,6 +1,7 @@
test: enable_ddl_propagation
test: multi_test_helpers multi_test_helpers_superuser
test: multi_cluster_management
test: enable_ddl_propagation
test: create_role_propagation
test: pg16
test: multi_create_fdw

View File

@ -1,6 +1,5 @@
\c - - - :master_port
show citus.enable_ddl_propagation;
SET citus.shard_replication_factor TO 2;
CREATE TABLE the_replicated_table (a int, b int, z bigserial);
SELECT create_distributed_table('the_replicated_table', 'a');

View File

@ -1,5 +1,4 @@
-- File to create functions and helpers needed for subsequent tests
-- create a helper function to create objects on each node
CREATE OR REPLACE FUNCTION run_command_on_master_and_workers(p_sql text)
RETURNS void LANGUAGE plpgsql AS $$