mirror of https://github.com/citusdata/citus.git
fix some indent
parent
ec25b433d4
commit
493140287a
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue