Package org.hibernate.dialect.aggregate
Class OracleAggregateSupport
- java.lang.Object
-
- org.hibernate.dialect.aggregate.AggregateSupportImpl
-
- org.hibernate.dialect.aggregate.OracleAggregateSupport
-
- All Implemented Interfaces:
AggregateSupport
public class OracleAggregateSupport extends AggregateSupportImpl
-
-
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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String column, ColumnTypeInformation aggregateColumnType, ColumnTypeInformation columnType)
Returns the assignment expression to use forcolumn
, which is part of the aggregate type ofaggregatePath
.String
aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String column, ColumnTypeInformation aggregateColumnType, ColumnTypeInformation columnType)
Returns the custom read expression to use forcolumn
.AggregateSupport.WriteExpressionRenderer
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
supportsComponentCheckConstraints()
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
valueOf(Dialect dialect)
-
Methods inherited from class org.hibernate.dialect.aggregate.AggregateSupportImpl
aggregateAuxiliaryDatabaseObjects, aggregateComponentSqlTypeCode, aggregateCustomWriteExpression, preferBindAggregateMapping, preferSelectAggregateMapping
-
-
-
-
Method Detail
-
valueOf
public static AggregateSupport valueOf(Dialect dialect)
-
aggregateComponentCustomReadExpression
public String aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String column, ColumnTypeInformation aggregateColumnType, ColumnTypeInformation columnType)
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 columncolumn
- The column within the aggregate type, for which to return the read expressionaggregateColumnType
- The type information for the aggregate columncolumnType
- The type information for the column within the aggregate type
-
aggregateComponentAssignmentExpression
public String aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String column, ColumnTypeInformation aggregateColumnType, ColumnTypeInformation columnType)
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 columncolumn
- The column within the aggregate type, for which to return the assignment expressionaggregateColumnType
- The type information for the aggregate columncolumnType
- The type information for the column within the aggregate type
-
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
-
-