Skip to content

Commit

Permalink
fix javadoc format
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaojialin committed Apr 1, 2020
1 parent 7d350ba commit 3f427f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import org.apache.iotdb.tsfile.exception.write.UnSupportedDataTypeException;
import org.apache.iotdb.tsfile.read.common.Path;
import org.apache.iotdb.tsfile.read.common.TimeColumn;
import org.apache.iotdb.tsfile.read.expression.ExpressionType;
import org.apache.iotdb.tsfile.read.expression.IBinaryExpression;
import org.apache.iotdb.tsfile.read.expression.IExpression;
Expand All @@ -30,12 +29,14 @@
import org.apache.iotdb.tsfile.read.query.timegenerator.node.Node;
import org.apache.iotdb.tsfile.read.query.timegenerator.node.OrNode;
import org.apache.iotdb.tsfile.read.reader.IBatchReader;

import java.io.IOException;
import java.util.*;

/**
* All SingleSeriesExpression involved in a IExpression will be transferred to a TimeGenerator tree whose leaf nodes are all SeriesReaders, The TimeGenerator tree can generate the next timestamp that satisfies the filter condition. Then we use this timestamp to get values in other series that are not included in IExpression
* All SingleSeriesExpression involved in a IExpression will be transferred to a TimeGenerator tree
* whose leaf nodes are all SeriesReaders, The TimeGenerator tree can generate the next timestamp
* that satisfies the filter condition. Then we use this timestamp to get values in other series
* that are not included in IExpression
*/
public abstract class TimeGenerator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ public boolean hasNext() throws IOException {
return false;
}

/**
* If there is no value in current Node, -1 will be returned if {@code next()} is invoked.
*/
@Override
public long next() throws IOException {
if (hasNext()) {
Expand Down

0 comments on commit 3f427f9

Please sign in to comment.