Package org.h2.expression.function.table
Class TableFunction
- java.lang.Object
-
- org.h2.expression.function.table.TableFunction
-
- All Implemented Interfaces:
ExpressionWithVariableParameters,NamedExpression,HasSQL
- Direct Known Subclasses:
ArrayTableFunction,CSVReadFunction,JavaTableFunction,LinkSchemaFunction
public abstract class TableFunction extends java.lang.Object implements HasSQL, NamedExpression, ExpressionWithVariableParameters
A table value function.
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression[]argsprivate intargsCount-
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 Modifier Constructor Description protectedTableFunction(Expression[] args)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaddParameter(Expression param)Adds the parameter expression.voiddoneWithParameters()This method must be called after all the parameters have been set.java.lang.StringBuildergetSQL(java.lang.StringBuilder builder, int sqlFlags)Appends the SQL statement of this object to the specified builder.abstract ResultInterfacegetValue(SessionLocal session)Get a result with.abstract ResultInterfacegetValueTemplate(SessionLocal session)Get an empty result with the column names set.abstract booleanisDeterministic()Whether the function always returns the same result for the same parameters.voidoptimize(SessionLocal session)Try to optimize this table function-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.h2.util.HasSQL
getSQL, getTraceSQL
-
Methods inherited from interface org.h2.expression.function.NamedExpression
getName
-
-
-
-
Field Detail
-
args
protected Expression[] args
-
argsCount
private int argsCount
-
-
Constructor Detail
-
TableFunction
protected TableFunction(Expression[] args)
-
-
Method Detail
-
addParameter
public void addParameter(Expression param)
Description copied from interface:ExpressionWithVariableParametersAdds the parameter expression.- Specified by:
addParameterin interfaceExpressionWithVariableParameters- Parameters:
param- the expression
-
doneWithParameters
public void doneWithParameters() throws DbExceptionDescription copied from interface:ExpressionWithVariableParametersThis method must be called after all the parameters have been set. It checks if the parameter count is correct when required by the implementation.- Specified by:
doneWithParametersin interfaceExpressionWithVariableParameters- Throws:
DbException- if the parameter count is incorrect.
-
getValue
public abstract ResultInterface getValue(SessionLocal session)
Get a result with.- Parameters:
session- the session- Returns:
- the result
-
getValueTemplate
public abstract ResultInterface getValueTemplate(SessionLocal session)
Get an empty result with the column names set.- Parameters:
session- the session- Returns:
- the empty result
-
optimize
public void optimize(SessionLocal session)
Try to optimize this table function- Parameters:
session- the session
-
isDeterministic
public abstract boolean isDeterministic()
Whether the function always returns the same result for the same parameters.- Returns:
- true if it does
-
getSQL
public java.lang.StringBuilder getSQL(java.lang.StringBuilder builder, int sqlFlags)Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder.
-
-