Package org.apache.calcite.sql.fun
Interface SqlCallFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A factory for creating 
SqlCall.- 
Method SummaryModifier and TypeMethodDescriptioncreate(SqlOperator operator, @Nullable SqlLiteral functionQualifier, SqlParserPos pos, @Nullable SqlNode... operands) Creates a call to this operator with an array of operands.
- 
Method Details- 
createSqlCall create(SqlOperator operator, @Nullable SqlLiteral functionQualifier, SqlParserPos pos, @Nullable SqlNode... operands) Creates a call to this operator with an array of operands.The position of the resulting call is the union of the posand the positions of all of the operands.- Parameters:
- functionQualifier- Function qualifier (e.g. "DISTINCT"), or null
- pos- Parser position of the identifier of the call
- operands- Array of operands
 
 
-