public class StaticPrecisionFspTimestampFunction extends NoArgSQLFunction
StandardBasicTypes.TIMESTAMP
with static fractional seconds precision (fsp).Constructor and Description |
---|
StaticPrecisionFspTimestampFunction(String name,
boolean hasParenthesesIfNoArguments)
Constructs a
StandardBasicTypes.TIMESTAMP function using the
default fractional second precision as defined by the database. |
StaticPrecisionFspTimestampFunction(String name,
int fsp)
Constructs a
StandardBasicTypes.TIMESTAMP function using
the specified fractional seconds precision. |
Modifier and Type | Method and Description |
---|---|
String |
render(Type argumentType,
List args,
SessionFactoryImplementor factory)
Render the function call as SQL fragment.
|
getName, getReturnType, hasArguments, hasParenthesesIfNoArguments
public StaticPrecisionFspTimestampFunction(String name, boolean hasParenthesesIfNoArguments)
StandardBasicTypes.TIMESTAMP
function using the
default fractional second precision as defined by the database.name
- The function namehasParenthesesIfNoArguments
- Does the function call need parenthesis if there are no arguments?public StaticPrecisionFspTimestampFunction(String name, int fsp)
StandardBasicTypes.TIMESTAMP
function using
the specified fractional seconds precision.name
- The function namefsp
- The explicit fractional seconds precision to renderIllegalArgumentException
- if fsp
< 0.public String render(Type argumentType, List args, SessionFactoryImplementor factory) throws QueryException
SQLFunction
SQLFunction.getReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping)
render
in interface SQLFunction
render
in class NoArgSQLFunction
argumentType
- The type of the first argumentargs
- The function argumentsfactory
- The SessionFactoryQueryException
- Indicates a problem rendering the
function call.Copyright © 2017 JBoss by Red Hat. All rights reserved.