Interface SqlFunctionExecutionContext

All Known Implementing Classes:
FunctionCallDescription

public interface SqlFunctionExecutionContext
Defines the arguments to be passed to an SqlFunction, generated for sqlFunction invocations.
Since:
11.0.0
Author:
Tamir Schwarz
  • Method Details

    • getNumberOfArguments

      int getNumberOfArguments()
      Returns:
      the number of arguments stored in the context
    • getArgument

      Object getArgument(int index)
      Provides mapping between stored arguments and the argument index to be passed to the function
      Parameters:
      index - the index of the argument requested
      Returns:
      the value of argument at 'index'
    • getSession

      default LocalSession getSession()
    • getType

      default String getType()