Class CreateIndexOperator
- java.lang.Object
-
- org.apache.iotdb.db.qp.logical.Operator
-
- org.apache.iotdb.db.qp.logical.sys.CreateIndexOperator
-
public class CreateIndexOperator extends Operator
this operator is to create a certain index on some time series.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.iotdb.db.qp.logical.Operator
Operator.OperatorType
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.db.qp.logical.Operator
isDebug, isPrefixMatchPath, operatorType, tokenIntType
-
-
Constructor Summary
Constructors Constructor Description CreateIndexOperator(int tokenIntType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddPath(org.apache.iotdb.commons.path.PartialPath path)PhysicalPlangeneratePhysicalPlan(PhysicalGenerator generator)IndexTypegetIndexType()java.util.List<org.apache.iotdb.commons.path.PartialPath>getPaths()java.util.Map<java.lang.String,java.lang.String>getProps()longgetTime()voidsetIndexType(IndexType indexType)voidsetProps(java.util.Map<java.lang.String,java.lang.String> props)voidsetTime(long time)-
Methods inherited from class org.apache.iotdb.db.qp.logical.Operator
getTokenIntType, getType, isDebug, isPrefixMatchPath, isQuery, setDebug, setOperatorType, setPrefixMatchPath, toString
-
-
-
-
Method Detail
-
getPaths
public java.util.List<org.apache.iotdb.commons.path.PartialPath> getPaths()
-
addPath
public void addPath(org.apache.iotdb.commons.path.PartialPath path)
-
getTime
public long getTime()
-
setTime
public void setTime(long time)
-
getProps
public java.util.Map<java.lang.String,java.lang.String> getProps()
-
setProps
public void setProps(java.util.Map<java.lang.String,java.lang.String> props)
-
getIndexType
public IndexType getIndexType()
-
setIndexType
public void setIndexType(IndexType indexType)
-
generatePhysicalPlan
public PhysicalPlan generatePhysicalPlan(PhysicalGenerator generator) throws QueryProcessException
- Overrides:
generatePhysicalPlanin classOperator- Throws:
QueryProcessException
-
-