Package org.h2.expression
Class Expression
java.lang.Object
org.h2.expression.Expression
- Direct Known Subclasses:
Alias,ArrayConstructorByQuery,BetweenPredicate,CompareLike,Comparison,ConditionAndOr,ConditionAndOrN,ConditionInArray,ConditionInConstantSet,ConditionInList,ConditionInQuery,ConditionLocalAndGlobal,ConditionNot,DataAnalysisOperation,ExistsPredicate,ExpressionColumn,ExpressionList,Function0_1,IsJsonPredicate,JavaFunction,Operation0,Operation1,Operation1_2,Operation2,OperationN,SimpleCase,SimplePredicate,Subquery,UniquePredicate,Wildcard
An expression is a operation, a value, or a function in a query.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intWrap expression in parentheses only if it can't be safely included into other expressions without them.static final intState for expressions inside an aggregate formapColumns(ColumnResolver, int, int).static final intState for expressions inside a window function formapColumns(ColumnResolver, int, int).static final intInitial state formapColumns(ColumnResolver, int, int).static final intWrap expression in parentheses unconditionally.static final intDo not wrap expression in parentheses.Fields inherited from interface org.h2.util.HasSQL
ADD_PLAN_INFORMATION, DEFAULT_SQL_FLAGS, NO_CASTS, QUOTE_ONLY_WHEN_REQUIRED, REPLACE_LOBS_FOR_TRACE, TRACE_SQL_FLAGS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddFilterConditions(TableFilter filter) Add conditions to a table filter if they can be evaluated.voidcreateIndexConditions(SessionLocal session, TableFilter filter) Create index conditions if possible and attach them to the table filter.getAlias(SessionLocal session, int columnIndex) Get the alias name of a column or SQL expression if it is not an aliased expression.booleangetBooleanValue(SessionLocal session) Get the value in form of a boolean expression.getColumnName(SessionLocal session, int columnIndex) Get the column name or alias name of this expression.getColumnNameForView(SessionLocal session, int columnIndex, boolean cte) Get the column name of this expression for a view.abstract intgetCost()Estimate the cost to process the expression.final StringBuildergetEnclosedSQL(StringBuilder builder, int sqlFlags) Get the SQL statement of this expression.Returns the main expression, skipping aliases.getNotIfPossible(SessionLocal session) If it is possible, return the negated expression.intCheck whether this expression is a column and can store NULL.Get the schema name, or nullfinal StringgetSQL(int sqlFlags) Get the SQL statement of this expression.final StringgetSQL(int sqlFlags, int parentheses) Get the SQL statement of this expression.final StringBuildergetSQL(StringBuilder builder, int sqlFlags) Appends the SQL statement of this object to the specified builder.final StringBuildergetSQL(StringBuilder builder, int sqlFlags, int parentheses) Get the SQL statement of this expression.getSubexpression(int index) Returns subexpression with specified index.intReturns count of subexpressions.Get the table alias name or null if this expression does not represent a column.Get the table name, or nullabstract TypeInfogetType()Returns the data type.getTypeIfStaticallyKnown(SessionLocal session) Returns data type of this expression if it is statically known.abstract StringBuildergetUnenclosedSQL(StringBuilder builder, int sqlFlags) Get the SQL statement of this expression.abstract ValuegetValue(SessionLocal session) Return the resulting value for the current row.getWhenSQL(StringBuilder builder, int sqlFlags) Appends the SQL statement of this when operand to the specified builder.booleangetWhenValue(SessionLocal session, Value left) Return the resulting value of when operand for the current row.booleanCheck if this expression will always return the same value.abstract booleanisEverything(ExpressionVisitor visitor) Check if this expression and all sub-expressions can fulfill a criteria.booleanCheck if this is an identity column.booleanCheck if this expression will always return the NULL value.booleanIs the value of a parameter set.booleanReturns whether this expression is a right side of condition in a when operand.abstract voidmapColumns(ColumnResolver resolver, int level, int state) Map the columns of the resolver to expression columns.booleanReturns whether this expressions needs to be wrapped in parentheses when it is used as an argument of other expressions.abstract Expressionoptimize(SessionLocal session) Try to optimize the expression.final ExpressionoptimizeCondition(SessionLocal session) Try to optimize or remove the condition.abstract voidsetEvaluatable(TableFilter tableFilter, boolean value) Tell the expression columns whether the table filter can return values now.toString()Convert this expression to a String.abstract voidupdateAggregate(SessionLocal session, int stage) Update an aggregate value.static StringBuilderwriteExpressions(StringBuilder builder, List<? extends Expression> expressions, int sqlFlags) Get the SQL snippet for a list of expressions.static StringBuilderwriteExpressions(StringBuilder builder, Expression[] expressions, int sqlFlags) Get the SQL snippet for an array of expressions.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.h2.util.HasSQL
getTraceSQL
-
Field Details
-
MAP_INITIAL
public static final int MAP_INITIALInitial state formapColumns(ColumnResolver, int, int).- See Also:
-
MAP_IN_WINDOW
public static final int MAP_IN_WINDOWState for expressions inside a window function formapColumns(ColumnResolver, int, int).- See Also:
-
MAP_IN_AGGREGATE
public static final int MAP_IN_AGGREGATEState for expressions inside an aggregate formapColumns(ColumnResolver, int, int).- See Also:
-
AUTO_PARENTHESES
public static final int AUTO_PARENTHESESWrap expression in parentheses only if it can't be safely included into other expressions without them.- See Also:
-
WITH_PARENTHESES
public static final int WITH_PARENTHESESWrap expression in parentheses unconditionally.- See Also:
-
WITHOUT_PARENTHESES
public static final int WITHOUT_PARENTHESESDo not wrap expression in parentheses.- See Also:
-
-
Constructor Details
-
Expression
public Expression()
-
-
Method Details
-
writeExpressions
public static StringBuilder writeExpressions(StringBuilder builder, List<? extends Expression> expressions, int sqlFlags) Get the SQL snippet for a list of expressions.- Parameters:
builder- the builder to append the SQL toexpressions- the list of expressionssqlFlags- formatting flags- Returns:
- the specified string builder
-
writeExpressions
public static StringBuilder writeExpressions(StringBuilder builder, Expression[] expressions, int sqlFlags) Get the SQL snippet for an array of expressions.- Parameters:
builder- the builder to append the SQL toexpressions- the list of expressionssqlFlags- formatting flags- Returns:
- the specified string builder
-
getValue
Return the resulting value for the current row.- Parameters:
session- the session- Returns:
- the result
-
getType
Returns the data type. The data type may be unknown before the optimization phase. -
mapColumns
Map the columns of the resolver to expression columns.- Parameters:
resolver- the column resolverlevel- the subquery nesting levelstate- current state for nesting checks, initial value isMAP_INITIAL
-
optimize
Try to optimize the expression.- Parameters:
session- the session- Returns:
- the optimized expression
-
optimizeCondition
Try to optimize or remove the condition.- Parameters:
session- the session- Returns:
- the optimized condition, or
null
-
setEvaluatable
Tell the expression columns whether the table filter can return values now. This is used when optimizing the query.- Parameters:
tableFilter- the table filtervalue- true if the table filter can return value
-
getSQL
Description copied from interface:HasSQLGet the SQL statement of this expression. This may not always be the original SQL statement, specially after optimization. -
getSQL
Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder. -
getSQL
Get the SQL statement of this expression. This may not always be the original SQL statement, especially after optimization.- Parameters:
sqlFlags- formatting flagsparentheses- parentheses mode- Returns:
- the SQL statement
-
getSQL
Get the SQL statement of this expression. This may not always be the original SQL statement, especially after optimization.- Parameters:
builder- string buildersqlFlags- formatting flagsparentheses- parentheses mode- Returns:
- the specified string builder
-
needParentheses
public boolean needParentheses()Returns whether this expressions needs to be wrapped in parentheses when it is used as an argument of other expressions.- Returns:
trueif it is
-
getEnclosedSQL
Get the SQL statement of this expression. This may not always be the original SQL statement, especially after optimization. Enclosing '(' and ')' are always appended.- Parameters:
builder- string buildersqlFlags- formatting flags- Returns:
- the specified string builder
-
getUnenclosedSQL
Get the SQL statement of this expression. This may not always be the original SQL statement, especially after optimization. Enclosing '(' and ')' are never appended.- Parameters:
builder- string buildersqlFlags- formatting flags- Returns:
- the specified string builder
-
updateAggregate
Update an aggregate value. This method is called at statement execution time. It is usually called once for each row, but if the expression is used multiple times (for example in the column list, and as part of the HAVING expression) it is called multiple times - the row counter needs to be used to make sure the internal state is only updated once.- Parameters:
session- the sessionstage- select stage
-
isEverything
Check if this expression and all sub-expressions can fulfill a criteria. If any part returns false, the result is false.- Parameters:
visitor- the visitor- Returns:
- if the criteria can be fulfilled
-
getCost
public abstract int getCost()Estimate the cost to process the expression. Used when optimizing the query, to calculate the query plan with the lowest estimated cost.- Returns:
- the estimated cost
-
getNotIfPossible
If it is possible, return the negated expression. This is used to optimize NOT expressions: NOT ID>10 can be converted to ID<=10. Returns null if negating is not possible.- Parameters:
session- the session- Returns:
- the negated expression, or null
-
getTypeIfStaticallyKnown
Returns data type of this expression if it is statically known.- Parameters:
session- the session- Returns:
- data type or
null
-
isConstant
public boolean isConstant()Check if this expression will always return the same value.- Returns:
- if the expression is constant
-
isNullConstant
public boolean isNullConstant()Check if this expression will always return the NULL value.- Returns:
- if the expression is constant NULL value
-
isValueSet
public boolean isValueSet()Is the value of a parameter set.- Returns:
- true if set
-
isIdentity
public boolean isIdentity()Check if this is an identity column.- Returns:
- true if it is an identity column
-
getBooleanValue
Get the value in form of a boolean expression. Returns true or false. In this database, everything can be a condition.- Parameters:
session- the session- Returns:
- the result
-
createIndexConditions
Create index conditions if possible and attach them to the table filter.- Parameters:
session- the sessionfilter- the table filter
-
getColumnName
Get the column name or alias name of this expression.- Parameters:
session- the sessioncolumnIndex- 0-based column index- Returns:
- the column name
-
getSchemaName
Get the schema name, or null- Returns:
- the schema name
-
getTableName
Get the table name, or null- Returns:
- the table name
-
getNullable
public int getNullable()Check whether this expression is a column and can store NULL.- Returns:
- whether NULL is allowed
-
getTableAlias
Get the table alias name or null if this expression does not represent a column.- Returns:
- the table alias name
-
getAlias
Get the alias name of a column or SQL expression if it is not an aliased expression.- Parameters:
session- the sessioncolumnIndex- 0-based column index- Returns:
- the alias name
-
getColumnNameForView
Get the column name of this expression for a view.- Parameters:
session- the sessioncolumnIndex- 0-based column indexcte-truefor CTE,falsefor tables and views- Returns:
- the column name for a view
-
getNonAliasExpression
Returns the main expression, skipping aliases.- Returns:
- the expression
-
addFilterConditions
Add conditions to a table filter if they can be evaluated.- Parameters:
filter- the table filter
-
toString
Convert this expression to a String. -
getSubexpressionCount
public int getSubexpressionCount()Returns count of subexpressions.- Returns:
- count of subexpressions
-
getSubexpression
Returns subexpression with specified index.- Parameters:
index- 0-based index- Returns:
- subexpression with specified index, may be null
- Throws:
IndexOutOfBoundsException- if specified index is not valid
-
getWhenValue
Return the resulting value of when operand for the current row.- Parameters:
session- the sessionleft- value on the left side- Returns:
- the result
-
getWhenSQL
Appends the SQL statement of this when operand to the specified builder.- Parameters:
builder- string buildersqlFlags- formatting flags- Returns:
- the specified string builder
-
isWhenConditionOperand
public boolean isWhenConditionOperand()Returns whether this expression is a right side of condition in a when operand.- Returns:
trueif it is,falseotherwise
-