Suppress metadata sync for vanilla regress test suite; this enables

all Postgres DDL commands to compelte without being propagated by
Citus.
pull/7764/head
Colm McHugh 2024-11-22 16:52:31 +00:00
parent 1d0111aed6
commit 1cc62a2292
1 changed files with 3 additions and 0 deletions

View File

@ -511,6 +511,9 @@ if($vanillatest)
# we disable some restrictions for local objects like local views to not break postgres vanilla test behaviour.
push(@pgOptions, "citus.enforce_object_restrictions_for_local_objects=false");
# we disable metadata synchronization to enable postgres vanilla DDL tests to pass.
push(@pgOptions, "citus.enable_metadata_sync=false");
}
if ($useMitmproxy)