Skip to content

Commit

Permalink
Merge pull request citusdata#5572 from citusdata/add-citus-managed-ta…
Browse files Browse the repository at this point in the history
…bles-to-arbitrary-configs

Add use_citus_managed_tables to arbitrary configs
  • Loading branch information
agedemenli authored Feb 22, 2022
2 parents a629013 + 8b94025 commit 9a8f11a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/regress/citus_tests/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ def __init__(self, arguments):
new_settings = {
"client_min_messages": "WARNING",
"citus.sort_returning": True,
"citus.use_citus_managed_tables": True,
}
self.settings.update(new_settings)
self.add_coordinator_to_metadata = True
Expand Down Expand Up @@ -291,6 +292,7 @@ class CitusUnusualQuerySettingsConfig(CitusMXBaseClusterConfig):
def __init__(self, arguments):
super().__init__(arguments)
self.new_settings = {
"citus.use_citus_managed_tables": False,
"citus.task_assignment_policy": "first-replica",
"citus.enable_fast_path_router_planner": False,
"citus.enable_local_execution": False,
Expand Down

0 comments on commit 9a8f11a

Please sign in to comment.