Class NegationExpression
- 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.NegationExpression
-
public class NegationExpression 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 NegationExpression(java.nio.ByteBuffer byteBuffer)NegationExpression(Expression expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ExpressionconstructExpression(Expression childExpression)java.lang.StringgetExpressionStringInternal()Sub-classes should override this method to provide valid string representation of this object.ExpressionTypegetExpressionType()org.apache.iotdb.tsfile.file.metadata.enums.TSDataTypeinferTypes(TypeProvider typeProvider)-
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, serialize, serialize, 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
-
NegationExpression
public NegationExpression(Expression expression)
-
NegationExpression
public NegationExpression(java.nio.ByteBuffer byteBuffer)
-
-
Method Detail
-
constructExpression
protected Expression constructExpression(Expression childExpression)
- Specified by:
constructExpressionin classUnaryExpression
-
inferTypes
public org.apache.iotdb.tsfile.file.metadata.enums.TSDataType inferTypes(TypeProvider typeProvider) throws SemanticException
- Specified by:
inferTypesin classExpression- Throws:
SemanticException
-
getExpressionStringInternal
public 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
-
-