Class TsFileExecutor
- java.lang.Object
-
- org.apache.iotdb.tsfile.read.query.executor.TsFileExecutor
-
- All Implemented Interfaces:
QueryExecutor
public class TsFileExecutor extends java.lang.Object implements QueryExecutor
-
-
Constructor Summary
Constructors Constructor Description TsFileExecutor(IMetadataQuerier metadataQuerier, IChunkLoader chunkLoader)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryDataSetexecute(QueryExpression queryExpression)QueryDataSetexecute(QueryExpression queryExpression, long spacePartitionStartPos, long spacePartitionEndPos)Query with the space partition constraint.
-
-
-
Constructor Detail
-
TsFileExecutor
public TsFileExecutor(IMetadataQuerier metadataQuerier, IChunkLoader chunkLoader)
-
-
Method Detail
-
execute
public QueryDataSet execute(QueryExpression queryExpression) throws java.io.IOException
- Specified by:
executein interfaceQueryExecutor- Throws:
java.io.IOException
-
execute
public QueryDataSet execute(QueryExpression queryExpression, long spacePartitionStartPos, long spacePartitionEndPos) throws java.io.IOException
Query with the space partition constraint.- Parameters:
queryExpression- query expressionspacePartitionStartPos- the start position of the space partitionspacePartitionEndPos- the end position of the space partition- Returns:
- QueryDataSet
- Throws:
java.io.IOException
-
-