qiaojialin commented on a change in pull request #818: [IOTDB-482] Vectorized
TimeGenerator
URL: https://github.com/apache/incubator-iotdb/pull/818#discussion_r380039354
##########
File path:
tsfile/src/main/java/org/apache/iotdb/tsfile/read/query/timegenerator/node/AndNode.java
##########
@@ -19,19 +19,24 @@
package org.apache.iotdb.tsfile.read.query.timegenerator.node;
import java.io.IOException;
+import org.apache.iotdb.tsfile.read.common.TimeSeries;
public class AndNode implements Node {
private Node leftChild;
private Node rightChild;
- private long cachedValue;
+ private TimeSeries cachedValue;
private boolean hasCachedValue;
+
+ private TimeSeries leftPageData;
Review comment:
```suggestion
private TimeSeries leftTimeColumn;
```
----------------------------------------------------------------
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