Skip to content

Commit

Permalink
IGNITE-23747 / disable hanging SQL tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rpuch committed Dec 14, 2024
1 parent 62cf1af commit 4f2c2eb
Showing 1 changed file with 38 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ FROM t;
----
45

query I
SELECT
SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
FROM t;
----
NULL
#query I
#SELECT
# SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
#FROM t;
#----
#NULL

# use it inside subquery
query I
Expand Down Expand Up @@ -206,22 +206,22 @@ group by j;
8
9

query I
SELECT
SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
FROM t
group by j;
----
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
#query I
#SELECT
# SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
#FROM t
#group by j;
#----
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL

# use it inside subquery
query I
Expand Down Expand Up @@ -363,22 +363,22 @@ group by k;
8
9

query I rowsort
SELECT
SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
FROM t
group by k;
----
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
NULL
#query I rowsort
#SELECT
# SUM(i) FILTER (WHERE i < (select i from t as t2 where t.i = t2.i))
#FROM t
#group by k;
#----
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL
#NULL

# use it inside subquery
query I
Expand Down

0 comments on commit 4f2c2eb

Please sign in to comment.