JackieTien97 commented on a change in pull request #652: [386] Vectorize the
raw data query process
URL: https://github.com/apache/incubator-iotdb/pull/652#discussion_r361090264
##########
File path:
server/src/main/java/org/apache/iotdb/db/engine/merge/task/MergeMultiChunkTask.java
##########
@@ -401,9 +401,9 @@ private int writeRemainingUnseq(IChunkWriter chunkWriter,
private int writeChunkWithUnseq(Chunk chunk, IChunkWriter chunkWriter,
IPointReader unseqReader,
long chunkLimitTime, int pathIdx) throws IOException {
int cnt = 0;
- ChunkReader chunkReader = new ChunkReaderWithoutFilter(chunk);
- while (chunkReader.hasNextBatch()) {
- BatchData batchData = chunkReader.nextBatch();
+ AbstractChunkReader AbstractChunkReader = new ChunkReader(chunk, null);
+ while (AbstractChunkReader.hasNextBatch()) {
+ BatchData batchData = AbstractChunkReader.nextBatch();
Review comment:
The first letter o variable should be lowercase
----------------------------------------------------------------
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]
With regards,
Apache Git Services