Package org.hibernate.dialect.aggregate
Class DB2AggregateSupport
java.lang.Object
org.hibernate.dialect.aggregate.AggregateSupportImpl
org.hibernate.dialect.aggregate.DB2AggregateSupport
- All Implemented Interfaces:
AggregateSupport
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.hibernate.dialect.aggregate.AggregateSupport
AggregateSupport.AggregateColumnWriteExpression, AggregateSupport.WriteExpressionRenderer
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaggregateAuxiliaryDatabaseObjects
(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns) Allows to generate auxiliary database objects for an aggregate type.aggregateComponentAssignmentExpression
(String aggregateParentAssignmentExpression, String columnExpression, int aggregateColumnTypeCode, Column column) Returns the assignment expression to use forcolumn
, which is part of the aggregate type ofaggregatePath
.aggregateComponentCustomReadExpression
(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, int aggregateColumnTypeCode, SqlTypedMapping column, TypeConfiguration typeConfiguration) Returns the custom read expression to use forcolumn
.int
aggregateComponentSqlTypeCode
(int aggregateColumnSqlTypeCode, int columnSqlTypeCode) Returns theSqlTypes
type code to use for the given column type code, when aggregated within a column of the given aggregate column type code.aggregateCustomWriteExpression
(AggregateColumn aggregateColumn, List<Column> aggregatedColumns) Returns the custom write expression to use for an aggregate column of the given column type, containing the given aggregated columns.aggregateCustomWriteExpressionRenderer
(SelectableMapping aggregateColumn, SelectableMapping[] columnsToUpdate, TypeConfiguration typeConfiguration) boolean
preferBindAggregateMapping
(int aggregateSqlTypeCode) Whether to prefer binding the aggregate column as a whole instead of individual parts.boolean
preferSelectAggregateMapping
(int aggregateSqlTypeCode) Whether to prefer selecting the aggregate column as a whole instead of individual parts.boolean
requiresAggregateCustomWriteExpressionRenderer
(int aggregateSqlTypeCode) WhetherAggregateSupport.aggregateCustomWriteExpressionRenderer(SelectableMapping, SelectableMapping[], TypeConfiguration)
is needed when assigning an expression to individual aggregated columns in an update statement.Methods inherited from class org.hibernate.dialect.aggregate.AggregateSupportImpl
supportsComponentCheckConstraints
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.dialect.aggregate.AggregateSupport
aggregateComponentAssignmentExpression, aggregateComponentCustomReadExpression
-
Field Details
-
INSTANCE
-
JSON_INSTANCE
-
-
Constructor Details
-
DB2AggregateSupport
public DB2AggregateSupport(boolean jsonSupport)
-
-
Method Details
-
aggregateComponentCustomReadExpression
public String aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, int aggregateColumnTypeCode, SqlTypedMapping column, TypeConfiguration typeConfiguration) Description copied from interface:AggregateSupport
Returns the custom read expression to use forcolumn
. Replaces the givenplaceholder
in the giventemplate
by the custom read expression to use forcolumn
.- Specified by:
aggregateComponentCustomReadExpression
in interfaceAggregateSupport
- Overrides:
aggregateComponentCustomReadExpression
in classAggregateSupportImpl
- Parameters:
template
- The custom read expression template of the columnplaceholder
- The placeholder to replace with the actual read expressionaggregateParentReadExpression
- The expression to the aggregate column, which contains the columncolumnExpression
- The column within the aggregate type, for which to return the read expressionaggregateColumnTypeCode
- The SQL type code of the aggregate columncolumn
- The column within the aggregate type, for which to return the read expressiontypeConfiguration
- The type configuration
-
aggregateComponentAssignmentExpression
public String aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, int aggregateColumnTypeCode, Column column) Description copied from interface:AggregateSupport
Returns the assignment expression to use forcolumn
, which is part of the aggregate type ofaggregatePath
.- Specified by:
aggregateComponentAssignmentExpression
in interfaceAggregateSupport
- Overrides:
aggregateComponentAssignmentExpression
in classAggregateSupportImpl
- Parameters:
aggregateParentAssignmentExpression
- The expression to the aggregate column, which contains the columncolumnExpression
- The column within the aggregate type, for which to return the assignment expressionaggregateColumnTypeCode
- The SQL type code of the aggregate columncolumn
- The column within the aggregate type, for which to return the assignment expression
-
aggregateCustomWriteExpression
public String aggregateCustomWriteExpression(AggregateColumn aggregateColumn, List<Column> aggregatedColumns) Description copied from interface:AggregateSupport
Returns the custom write expression to use for an aggregate column of the given column type, containing the given aggregated columns.- Specified by:
aggregateCustomWriteExpression
in interfaceAggregateSupport
- Overrides:
aggregateCustomWriteExpression
in classAggregateSupportImpl
- Parameters:
aggregateColumn
- The type information for the aggregate columnaggregatedColumns
- The columns of the aggregate type
-
aggregateComponentSqlTypeCode
public int aggregateComponentSqlTypeCode(int aggregateColumnSqlTypeCode, int columnSqlTypeCode) Description copied from interface:AggregateSupport
Returns theSqlTypes
type code to use for the given column type code, when aggregated within a column of the given aggregate column type code. Allows to change types when a database does not allow to use certain types within an aggregate type, like DB2 doesn't allow the use ofboolean
within an object/struct type.- Specified by:
aggregateComponentSqlTypeCode
in interfaceAggregateSupport
- Overrides:
aggregateComponentSqlTypeCode
in classAggregateSupportImpl
- Parameters:
aggregateColumnSqlTypeCode
- TheSqlTypes
type code of the aggregate columncolumnSqlTypeCode
- TheSqlTypes
type code of the column
-
requiresAggregateCustomWriteExpressionRenderer
public boolean requiresAggregateCustomWriteExpressionRenderer(int aggregateSqlTypeCode) Description copied from interface:AggregateSupport
WhetherAggregateSupport.aggregateCustomWriteExpressionRenderer(SelectableMapping, SelectableMapping[], TypeConfiguration)
is needed when assigning an expression to individual aggregated columns in an update statement.- Specified by:
requiresAggregateCustomWriteExpressionRenderer
in interfaceAggregateSupport
- Overrides:
requiresAggregateCustomWriteExpressionRenderer
in classAggregateSupportImpl
-
aggregateCustomWriteExpressionRenderer
public AggregateSupport.WriteExpressionRenderer aggregateCustomWriteExpressionRenderer(SelectableMapping aggregateColumn, SelectableMapping[] columnsToUpdate, TypeConfiguration typeConfiguration) - Specified by:
aggregateCustomWriteExpressionRenderer
in interfaceAggregateSupport
- Overrides:
aggregateCustomWriteExpressionRenderer
in classAggregateSupportImpl
- Parameters:
aggregateColumn
- The mapping of the aggregate columncolumnsToUpdate
- The mappings of the columns that should be updatedtypeConfiguration
- The type configuration
-
preferSelectAggregateMapping
public boolean preferSelectAggregateMapping(int aggregateSqlTypeCode) Description copied from interface:AggregateSupport
Whether to prefer selecting the aggregate column as a whole instead of individual parts.- Specified by:
preferSelectAggregateMapping
in interfaceAggregateSupport
- Overrides:
preferSelectAggregateMapping
in classAggregateSupportImpl
-
preferBindAggregateMapping
public boolean preferBindAggregateMapping(int aggregateSqlTypeCode) Description copied from interface:AggregateSupport
Whether to prefer binding the aggregate column as a whole instead of individual parts.- Specified by:
preferBindAggregateMapping
in interfaceAggregateSupport
- Overrides:
preferBindAggregateMapping
in classAggregateSupportImpl
-
aggregateAuxiliaryDatabaseObjects
public List<AuxiliaryDatabaseObject> aggregateAuxiliaryDatabaseObjects(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns) Description copied from interface:AggregateSupport
Allows to generate auxiliary database objects for an aggregate type.- Specified by:
aggregateAuxiliaryDatabaseObjects
in interfaceAggregateSupport
- Overrides:
aggregateAuxiliaryDatabaseObjects
in classAggregateSupportImpl
-