Class InExpression
- java.lang.Object
-
- org.apache.iotdb.db.mpp.plan.expression.Expression
-
- org.apache.iotdb.db.mpp.plan.expression.unary.UnaryExpression
-
- org.apache.iotdb.db.mpp.plan.expression.unary.InExpression
-
public class InExpression extends UnaryExpression
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.db.mpp.plan.expression.unary.UnaryExpression
expression
-
Fields inherited from class org.apache.iotdb.db.mpp.plan.expression.Expression
inputColumnIndex, isConstantOperandCache
-
-
Constructor Summary
Constructors Constructor Description InExpression(java.nio.ByteBuffer byteBuffer)InExpression(Expression expression, boolean isNotIn, java.util.LinkedHashSet<java.lang.String> values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ExpressionconstructExpression(Expression childExpression)protected java.lang.StringgetExpressionStringInternal()Sub-classes should override this method to provide valid string representation of this object.ExpressionTypegetExpressionType()java.util.LinkedHashSet<java.lang.String>getValues()org.apache.iotdb.tsfile.file.metadata.enums.TSDataTypeinferTypes(TypeProvider typeProvider)booleanisNotIn()protected voidserialize(java.io.DataOutputStream stream)protected voidserialize(java.nio.ByteBuffer byteBuffer)-
Methods inherited from class org.apache.iotdb.db.mpp.plan.expression.unary.UnaryExpression
accept, bindInputLayerColumnIndexWithExpression, bindInputLayerColumnIndexWithExpression, collectPaths, concat, constructUdfExecutors, getExpression, getExpressions, isConstantOperandInternal, isMappable, isTimeSeriesGeneratingFunctionExpression, isUserDefinedAggregationFunctionExpression, removeWildcards, updateStatisticsForMemoryAssigner
-
Methods inherited from class org.apache.iotdb.db.mpp.plan.expression.Expression
checkInputExpressionDataType, deserialize, equals, getExpressionString, getInputColumnIndex, hashCode, isBuiltInAggregationFunctionExpression, isCompareBinaryExpression, isConstantOperand, iterator, serialize, serialize, toString
-
-
-
-
Constructor Detail
-
InExpression
public InExpression(Expression expression, boolean isNotIn, java.util.LinkedHashSet<java.lang.String> values)
-
InExpression
public InExpression(java.nio.ByteBuffer byteBuffer)
-
-
Method Detail
-
isNotIn
public boolean isNotIn()
-
getValues
public java.util.LinkedHashSet<java.lang.String> getValues()
-
inferTypes
public org.apache.iotdb.tsfile.file.metadata.enums.TSDataType inferTypes(TypeProvider typeProvider)
- Specified by:
inferTypesin classExpression
-
getExpressionStringInternal
protected java.lang.String getExpressionStringInternal()
Description copied from class:ExpressionSub-classes should override this method to provide valid string representation of this object. SeeExpression.getExpressionString()- Specified by:
getExpressionStringInternalin classExpression
-
getExpressionType
public ExpressionType getExpressionType()
- Specified by:
getExpressionTypein classExpression
-
constructExpression
protected Expression constructExpression(Expression childExpression)
- Specified by:
constructExpressionin classUnaryExpression
-
serialize
protected void serialize(java.nio.ByteBuffer byteBuffer)
- Overrides:
serializein classUnaryExpression
-
serialize
protected void serialize(java.io.DataOutputStream stream) throws java.io.IOException- Overrides:
serializein classUnaryExpression- Throws:
java.io.IOException
-
-