From d46b92d79ab81017f1fd457a34fa3794af8e6e77 Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Tue, 28 May 2019 12:16:59 +0200 Subject: [PATCH] Add order by to multi_mx_schema_support --- src/test/regress/expected/multi_mx_schema_support.out | 8 ++++---- src/test/regress/sql/multi_mx_schema_support.sql | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/regress/expected/multi_mx_schema_support.out b/src/test/regress/expected/multi_mx_schema_support.out index 236b20a3c..96b7d2317 100644 --- a/src/test/regress/expected/multi_mx_schema_support.out +++ b/src/test/regress/expected/multi_mx_schema_support.out @@ -159,15 +159,15 @@ SELECT * FROM nation_hash WHERE n_nationkey OPERATOR(===) 1; 1 | ARGENTINA | 1 | al foxes promise slyly according to the regular accounts. bold requests alon (1 row) -SELECT * FROM citus_mx_test_schema.nation_hash_collation_search_path; +SELECT * FROM citus_mx_test_schema.nation_hash_collation_search_path ORDER BY 1; n_nationkey | n_name | n_regionkey | n_comment -------------+---------------------------+-------------+------------------------------------------------------------------------------------------------------------- - 1 | ARGENTINA | 1 | al foxes promise slyly according to the regular accounts. bold requests alon - 5 | ETHIOPIA | 0 | ven packages wake quickly. regu 0 | ALGERIA | 0 | haggle. carefully final deposits detect slyly agai + 1 | ARGENTINA | 1 | al foxes promise slyly according to the regular accounts. bold requests alon + 2 | BRAZIL | 1 | y alongside of the pending deposits. carefully special packages are about the ironic forges. slyly special 3 | CANADA | 1 | eas hang ironic, silent packages. slyly regular packages are furiously over the tithes. fluffily bold 4 | EGYPT | 4 | y above the carefully unusual theodolites. final dugouts are quickly across the furiously regular d - 2 | BRAZIL | 1 | y alongside of the pending deposits. carefully special packages are about the ironic forges. slyly special + 5 | ETHIOPIA | 0 | ven packages wake quickly. regu (6 rows) SELECT n_comment FROM citus_mx_test_schema.nation_hash_collation_search_path ORDER BY n_comment COLLATE citus_mx_test_schema.english; diff --git a/src/test/regress/sql/multi_mx_schema_support.sql b/src/test/regress/sql/multi_mx_schema_support.sql index af0dfadb0..6d4441270 100644 --- a/src/test/regress/sql/multi_mx_schema_support.sql +++ b/src/test/regress/sql/multi_mx_schema_support.sql @@ -86,7 +86,7 @@ SET search_path TO citus_mx_test_schema; SELECT * FROM nation_hash WHERE n_nationkey OPERATOR(===) 1; -SELECT * FROM citus_mx_test_schema.nation_hash_collation_search_path; +SELECT * FROM citus_mx_test_schema.nation_hash_collation_search_path ORDER BY 1; SELECT n_comment FROM citus_mx_test_schema.nation_hash_collation_search_path ORDER BY n_comment COLLATE citus_mx_test_schema.english; SET search_path TO citus_mx_test_schema;