diff options
author | Filitov Mikhail <filitovme@gmail.com> | 2025-02-18 06:18:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-18 08:18:07 +0300 |
commit | 3b64cf85720759c513b0e112b77bccbdff98fb5f (patch) | |
tree | 2f9ad2c91992a61b850d51197d4376ff935d2517 | |
parent | c25b7ee30559ef027fbc049354af1debffb6c1c6 (diff) | |
download | ydb-3b64cf85720759c513b0e112b77bccbdff98fb5f.tar.gz |
added order by to canonical test GJ (#14714)
-rw-r--r-- | ydb/tests/functional/canonical/sql/join/join_to_idx_lookup.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ydb/tests/functional/canonical/sql/join/join_to_idx_lookup.sql b/ydb/tests/functional/canonical/sql/join/join_to_idx_lookup.sql index 7e6378b502..a888b6f062 100644 --- a/ydb/tests/functional/canonical/sql/join/join_to_idx_lookup.sql +++ b/ydb/tests/functional/canonical/sql/join/join_to_idx_lookup.sql @@ -5,4 +5,5 @@ LEFT JOIN InputJoin2 AS t2 ON t1.Fk21 == t2.Key1 AND t1.Fk22 == t2.Key2 LEFT JOIN InputJoin3 AS t3 ON t2.Fk3 == t3.Key -WHERE t1.Value == "Value2" OR t1.Value == "Value3"; +WHERE t1.Value == "Value2" OR t1.Value == "Value3" +ORDER BY t3.Value; |