Alima777 opened a new pull request #2186: URL: https://github.com/apache/iotdb/pull/2186
When Batchdata is from mergeReader, the sequence of it will be in reverse. E.g. [3000, 2001], [2000, 1001], [1000, 1] Then getMaxTimestamp will be the first but actually it got the last timestamp. That's the wrong place. To keep it better to understand, I abstracted a new batchdata called DescReadWriteBatchdata. It's for mergeReader in `order by time desc`. And it will write data in reverse, the sequence will be [1, 1000], [1001, 2000], [2001, 3000] ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
