This is an automated email from the ASF dual-hosted git repository.

zstan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 84c1712957 IGNITE-22053 Sql. Logic test without ordering compares with 
ordered results (#3613)
84c1712957 is described below

commit 84c1712957ac3aebcb978d0412c3f09971915625
Author: Evgeniy Stanilovskiy <[email protected]>
AuthorDate: Wed Apr 17 15:18:28 2024 +0300

    IGNITE-22053 Sql. Logic test without ordering compares with ordered results 
(#3613)
---
 .../src/integrationTest/sql/join/test_not_distinct_from.test          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/modules/sql-engine/src/integrationTest/sql/join/test_not_distinct_from.test 
b/modules/sql-engine/src/integrationTest/sql/join/test_not_distinct_from.test
index 4f42373341..78ba34d3ca 100644
--- 
a/modules/sql-engine/src/integrationTest/sql/join/test_not_distinct_from.test
+++ 
b/modules/sql-engine/src/integrationTest/sql/join/test_not_distinct_from.test
@@ -26,8 +26,8 @@ SELECT a from tbl_1 WHERE a IS NOT DISTINCT FROM b
 ----
 NULL
 
-query II
-select a,tbl_2.b from tbl_1 inner join tbl_2 on (a IS NOT DISTINCT FROM 
tbl_2.b)
+query II rowsort
+select a, tbl_2.b from tbl_1 inner join tbl_2 on (a IS NOT DISTINCT FROM 
tbl_2.b)
 ----
 1      1
 2      2

Reply via email to