mirror of https://github.com/citusdata/citus.git
Fix travis failure due to ordering
parent
e35f4c836d
commit
0d4cf48501
|
@ -420,7 +420,9 @@ SELECT
|
|||
FROM
|
||||
pg_dist_shard_placement
|
||||
WHERE
|
||||
nodeport = :worker_2_port;
|
||||
nodeport = :worker_2_port
|
||||
ORDER BY
|
||||
shardid ASC;
|
||||
shardid | shardstate | shardlength | nodename | nodeport
|
||||
---------+------------+-------------+-----------+----------
|
||||
1370004 | 1 | 0 | localhost | 57638
|
||||
|
|
|
@ -265,7 +265,9 @@ SELECT
|
|||
FROM
|
||||
pg_dist_shard_placement
|
||||
WHERE
|
||||
nodeport = :worker_2_port;
|
||||
nodeport = :worker_2_port
|
||||
ORDER BY
|
||||
shardid ASC;
|
||||
|
||||
SELECT *
|
||||
FROM pg_dist_colocation
|
||||
|
|
Loading…
Reference in New Issue