Class InsertOperator
- java.lang.Object
-
- org.apache.iotdb.db.qp.logical.Operator
-
- org.apache.iotdb.db.qp.logical.crud.InsertOperator
-
public class InsertOperator extends Operator
this class extendsRootOperatorand process insert statement.
-
-
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 InsertOperator(int tokenIntType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PhysicalPlangeneratePhysicalPlan(PhysicalGenerator generator)org.apache.iotdb.commons.path.PartialPathgetDevice()java.lang.String[]getMeasurementList()long[]getTimes()java.util.List<java.lang.String[]>getValueLists()booleanisAligned()voidsetAligned(boolean aligned)voidsetDevice(org.apache.iotdb.commons.path.PartialPath device)voidsetMeasurementList(java.lang.String[] measurementList)voidsetTimes(long[] times)voidsetValueLists(java.util.List<java.lang.String[]> valueLists)-
Methods inherited from class org.apache.iotdb.db.qp.logical.Operator
getTokenIntType, getType, isDebug, isPrefixMatchPath, isQuery, setDebug, setOperatorType, setPrefixMatchPath, toString
-
-
-
-
Method Detail
-
getDevice
public org.apache.iotdb.commons.path.PartialPath getDevice()
-
setDevice
public void setDevice(org.apache.iotdb.commons.path.PartialPath device)
-
getMeasurementList
public java.lang.String[] getMeasurementList()
-
setMeasurementList
public void setMeasurementList(java.lang.String[] measurementList)
-
getValueLists
public java.util.List<java.lang.String[]> getValueLists()
-
setValueLists
public void setValueLists(java.util.List<java.lang.String[]> valueLists)
-
getTimes
public long[] getTimes()
-
setTimes
public void setTimes(long[] times)
-
isAligned
public boolean isAligned()
-
setAligned
public void setAligned(boolean aligned)
-
generatePhysicalPlan
public PhysicalPlan generatePhysicalPlan(PhysicalGenerator generator) throws QueryProcessException
- Overrides:
generatePhysicalPlanin classOperator- Throws:
QueryProcessException
-
-