Package org.hibernate.dialect.aggregate
Class OracleAggregateSupport
java.lang.Object
org.hibernate.dialect.aggregate.AggregateSupportImpl
org.hibernate.dialect.aggregate.OracleAggregateSupport
- 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 inherited from class org.hibernate.dialect.aggregate.AggregateSupportImpl
INSTANCE
-
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
.aggregateCustomWriteExpressionRenderer
(SelectableMapping aggregateColumn, SelectableMapping[] columnsToUpdate, TypeConfiguration typeConfiguration) boolean
requiresAggregateCustomWriteExpressionRenderer
(int aggregateSqlTypeCode) WhetherAggregateSupport.aggregateCustomWriteExpressionRenderer(SelectableMapping, SelectableMapping[], TypeConfiguration)
is needed when assigning an expression to individual aggregated columns in an update statement.boolean
Returns whether the database supports the use of a check constraint on tables, to implement not-null and other constraints of an aggregate type.static AggregateSupport
Methods inherited from class org.hibernate.dialect.aggregate.AggregateSupportImpl
aggregateComponentSqlTypeCode, aggregateCustomWriteExpression, preferBindAggregateMapping, preferSelectAggregateMapping
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
-
Method Details
-
valueOf
-
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
-
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
-
supportsComponentCheckConstraints
public boolean supportsComponentCheckConstraints()Description copied from interface:AggregateSupport
Returns whether the database supports the use of a check constraint on tables, to implement not-null and other constraints of an aggregate type.- Specified by:
supportsComponentCheckConstraints
in interfaceAggregateSupport
- Overrides:
supportsComponentCheckConstraints
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
-