You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ja...@apache.org on 2023/06/25 09:47:41 UTC

[arrow-datafusion] branch main updated: add UT to verify 'issues/6606' (#6762)

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

jakevin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 8c7678a0b1 add UT to verify 'issues/6606' (#6762)
8c7678a0b1 is described below

commit 8c7678a0b10d14029b5c34f822dc2605e00390fd
Author: Ken, Wang <mi...@gmail.com>
AuthorDate: Sun Jun 25 17:47:35 2023 +0800

    add UT to verify 'issues/6606' (#6762)
---
 datafusion/core/tests/sqllogictests/test_files/subquery.slt | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/datafusion/core/tests/sqllogictests/test_files/subquery.slt b/datafusion/core/tests/sqllogictests/test_files/subquery.slt
index 279b019de3..a0720d1c3a 100644
--- a/datafusion/core/tests/sqllogictests/test_files/subquery.slt
+++ b/datafusion/core/tests/sqllogictests/test_files/subquery.slt
@@ -965,3 +965,11 @@ select t1.t1_int from t1 where
 ----
 2
 4
+
+query B rowsort
+select t1_int > (select avg(t1_int) from t1) from t1
+----
+false
+false
+true
+true