Package io.nflow.engine.config.db
Class PgDatabaseConfiguration.PostgreSQLVariants
java.lang.Object
io.nflow.engine.config.db.PgDatabaseConfiguration.PostgreSQLVariants
- All Implemented Interfaces:
SQLVariants
- Enclosing class:
PgDatabaseConfiguration
public static class PgDatabaseConfiguration.PostgreSQLVariants
extends Object
implements SQLVariants
SQL variants optimized for PostgreSQL.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns SQL representing the action type parameter.Returns string for casting value to text.currentTimePlusSeconds(int seconds) Returns SQL representing the current database time plus given amount of seconds.PostgreSQL suppports for update skip locked.booleanReturns true as PostgreSQL supports updateable CTEs.booleanReturns true as PostgreSQL supports update returning clause.Returns SQL for a query with a limit of results.intReturns the SQL type for long text.Returns SQL representing the next activation time of the workflow instance.booleanReturns true as PostgreSQL suppports batch updates.Returns SQL representing the workflow instance status parameter.Returns the SQL representation for given workflow instance status.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.nflow.engine.internal.storage.db.SQLVariants
caseSensitiveLike, clobToComparable, dateLtEqDiff, getDateTime, getTimestamp, setDateTime, toTimestampObject, tuneTimestampForDb, withUpdateSkipLocked
-
Constructor Details
-
PostgreSQLVariants
public PostgreSQLVariants()
-
-
Method Details
-
currentTimePlusSeconds
Returns SQL representing the current database time plus given amount of seconds.- Specified by:
currentTimePlusSecondsin interfaceSQLVariants
-
hasUpdateReturning
public boolean hasUpdateReturning()Returns true as PostgreSQL supports update returning clause.- Specified by:
hasUpdateReturningin interfaceSQLVariants
-
hasUpdateableCTE
public boolean hasUpdateableCTE()Returns true as PostgreSQL supports updateable CTEs.- Specified by:
hasUpdateableCTEin interfaceSQLVariants
-
nextActivationUpdate
Returns SQL representing the next activation time of the workflow instance.- Specified by:
nextActivationUpdatein interfaceSQLVariants
-
workflowStatus
Returns the SQL representation for given workflow instance status.- Specified by:
workflowStatusin interfaceSQLVariants
-
workflowStatus
Returns SQL representing the workflow instance status parameter.- Specified by:
workflowStatusin interfaceSQLVariants
-
actionType
Returns SQL representing the action type parameter.- Specified by:
actionTypein interfaceSQLVariants
-
castToText
Returns string for casting value to text.- Specified by:
castToTextin interfaceSQLVariants
-
limit
Returns SQL for a query with a limit of results.- Specified by:
limitin interfaceSQLVariants
-
longTextType
public int longTextType()Returns the SQL type for long text.- Specified by:
longTextTypein interfaceSQLVariants
-
useBatchUpdate
public boolean useBatchUpdate()Returns true as PostgreSQL suppports batch updates.- Specified by:
useBatchUpdatein interfaceSQLVariants
-
forUpdateSkipLocked
PostgreSQL suppports for update skip locked.- Specified by:
forUpdateSkipLockedin interfaceSQLVariants
-