alamb commented on code in PR #8315:
URL: https://github.com/apache/arrow-datafusion/pull/8315#discussion_r1407841847


##########
datafusion/sqllogictest/test_files/limit.slt:
##########
@@ -379,6 +379,110 @@ SELECT COUNT(*) FROM (SELECT a FROM t1 WHERE a > 3 LIMIT 
3 OFFSET 6);
 ----
 1
 
+# generate BIGINT data from 1 to 1000
+statement ok
+CREATE TABLE t1000 (i BIGINT) AS
+WITH t AS (VALUES (0), (0), (0), (0), (0), (0), (0), (0), (0), (0))
+SELECT ROW_NUMBER() OVER (PARTITION BY t1.column1) FROM t t1, t t2, t t3;

Review Comment:
   I took the liberty of updating some comments / adding an explain tests in 
[26510c9](https://github.com/apache/arrow-datafusion/pull/8315/commits/26510c98247fee5bdcad8203b14e1c4f6ce29d54)



-- 
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]

Reply via email to