qiaojialin 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_r361113717
##########
File path:
server/src/main/java/org/apache/iotdb/db/query/reader/chunkRelated/DiskChunkReader.java
##########
@@ -70,8 +72,18 @@ public TimeValuePair current() {
return TimeValuePairUtils.getCurrentTimeValuePair(data);
}
+ @Override
+ public boolean hasNextBatch() throws IOException {
+ return false;
+ }
+
+ @Override
+ public BatchData nextBatch() throws IOException {
+ return null;
+ }
+
Review comment:
We could remove this fake implementation currently. I plan to remove
TimeValuePair in anywhere in the future.
----------------------------------------------------------------
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