HHH-6485 Add support for @DiscriminatorFormula
This commit is contained in:
parent
ac7feff33a
commit
236ba1d247
|
@ -127,4 +127,20 @@ public final class CollectionHelper {
|
||||||
public static <T> List<T> arrayList(int anticipatedSize) {
|
public static <T> List<T> arrayList(int anticipatedSize) {
|
||||||
return new ArrayList<T>( anticipatedSize );
|
return new ArrayList<T>( anticipatedSize );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean isEmpty(Collection collection) {
|
||||||
|
return collection == null || collection.isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isEmpty(Map map) {
|
||||||
|
return map == null || map.isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isNotEmpty(Collection collection) {
|
||||||
|
return !isEmpty( collection );
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isNotEmpty(Map map) {
|
||||||
|
return !isEmpty( map );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,6 +54,7 @@ public class EntityBinding implements AttributeBindingContainer {
|
||||||
|
|
||||||
private Entity entity;
|
private Entity entity;
|
||||||
private TableSpecification primaryTable;
|
private TableSpecification primaryTable;
|
||||||
|
private String primaryTableName;
|
||||||
private Map<String, TableSpecification> secondaryTables = new HashMap<String, TableSpecification>();
|
private Map<String, TableSpecification> secondaryTables = new HashMap<String, TableSpecification>();
|
||||||
|
|
||||||
private Value<Class<?>> proxyInterfaceType;
|
private Value<Class<?>> proxyInterfaceType;
|
||||||
|
@ -143,16 +144,28 @@ public class EntityBinding implements AttributeBindingContainer {
|
||||||
}
|
}
|
||||||
|
|
||||||
public TableSpecification locateTable(String tableName) {
|
public TableSpecification locateTable(String tableName) {
|
||||||
if ( tableName == null ) {
|
if ( tableName == null || tableName.equals( getPrimaryTableName() ) ) {
|
||||||
return primaryTable;
|
return primaryTable;
|
||||||
}
|
}
|
||||||
|
|
||||||
TableSpecification tableSpec = secondaryTables.get( tableName );
|
TableSpecification tableSpec = secondaryTables.get( tableName );
|
||||||
if ( tableSpec == null ) {
|
if ( tableSpec == null ) {
|
||||||
throw new AssertionFailure( String.format("Unable to find table %s amongst tables %s", tableName, secondaryTables.keySet()) );
|
throw new AssertionFailure(
|
||||||
|
String.format(
|
||||||
|
"Unable to find table %s amongst tables %s",
|
||||||
|
tableName,
|
||||||
|
secondaryTables.keySet()
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return tableSpec;
|
return tableSpec;
|
||||||
}
|
}
|
||||||
|
public String getPrimaryTableName() {
|
||||||
|
return primaryTableName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPrimaryTableName(String primaryTableName) {
|
||||||
|
this.primaryTableName = primaryTableName;
|
||||||
|
}
|
||||||
|
|
||||||
public void addSecondaryTable(String tableName, TableSpecification table) {
|
public void addSecondaryTable(String tableName, TableSpecification table) {
|
||||||
secondaryTables.put( tableName, table );
|
secondaryTables.put( tableName, table );
|
||||||
|
|
|
@ -34,7 +34,7 @@ import org.hibernate.metamodel.relational.state.ColumnRelationalState;
|
||||||
* @author Gavin King
|
* @author Gavin King
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
public class Column extends AbstractSimpleValue implements SimpleValue {
|
public class Column extends AbstractSimpleValue {
|
||||||
private final Identifier columnName;
|
private final Identifier columnName;
|
||||||
private boolean nullable;
|
private boolean nullable;
|
||||||
private boolean unique;
|
private boolean unique;
|
||||||
|
|
|
@ -30,7 +30,7 @@ import org.hibernate.dialect.Dialect;
|
||||||
*
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
public class DerivedValue extends AbstractSimpleValue implements SimpleValue {
|
public class DerivedValue extends AbstractSimpleValue {
|
||||||
private final String expression;
|
private final String expression;
|
||||||
|
|
||||||
public DerivedValue(TableSpecification table, int position, String expression) {
|
public DerivedValue(TableSpecification table, int position, String expression) {
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.jboss.logging.Logger;
|
||||||
|
|
||||||
import org.hibernate.AssertionFailure;
|
import org.hibernate.AssertionFailure;
|
||||||
import org.hibernate.HibernateException;
|
import org.hibernate.HibernateException;
|
||||||
|
import org.hibernate.internal.util.collections.CollectionHelper;
|
||||||
import org.hibernate.metamodel.MetadataSources;
|
import org.hibernate.metamodel.MetadataSources;
|
||||||
import org.hibernate.metamodel.source.MetadataImplementor;
|
import org.hibernate.metamodel.source.MetadataImplementor;
|
||||||
import org.hibernate.metamodel.source.MetadataSourceProcessor;
|
import org.hibernate.metamodel.source.MetadataSourceProcessor;
|
||||||
|
@ -97,7 +98,7 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
|
||||||
index = parseAndUpdateIndex( mappings, index );
|
index = parseAndUpdateIndex( mappings, index );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( index.getAnnotations( PseudoJpaDotNames.DEFAULT_DELIMITED_IDENTIFIERS ) != null ) {
|
if ( CollectionHelper.isNotEmpty( index.getAnnotations( PseudoJpaDotNames.DEFAULT_DELIMITED_IDENTIFIERS ) ) ) {
|
||||||
// todo : this needs to move to AnnotationBindingContext
|
// todo : this needs to move to AnnotationBindingContext
|
||||||
// what happens right now is that specifying this in an orm.xml causes it to effect all orm.xmls
|
// what happens right now is that specifying this in an orm.xml causes it to effect all orm.xmls
|
||||||
metadata.setGloballyQuotedIdentifiers( true );
|
metadata.setGloballyQuotedIdentifiers( true );
|
||||||
|
|
|
@ -49,7 +49,9 @@ public class DiscriminatorSourceImpl implements DiscriminatorSource {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public RelationalValueSource getDiscriminatorRelationalValueSource() {
|
public RelationalValueSource getDiscriminatorRelationalValueSource() {
|
||||||
return new ColumnValuesSourceImpl( entityClass.getDiscriminatorColumnValues() );
|
return entityClass.getDiscriminatorFormula() != null ? entityClass.getDiscriminatorFormula() : new ColumnValuesSourceImpl(
|
||||||
|
entityClass.getDiscriminatorColumnValues()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -56,6 +56,7 @@ import org.hibernate.metamodel.source.annotations.JPADotNames;
|
||||||
import org.hibernate.metamodel.source.annotations.JandexHelper;
|
import org.hibernate.metamodel.source.annotations.JandexHelper;
|
||||||
import org.hibernate.metamodel.source.annotations.attribute.ColumnValues;
|
import org.hibernate.metamodel.source.annotations.attribute.ColumnValues;
|
||||||
import org.hibernate.metamodel.source.binder.ConstraintSource;
|
import org.hibernate.metamodel.source.binder.ConstraintSource;
|
||||||
|
import org.hibernate.metamodel.source.binder.DerivedValueSource;
|
||||||
import org.hibernate.metamodel.source.binder.TableSource;
|
import org.hibernate.metamodel.source.binder.TableSource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -96,6 +97,7 @@ public class EntityClass extends ConfiguredClass {
|
||||||
private String proxy;
|
private String proxy;
|
||||||
|
|
||||||
private ColumnValues discriminatorColumnValues;
|
private ColumnValues discriminatorColumnValues;
|
||||||
|
private DerivedValueSource discriminatorFormula;
|
||||||
private Class<?> discriminatorType;
|
private Class<?> discriminatorType;
|
||||||
private String discriminatorMatchValue;
|
private String discriminatorMatchValue;
|
||||||
private boolean isDiscriminatorForced = true;
|
private boolean isDiscriminatorForced = true;
|
||||||
|
@ -144,6 +146,10 @@ public class EntityClass extends ConfiguredClass {
|
||||||
return discriminatorColumnValues;
|
return discriminatorColumnValues;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public DerivedValueSource getDiscriminatorFormula() {
|
||||||
|
return discriminatorFormula;
|
||||||
|
}
|
||||||
|
|
||||||
public Class<?> getDiscriminatorType() {
|
public Class<?> getDiscriminatorType() {
|
||||||
return discriminatorType;
|
return discriminatorType;
|
||||||
}
|
}
|
||||||
|
@ -339,10 +345,22 @@ public class EntityClass extends ConfiguredClass {
|
||||||
final AnnotationInstance discriminatorColumnAnnotation = JandexHelper.getSingleAnnotation(
|
final AnnotationInstance discriminatorColumnAnnotation = JandexHelper.getSingleAnnotation(
|
||||||
getClassInfo(), JPADotNames.DISCRIMINATOR_COLUMN
|
getClassInfo(), JPADotNames.DISCRIMINATOR_COLUMN
|
||||||
);
|
);
|
||||||
discriminatorColumnValues = new ColumnValues( discriminatorColumnAnnotation );
|
|
||||||
discriminatorColumnValues.setNullable( false ); // discriminator column cannot be null
|
final AnnotationInstance discriminatorFormulaAnnotation = JandexHelper.getSingleAnnotation(
|
||||||
|
getClassInfo(),
|
||||||
|
HibernateDotNames.DISCRIMINATOR_FORMULA
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
Class<?> type = String.class; // string is the discriminator default
|
Class<?> type = String.class; // string is the discriminator default
|
||||||
|
if ( discriminatorFormulaAnnotation != null ) {
|
||||||
|
String expression = JandexHelper.getValue( discriminatorFormulaAnnotation, "value", String.class );
|
||||||
|
discriminatorFormula = new FormulaImpl( getPrimaryTableSource().getExplicitTableName(), expression );
|
||||||
|
}
|
||||||
|
discriminatorColumnValues = new ColumnValues( null ); //(stliu) give null here, will populate values below
|
||||||
|
discriminatorColumnValues.setNullable( false ); // discriminator column cannot be null
|
||||||
if ( discriminatorColumnAnnotation != null ) {
|
if ( discriminatorColumnAnnotation != null ) {
|
||||||
|
|
||||||
DiscriminatorType discriminatorType = Enum.valueOf(
|
DiscriminatorType discriminatorType = Enum.valueOf(
|
||||||
DiscriminatorType.class, discriminatorColumnAnnotation.value( "discriminatorType" ).asEnum()
|
DiscriminatorType.class, discriminatorColumnAnnotation.value( "discriminatorType" ).asEnum()
|
||||||
);
|
);
|
||||||
|
@ -378,13 +396,14 @@ public class EntityClass extends ConfiguredClass {
|
||||||
Integer.class
|
Integer.class
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
if ( discriminatorColumnAnnotation.value( "columnDefinition" ) != null ) {
|
|
||||||
discriminatorColumnValues.setColumnDefinition(
|
discriminatorColumnValues.setColumnDefinition(
|
||||||
discriminatorColumnAnnotation.value( "columnDefinition" )
|
JandexHelper.getValue(
|
||||||
.asString()
|
discriminatorColumnAnnotation,
|
||||||
|
"columnDefinition",
|
||||||
|
String.class
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
discriminatorType = type;
|
discriminatorType = type;
|
||||||
|
|
||||||
AnnotationInstance discriminatorOptionsAnnotation = JandexHelper.getSingleAnnotation(
|
AnnotationInstance discriminatorOptionsAnnotation = JandexHelper.getSingleAnnotation(
|
||||||
|
@ -547,58 +566,30 @@ public class EntityClass extends ConfiguredClass {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* todo see {@code Binder#createTable}
|
||||||
* @param tableAnnotation a annotation instance, either {@link javax.persistence.Table} or {@link javax.persistence.SecondaryTable}
|
* @param tableAnnotation a annotation instance, either {@link javax.persistence.Table} or {@link javax.persistence.SecondaryTable}
|
||||||
*
|
*
|
||||||
* @return A table source for the specified annotation instance
|
* @return A table source for the specified annotation instance
|
||||||
*/
|
*/
|
||||||
private TableSource createTableSource(AnnotationInstance tableAnnotation) {
|
private TableSource createTableSource(AnnotationInstance tableAnnotation) {
|
||||||
String schema = getLocalBindingContext().getMappingDefaults().getSchemaName();
|
String schema = null;
|
||||||
String catalog = getLocalBindingContext().getMappingDefaults().getCatalogName();
|
String catalog = null;
|
||||||
|
|
||||||
|
|
||||||
if ( tableAnnotation != null ) {
|
if ( tableAnnotation != null ) {
|
||||||
final AnnotationValue schemaValue = tableAnnotation.value( "schema" );
|
schema = JandexHelper.getValue( tableAnnotation, "schema", String.class );
|
||||||
if ( schemaValue != null ) {
|
catalog = JandexHelper.getValue( tableAnnotation, "catalog", String.class );
|
||||||
schema = schemaValue.asString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final AnnotationValue catalogValue = tableAnnotation.value( "catalog" );
|
|
||||||
if ( catalogValue != null ) {
|
|
||||||
catalog = catalogValue.asString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( getLocalBindingContext().isGloballyQuotedIdentifiers() ) {
|
|
||||||
schema = StringHelper.quote( schema );
|
|
||||||
catalog = StringHelper.quote( catalog );
|
|
||||||
}
|
|
||||||
|
|
||||||
// process the table name
|
// process the table name
|
||||||
String tableName = null;
|
String tableName = null;
|
||||||
String explicitTableName = null;
|
String logicalTableName = null;
|
||||||
|
|
||||||
if ( tableAnnotation != null ) {
|
if ( tableAnnotation != null ) {
|
||||||
explicitTableName = JandexHelper.getValue( tableAnnotation, "name", String.class );
|
logicalTableName = JandexHelper.getValue( tableAnnotation, "name", String.class );
|
||||||
if ( StringHelper.isNotEmpty( explicitTableName ) ) {
|
if ( StringHelper.isNotEmpty( logicalTableName ) ) {
|
||||||
tableName = getLocalBindingContext().getNamingStrategy().tableName( explicitTableName );
|
tableName = logicalTableName;
|
||||||
if ( getLocalBindingContext().isGloballyQuotedIdentifiers() && !Identifier.isQuoted( explicitTableName ) ) {
|
|
||||||
tableName = StringHelper.quote( tableName );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
createUniqueConstraints( tableAnnotation, tableName );
|
createUniqueConstraints( tableAnnotation, tableName );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// use the simple table name as default in case there was no table annotation
|
|
||||||
if ( tableName == null ) {
|
|
||||||
if ( explicitEntityName == null ) {
|
|
||||||
tableName = getConfiguredClass().getSimpleName();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
tableName = explicitEntityName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
TableSourceImpl tableSourceImpl;
|
TableSourceImpl tableSourceImpl;
|
||||||
if ( tableAnnotation == null || JPADotNames.TABLE.equals( tableAnnotation.name() ) ) {
|
if ( tableAnnotation == null || JPADotNames.TABLE.equals( tableAnnotation.name() ) ) {
|
||||||
// for the main table @Table we use 'null' as logical name
|
// for the main table @Table we use 'null' as logical name
|
||||||
|
@ -606,24 +597,29 @@ public class EntityClass extends ConfiguredClass {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// for secondary tables a name must be specified which is used as logical table name
|
// for secondary tables a name must be specified which is used as logical table name
|
||||||
tableSourceImpl = new TableSourceImpl( schema, catalog, tableName, explicitTableName );
|
tableSourceImpl = new TableSourceImpl( schema, catalog, tableName, logicalTableName );
|
||||||
}
|
}
|
||||||
return tableSourceImpl;
|
return tableSourceImpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Set<TableSource> createSecondaryTableSources() {
|
private Set<TableSource> createSecondaryTableSources() {
|
||||||
Set<TableSource> secondaryTableSources = new HashSet<TableSource>();
|
Set<TableSource> secondaryTableSources = new HashSet<TableSource>();
|
||||||
|
|
||||||
// collect all @secondaryTable annotations
|
|
||||||
List<AnnotationInstance> secondaryTableAnnotations = new ArrayList<AnnotationInstance>();
|
|
||||||
secondaryTableAnnotations.add(
|
|
||||||
JandexHelper.getSingleAnnotation( getClassInfo(), JPADotNames.SECONDARY_TABLE )
|
|
||||||
);
|
|
||||||
|
|
||||||
AnnotationInstance secondaryTables = JandexHelper.getSingleAnnotation(
|
AnnotationInstance secondaryTables = JandexHelper.getSingleAnnotation(
|
||||||
getClassInfo(),
|
getClassInfo(),
|
||||||
JPADotNames.SECONDARY_TABLES
|
JPADotNames.SECONDARY_TABLES
|
||||||
);
|
);
|
||||||
|
AnnotationInstance secondaryTable = JandexHelper.getSingleAnnotation(
|
||||||
|
getClassInfo(),
|
||||||
|
JPADotNames.SECONDARY_TABLE
|
||||||
|
);
|
||||||
|
// collect all @secondaryTable annotations
|
||||||
|
List<AnnotationInstance> secondaryTableAnnotations = new ArrayList<AnnotationInstance>();
|
||||||
|
if ( secondaryTable != null ) {
|
||||||
|
secondaryTableAnnotations.add(
|
||||||
|
secondaryTable
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if ( secondaryTables != null ) {
|
if ( secondaryTables != null ) {
|
||||||
secondaryTableAnnotations.addAll(
|
secondaryTableAnnotations.addAll(
|
||||||
Arrays.asList(
|
Arrays.asList(
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
package org.hibernate.metamodel.source.annotations.entity;
|
||||||
|
|
||||||
|
import org.hibernate.metamodel.source.binder.DerivedValueSource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Strong Liu
|
||||||
|
*/
|
||||||
|
public class FormulaImpl implements DerivedValueSource{
|
||||||
|
private String tableName;
|
||||||
|
private final String expression;
|
||||||
|
|
||||||
|
FormulaImpl(String tableName, String expression) {
|
||||||
|
this.tableName = tableName;
|
||||||
|
this.expression = expression;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getExpression() {
|
||||||
|
return expression;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getContainingTableName() {
|
||||||
|
return tableName;
|
||||||
|
}
|
||||||
|
}
|
|
@ -269,7 +269,7 @@ public class Binder {
|
||||||
final EntityBinding entityBinding = buildBasicEntityBinding( entitySource, superEntityBinding );
|
final EntityBinding entityBinding = buildBasicEntityBinding( entitySource, superEntityBinding );
|
||||||
|
|
||||||
entityBinding.setPrimaryTable( superEntityBinding.getPrimaryTable() );
|
entityBinding.setPrimaryTable( superEntityBinding.getPrimaryTable() );
|
||||||
|
entityBinding.setPrimaryTableName( superEntityBinding.getPrimaryTableName() );
|
||||||
bindDiscriminatorValue( entitySource, entityBinding );
|
bindDiscriminatorValue( entitySource, entityBinding );
|
||||||
|
|
||||||
return entityBinding;
|
return entityBinding;
|
||||||
|
@ -439,7 +439,9 @@ public class Binder {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void bindPersistentCollection(PluralAttributeSource attributeSource, AttributeBindingContainer attributeBindingContainer) {
|
private void bindPersistentCollection(PluralAttributeSource attributeSource, AttributeBindingContainer attributeBindingContainer) {
|
||||||
final PluralAttribute existingAttribute = attributeBindingContainer.getAttributeContainer().locatePluralAttribute( attributeSource.getName() );
|
final PluralAttribute existingAttribute = attributeBindingContainer.getAttributeContainer().locatePluralAttribute(
|
||||||
|
attributeSource.getName()
|
||||||
|
);
|
||||||
final AbstractPluralAttributeBinding pluralAttributeBinding;
|
final AbstractPluralAttributeBinding pluralAttributeBinding;
|
||||||
|
|
||||||
if ( attributeSource.getPluralAttributeNature() == PluralAttributeNature.BAG ) {
|
if ( attributeSource.getPluralAttributeNature() == PluralAttributeNature.BAG ) {
|
||||||
|
@ -471,7 +473,9 @@ public class Binder {
|
||||||
private BasicAttributeBinding doBasicSingularAttributeBindingCreation(
|
private BasicAttributeBinding doBasicSingularAttributeBindingCreation(
|
||||||
SingularAttributeSource attributeSource,
|
SingularAttributeSource attributeSource,
|
||||||
AttributeBindingContainer attributeBindingContainer) {
|
AttributeBindingContainer attributeBindingContainer) {
|
||||||
final SingularAttribute existingAttribute = attributeBindingContainer.getAttributeContainer().locateSingularAttribute( attributeSource.getName() );
|
final SingularAttribute existingAttribute = attributeBindingContainer.getAttributeContainer().locateSingularAttribute(
|
||||||
|
attributeSource.getName()
|
||||||
|
);
|
||||||
final SingularAttribute attribute;
|
final SingularAttribute attribute;
|
||||||
if ( existingAttribute != null ) {
|
if ( existingAttribute != null ) {
|
||||||
attribute = existingAttribute;
|
attribute = existingAttribute;
|
||||||
|
@ -641,6 +645,7 @@ public class Binder {
|
||||||
final TableSource tableSource = entitySource.getPrimaryTable();
|
final TableSource tableSource = entitySource.getPrimaryTable();
|
||||||
final Table table = createTable( entityBinding, tableSource );
|
final Table table = createTable( entityBinding, tableSource );
|
||||||
entityBinding.setPrimaryTable( table );
|
entityBinding.setPrimaryTable( table );
|
||||||
|
entityBinding.setPrimaryTableName( table.getTableName().getName() );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void bindSecondaryTables(EntitySource entitySource, EntityBinding entityBinding) {
|
private void bindSecondaryTables(EntitySource entitySource, EntityBinding entityBinding) {
|
||||||
|
@ -653,12 +658,12 @@ public class Binder {
|
||||||
private Table createTable(EntityBinding entityBinding, TableSource tableSource) {
|
private Table createTable(EntityBinding entityBinding, TableSource tableSource) {
|
||||||
final String schemaName = StringHelper.isEmpty( tableSource.getExplicitSchemaName() )
|
final String schemaName = StringHelper.isEmpty( tableSource.getExplicitSchemaName() )
|
||||||
? currentBindingContext.getMappingDefaults().getSchemaName()
|
? currentBindingContext.getMappingDefaults().getSchemaName()
|
||||||
: currentBindingContext.getMetadataImplementor().getOptions().isGloballyQuotedIdentifiers()
|
: currentBindingContext.isGloballyQuotedIdentifiers()
|
||||||
? StringHelper.quote( tableSource.getExplicitSchemaName() )
|
? StringHelper.quote( tableSource.getExplicitSchemaName() )
|
||||||
: tableSource.getExplicitSchemaName();
|
: tableSource.getExplicitSchemaName();
|
||||||
final String catalogName = StringHelper.isEmpty( tableSource.getExplicitCatalogName() )
|
final String catalogName = StringHelper.isEmpty( tableSource.getExplicitCatalogName() )
|
||||||
? currentBindingContext.getMappingDefaults().getCatalogName()
|
? currentBindingContext.getMappingDefaults().getCatalogName()
|
||||||
: currentBindingContext.getMetadataImplementor().getOptions().isGloballyQuotedIdentifiers()
|
: currentBindingContext.isGloballyQuotedIdentifiers()
|
||||||
? StringHelper.quote( tableSource.getExplicitCatalogName() )
|
? StringHelper.quote( tableSource.getExplicitCatalogName() )
|
||||||
: tableSource.getExplicitCatalogName();
|
: tableSource.getExplicitCatalogName();
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
*/
|
*/
|
||||||
package org.hibernate.metamodel.source.annotations.entity;
|
package org.hibernate.metamodel.source.annotations.entity;
|
||||||
|
|
||||||
|
import javax.persistence.DiscriminatorColumn;
|
||||||
|
import javax.persistence.DiscriminatorType;
|
||||||
import javax.persistence.DiscriminatorValue;
|
import javax.persistence.DiscriminatorValue;
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.Entity;
|
||||||
import javax.persistence.GeneratedValue;
|
import javax.persistence.GeneratedValue;
|
||||||
|
@ -30,9 +32,12 @@ import javax.persistence.Id;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import org.hibernate.annotations.DiscriminatorFormula;
|
||||||
import org.hibernate.annotations.DiscriminatorOptions;
|
import org.hibernate.annotations.DiscriminatorOptions;
|
||||||
import org.hibernate.metamodel.binding.EntityBinding;
|
import org.hibernate.metamodel.binding.EntityBinding;
|
||||||
import org.hibernate.metamodel.binding.EntityDiscriminator;
|
import org.hibernate.metamodel.binding.EntityDiscriminator;
|
||||||
|
import org.hibernate.metamodel.relational.DerivedValue;
|
||||||
|
import org.hibernate.metamodel.relational.SimpleValue;
|
||||||
|
|
||||||
import static junit.framework.Assert.assertEquals;
|
import static junit.framework.Assert.assertEquals;
|
||||||
import static junit.framework.Assert.assertFalse;
|
import static junit.framework.Assert.assertFalse;
|
||||||
|
@ -114,6 +119,22 @@ public class InheritanceBindingTest extends BaseAnnotationBindingTestCase {
|
||||||
assertFalse( "Wrong default value", discriminator.isInserted() );
|
assertFalse( "Wrong default value", discriminator.isInserted() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Resources(annotatedClasses = { Fruit.class, Apple.class })
|
||||||
|
public void testDiscriminatorFormula() {
|
||||||
|
EntityBinding rootEntityBinding = getEntityBinding( Fruit.class );
|
||||||
|
assertTrue( rootEntityBinding.isRoot() );
|
||||||
|
EntityBinding entityBinding = getEntityBinding( Apple.class );
|
||||||
|
assertFalse( entityBinding.isRoot() );
|
||||||
|
EntityDiscriminator discriminator = rootEntityBinding.getHierarchyDetails().getEntityDiscriminator();
|
||||||
|
SimpleValue simpleValue = discriminator.getBoundValue();
|
||||||
|
assertTrue( simpleValue instanceof DerivedValue);
|
||||||
|
DerivedValue derivedValue = (DerivedValue)simpleValue;
|
||||||
|
assertEquals( "case when zik_type is null then 0 else zik_type end", derivedValue.getExpression() );
|
||||||
|
assertTrue( "Wrong default value", discriminator.isForced() );
|
||||||
|
assertFalse( "Wrong default value", discriminator.isInserted() );
|
||||||
|
}
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
class SingleEntity {
|
class SingleEntity {
|
||||||
@Id
|
@Id
|
||||||
|
@ -144,6 +165,21 @@ public class InheritanceBindingTest extends BaseAnnotationBindingTestCase {
|
||||||
@Entity
|
@Entity
|
||||||
class Jump extends Base {
|
class Jump extends Base {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
@DiscriminatorColumn(discriminatorType = DiscriminatorType.INTEGER)
|
||||||
|
@DiscriminatorFormula("case when zik_type is null then 0 else zik_type end")
|
||||||
|
@DiscriminatorOptions(force = true, insert = false)
|
||||||
|
class Fruit {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity
|
||||||
|
class Apple extends Fruit {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue