Skip to content

Commit

Permalink
Suppress metadata sync for vanilla regress test suite; this enables
Browse files Browse the repository at this point in the history
all Postgres DDL commands to compelte without being propagated by
Citus.
  • Loading branch information
colm-mchugh committed Nov 25, 2024
1 parent 1d0111a commit 1cc62a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/regress/pg_regress_multi.pl
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,9 @@ sub generate_hba

# 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)
Expand Down

0 comments on commit 1cc62a2

Please sign in to comment.