Package org.hibernate.dialect.function
Class DerbyConcatFunction
- java.lang.Object
-
- org.hibernate.dialect.function.DerbyConcatFunction
-
- All Implemented Interfaces:
SQLFunction
public class DerbyConcatFunction extends java.lang.Object implements SQLFunction
A specialized concat() function definition in which:- we translate to use the concat operator ('||')
- wrap dynamic parameters in CASTs to VARCHAR
-
-
Constructor Summary
Constructors Constructor Description DerbyConcatFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Type
getReturnType(Type argumentType, Mapping mapping)
The return type of the function.boolean
hasArguments()
Does this function have any arguments?boolean
hasParenthesesIfNoArguments()
If there are no arguments, are parentheses required?java.lang.String
render(Type argumentType, java.util.List args, SessionFactoryImplementor factory)
Render the function call as SQL fragment.
-
-
-
Method Detail
-
hasArguments
public boolean hasArguments()
Does this function have any arguments? Here we always return true- Specified by:
hasArguments
in interfaceSQLFunction
- Returns:
- True if the function expects to have parameters; false otherwise.
-
hasParenthesesIfNoArguments
public boolean hasParenthesesIfNoArguments()
If there are no arguments, are parentheses required? Here we always return true- Specified by:
hasParenthesesIfNoArguments
in interfaceSQLFunction
- Returns:
- True if a no-arg call of this function requires parentheses.
-
getReturnType
public Type getReturnType(Type argumentType, Mapping mapping) throws QueryException
The return type of the function. May be either a concrete type which is preset, or variable depending upon the type of the first function argument. Note, the 'firstArgumentType' parameter should match the one passed intoSQLFunction.render(org.hibernate.type.Type, java.util.List, org.hibernate.engine.spi.SessionFactoryImplementor)
Here we always returnStandardBasicTypes.STRING
.- Specified by:
getReturnType
in interfaceSQLFunction
- Parameters:
argumentType
- The type of the first argumentmapping
- The mapping source.- Returns:
- The type to be expected as a return.
- Throws:
QueryException
- Indicates an issue resolving the return type.
-
render
public java.lang.String render(Type argumentType, java.util.List args, SessionFactoryImplementor factory) throws QueryException
Render the function call as SQL fragment. Note, the 'firstArgumentType' parameter should match the one passed intoSQLFunction.getReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping)
Here's the meat.. The whole reason we have a separate impl for this for Derby is to re-define this method. The logic here says that if not all the incoming args are dynamic parameters (i.e. ?) then we simply use the Derby concat operator (||) on the unchanged arg elements. However, if all the args are dynamic parameters, then we need to wrap the individual arg elements in cast function calls, use the concatenation operator on the cast returns, and then wrap that whole thing in a call to the Derby varchar function.- Specified by:
render
in interfaceSQLFunction
- Parameters:
argumentType
- The type of the first argumentargs
- The function argumentsfactory
- The SessionFactory- Returns:
- The rendered function call
- Throws:
QueryException
- Indicates a problem rendering the function call.
-
-