alamb commented on issue #9488: URL: https://github.com/apache/arrow-datafusion/issues/9488#issuecomment-2016933230
I agree with @mustafasrepo 's analysis Fundamentally, ` select * from 'offset.csv' limit 4 offset 3` is a non deterministic query as the output order is not defined a SQL engine is allowed to return rows in any order (there is no` ORDER BY` clause). If you want to treat the file as though it is ordered, you could consder defining it with a `CREATE EXTERNAL TABLE ... WITH ORDER` https://arrow.apache.org/datafusion/user-guide/sql/ddl.html#create-external-table -- 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]
