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.

@FunctionalInterface public interface SqlCallFactory
A factory for creating SqlCall.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(SqlOperator operator, @Nullable SqlLiteral functionQualifier, SqlParserPos pos, @Nullable SqlNode... operands)
    Creates a call to this operator with an array of operands.
  • Method Details

    • create

      SqlCall 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 pos and 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