Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ GROUP BY GROUPING SETS ((city_id), (category_id), ())
0 0 17800.00 75600.00

skipif ignite3
# https://issues.apache.org/jira/browse/IGNITE-26335 Conversion to relational algebra failed to preserve datatypes
query IIT rowsort
SELECT GROUPING(id), GROUPING(id), id
FROM ( VALUES
Expand All @@ -130,7 +129,6 @@ GROUP BY ALL GROUPING SETS (id)
1 1 367fc6f1-40c3-4237-8545-3fd102d29134

skipif ignite3
# https://issues.apache.org/jira/browse/IGNITE-26335 Conversion to relational algebra failed while rewriting GROUPING SETS to UNION
# Duplicate groups
query IIT rowsort
SELECT GROUPING(val), GROUPING(val), val
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ GROUP BY GROUPING SETS ((city_id, category_id))
3 3 75600.00 75600.00

skipif ignite3
# https://issues.apache.org/jira/browse/IGNITE-26335 Conversion to relational algebra failed to preserve datatypes
query IIIT rowsort
SELECT GROUPING(val), GROUPING(id, val), id, val
FROM ( VALUES
Expand All @@ -91,7 +90,6 @@ GROUP BY ALL GROUPING SETS ((val, id))
1 3 2 367fc6f1-40c3-4237-8545-3fd102d29134

skipif ignite3
# https://issues.apache.org/jira/browse/IGNITE-26335 Rewriting GROUPING SETS to UNION failed with AssertionError during conversion from AST
query IIIT rowsort
SELECT GROUPING(val), GROUPING(id, val), id, val
FROM ( VALUES
Expand Down