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_r361099027
##########
File path:
server/src/main/java/org/apache/iotdb/db/query/reader/resourceRelated/CachedUnseqResourceMergeReader.java
##########
@@ -35,8 +35,8 @@ public CachedUnseqResourceMergeReader(List<Chunk> chunks,
TSDataType dataType)
super(dataType);
int priorityValue = 1;
for (Chunk chunk : chunks) {
- ChunkReader chunkReader = new ChunkReaderWithoutFilter(chunk);
- addReaderWithPriority(new CachedDiskChunkReader(chunkReader),
priorityValue++);
+ AbstractChunkReader AbstractChunkReader = new ChunkReader(chunk, null);
Review comment:
The first letter of 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