silence-coding opened a new issue #2097:
URL: https://github.com/apache/arrow-datafusion/issues/2097
Why Is the Returned Result Out of Order After I Use the Where Statement to
Query
Out-of-order occurs between RecordBatches, and each RecordBatch is ordered.
```
Statement: select * from table
output:
RecordBatch1
row1
row2
RecordBatch2
row3
row4
RecordBatch3
row5
row6
Statement: select * from table where timestamp BETWEEN 1648196340000 and
1648287569004
output:
RecordBatch1
row1
row2
RecordBatch3
row5
row6
RecordBatch2
row3
row4
```
--
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]