chenkovsky commented on code in PR #15639:
URL: https://github.com/apache/datafusion/pull/15639#discussion_r2035708094


##########
datafusion/sqllogictest/test_files/window.slt:
##########
@@ -5610,3 +5610,35 @@ DROP TABLE aggregate_test_100_utf8view;
 
 statement ok
 DROP TABLE aggregate_test_100
+
+# window definitions with aliases
+query II rowsort
+SELECT
+  t1.v1,
+  SUM(t1.v1) OVER W + 1
+FROM
+  generate_series(1, 5) AS t1(v1)
+WINDOW
+  w AS (ORDER BY t1.v1);
+----
+1 2
+2 4
+3 7
+4 11
+5 16
+
+# window definitions with aliases

Review Comment:
   the difference is lower case & upper case.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to