Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
wizardxz committed Jan 17, 2024
1 parent 853cf93 commit 98b3ab7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion datafusion/sqllogictest/test_files/group_by.slt
Original file line number Diff line number Diff line change
Expand Up @@ -4853,4 +4853,9 @@ statement error DataFusion error: This feature is not implemented: Conflicting o
SELECT a, b, NTH_VALUE(c, 2 ORDER BY c ASC), NTH_VALUE(c, 3 ORDER BY d ASC)
FROM multiple_ordered_table
GROUP BY a, b
ORDER BY a, b;
ORDER BY a, b;

query II
SELECT a + 1 AS d, a + 1 + b AS c FROM (SELECT 1 AS a, 2 AS b) GROUP BY a + 1, a + 1 + b;
----
2 4

0 comments on commit 98b3ab7

Please sign in to comment.