fix some indent

pull/7620/head
paragjain 2024-06-13 11:50:30 +00:00
parent c9ada85275
commit fe7be06be7
2 changed files with 12 additions and 10 deletions

View File

@ -27,6 +27,7 @@ SELECT 1 FROM master_add_node('localhost', :master_port, groupid => 0);
1 1
(1 row) (1 row)
ALTER SEQUENCE pg_catalog.pg_dist_colocationid_seq RESTART 13000;
RESET client_min_messages; RESET client_min_messages;
CREATE TABLE source CREATE TABLE source
( (
@ -1863,8 +1864,8 @@ SELECT create_distributed_table('target_pushdowntest', 'id');
select colocationid,logicalrelid from pg_dist_partition where logicalrelid = 'source_pushdowntest'::regclass OR logicalrelid = 'target_pushdowntest'::regclass; select colocationid,logicalrelid from pg_dist_partition where logicalrelid = 'source_pushdowntest'::regclass OR logicalrelid = 'target_pushdowntest'::regclass;
colocationid | logicalrelid colocationid | logicalrelid
--------------------------------------------------------------------- ---------------------------------------------------------------------
1390004 | source_pushdowntest 13000 | source_pushdowntest
1390004 | target_pushdowntest 13000 | target_pushdowntest
(2 rows) (2 rows)
SET client_min_messages TO DEBUG1; SET client_min_messages TO DEBUG1;

View File

@ -23,6 +23,7 @@ SET citus.shard_replication_factor TO 1;
SET citus.max_adaptive_executor_pool_size TO 1; SET citus.max_adaptive_executor_pool_size TO 1;
SET client_min_messages = warning; SET client_min_messages = warning;
SELECT 1 FROM master_add_node('localhost', :master_port, groupid => 0); SELECT 1 FROM master_add_node('localhost', :master_port, groupid => 0);
ALTER SEQUENCE pg_catalog.pg_dist_colocationid_seq RESTART 13000;
RESET client_min_messages; RESET client_min_messages;
CREATE TABLE source CREATE TABLE source