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