mirror of https://github.com/citusdata/citus.git
fix failure test output
parent
a41dceb67a
commit
565d702609
|
@ -186,7 +186,7 @@ SELECT create_distributed_table_concurrently('table_1', 'id');
|
||||||
|
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
SELECT * FROM pg_dist_shard WHERE logicalrelid = 'table_1'::regclass;
|
SELECT logicalrelid, shardid, shardstorage, shardminvalue, shardmaxvalue FROM pg_dist_shard WHERE logicalrelid = 'table_1'::regclass;
|
||||||
logicalrelid | shardid | shardstorage | shardminvalue | shardmaxvalue
|
logicalrelid | shardid | shardstorage | shardminvalue | shardmaxvalue
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
table_1 | 1880080 | t | -2147483648 | -1
|
table_1 | 1880080 | t | -2147483648 | -1
|
||||||
|
|
|
@ -103,7 +103,7 @@ SELECT citus.mitmproxy('conn.allow()');
|
||||||
|
|
||||||
-- Verify that the table can be distributed concurrently after unsuccessful attempts
|
-- Verify that the table can be distributed concurrently after unsuccessful attempts
|
||||||
SELECT create_distributed_table_concurrently('table_1', 'id');
|
SELECT create_distributed_table_concurrently('table_1', 'id');
|
||||||
SELECT * FROM pg_dist_shard WHERE logicalrelid = 'table_1'::regclass;
|
SELECT logicalrelid, shardid, shardstorage, shardminvalue, shardmaxvalue FROM pg_dist_shard WHERE logicalrelid = 'table_1'::regclass;
|
||||||
|
|
||||||
DROP SCHEMA create_dist_tbl_con CASCADE;
|
DROP SCHEMA create_dist_tbl_con CASCADE;
|
||||||
SET search_path TO default;
|
SET search_path TO default;
|
||||||
|
|
Loading…
Reference in New Issue