mirror of https://github.com/citusdata/citus.git
Fixes test errors
parent
7ab7ffe6b9
commit
18a8108df2
|
@ -3,7 +3,6 @@ test: isolation_setup
|
||||||
# tests that change node metadata should precede
|
# tests that change node metadata should precede
|
||||||
# isolation_cluster_management such that tests
|
# isolation_cluster_management such that tests
|
||||||
# that come later can be parallelized
|
# that come later can be parallelized
|
||||||
test: enable_ddl_propagation
|
|
||||||
test: isolation_cluster_management
|
test: isolation_cluster_management
|
||||||
|
|
||||||
test: isolation_move_placement_vs_move_placement
|
test: isolation_move_placement_vs_move_placement
|
||||||
|
|
|
@ -20,3 +20,4 @@ SELECT pg_reload_conf();
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
t
|
t
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
ALTER SYSTEM SET citus.distributed_deadlock_detection_factor TO -1;
|
ALTER SYSTEM SET citus.distributed_deadlock_detection_factor TO -1;
|
||||||
ALTER SYSTEM SET citus.recover_2pc_interval TO -1;
|
ALTER SYSTEM SET citus.recover_2pc_interval TO -1;
|
||||||
ALTER SYSTEM set citus.enable_statistics_collection TO false;
|
ALTER SYSTEM set citus.enable_statistics_collection TO false;
|
||||||
|
ALTER SYSTEM SET citus.enable_ddl_propagation = 'true';
|
||||||
SELECT pg_reload_conf();
|
SELECT pg_reload_conf();
|
||||||
pg_reload_conf
|
pg_reload_conf
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# import this file (from psql you can use \i) to use mitmproxy manually
|
# import this file (from psql you can use \i) to use mitmproxy manually
|
||||||
test: enable_ddl_propagation
|
|
||||||
test: failure_test_helpers
|
test: failure_test_helpers
|
||||||
|
|
||||||
# this should only be run by pg_regress_multi, you don't need it
|
# this should only be run by pg_regress_multi, you don't need it
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
# ---
|
# ---
|
||||||
# Tests around schema changes, these are run first, so there's no preexisting objects.
|
# Tests around schema changes, these are run first, so there's no preexisting objects.
|
||||||
# ---
|
# ---
|
||||||
|
test: enable_ddl_propagation
|
||||||
test: multi_extension
|
test: multi_extension
|
||||||
test: multi_test_helpers multi_test_helpers_superuser multi_create_fdw
|
test: multi_test_helpers multi_test_helpers_superuser multi_create_fdw
|
||||||
test: single_node
|
test: single_node
|
||||||
|
@ -64,7 +65,6 @@ test: alter_database_propagation
|
||||||
test: citus_shards
|
test: citus_shards
|
||||||
test: reassign_owned
|
test: reassign_owned
|
||||||
test: alter_database_from_nonmain_db
|
test: alter_database_from_nonmain_db
|
||||||
test: enable_ddl_propagation
|
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
# multi_citus_tools tests utility functions written for citus tools
|
# multi_citus_tools tests utility functions written for citus tools
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
ALTER SYSTEM SET citus.distributed_deadlock_detection_factor TO -1;
|
ALTER SYSTEM SET citus.distributed_deadlock_detection_factor TO -1;
|
||||||
ALTER SYSTEM SET citus.recover_2pc_interval TO -1;
|
ALTER SYSTEM SET citus.recover_2pc_interval TO -1;
|
||||||
ALTER SYSTEM set citus.enable_statistics_collection TO false;
|
ALTER SYSTEM set citus.enable_statistics_collection TO false;
|
||||||
|
ALTER SYSTEM SET citus.enable_ddl_propagation = 'true';
|
||||||
SELECT pg_reload_conf();
|
SELECT pg_reload_conf();
|
||||||
|
|
||||||
-- Add some helper functions for sending commands to mitmproxy
|
-- Add some helper functions for sending commands to mitmproxy
|
||||||
|
|
Loading…
Reference in New Issue