Hibernate SVN: r21053 - annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias and 1 other directories.
by hibernate-commits@lists.jboss.org
Author: brmeyer
Date: 2012-08-27 11:35:44 -0400 (Mon, 27 Aug 2012)
New Revision: 21053
Added:
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ATable.java
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/CollectionAliasTest.java
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ReorderedMappingsCollectionAliasTest.java
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableA.java
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableB.java
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableBId.java
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/persister/collection/AbstractCollectionPersister.java
Log:
JBPAPP-9745 Aliases for a collection key and element column can collide causing one to be excluded
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ATable.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ATable.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ATable.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,119 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.persistence.CascadeType;
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.Id;
+import javax.persistence.OneToMany;
+
+/**
+ * @author Dave Stephan
+ */
+@Entity
+public class ATable implements Serializable
+{
+ private Integer firstId;
+
+ private List<TableB> tablebs = new ArrayList<TableB>();
+
+ public ATable()
+ {
+ }
+
+ /** minimal constructor */
+ public ATable(Integer firstId)
+ {
+ this.firstId = firstId;
+ }
+
+ @Id
+ @Column(name = "idcolumn", nullable = false)
+ public Integer getFirstId()
+ {
+ return this.firstId;
+ }
+
+ public void setFirstId(Integer firstId)
+ {
+ this.firstId = firstId;
+ }
+
+ @Override
+ public int hashCode()
+ {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((firstId == null) ? 0 : firstId.hashCode());
+ result = prime * result + ((tablebs == null) ? 0 : tablebs.hashCode());
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object obj)
+ {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ ATable other = (ATable) obj;
+ if (firstId == null)
+ {
+ if (other.firstId != null)
+ return false;
+ }
+ else if (!firstId.equals(other.firstId))
+ return false;
+ if (tablebs == null)
+ {
+ if (other.tablebs != null)
+ return false;
+ }
+ else if (!tablebs.equals(other.tablebs))
+ return false;
+ return true;
+ }
+
+
+ @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "tablea")
+ public List<TableB> getTablebs()
+ {
+ return tablebs;
+ }
+
+ public void setTablebs(List<TableB> tablebs)
+ {
+ this.tablebs = tablebs;
+ }
+
+
+}
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/CollectionAliasTest.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/CollectionAliasTest.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/CollectionAliasTest.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,71 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+import org.hibernate.Session;
+import org.hibernate.test.annotations.TestCase;
+
+/**
+ * @author Dave Stephan
+ * @author Gail Badner
+ * @author Brett Meyer
+ */
+public class CollectionAliasTest extends TestCase {
+
+ public void testCollectionAlias() {
+ Session s = openSession();
+ s.getTransaction().begin();
+ ATable aTable = new ATable( 1 );
+ TableB tableB = new TableB(
+ new TableBId( 1, "a", "b" )
+ );
+ aTable.getTablebs().add( tableB );
+ tableB.setTablea( aTable );
+ s.save( aTable );
+ s.getTransaction().commit();
+ s.close();
+
+ s = openSession();
+ aTable = (ATable) s.createQuery( "select distinct tablea from ATable tablea LEFT JOIN FETCH tablea.tablebs " ).uniqueResult();
+ assertEquals( new Integer( 1 ), aTable.getFirstId() );
+ assertEquals( 1, aTable.getTablebs().size() );
+ tableB = aTable.getTablebs().get( 0 );
+ assertSame( aTable, tableB.getTablea() );
+ assertEquals( new Integer( 1 ), tableB.getId().getFirstId() );
+ assertEquals( "a", tableB.getId().getSecondId() );
+ assertEquals( "b", tableB.getId().getThirdId() );
+ s.close();
+ }
+
+ @Override
+ protected Class[] getMappings() {
+ return new Class[] {
+ TableBId.class,
+ TableB.class,
+ TableA.class,
+ ATable.class
+ };
+ }
+
+}
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ReorderedMappingsCollectionAliasTest.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ReorderedMappingsCollectionAliasTest.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/ReorderedMappingsCollectionAliasTest.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,45 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+/**
+ * The bug fixed by HHH-7545 showed showed different results depending on the order
+ * in which entity mappings were processed.
+ *
+ * This mappings are in the opposite order here than in CollectionAliasTest.
+ *
+ * @Author Gail Badner
+ */
+public class ReorderedMappingsCollectionAliasTest extends CollectionAliasTest {
+
+ @Override
+ protected Class[] getMappings() {
+ return new Class[] {
+ ATable.class,
+ TableA.class,
+ TableB.class,
+ TableBId.class,
+ };
+ }
+}
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableA.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableA.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableA.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,113 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+
+/**
+ * @author Dave Stephan
+ */
+@Entity
+public class TableA
+{
+ @Id
+ private int id;
+
+ private String test;
+
+ private String test2;
+
+ @Override
+ public int hashCode()
+ {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + id;
+ result = prime * result + ((test == null) ? 0 : test.hashCode());
+ result = prime * result + ((test2 == null) ? 0 : test2.hashCode());
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object obj)
+ {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ TableA other = (TableA) obj;
+ if (id != other.id)
+ return false;
+ if (test == null)
+ {
+ if (other.test != null)
+ return false;
+ }
+ else if (!test.equals(other.test))
+ return false;
+ if (test2 == null)
+ {
+ if (other.test2 != null)
+ return false;
+ }
+ else if (!test2.equals(other.test2))
+ return false;
+ return true;
+ }
+
+ public String getTest2()
+ {
+ return test2;
+ }
+
+ public void setTest2(String test2)
+ {
+ this.test2 = test2;
+ }
+
+ public String getTest()
+ {
+ return test;
+ }
+
+ public void setTest(String test)
+ {
+ this.test = test;
+ }
+
+ public int getId()
+ {
+ return id;
+ }
+
+ public void setId(int id)
+ {
+ this.id = id;
+ }
+
+
+}
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableB.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableB.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableB.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,118 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+import java.io.Serializable;
+
+import javax.persistence.AttributeOverride;
+import javax.persistence.AttributeOverrides;
+import javax.persistence.Column;
+import javax.persistence.EmbeddedId;
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.JoinColumn;
+import javax.persistence.JoinColumns;
+import javax.persistence.ManyToOne;
+
+/**
+ * @author Dave Stephan
+ */
+@Entity
+public class TableB implements Serializable
+{
+
+ private TableBId id;
+
+ private ATable tablea;
+
+ public TableB() {
+ }
+
+ /** full constructor */
+ public TableB(TableBId id) {
+ this.id = id;
+ }
+
+ // Property accessors
+ @EmbeddedId
+ @AttributeOverrides( {
+ @AttributeOverride(name = "firstId", column = @Column(name = "idcolumn", nullable = false)),
+ @AttributeOverride(name = "secondId", column = @Column(name = "idcolumn_second", nullable = false, length = 50)),
+ @AttributeOverride(name = "thirdId", column = @Column(name = "thirdcolumn", nullable = false, length = 20)) })
+ public TableBId getId() {
+ return this.id;
+ }
+
+ @Override
+ public int hashCode()
+ {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((id == null) ? 0 : id.hashCode());
+ result = prime * result + ((tablea == null) ? 0 : tablea.hashCode());
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object obj)
+ {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ TableB other = (TableB) obj;
+ if (id == null)
+ {
+ if (other.id != null)
+ return false;
+ }
+ else if (!id.equals(other.id))
+ return false;
+ if (tablea == null)
+ {
+ if (other.tablea != null)
+ return false;
+ }
+ else if (!tablea.equals(other.tablea))
+ return false;
+ return true;
+ }
+
+ public void setId(TableBId id) {
+ this.id = id;
+ }
+
+ @ManyToOne(fetch = FetchType.LAZY)
+ @JoinColumns( { @JoinColumn(name = "idcolumn", referencedColumnName = "idcolumn", nullable = false, insertable = false, updatable = false) })
+ public ATable getTablea() {
+ return tablea;
+ }
+
+ public void setTablea(ATable tablea) {
+ this.tablea = tablea;
+ }
+
+}
Added: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableBId.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableBId.java (rev 0)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/collectionalias/TableBId.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -0,0 +1,133 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2012, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors. All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA 02110-1301 USA
+ */
+package org.hibernate.test.collectionalias;
+
+import java.io.Serializable;
+
+import javax.persistence.Column;
+import javax.persistence.Embeddable;
+
+/**
+ * @author Dave Stephan
+ */
+@Embeddable
+public class TableBId implements Serializable
+{
+ private static final long serialVersionUID = 1L;
+
+ // Fields
+
+ private Integer firstId;
+
+ private String secondId;
+
+ private String thirdId;
+
+ // Constructors
+
+ /** default constructor */
+ public TableBId() {
+ }
+
+ /** full constructor */
+ public TableBId(Integer firstId, String secondId, String thirdId) {
+ this.firstId = firstId;
+ this.secondId = secondId;
+ this.thirdId = thirdId;
+ }
+
+ // Property accessors
+
+ @Column(name = "idcolumn", nullable = false)
+ public Integer getFirstId() {
+ return this.firstId;
+ }
+
+ public void setFirstId(Integer firstId) {
+ this.firstId = firstId;
+ }
+
+ @Column(name = "idcolumn_second", nullable = false, length = 50)
+ public String getSecondId() {
+ return this.secondId;
+ }
+
+ public void setSecondId(String secondId) {
+ this.secondId = secondId;
+ }
+
+ @Column(name = "thirdcolumn", nullable = false, length = 50)
+ public String getThirdId() {
+ return this.thirdId;
+ }
+
+ public void setThirdId(String thirdId) {
+ this.thirdId = thirdId;
+ }
+
+ @Override
+ public int hashCode()
+ {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((firstId == null) ? 0 : firstId.hashCode());
+ result = prime * result + ((secondId == null) ? 0 : secondId.hashCode());
+ result = prime * result + ((thirdId == null) ? 0 : thirdId.hashCode());
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object obj)
+ {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ TableBId other = (TableBId) obj;
+ if (firstId == null)
+ {
+ if (other.firstId != null)
+ return false;
+ }
+ else if (!firstId.equals(other.firstId))
+ return false;
+ if (secondId == null)
+ {
+ if (other.secondId != null)
+ return false;
+ }
+ else if (!secondId.equals(other.secondId))
+ return false;
+ if (thirdId == null)
+ {
+ if (other.thirdId != null)
+ return false;
+ }
+ else if (!thirdId.equals(other.thirdId))
+ return false;
+ return true;
+ }
+}
Modified: core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/persister/collection/AbstractCollectionPersister.java
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/persister/collection/AbstractCollectionPersister.java 2012-08-24 14:01:30 UTC (rev 21052)
+++ core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/persister/collection/AbstractCollectionPersister.java 2012-08-27 15:35:44 UTC (rev 21053)
@@ -313,7 +313,7 @@
iter = collection.getElement().getColumnIterator();
while ( iter.hasNext() ) {
Selectable selectable = (Selectable) iter.next();
- elementColumnAliases[j] = selectable.getAlias(dialect);
+ elementColumnAliases[j] = selectable.getAlias(dialect, table);
if ( selectable.isFormula() ) {
Formula form = (Formula) selectable;
elementFormulaTemplates[j] = form.getTemplate(dialect, factory.getSqlFunctionRegistry());
12 years, 8 months
[hibernate/hibernate-orm] 5cdce7: HHH-7549 Moving test resources into src/test/resou...
by GitHub
Branch: refs/heads/metamodel
Home: https://github.com/hibernate/hibernate-orm
Commit: 5cdce758a81b0640e1523048f4501db8423833a4
https://github.com/hibernate/hibernate-orm/commit/5cdce758a81b0640e152304...
Author: Hardy Ferentschik <hardy(a)hibernate.org>
Date: 2012-08-27 (Mon, 27 Aug 2012)
Changed paths:
R hibernate-core/src/test/java/org/hibernate/jmx/Entity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/GeneratedIdColumn.hbm.xml
R hibernate-core/src/test/java/org/hibernate/subclassProxyInterface/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/abstractembeddedcomponents/cid/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/abstractembeddedcomponents/propertyref/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/any/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/any/Properties.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/array/A.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/batch/DataPoint.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/batchfetch/ProductLine.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bidi/Auction.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bidi/Auction2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bidir/onetomany/nonindexed/ParentChildInverseOneToMany.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bidir/onetomany/nonindexed/ParentChildNonInverseOneToMany.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bytecode/Bean.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/Child.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/ChildForParentWithAssignedId.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/DeleteOrphanChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/Job.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/JobBatch.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/MultiPathCascade.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/Parent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/ParentWithAssignedId.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/circle/CascadeMergeToChildBeforeParent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascade.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeDelayedInsert.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/Cacheable.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/cache/BaseClass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/cache/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/cache/SubClass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/cache/hibernate.cfg.xml
R hibernate-core/src/test/java/org/hibernate/test/cfg/orm-serializable.xml
R hibernate-core/src/test/java/org/hibernate/test/cid/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cid/LineItem.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cid/Order.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cid/Product.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cid/PurchaseRecord.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/backref/map/compkey/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/bag/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/custom/basic/UserPermissions.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/custom/parameterized/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/idbag/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/list/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/map/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/original/UserPermissions.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/original/Zoo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/set/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/set/MappingsNonLazy.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/collection/set/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/component/basic/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/component/cascading/toone/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/compositeelement/Parent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/connections/Silly.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/Animal.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/Enrolment.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/Foo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/Order.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/criteria/TestObject.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cuk/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cut/Transaction.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/cut/types.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/deletetransient/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/dialect/function/Product.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/dialect/functional/cache/TestInterSystemsFunctionsClass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/discriminator/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/discriminator/SimpleInheritance.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/dynamicentity/interceptor/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/dynamicentity/tuplizer/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/dynamicentity/tuplizer2/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ecid/Course.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/entitymode/map/basic/ProductLine.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/entitymode/map/subclass/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/entityname/Vehicle.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyListMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/values/ValuesBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/exception/Group.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/exception/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/Employee.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/allinone.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/allseparateinone.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/entitynames.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/packageentitynames.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extendshbm/unionsubclass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/extralazy/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/fetchprofiles/join/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/Category.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/Department.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/LineItem.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/Order.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/Product.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/Salesperson.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/defs.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/hql/Basic.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/hql/Joined.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/filter/hql/filter-defs.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/formulajoin/Master.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generated/ComponentOwner.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generated/GeneratedPropertyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generated/MSSQLGeneratedPropertyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generatedkeys/identity/MyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generatedkeys/select/MyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/generatedkeys/seqidentity/MyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/Animal.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/BooleanLiteralEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/ComponentContainer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/CompositeIdEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/CrazyIdFieldNames.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/EntityWithCrazyCompositeKey.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/FooBarCopy.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/FunctionNamesAsColumns.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/Image.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/KeyManyToOneEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/SimpleEntityWithAssociation.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/VariousKeywordPropertyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/Vehicle.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/hql/Versions.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/Car.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/Plane.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/Product.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/Radio.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/uuid/sqlrep/Node.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/uuid/sqlrep/Node2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/id/uuid/strategy/Node.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idbag/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idclass/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/biginteger/increment/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/biginteger/sequence/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/forcedtable/Basic.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/forcedtable/HiLo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/forcedtable/Pooled.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/sequence/Basic.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/sequence/Dedicated.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/sequence/HiLo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/sequence/Pooled.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/table/Basic.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/table/HiLo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idgen/enhanced/table/Pooled.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/idprops/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/ContractVariation.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariation.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationOneToManyJoin.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationVersioned.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationVersionedOneToManyJoin.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariation.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationOneToManyJoin.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationUnidir.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationVersioned.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationVersionedOneToManyJoin.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/inheritance/SimpleInheritance.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/insertordering/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/instrument/domain/Documents.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/instrument/domain/Problematic.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/instrument/domain/SharedPKOneToOne.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/interceptor/Image.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/interceptor/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/interfaceproxy/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/iterate/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jdbc/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/join/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/join/Thing.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/joinedsubclass/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/joinfetch/ItemBid.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/joinfetch/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/MyEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/Part.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/cascade/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/fetch/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/jpa/naturalid/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/keymanytoone/bidir/component/EagerMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/keymanytoone/bidir/component/LazyMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/keymanytoone/bidir/embedded/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lazycache/Documents.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lazyonetoone/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/ABC.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/ABCExtends.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/ABCProxy.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/AltSimple.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Baz.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Blobber.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Broken.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Category.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Circular.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Commento.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/ComponentNotNullMaster.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Componentizable.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/CompositeIdId.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Container.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Custom.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/CustomSQL.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Eye.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Fee.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Fo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/FooBar.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Fum.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Fumm.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Glarch.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Holder.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/IJ.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/IJ2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Immutable.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Location.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/MainObject.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Many.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Map.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Marelo.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/MasterDetail.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Middle.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Multi.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/MultiExtends.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Nameable.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Object2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/One.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Qux.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Simple.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/SingleSeveral.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Stuff.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/UpDown.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Vetoer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/WZ.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/Wicked.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/legacy/XY.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/ImageMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/LobMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/MaterializedBlobMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/MaterializedClobMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/SerializableMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/lob/TextMappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomany/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomany/batchload/UserGroupBatchLoad.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomany/ordered/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomanyassociationclass/compositeid/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomanyassociationclass/surrogateid/assigned/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/manytomanyassociationclass/surrogateid/generated/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/map/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/mapcompelem/ProductPart.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/mapelemformula/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/mappingexception/InvalidMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/mappingexception/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/mixed/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/namingstrategy/Customers.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/naturalid/immutable/ParentChildWithManyToOne.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/naturalid/immutable/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/naturalid/mutable/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/Competition.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/Employer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/Node.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/OneToOne.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/OptLockEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ondelete/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetomany/Node.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetomany/Parent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetomany/VersionedNode.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/basic/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/formula/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/joined/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/link/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/nopojo/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/optional/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/onetoone/singletable/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/Competition.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/Employer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/Node.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/OneToOne.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/OptLockEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ops/SimpleEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/optlock/Document.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ordered/Search.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/Mail.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/Product.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/fk/bidirectional/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/fk/composite/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/fk/reversed/bidirectional/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/fk/reversed/unidirectional/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/pk/bidirectional/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/orphan/one2one/pk/unidirectional/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/pagination/DataPoint.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/pagination/EntryTag.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/basic/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/cachedcollections/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/component/complete/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/component/partial/Mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/inheritence/discrim/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/inheritence/joined/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/propertyref/inheritence/union/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/proxy/DataPoint.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/querycache/Enrolment.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/querycache/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/queryplan/Joined.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/queryplan/filter-defs.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/readonly/DataPoint.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/readonly/Enrolment.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/readonly/TextHolder.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/readonly/VersionedNode.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/reattachment/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/resulttransformer/Contract.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/rowid/Point.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/1_Version.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/2_Version.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sorted/Search.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/check/oracle-mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/datadirect/oracle/StoredProcedures.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/db2/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/mysql/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/oracle/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/oracle/StoredProcedures.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/sqlserver/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/custom/sybase/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/identity/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/query/NativeSQLQueries.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/sql/hand/quotedidentifiers/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/stateless/Contact.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/stateless/Document.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/stateless/fetching/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/stats/Continent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/stats/Continent2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/subclassfilter/discrim-subclass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/subclassfilter/joined-subclass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/subclassfilter/union-subclass.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/subselect/Beings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/subselectfetch/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/ternary/Ternary.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/timestamp/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/tm/Item.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/typedmanytoone/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/typedonetoone/Customer.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/typeoverride/Entity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/typeparameters/Typedef.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/typeparameters/Widget.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unconstrained/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unidir/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unidir/manytoone/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unidir/onetomany/nonindexed/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unionsubclass/Beings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unionsubclass/alias/mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unionsubclass2/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/Parent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/child.xml
R hibernate-core/src/test/java/org/hibernate/test/version/PersonThing.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/version/db/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/version/sybase/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/where/File.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/jmx/Entity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/metamodel/spi/relational/GeneratedIdColumn.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/subclassProxyInterface/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/abstractembeddedcomponents/cid/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/abstractembeddedcomponents/propertyref/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/any/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/any/Properties.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/array/A.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/batch/DataPoint.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/batchfetch/ProductLine.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/bidi/Auction.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/bidi/Auction2.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/bidir/onetomany/nonindexed/ParentChildInverseOneToMany.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/bidir/onetomany/nonindexed/ParentChildNonInverseOneToMany.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/bytecode/Bean.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/Child.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/ChildForParentWithAssignedId.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/DeleteOrphanChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/Job.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/JobBatch.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/MultiPathCascade.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/Parent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/ParentWithAssignedId.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/circle/CascadeMergeToChildBeforeParent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/circle/MultiPathCircleCascade.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cascade/circle/MultiPathCircleCascadeDelayedInsert.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/Cacheable.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/cache/BaseClass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/cache/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/cache/SubClass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/cache/hibernate.cfg.xml
A hibernate-core/src/test/resources/org/hibernate/test/cfg/orm-serializable.xml
A hibernate-core/src/test/resources/org/hibernate/test/cid/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cid/LineItem.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cid/Order.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cid/Product.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cid/PurchaseRecord.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/backref/map/compkey/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/bag/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/custom/basic/UserPermissions.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/custom/parameterized/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/idbag/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/list/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/map/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/original/UserPermissions.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/original/Zoo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/set/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/set/MappingsNonLazy.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/collection/set/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/component/basic/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/component/cascading/toone/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/compositeelement/Parent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/connections/Silly.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/Animal.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/Enrolment.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/Foo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/Order.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/criteria/TestObject.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cuk/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cut/Transaction.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/cut/types.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/deletetransient/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/dialect/function/Product.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/dialect/functional/cache/TestInterSystemsFunctionsClass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/discriminator/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/discriminator/SimpleInheritance.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/dynamicentity/interceptor/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/dynamicentity/tuplizer/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/dynamicentity/tuplizer2/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ecid/Course.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/entitymode/map/basic/ProductLine.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/entitymode/map/subclass/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/entityname/Vehicle.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyListMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/event/collection/values/ValuesBagMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/exception/Group.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/exception/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/Employee.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/allinone.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/allseparateinone.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/entitynames.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/packageentitynames.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extendshbm/unionsubclass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/extralazy/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/fetchprofiles/join/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/Category.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/Department.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/LineItem.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/Order.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/Product.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/Salesperson.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/defs.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/hql/Basic.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/hql/Joined.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/filter/hql/filter-defs.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/formulajoin/Master.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generated/ComponentOwner.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generated/GeneratedPropertyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generated/MSSQLGeneratedPropertyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generatedkeys/identity/MyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generatedkeys/select/MyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/generatedkeys/seqidentity/MyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/Animal.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/BooleanLiteralEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/ComponentContainer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/CompositeIdEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/CrazyIdFieldNames.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/EntityWithCrazyCompositeKey.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/FooBarCopy.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/FunctionNamesAsColumns.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/Image.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/KeyManyToOneEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/SimpleEntityWithAssociation.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/VariousKeywordPropertyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/Vehicle.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/hql/Versions.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/Car.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/Plane.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/Product.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/Radio.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/uuid/sqlrep/Node.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/uuid/sqlrep/Node2.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/id/uuid/strategy/Node.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idbag/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idclass/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/biginteger/increment/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/biginteger/sequence/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/forcedtable/Basic.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/forcedtable/HiLo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/forcedtable/Pooled.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/sequence/Basic.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/sequence/Dedicated.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/sequence/HiLo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/sequence/Pooled.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/table/Basic.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/table/HiLo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idgen/enhanced/table/Pooled.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/idprops/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/ContractVariation.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariation.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationOneToManyJoin.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationVersioned.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/inverse/ContractVariationVersionedOneToManyJoin.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariation.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationOneToManyJoin.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationUnidir.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationVersioned.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/ContractVariationVersionedOneToManyJoin.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/inheritance/SimpleInheritance.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/insertordering/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/instrument/domain/Documents.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/instrument/domain/Problematic.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/instrument/domain/SharedPKOneToOne.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/interceptor/Image.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/interceptor/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/interfaceproxy/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/iterate/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jdbc/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/join/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/join/Thing.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/joinedsubclass/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/joinfetch/ItemBid.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/joinfetch/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/MyEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/Part.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/cascade/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/fetch/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/jpa/naturalid/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/keymanytoone/bidir/component/EagerMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/keymanytoone/bidir/component/LazyMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/keymanytoone/bidir/embedded/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lazycache/Documents.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lazyonetoone/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/ABC.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/ABCExtends.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/ABCProxy.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/AltSimple.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Baz.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Blobber.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Broken.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Category.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Circular.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Commento.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/ComponentNotNullMaster.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Componentizable.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/CompositeIdId.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Container.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Custom.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/CustomSQL.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Eye.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Fee.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Fo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/FooBar.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Fum.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Fumm.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Glarch.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Holder.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/IJ.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/IJ2.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Immutable.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Location.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/MainObject.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Many.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Map.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Marelo.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/MasterDetail.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Middle.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Multi.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/MultiExtends.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Nameable.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Object2.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/One.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Qux.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Simple.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/SingleSeveral.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Stuff.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/UpDown.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Vetoer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/WZ.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/Wicked.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/legacy/XY.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/ImageMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/LobMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/MaterializedBlobMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/MaterializedClobMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/SerializableMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/lob/TextMappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomany/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomany/batchload/UserGroupBatchLoad.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomany/ordered/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomanyassociationclass/compositeid/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomanyassociationclass/surrogateid/assigned/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/manytomanyassociationclass/surrogateid/generated/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/map/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/mapcompelem/ProductPart.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/mapelemformula/UserGroup.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/mappingexception/InvalidMapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/mappingexception/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/mixed/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/namingstrategy/Customers.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/naturalid/immutable/ParentChildWithManyToOne.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/naturalid/immutable/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/naturalid/mutable/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/nonflushedchanges/Competition.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/nonflushedchanges/Employer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/nonflushedchanges/Node.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/nonflushedchanges/OneToOne.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/nonflushedchanges/OptLockEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ondelete/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetomany/Node.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetomany/Parent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetomany/VersionedNode.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/basic/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/formula/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/joined/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/link/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/nopojo/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/optional/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/onetoone/singletable/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/Competition.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/Employer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/Node.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/OneToOne.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/OptLockEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ops/SimpleEntity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/optlock/Document.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ordered/Search.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/Mail.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/Product.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/fk/bidirectional/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/fk/composite/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/fk/reversed/bidirectional/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/fk/reversed/unidirectional/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/pk/bidirectional/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/orphan/one2one/pk/unidirectional/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/pagination/DataPoint.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/pagination/EntryTag.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/basic/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/cachedcollections/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/component/complete/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/component/partial/Mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/inheritence/discrim/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/inheritence/joined/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/propertyref/inheritence/union/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/proxy/DataPoint.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/querycache/Enrolment.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/querycache/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/queryplan/Joined.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/queryplan/filter-defs.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/readonly/DataPoint.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/readonly/Enrolment.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/readonly/TextHolder.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/readonly/VersionedNode.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/reattachment/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/resulttransformer/Contract.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/rowid/Point.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/schemaupdate/1_Version.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/schemaupdate/2_Version.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/schemaupdate/mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sorted/Search.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/check/oracle-mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/datadirect/oracle/StoredProcedures.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/db2/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/mysql/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/oracle/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/oracle/StoredProcedures.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/sqlserver/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/custom/sybase/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/identity/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/query/NativeSQLQueries.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/sql/hand/quotedidentifiers/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/stateless/Contact.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/stateless/Document.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/stateless/fetching/Mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/stats/Continent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/stats/Continent2.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/subclassfilter/discrim-subclass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/subclassfilter/joined-subclass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/subclassfilter/union-subclass.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/subselect/Beings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/subselectfetch/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/ternary/Ternary.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/timestamp/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/tm/Item.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/typedmanytoone/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/typedonetoone/Customer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/typeoverride/Entity.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/typeparameters/Typedef.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/typeparameters/Widget.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unconstrained/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unidir/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unidir/manytoone/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unidir/onetomany/nonindexed/ParentChild.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unionsubclass/Beings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unionsubclass/alias/mapping.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/unionsubclass2/Person.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/util/dtd/Parent.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/util/dtd/child.xml
A hibernate-core/src/test/resources/org/hibernate/test/version/PersonThing.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/version/db/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/version/sybase/User.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/test/where/File.hbm.xml
Log Message:
-----------
HHH-7549 Moving test resources into src/test/resources
12 years, 8 months
[hibernate/hibernate-orm] 35279c: HHH-7549 Adding FailureExpectedWithNewMetamodel we...
by GitHub
Branch: refs/heads/metamodel
Home: https://github.com/hibernate/hibernate-orm
Commit: 35279ceed6c834711a56d438d9fbdf88ef1fde4c
https://github.com/hibernate/hibernate-orm/commit/35279ceed6c834711a56d43...
Author: Hardy Ferentschik <hardy(a)hibernate.org>
Date: 2012-08-27 (Mon, 27 Aug 2012)
Changed paths:
M hibernate-core/src/test/java/org/hibernate/test/annotations/loader/LoaderTest.java
M hibernate-core/src/test/java/org/hibernate/test/bidi/AuctionTest2.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/BidirectionalOneToManyCascadeTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/CascadeTestWithAssignedParentIdTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/CascadeMergeToChildBeforeParentTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeCheckNullFalseDelayedInsertTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeCheckNullTrueDelayedInsertTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeCheckNullibilityFalseTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeCheckNullibilityTrueTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeDelayedInsertTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeTest.java
M hibernate-core/src/test/java/org/hibernate/test/collection/set/LazyCollectionInitializationTest.java
M hibernate-core/src/test/java/org/hibernate/test/component/basic/ComponentTest.java
M hibernate-core/src/test/java/org/hibernate/test/criteria/OuterJoinCriteriaTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyListCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetCollectionEventTest.java
M hibernate-core/src/test/java/org/hibernate/test/fetchprofiles/join/JoinFetchProfileTest.java
M hibernate-core/src/test/java/org/hibernate/test/hql/FunctionNameAsColumnTest.java
M hibernate-core/src/test/java/org/hibernate/test/insertordering/InsertOrderingTest.java
M hibernate-core/src/test/java/org/hibernate/test/interceptor/InterceptorTest.java
M hibernate-core/src/test/java/org/hibernate/test/jpa/fetch/FetchingTest.java
M hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/SaveOrUpdateTest.java
M hibernate-core/src/test/java/org/hibernate/test/onetomany/RecursiveBidirectionalOneToManyCacheTest.java
M hibernate-core/src/test/java/org/hibernate/test/onetomany/RecursiveBidirectionalOneToManyNoCacheTest.java
M hibernate-core/src/test/java/org/hibernate/test/onetomany/RecursiveVersionedBidirectionalOneToManyCacheTest.java
M hibernate-core/src/test/java/org/hibernate/test/onetomany/RecursiveVersionedBidirectionalOneToManyNoCacheTest.java
M hibernate-core/src/test/java/org/hibernate/test/ops/SaveOrUpdateTest.java
M hibernate-core/src/test/java/org/hibernate/test/orphan/OrphanTest.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/cachedcollections/CachedPropertyRefCollectionTest.java
M hibernate-core/src/test/java/org/hibernate/test/proxy/ProxyTest.java
M hibernate-core/src/test/java/org/hibernate/test/readonly/ReadOnlyVersionedNodesTest.java
M hibernate-core/src/test/java/org/hibernate/test/stateless/fetching/StatelessSessionFetchingTest.java
M hibernate-core/src/test/java/org/hibernate/test/unidir/BackrefTest.java
M hibernate-core/src/test/java/org/hibernate/test/unidir/onetomany/nonindexed/BackrefTest.java
M hibernate-core/src/test/java/org/hibernate/test/version/VersionTest.java
M hibernate-core/src/test/java/org/hibernate/test/where/WhereTest.java
Log Message:
-----------
HHH-7549 Adding FailureExpectedWithNewMetamodel were needed
Commit: 5dcf91b08252aeb4758c8844b591a849466961d3
https://github.com/hibernate/hibernate-orm/commit/5dcf91b08252aeb4758c884...
Author: Hardy Ferentschik <hardy(a)hibernate.org>
Date: 2012-08-27 (Mon, 27 Aug 2012)
Changed paths:
M hibernate-core/src/test/java/org/hibernate/jdbc/util/BasicFormatterTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/OneToManyBindingTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/id/UUIDGenerator.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/id/sequences/UUIDGenerator.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/manytoonewithformula/ManyToOneWithFormulaTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/MultiPathCircleCascadeTest.java
M hibernate-core/src/test/java/org/hibernate/test/cid/CompositeIdTest.java
M hibernate-core/src/test/java/org/hibernate/test/dirtiness/CustomDirtinessStrategyTest.java
M hibernate-core/src/test/java/org/hibernate/test/joinfetch/JoinFetchTest.java
M hibernate-core/src/test/java/org/hibernate/test/legacy/ParentChildTest.java
M hibernate-core/src/test/java/org/hibernate/test/naturalid/immutable/ImmutableEntityNaturalIdTest.java
M hibernate-core/src/test/java/org/hibernate/test/nonflushedchanges/CreateTest.java
M hibernate-core/src/test/java/org/hibernate/test/ops/CreateTest.java
M hibernate-core/src/test/java/org/hibernate/test/pagination/DistinctSelectTest.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/DoesNotWorkWithHbmTest.java
M hibernate-core/src/test/java/org/hibernate/test/stats/SessionStatsTest.java
Log Message:
-----------
HHH-7549 Removing some unnecessary System.out.println calls
Compare: https://github.com/hibernate/hibernate-orm/compare/8ba7c31a869c...5dcf91b...
12 years, 8 months
[hibernate/hibernate-orm] 8ba7c3: HHH-7549 rollback changes to the xml namespace
by GitHub
Branch: refs/heads/metamodel
Home: https://github.com/hibernate/hibernate-orm
Commit: 8ba7c31a869c57488bb69245bebcf073fe5c0d7f
https://github.com/hibernate/hibernate-orm/commit/8ba7c31a869c57488bb6924...
Author: Strong Liu <stliu(a)hibernate.org>
Date: 2012-08-27 (Mon, 27 Aug 2012)
Changed paths:
M hibernate-core/src/main/xjb/hbm-configuration-bindings.xjb
M hibernate-core/src/main/xjb/hbm-mapping-bindings.xjb
M hibernate-core/src/main/xjb/orm-bindings.xjb
M hibernate-core/src/test/java/org/hibernate/test/cfg/orm-serializable.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/AttributeOverride.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/default-schema.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/default-schema2.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/entity-metadata-complete.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/listener.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/override-to-mappedsuperclass.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/persistence-metadata.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-father.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-invalid.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-quote-identifier.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-star.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Boy.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Cook.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Crew.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/RentalCar.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist2.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist3.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist4.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/duplicatedgenerator/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/onetomany/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/onetoone/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/query/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm.xml
Log Message:
-----------
HHH-7549 rollback changes to the xml namespace
12 years, 8 months
[hibernate/hibernate-orm] 9bce5e: HHH-7549 @OneToMany support
by GitHub
Branch: refs/heads/metamodel
Home: https://github.com/hibernate/hibernate-orm
Commit: 9bce5e0643e6ff023bcd6424c352fa9d9dd3858c
https://github.com/hibernate/hibernate-orm/commit/9bce5e0643e6ff023bcd642...
Author: Strong Liu <stliu(a)hibernate.org>
Date: 2012-08-24 (Fri, 24 Aug 2012)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/CacheMode.java
M hibernate-core/src/main/java/org/hibernate/InvalidMappingException.java
M hibernate-core/src/main/java/org/hibernate/StoredProcedureCall.java
M hibernate-core/src/main/java/org/hibernate/action/internal/EntityDeleteAction.java
M hibernate-core/src/main/java/org/hibernate/annotations/SqlFragmentAlias.java
M hibernate-core/src/main/java/org/hibernate/cache/internal/NoCachingRegionFactory.java
M hibernate-core/src/main/java/org/hibernate/cache/internal/StandardQueryCache.java
M hibernate-core/src/main/java/org/hibernate/cfg/AttributeConverterDefinition.java
M hibernate-core/src/main/java/org/hibernate/cfg/HbmBinder.java
M hibernate-core/src/main/java/org/hibernate/cfg/Mappings.java
M hibernate-core/src/main/java/org/hibernate/cfg/SettingsFactory.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/CollectionBinder.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/EntityBinder.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/QueryBinder.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/SimpleValueBinder.java
M hibernate-core/src/main/java/org/hibernate/collection/internal/AbstractPersistentCollection.java
M hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java
M hibernate-core/src/main/java/org/hibernate/dialect/H2Dialect.java
M hibernate-core/src/main/java/org/hibernate/dialect/SybaseASE157Dialect.java
M hibernate-core/src/main/java/org/hibernate/dialect/pagination/LimitHandler.java
M hibernate-core/src/main/java/org/hibernate/engine/internal/Cascade.java
M hibernate-core/src/main/java/org/hibernate/engine/internal/StatefulPersistenceContext.java
M hibernate-core/src/main/java/org/hibernate/engine/jdbc/internal/LogicalConnectionImpl.java
M hibernate-core/src/main/java/org/hibernate/engine/jdbc/spi/JdbcServices.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/CacheInitiator.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/SessionFactoryImplementor.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/SessionImplementor.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/SyntheticAttributeHelper.java
M hibernate-core/src/main/java/org/hibernate/engine/transaction/internal/jta/JtaIsolationDelegate.java
M hibernate-core/src/main/java/org/hibernate/event/internal/DefaultResolveNaturalIdEventListener.java
M hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/AbstractMapComponentNode.java
M hibernate-core/src/main/java/org/hibernate/id/SequenceGenerator.java
M hibernate-core/src/main/java/org/hibernate/id/SequenceIdentityGenerator.java
M hibernate-core/src/main/java/org/hibernate/id/TableGenerator.java
M hibernate-core/src/main/java/org/hibernate/id/enhanced/SequenceStyleGenerator.java
M hibernate-core/src/main/java/org/hibernate/id/enhanced/TableGenerator.java
M hibernate-core/src/main/java/org/hibernate/internal/AbstractBasicQueryContractImpl.java
M hibernate-core/src/main/java/org/hibernate/internal/AbstractSessionImpl.java
M hibernate-core/src/main/java/org/hibernate/internal/FilterConfiguration.java
M hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java
M hibernate-core/src/main/java/org/hibernate/internal/SessionImpl.java
M hibernate-core/src/main/java/org/hibernate/internal/StoredProcedureCallImpl.java
M hibernate-core/src/main/java/org/hibernate/internal/StoredProcedureOutputsImpl.java
M hibernate-core/src/main/java/org/hibernate/jaxb/internal/JaxbConfigurationProcessor.java
M hibernate-core/src/main/java/org/hibernate/jaxb/internal/NamespaceAddingEventReader.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/MetamodelImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/AttributeBuilder.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/AttributeMetadata.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/BaseAttributeMetadata.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/MetamodelBuilder.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/PluralAttributeMetadataImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/SingularAttributeMetadataImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/AbstractAttribute.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/AbstractIdentifiableType.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/AbstractManagedType.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/AbstractType.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/AttributeFactory.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/BasicTypeImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/EmbeddableTypeImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/EntityTypeImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/MetadataContext.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/MetamodelImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/PluralAttributeImpl.java
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/legacy/SingularAttributeImpl.java
M hibernate-core/src/main/java/org/hibernate/mapping/SimpleValue.java
M hibernate-core/src/main/java/org/hibernate/metamodel/MetadataSources.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/Binder.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/MetadataImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/SessionFactoryBuilderImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/AnnotationBindingContextImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/ComponentAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/DerivedValueSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/EntitySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/IdentifierGeneratorExtractionDelegate.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/IdentifierGeneratorSourceContainer.java
A hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/IndexedPluralAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/ManyToManyPluralAttributeElementSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/OneToManyPluralAttributeElementSourceImpl.java
A hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/PluralAttributeIndexSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/PluralAttributeKeySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/PluralAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/SingularAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/ToOneAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/AssociationAttribute.java
R hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/AttributeNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/BasicAttribute.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/MappedAttribute.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/PluralAssociationAttribute.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/type/AttributeTypeResolverImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/type/EnumeratedTypeResolver.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/type/ExplicitHibernateTypeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/type/LobTypeResolver.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/type/TemporalTypeResolver.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/entity/ConfiguredClass.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/entity/EmbeddableHierarchy.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/entity/EntityBindingContext.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/global/IdGeneratorProcessor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/global/QueryProcessor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/global/SqlResultSetProcessor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/global/TableProcessor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/util/EntityHierarchyBuilder.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/util/EnumConversionHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/util/HibernateDotNames.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/AbstractMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/AccessHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/AnnotationMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/DefaultConfigurationHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/EntityMappingsMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/EntityMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/GlobalAnnotationMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/GlobalAnnotations.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/IndexBuilder.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/MockHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/xml/mocker/PropertyMocker.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/AbstractComponentAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/AbstractEntitySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/AbstractHbmSourceNode.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/AbstractPluralAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/BagAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/BasicPluralAttributeElementSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/ComponentAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/CompositePluralAttributeElementSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/EntityHierarchyImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/FilterSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/HbmMetadataSourceProcessorImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/Helper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/ListAttributeIndexSource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/ListAttributeSource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/ManyToManyPluralAttributeElementSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/ManyToOneAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/MapAttributeIndexSource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/MapAttributeSource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/MappingDocument.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/OneToManyPluralAttributeElementSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/PropertyAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/RootEntitySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/SetAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/SingularIdentifierAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/TimestampAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/VersionAttributeSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/MetadataSourceProcessor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/AbstractPluralAttributeAssociationElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/AbstractPluralAttributeBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/AttributeBindingContainer.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/BagBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/BasicPluralAttributeElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/BasicPluralAttributeIndexBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/CompositeAttributeBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/CompositePluralAttributeElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/EntityBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/EntityVersion.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/Helper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/ListBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/ManyToAnyPluralAttributeElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/ManyToManyPluralAttributeElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/MapBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/OneToManyPluralAttributeElementBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/PluralAttributeElementBinding.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/PluralAttributeElementNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/PluralAttributeIndexBinding.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/PluralAttributeIndexNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/PluralAttributeKeyBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/SetBinding.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/domain/AbstractAttributeContainer.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/domain/PluralAttribute.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/domain/PluralAttributeNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/relational/Index.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/FetchProfileSource.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeElementNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeElementSource.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeIndexNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeIndexSource.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeSource.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/SingularAttributeNature.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/SingularAttributeSource.java
M hibernate-core/src/main/java/org/hibernate/persister/collection/AbstractCollectionPersister.java
M hibernate-core/src/main/java/org/hibernate/persister/collection/OneToManyPersister.java
M hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java
M hibernate-core/src/main/java/org/hibernate/persister/internal/StandardPersisterClassResolver.java
M hibernate-core/src/main/java/org/hibernate/persister/spi/PersisterFactory.java
M hibernate-core/src/main/java/org/hibernate/proxy/AbstractLazyInitializer.java
M hibernate-core/src/main/java/org/hibernate/service/ConfigLoader.java
M hibernate-core/src/main/java/org/hibernate/service/ServiceRegistryBuilder.java
M hibernate-core/src/main/java/org/hibernate/service/StandardServiceInitiators.java
M hibernate-core/src/main/java/org/hibernate/service/classloading/spi/StrategyInstanceResolver.java
M hibernate-core/src/main/java/org/hibernate/service/jdbc/env/internal/JdbcEnvironmentInitiator.java
M hibernate-core/src/main/java/org/hibernate/service/jdbc/env/internal/NormalizingIdentifierHelperImpl.java
M hibernate-core/src/main/java/org/hibernate/service/jdbc/env/spi/ExtractedDatabaseMetaData.java
M hibernate-core/src/main/java/org/hibernate/service/schema/internal/DatabaseInformationImpl.java
M hibernate-core/src/main/java/org/hibernate/service/schema/internal/SchemaValidatorImpl.java
M hibernate-core/src/main/java/org/hibernate/service/schema/internal/TableInformationImpl.java
M hibernate-core/src/main/java/org/hibernate/service/schema/spi/TableInformation.java
M hibernate-core/src/main/java/org/hibernate/sql/ordering/antlr/OrderByFragmentParser.java
M hibernate-core/src/main/java/org/hibernate/tuple/component/DynamicMapComponentTuplizer.java
M hibernate-core/src/main/java/org/hibernate/tuple/component/PojoComponentTuplizer.java
M hibernate-core/src/main/java/org/hibernate/tuple/entity/EntityMetamodel.java
M hibernate-core/src/main/java/org/hibernate/type/EnumType.java
M hibernate-core/src/main/java/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry.java
M hibernate-core/src/main/xjb/hbm-configuration-bindings.xjb
M hibernate-core/src/main/xjb/hbm-mapping-bindings.xjb
M hibernate-core/src/main/xjb/orm-bindings.xjb
M hibernate-core/src/test/java/org/hibernate/cache/spi/NaturalIdCacheKeyTest.java
M hibernate-core/src/test/java/org/hibernate/dialect/PostgreSQL81DialectTestCase.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/AssertSourcesTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/User.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/EmbeddableBindingTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/IdentifierGeneratorTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/NaturalIdBindingTests.java
A hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/OneToManyBindingTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/entity/SecondaryTableTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/global/FetchProfileBinderTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/annotations/xml/OrmXmlParserTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/AbstractBasicBindingTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/BasicCollectionBindingTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/EntityWithBasicCollections.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/JoinedSubclassBindingTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/UnidirectionalManyToManyBindingTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/onetomany/UnidirectionalOneToManyBindingTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/AbstractConstraintNameTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/AbstractGeneratedIdColumnTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/ColumnAliasTest.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/ForeignKeyConstraintNameTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/ObjectNameTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/PrimaryKeyConstraintNameTests.java
M hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/TableManipulationTests.java
M hibernate-core/src/test/java/org/hibernate/sharedSession/SessionWithSharedConnectionTest.java
M hibernate-core/src/test/java/org/hibernate/sql/TemplateTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/collectionelement/ordered/ElementCollectionSortingTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/collectionelement/ordered/Person.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/DollarValueUserType.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/EmbeddableIntegratorTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/embeddables/Investor.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/embedded/EmbeddedTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/entity/HibernateAnnotationMappingTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/entity/NewCustomEntityMappingAnnotationsTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/EntityEnum.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/EnumeratedTypeTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/FirstLetterType.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/LastNumberType.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/filter/secondarytable/SecondaryTableTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/filter/subclass/SubClassTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/filter/subclass/joined/Club.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/filter/subclass/joined/JoinedSubClassTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/id/sequences/HibernateSequenceTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/loader/LoaderTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/loader/Team.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/onetomany/City.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/referencedcolumnname/ReferencedColumnNameTest.java
M hibernate-core/src/test/java/org/hibernate/test/bidir/onetomany/nonindexed/BidirectionalOneToManyInverseTest.java
M hibernate-core/src/test/java/org/hibernate/test/cache/InsertedDataTest.java
M hibernate-core/src/test/java/org/hibernate/test/cascade/circle/CascadeMergeToChildBeforeParentTest.java
M hibernate-core/src/test/java/org/hibernate/test/cfg/cache/CacheConfigurationTest.java
M hibernate-core/src/test/java/org/hibernate/test/cfg/orm-serializable.xml
M hibernate-core/src/test/java/org/hibernate/test/collection/ordered/joinedInheritence/OrderCollectionOfJoinedHierarchyTest.java
M hibernate-core/src/test/java/org/hibernate/test/collection/ordered/joinedInheritence/Zoo.java
M hibernate-core/src/test/java/org/hibernate/test/common/BasicTestingJdbcServiceImpl.java
M hibernate-core/src/test/java/org/hibernate/test/common/JdbcConnectionAccessImpl.java
M hibernate-core/src/test/java/org/hibernate/test/common/TransactionContextImpl.java
M hibernate-core/src/test/java/org/hibernate/test/criteria/ComplexJoinAliasTest.java
M hibernate-core/src/test/java/org/hibernate/test/criterion/CriterionTest.java
M hibernate-core/src/test/java/org/hibernate/test/dialect/functional/Product2.java
M hibernate-core/src/test/java/org/hibernate/test/dialect/functional/SQLServerDialectTest.java
M hibernate-core/src/test/java/org/hibernate/test/dirtiness/Thing.java
M hibernate-core/src/test/java/org/hibernate/test/engine/jdbc/env/StandardSchemaCatalogSupportImplTest.java
M hibernate-core/src/test/java/org/hibernate/test/jpa/ql/FunctionKeywordTest.java
M hibernate-core/src/test/java/org/hibernate/test/jpa/ql/OnKeywordTest.java
M hibernate-core/src/test/java/org/hibernate/test/multitenancy/schema/CurrentTenantResolverMultiTenancyTest.java
M hibernate-core/src/test/java/org/hibernate/test/naturalid/mutable/cached/CachedMutableNaturalIdTest.java
M hibernate-core/src/test/java/org/hibernate/test/naturalid/nullable/A.java
M hibernate-core/src/test/java/org/hibernate/test/ondemandload/Inventory.java
M hibernate-core/src/test/java/org/hibernate/test/ondemandload/LazyLoadingTest.java
M hibernate-core/src/test/java/org/hibernate/test/ondemandload/Product.java
M hibernate-core/src/test/java/org/hibernate/test/ondemandload/Store.java
M hibernate-core/src/test/java/org/hibernate/test/onetoone/basic/Child.java
M hibernate-core/src/test/java/org/hibernate/test/onetoone/basic/OneToOneSchemaTest.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/DoesNotWork.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/DoesNotWorkPk.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/DoesNotWorkTest.java
M hibernate-core/src/test/java/org/hibernate/test/propertyref/DoesNotWorkWithHbmTest.java
M hibernate-core/src/test/java/org/hibernate/test/service/ClassLoaderServiceImplTest.java
M hibernate-core/src/test/java/org/hibernate/test/service/schema/internal/ExistingDatabaseMetaDataImplTest.java
M hibernate-core/src/test/java/org/hibernate/test/sql/storedproc/StoredProcedureTest.java
M hibernate-core/src/test/java/org/hibernate/test/unidir/onetomany/nonindexed/BackrefTest.java
M hibernate-core/src/test/java/org/hibernate/type/AttributeConverterTest.java
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/AttributeOverride.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/default-schema.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/default-schema2.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/entity-metadata-complete.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/listener.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/override-to-mappedsuperclass.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/mocker/persistence-metadata.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-father.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-invalid.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-quote-identifier.xml
M hibernate-core/src/test/resources/org/hibernate/metamodel/internal/source/annotations/xml/orm-star.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Boy.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Cook.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Crew.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/RentalCar.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist2.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist3.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/access/xml/Tourist4.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/duplicatedgenerator/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/onetomany/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/onetoone/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/query/orm.xml
M hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm.xml
Log Message:
-----------
HHH-7549 @OneToMany support
12 years, 8 months