Skip to content

Commit fa450f1

Browse files
committed
Finish all rules, nodes and operators.
1 parent 9abac5c commit fa450f1

29 files changed

+3483
-21
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.apache.iotdb.db.queryengine.execution.operator;
2+
3+
import org.apache.tsfile.read.common.block.TsBlock;
4+
5+
import java.util.Iterator;
6+
7+
public interface GroupedTopNBuilder {
8+
void addTsBlock(TsBlock tsBlock);
9+
10+
Iterator<TsBlock> getResult();
11+
12+
long getEstimatedSizeInBytes();
13+
}

0 commit comments

Comments
 (0)