Skip to content
Merged
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
13 changes: 7 additions & 6 deletions test/corpus/window_functions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Window Functions two inline functions
SELECT
a,
SUM(b) OVER (PARTITION BY c) AS w1,
AVG(b) OVER (ORDER BY d) AS w2,
AVG(b) OVER (ORDER BY d) AS w2
FROM tab1;

--------------------------------------------------------------------------------
Expand Down Expand Up @@ -248,11 +248,12 @@ FROM tab1;
(field
name: (identifier))))))
(keyword_as)
alias: (identifier))
(term
value: (field
name: (identifier))
alias: (identifier))))))
alias: (identifier))))
(from
(keyword_from)
(relation
(object_reference
name: (identifier))))))

================================================================================
Window Functions separate definition
Expand Down