Uses of Enum Class
org.jooq.conf.Transformation
-
Uses of Transformation in org.jooq.conf
Modifier and TypeFieldDescriptionprotected Transformation
Settings.parseAppendMissingTableReferences
protected Transformation
Settings.transformGroupByColumnIndex
protected Transformation
protected Transformation
Settings.transformInlineCTE
protected Transformation
Settings.transformQualify
protected Transformation
Settings.transformRownum
Modifier and TypeMethodDescriptionstatic Transformation
Settings.getParseAppendMissingTableReferences()
Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.Settings.getTransformGroupByColumnIndex()
TransformGROUP BY [column index]
clauses by substituting the column index.Deprecated.- 3.18.0 - [#14634] - The configuration of this transformation is deprecated.Settings.getTransformInlineCTE()
Transform Common Table Expressions (CTE) by inlining theirWITH
clause definition to wherever they're referenced.Settings.getTransformQualify()
Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.Settings.getTransformRownum()
TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.static Transformation
Returns the enum constant of this class with the specified name.static Transformation[]
Transformation.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionvoid
Settings.setParseAppendMissingTableReferences
(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.void
Settings.setTransformGroupByColumnIndex
(Transformation value) TransformGROUP BY [column index]
clauses by substituting the column index.void
Settings.setTransformInConditionSubqueryWithLimitToDerivedTable
(Transformation value) Deprecated.- 3.18.0 - [#14634] - The configuration of this transformation is deprecated.void
Settings.setTransformInlineCTE
(Transformation value) Transform Common Table Expressions (CTE) by inlining theirWITH
clause definition to wherever they're referenced.void
Settings.setTransformQualify
(Transformation value) Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.void
Settings.setTransformRownum
(Transformation value) TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.Settings.withParseAppendMissingTableReferences
(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.Settings.withTransformGroupByColumnIndex
(Transformation value) TransformGROUP BY [column index]
clauses by substituting the column index.Deprecated.- 3.18.0 - [#14634] - The configuration of this transformation is deprecated.Settings.withTransformInlineCTE
(Transformation value) Transform Common Table Expressions (CTE) by inlining theirWITH
clause definition to wherever they're referenced.Settings.withTransformQualify
(Transformation value) Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.Settings.withTransformRownum
(Transformation value) TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.