Skip to content

Commit

Permalink
Add simple window query to sqllogictest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefffrey committed Oct 25, 2023
1 parent 48ea4b2 commit 0519142
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions datafusion/sqllogictest/test_files/window.slt
Original file line number Diff line number Diff line change
Expand Up @@ -3378,3 +3378,10 @@ SELECT
window1 AS (ORDER BY C3)
ORDER BY C3
LIMIT 5


# simple window query
query II
select sum(1) over() x, sum(1) over () y
----
1 1

0 comments on commit 0519142

Please sign in to comment.