mirror of https://github.com/citusdata/citus.git
Clean up large_table_shard_count guc leftovers (#6144)
parent
3806f6f6a9
commit
bcbba99c96
|
@ -49,7 +49,6 @@ SELECT count(*) FROM lineitem;
|
|||
ERROR: permission denied for table lineitem
|
||||
RESET ROLE;
|
||||
-- verify that broadcast joins work
|
||||
SET citus.large_table_shard_count TO 2;
|
||||
SET ROLE read_access;
|
||||
SELECT
|
||||
l_partkey, o_orderkey, count(*)
|
||||
|
@ -112,7 +111,6 @@ LIMIT 30;
|
|||
ERROR: permission denied for table lineitem
|
||||
RESET ROLE;
|
||||
-- verify that re-partition queries work
|
||||
SET citus.large_table_shard_count TO 1;
|
||||
SET citus.task_executor_type TO 'task-tracker';
|
||||
SET ROLE read_access;
|
||||
SELECT
|
||||
|
|
|
@ -31,7 +31,6 @@ SELECT count(*) FROM lineitem;
|
|||
RESET ROLE;
|
||||
|
||||
-- verify that broadcast joins work
|
||||
SET citus.large_table_shard_count TO 2;
|
||||
|
||||
SET ROLE read_access;
|
||||
|
||||
|
@ -74,7 +73,6 @@ LIMIT 30;
|
|||
RESET ROLE;
|
||||
|
||||
-- verify that re-partition queries work
|
||||
SET citus.large_table_shard_count TO 1;
|
||||
SET citus.task_executor_type TO 'task-tracker';
|
||||
|
||||
SET ROLE read_access;
|
||||
|
|
Loading…
Reference in New Issue