@PublicEvolving public final class SqlCallExpression extends Object implements Expression
The given string is parsed and translated into an Expression during planning. Only the
translated expression is evaluated during runtime.
Note: Actually, this class belongs into the flink-table-api-java module, however,
since this expression is crucial for catalogs when defining persistable computed columns and
watermark strategies, we keep it in flink-table-common to keep the dependencies of
catalogs low.
| 构造器和说明 |
|---|
SqlCallExpression(String sqlExpression) |
| 限定符和类型 | 方法和说明 |
|---|---|
<R> R |
accept(ExpressionVisitor<R> visitor) |
String |
asSummaryString()
Returns a string that summarizes this expression for printing to a console.
|
boolean |
equals(Object o) |
List<Expression> |
getChildren() |
String |
getSqlExpression() |
int |
hashCode() |
String |
toString() |
public SqlCallExpression(String sqlExpression)
public String getSqlExpression()
public String asSummaryString()
ExpressionasSummaryString 在接口中 Expressionpublic List<Expression> getChildren()
getChildren 在接口中 Expressionpublic <R> R accept(ExpressionVisitor<R> visitor)
accept 在接口中 ExpressionCopyright © 2014–2022 The Apache Software Foundation. All rights reserved.