Fixes enterprise isolation

pull/7563/head
gurkanindibay 2024-03-25 12:47:14 +03:00
parent 18a8108df2
commit f88d66cfa8
3 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,15 @@
Parsed test spec with 1 sessions
starting permutation: s1-begin s1-commit
run_command_on_workers
---------------------------------------------------------------------
(localhost,57637,t,t)
(localhost,57638,t,t)
(2 rows)
step s1-begin:
BEGIN;
step s1-commit:
COMMIT;

View File

@ -1,4 +1,5 @@
test: isolation_setup
test: isolation_enable_ddl_propagation
test: isolation_add_remove_node
test: isolation_update_node
test: isolation_update_node_lock_writes
@ -7,6 +8,7 @@ test: isolation_add_node_vs_reference_table_operations
test: isolation_create_table_vs_add_remove_node
test: isolation_master_update_node
test: isolation_shouldhaveshards
test: isolation_setup
test: isolation_extension_commands

View File

@ -0,0 +1,18 @@
setup
{
SELECT run_command_on_workers('ALTER SYSTEM SET citus.enable_ddl_propagation TO ON');
SELECT run_command_on_workers('SELECT pg_reload_conf()');
}
session "s1"
step "s1-begin"
{
BEGIN;
}
step "s1-commit"
{
COMMIT;
}
permutation "s1-begin" "s1-commit"