Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PG17 compatibility: fix diffs in create_index, privileges vanilla tests #7766

Open
wants to merge 1 commit into
base: naisila/pg17_support
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 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,12 @@ 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");

# we disable ddl propagation to enable vanilla postgres DDL command behaviour.
push(@pgOptions, "citus.enable_ddl_propagation=false");
}

if ($useMitmproxy)
Expand Down
Loading