HHH-8090: Created base class to test logged SQL statemetns in tests against expected results

This commit is contained in:
John Verhaeg 2013-03-19 13:22:20 -05:00
parent 59a2ccd79f
commit c48de9edc5
704 changed files with 1201665 additions and 47 deletions

View File

@ -38,6 +38,8 @@ public class SqlStatementLogger {
private static final CoreMessageLogger LOG = Logger.getMessageLogger(CoreMessageLogger.class, "org.hibernate.SQL");
public static final String OUTPUT_PREFIX = "Hibernate: ";
private boolean logToStdout;
private boolean format;
@ -103,7 +105,7 @@ public class SqlStatementLogger {
}
LOG.debug( statement );
if ( logToStdout ) {
System.out.println( "Hibernate: " + statement );
System.out.println( OUTPUT_PREFIX + statement );
}
}
}

View File

@ -60,13 +60,11 @@ public class BatchTest extends BaseCoreFunctionalTestCase {
@Test
public void testBatchInsertUpdate() {
long start = System.currentTimeMillis();
final int N = 5000; //26 secs with batch flush, 26 without
//final int N = 100000; //53 secs with batch flush, OOME without
//final int N = 250000; //137 secs with batch flush, OOME without
int batchSize = sessionFactory().getSettings().getJdbcBatchSize();
doBatchInsertUpdate( N, batchSize );
System.out.println( System.currentTimeMillis() - start );
}
@Test
@ -83,7 +81,6 @@ public class BatchTest extends BaseCoreFunctionalTestCase {
@Test
public void testBatchInsertUpdateSizeGtJdbcBatchSize() {
long start = System.currentTimeMillis();
int batchSize = sessionFactory().getSettings().getJdbcBatchSize();
doBatchInsertUpdate( 50, batchSize + 1 );
}

View File

@ -67,9 +67,7 @@ public class EntityMapTest extends BaseCoreFunctionalTestCase {
Session session = openSession();
session.beginTransaction();
MapHolder mapHolder = getMapHolder( session );
System.out.println( "Got MapHolder; checking map size -----" );
Assert.assertEquals( 3, mapHolder.getMap().size() );
System.out.println( "Got MapHolder; checked map size -----" );
addMapEntry( session, mapHolder, "D", "4" );
// Verify there are 4 entries in the map
Assert.assertEquals( 4, mapHolder.getMap().size() );
@ -90,7 +88,6 @@ public class EntityMapTest extends BaseCoreFunctionalTestCase {
}
private void addMapEntry(Session session, MapHolder mapHolder, String key, String value) {
System.out.println( "Inserting (" + key + "," + value + ") into map" );
MapValue entityValue = new MapValue( value );
session.save( entityValue );
MapKey entityKey = new MapKey( key, entityValue );

View File

@ -751,7 +751,6 @@ public class FooBarTest extends LegacyTestCase {
).list();
assertTrue( list.size()==1 );
list = s.createQuery( "select index(date) from Baz baz join baz.stringDateMap date" ).list();
System.out.println(list);
assertTrue( list.size()==2 );
s.createQuery(
@ -3993,7 +3992,7 @@ public class FooBarTest extends LegacyTestCase {
s.getTransaction().commit();
s.close();
}
@Test
public void testNewSessionLifecycle() throws Exception {
Session s = openSession();

View File

@ -118,7 +118,6 @@ public class IJ2Test extends LegacyTestCase {
j = (J) s.get(J.class, jid);
i = (I) s.get(I.class, iid);
k = (K) s.get(K.class, kid);
System.out.println(k + "=" + i.getParent());
assertTrue( i.getParent()==k );
assertTrue( j.getParent()==k );
assertTrue( k.getIs().size()==2 );

View File

@ -841,7 +841,6 @@ public class MasterDetailTest extends LegacyTestCase {
s = openSession();
s.beginTransaction();
c = (Category) s.load( Category.class, new Long( c.getId() ) );
System.out.println( c.getSubcategories() );
assertTrue( c.getSubcategories().get(0)!=null && c.getSubcategories().get(1)!=null );
List list = ( (Category) c.getSubcategories().get(1) ).getSubcategories();
assertTrue( list.get(1)!=null && list.get(0)==null );

View File

@ -824,10 +824,6 @@ public class ParentChildTest extends LegacyTestCase {
s = openSession();
t = s.beginTransaction();
c = (Container) s.load( Container.class, new Long( c.getId() ) );
System.out.println( c.getOneToMany() );
System.out.println( c.getManyToMany() );
System.out.println( c.getComponents() );
System.out.println( c.getComposites() );
ccic = (Container.ContainerInnerClass) c.getComponents().get(2);
assertTrue( ccic.getMany().getOne()==ccic.getOne() );
assertTrue( c.getComponents().size()==3 );
@ -858,10 +854,6 @@ public class ParentChildTest extends LegacyTestCase {
s = openSession();
t = s.beginTransaction();
c = (Container) s.load( Container.class, new Long( c.getId() ) );
System.out.println( c.getOneToMany() );
System.out.println( c.getManyToMany() );
System.out.println( c.getComponents() );
System.out.println( c.getComposites() );
assertTrue( c.getComponents().size()==1 ); //WAS: 2
assertTrue( c.getComposites().size()==2 );
assertTrue( c.getOneToMany().size()==2 );

View File

@ -23,8 +23,6 @@
*/
package org.hibernate.test.propertyref;
import java.util.List;
import org.junit.Test;
import org.hibernate.Session;
@ -71,12 +69,7 @@ public class DoesNotWorkTest extends BaseCoreFunctionalTestCase {
Session session = openSession();
session.beginTransaction();
DoesNotWork entity = (DoesNotWork) session.get( DoesNotWork.class, pk );
List<String> notes = entity.getGlobalNotes();
if ( notes != null && notes.size() > 0 ) {
for ( String s : notes ) {
System.out.println( s );
}
}
entity.getGlobalNotes();
session.delete( entity );
session.getTransaction().commit();
session.close();

View File

@ -0,0 +1,32 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2011, 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.zzsqloutput;
import org.hibernate.testing.junit4.BaseSqlOutputTest;
/**
*
*/
public class SqlOutputTest extends BaseSqlOutputTest {
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.cache.spi.NaturalIdCacheKeyTest" tests="1" time="1.1" timestamp="2013-02-28T20:09:50">
<properties />
<testcase classname="org.hibernate.cache.spi.NaturalIdCacheKeyTest" name="testSerializationRoundTrip" time="0.872" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.cache.spi.QueryKeyTest" tests="3" time="0.634" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.cache.spi.QueryKeyTest" name="testSerializedEquality" time="0.125" />
<testcase classname="org.hibernate.cache.spi.QueryKeyTest" name="testSerializedEqualityResultTransformer" time="0.016" />
<testcase classname="org.hibernate.cache.spi.QueryKeyTest" name="testSerializedEqualityWithTupleSubsetResultTransfprmer" time="0.032" />
<system-out><![CDATA[14:09:52,307 INFO Version:41 - HHH000412: Hibernate Core {4.3.0-SNAPSHOT}
14:09:52,392 INFO Environment:224 - HHH000205: Loaded properties from resource hibernate.properties: {hibernate.connection.driver_class=org.h2.Driver, hibernate.max_fetch_depth=5, hibernate.dialect=org.hibernate.dialect.H2Dialect, hibernate.format_sql=true, hibernate.cache.region.factory_class=org.hibernate.testing.cache.CachingRegionFactory, hibernate.connection.username=sa, hibernate.cache.region_prefix=hibernate.test, hibernate.connection.url=jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE, hibernate.bytecode.use_reflection_optimizer=false, hibernate.show_sql=false, hibernate.jdbc.batch_versioned_data=true, hibernate.connection.pool_size=5}
14:09:52,395 INFO Environment:342 - HHH000021: Bytecode provider name : javassist
14:09:52,405 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:52,549 INFO CustomRunner:132 - BeforeClass: org.hibernate.cache.spi.QueryKeyTest
14:09:52,551 INFO CustomRunner:139 - Test: testSerializedEquality
14:09:52,679 INFO CustomRunner:139 - Test: testSerializedEqualityResultTransformer
14:09:52,696 INFO CustomRunner:139 - Test: testSerializedEqualityWithTupleSubsetResultTransfprmer
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.connection.DriverManagerRegistrationTest" tests="2" time="0.018" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.connection.DriverManagerRegistrationTest" name="testDriverRegistrationUsingClassForNameSucceeds" time="0.005" />
<testcase classname="org.hibernate.connection.DriverManagerRegistrationTest" name="testDriverRegistrationUsingLoadClassFails" time="0.001" />
<system-out><![CDATA[14:09:52,744 INFO CustomRunner:132 - BeforeClass: org.hibernate.connection.DriverManagerRegistrationTest
14:09:52,746 INFO CustomRunner:139 - Test: testDriverRegistrationUsingClassForNameSucceeds
14:09:52,753 INFO CustomRunner:139 - Test: testDriverRegistrationUsingLoadClassFails
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.connection.PropertiesTest" tests="1" time="0.013" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.connection.PropertiesTest" name="testProperties" time="0.004" />
<system-out><![CDATA[14:09:52,766 INFO CustomRunner:132 - BeforeClass: org.hibernate.connection.PropertiesTest
14:09:52,767 INFO CustomRunner:139 - Test: testProperties
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.DB2DialectTestCase" tests="2" time="0.015" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.dialect.DB2DialectTestCase" name="testGetDefaultBinaryTypeName" time="0.0" />
<testcase classname="org.hibernate.dialect.DB2DialectTestCase" name="testGetExplicitBinaryTypeName" time="0.002" />
<system-out><![CDATA[14:09:52,779 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.DB2DialectTestCase
14:09:52,780 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:52,781 INFO CustomRunner:139 - Test: testGetDefaultBinaryTypeName
14:09:52,784 INFO CustomRunner:139 - Test: testGetExplicitBinaryTypeName
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.DerbyDialectTestCase" tests="5" time="0.028" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.dialect.DerbyDialectTestCase" name="testInsertLimitClause" time="0.006" />
<testcase classname="org.hibernate.dialect.DerbyDialectTestCase" name="testInsertLimitWithForUpdateAndWithClauses" time="0.003" />
<testcase classname="org.hibernate.dialect.DerbyDialectTestCase" name="testInsertLimitWithForUpdateClause" time="0.002" />
<testcase classname="org.hibernate.dialect.DerbyDialectTestCase" name="testInsertLimitWithOffsetClause" time="0.004" />
<testcase classname="org.hibernate.dialect.DerbyDialectTestCase" name="testInsertLimitWithWithClause" time="0.003" />
<system-out><![CDATA[14:09:52,794 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.DerbyDialectTestCase
14:09:52,794 INFO CustomRunner:139 - Test: testInsertLimitClause
14:09:52,797 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialectTestCase$LocalDerbyDialect
14:09:52,800 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:52,803 INFO CustomRunner:139 - Test: testInsertLimitWithForUpdateAndWithClauses
14:09:52,804 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialectTestCase$LocalDerbyDialect
14:09:52,806 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:52,808 INFO CustomRunner:139 - Test: testInsertLimitWithForUpdateClause
14:09:52,809 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialectTestCase$LocalDerbyDialect
14:09:52,810 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:52,811 INFO CustomRunner:139 - Test: testInsertLimitWithOffsetClause
14:09:52,812 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialectTestCase$LocalDerbyDialect
14:09:52,814 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:52,815 INFO CustomRunner:139 - Test: testInsertLimitWithWithClause
14:09:52,816 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialectTestCase$LocalDerbyDialect
14:09:52,817 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.PostgreSQL81DialectTestCase" tests="2" time="0.032" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.dialect.PostgreSQL81DialectTestCase" name="testDeadlockException" time="0.01" />
<testcase classname="org.hibernate.dialect.PostgreSQL81DialectTestCase" name="testTimeoutException" time="0.005" />
<system-out><![CDATA[14:09:52,825 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.PostgreSQL81DialectTestCase
14:09:52,825 INFO CustomRunner:139 - Test: testDeadlockException
14:09:52,829 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL81Dialect
14:09:52,838 INFO CustomRunner:139 - Test: testTimeoutException
14:09:52,843 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL81Dialect
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.SQLServer2005DialectTestCase" tests="9" time="0.06" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitString" time="0.007" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringCaseSensitive" time="0.005" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringDistinctWithinAggregation" time="0.003" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringSelectingAllColumns" time="0.002" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringSelectingMultipleColumnsFromSeveralTables" time="0.003" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringWithCastOperator" time="0.005" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringWithFromColumnName" time="0.003" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringWithMaxOnly" time="0.003" />
<testcase classname="org.hibernate.dialect.SQLServer2005DialectTestCase" name="testGetLimitStringWithSubselect" time="0.002" />
<system-out><![CDATA[14:09:52,867 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.SQLServer2005DialectTestCase
14:09:52,869 INFO CustomRunner:139 - Test: testGetLimitString
14:09:52,871 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,878 INFO CustomRunner:139 - Test: testGetLimitStringCaseSensitive
14:09:52,880 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,884 INFO CustomRunner:139 - Test: testGetLimitStringDistinctWithinAggregation
14:09:52,886 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,888 INFO CustomRunner:139 - Test: testGetLimitStringSelectingAllColumns
14:09:52,889 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,891 INFO CustomRunner:139 - Test: testGetLimitStringSelectingMultipleColumnsFromSeveralTables
14:09:52,893 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,895 INFO CustomRunner:139 - Test: testGetLimitStringWithCastOperator
14:09:52,901 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,904 INFO CustomRunner:139 - Test: testGetLimitStringWithFromColumnName
14:09:52,907 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,910 INFO CustomRunner:139 - Test: testGetLimitStringWithMaxOnly
14:09:52,912 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:52,914 INFO CustomRunner:139 - Test: testGetLimitStringWithSubselect
14:09:52,915 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.resolver.DialectFactoryTest" tests="6" time="0.268" timestamp="2013-02-28T20:09:52">
<properties />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testBuildDialectByProperties" time="0.034" />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testCustomDialects" time="0.093" />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testDialectNotFound" time="0.011" />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testExplicitShortNameUse" time="0.017" />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testExplicitlySuppliedDialectClassName" time="0.04" />
<testcase classname="org.hibernate.dialect.resolver.DialectFactoryTest" name="testPreregisteredDialects" time="0.05" />
<system-out><![CDATA[14:09:52,951 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.resolver.DialectFactoryTest
14:09:52,952 INFO CustomRunner:139 - Test: testBuildDialectByProperties
14:09:52,986 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect
14:09:52,988 INFO CustomRunner:139 - Test: testCustomDialects
14:09:53,072 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,073 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect21
14:09:53,073 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,079 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,079 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MySpecialDB2Dialect
14:09:53,080 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,080 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,081 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,081 WARN AbstractDatabaseMetaDataDialectResolver:70 - HHH000316: Error executing resolver [org.hibernate.dialect.TestingDialects$ErrorDialectResolver2@b92a5b8] : This is a trap!
14:09:53,082 INFO CustomRunner:139 - Test: testDialectNotFound
14:09:53,094 INFO CustomRunner:139 - Test: testExplicitShortNameUse
14:09:53,100 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:53,103 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.Oracle10gDialect
14:09:53,112 INFO CustomRunner:139 - Test: testExplicitlySuppliedDialectClassName
14:09:53,150 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect
14:09:53,153 INFO CustomRunner:139 - Test: testPreregisteredDialects
14:09:53,159 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect
14:09:53,160 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:53,161 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.MySQLDialect
14:09:53,162 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL81Dialect
14:09:53,163 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,164 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyDialect
14:09:53,164 WARN DerbyDialect:60 - HHH000430: The DerbyDialect dialect has been deprecated; use one of the version-specific dialects instead
14:09:53,165 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:53,165 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyTenFiveDialect
14:09:53,166 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:53,167 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyTenSixDialect
14:09:53,168 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:53,168 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DerbyTenSevenDialect
14:09:53,169 WARN DerbyDialect:83 - HHH000328: Unable to load/access derby driver class sysinfo to check versions : org.apache.derby.tools.sysinfo
14:09:53,170 WARN StandardDatabaseInfoDialectResolver:128 - HHH000383: Unknown Ingres major version [-9999]; using Ingres 9.2 dialect
14:09:53,170 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.IngresDialect
14:09:53,171 WARN StandardDatabaseInfoDialectResolver:128 - HHH000383: Unknown Ingres major version [-9999]; using Ingres 9.2 dialect
14:09:53,171 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.IngresDialect
14:09:53,172 WARN StandardDatabaseInfoDialectResolver:128 - HHH000383: Unknown Ingres major version [-9999]; using Ingres 9.2 dialect
14:09:53,172 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.IngresDialect
14:09:53,173 WARN StandardDatabaseInfoDialectResolver:145 - HHH000385: Unknown Microsoft SQL Server major version [-9999] using SQL Server 2000 dialect
14:09:53,173 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServerDialect
14:09:53,174 WARN StandardDatabaseInfoDialectResolver:145 - HHH000385: Unknown Microsoft SQL Server major version [-9999] using SQL Server 2000 dialect
14:09:53,174 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServerDialect
14:09:53,176 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SybaseASE15Dialect
14:09:53,179 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SybaseASE15Dialect
14:09:53,183 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SybaseAnywhereDialect
14:09:53,185 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.InformixDialect
14:09:53,186 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,187 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,189 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,190 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,191 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,192 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,193 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2Dialect
14:09:53,195 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.DB2400Dialect
14:09:53,197 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.Oracle8iDialect
14:09:53,198 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.Oracle9iDialect
14:09:53,200 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.Oracle10gDialect
14:09:53,201 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.Oracle10gDialect
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.dialect.resolver.DialectResolverTest" tests="3" time="0.028" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.dialect.resolver.DialectResolverTest" name="testBasicDialectResolver" time="0.006" />
<testcase classname="org.hibernate.dialect.resolver.DialectResolverTest" name="testDialects" time="0.007" />
<testcase classname="org.hibernate.dialect.resolver.DialectResolverTest" name="testErrorAndOrder" time="0.004" />
<system-out><![CDATA[14:09:53,215 INFO CustomRunner:132 - BeforeClass: org.hibernate.dialect.resolver.DialectResolverTest
14:09:53,216 INFO CustomRunner:139 - Test: testBasicDialectResolver
14:09:53,218 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,218 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,219 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect21
14:09:53,220 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect22
14:09:53,221 WARN AbstractDatabaseMetaDataDialectResolver:70 - HHH000316: Error executing resolver [org.hibernate.engine.jdbc.dialect.internal.BasicDialectResolver@675e8fe2] : Could not instantiate specified Dialect class [java.lang.Object]
14:09:53,224 INFO CustomRunner:139 - Test: testDialects
14:09:53,226 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,226 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,227 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect21
14:09:53,228 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect22
14:09:53,229 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect22
14:09:53,229 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,232 INFO CustomRunner:139 - Test: testErrorAndOrder
14:09:53,234 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,235 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,235 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,236 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,236 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.TestingDialects$MyDialect1
14:09:53,237 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
14:09:53,237 WARN AbstractDatabaseMetaDataDialectResolver:66 - HHH000347: Unable to query java.sql.DatabaseMetaData : null
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" tests="12" time="0.145" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres81" time="0.077" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres82" time="0.004" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres83" time="0.009" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres84" time="0.002" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres9" time="0.005" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres91" time="0.007" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForPostgres92" time="0.003" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForSQLServer2000" time="0.003" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForSQLServer2005" time="0.003" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForSQLServer2008" time="0.002" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForSQLServer2012" time="0.004" />
<testcase classname="org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest" name="testResolveDialectInternalForUnknownSQLServerVersion" time="0.003" />
<system-out><![CDATA[14:09:53,246 INFO CustomRunner:132 - BeforeClass: org.hibernate.engine.jdbc.dialect.internal.StandardDatabaseMetaDataDialectResolverTest
14:09:53,247 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres81
14:09:53,322 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL81Dialect
14:09:53,325 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres82
14:09:53,330 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,332 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres83
14:09:53,339 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,342 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres84
14:09:53,344 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,345 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres9
14:09:53,349 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,351 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres91
14:09:53,353 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,360 INFO CustomRunner:139 - Test: testResolveDialectInternalForPostgres92
14:09:53,363 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.PostgreSQL82Dialect
14:09:53,365 INFO CustomRunner:139 - Test: testResolveDialectInternalForSQLServer2000
14:09:53,367 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServerDialect
14:09:53,370 INFO CustomRunner:139 - Test: testResolveDialectInternalForSQLServer2005
14:09:53,371 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2005Dialect
14:09:53,373 INFO CustomRunner:139 - Test: testResolveDialectInternalForSQLServer2008
14:09:53,375 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2008Dialect
14:09:53,377 INFO CustomRunner:139 - Test: testResolveDialectInternalForSQLServer2012
14:09:53,379 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServer2008Dialect
14:09:53,382 INFO CustomRunner:139 - Test: testResolveDialectInternalForUnknownSQLServerVersion
14:09:53,384 WARN StandardDatabaseInfoDialectResolver:145 - HHH000385: Unknown Microsoft SQL Server major version [7] using SQL Server 2000 dialect
14:09:53,385 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.SQLServerDialect
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.engine.query.ParameterParserTest" tests="1" time="0.006" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.engine.query.ParameterParserTest" name="testEscapeCallRecognition" time="0.003" />
<system-out><![CDATA[14:09:53,391 INFO CustomRunner:132 - BeforeClass: org.hibernate.engine.query.ParameterParserTest
14:09:53,392 INFO CustomRunner:139 - Test: testEscapeCallRecognition
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.event.internal.EventCacheTest" tests="14" time="0.015" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByCopyToEntityMappingOnRemove" time="0.001" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByCopyToEntityUsingPutAll" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByCopyToEntityMapping" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByCopyToEntityMappingUsingPutWithSetOperatedOnArg" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByIterateEntrySet" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByModifyEntrySet" time="0.001" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByModifyKeys" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByModifyValues" time="0.001" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByModifyKeyOfEntrySetElement" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testEntityToCopyFillFollowedByModifyValueOfEntrySetElement" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testReplaceEntityCopy" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testCopyAssociatedWithNewAndExistingEntity" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testCopyAssociatedWith2ExistingEntities" time="0.0" />
<testcase classname="org.hibernate.event.internal.EventCacheTest" name="testRemoveNonExistingEntity" time="0.0" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.BigDecimalHolderTest" tests="2" time="0.025" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.id.BigDecimalHolderTest" name="testBasicHiloAlgorithm" time="0.013" />
<testcase classname="org.hibernate.id.BigDecimalHolderTest" name="testInitializationChecking" time="0.002" />
<system-out><![CDATA[14:09:53,422 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.BigDecimalHolderTest
14:09:53,422 INFO CustomRunner:139 - Test: testBasicHiloAlgorithm
14:09:53,437 INFO CustomRunner:139 - Test: testInitializationChecking
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.BigIntegerHolderTest" tests="2" time="0.01" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.id.BigIntegerHolderTest" name="testBasicHiloAlgorithm" time="0.003" />
<testcase classname="org.hibernate.id.BigIntegerHolderTest" name="testInitializationChecking" time="0.004" />
<system-out><![CDATA[14:09:53,442 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.BigIntegerHolderTest
14:09:53,443 INFO CustomRunner:139 - Test: testBasicHiloAlgorithm
14:09:53,446 INFO CustomRunner:139 - Test: testInitializationChecking
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.LongHolderTest" tests="2" time="0.008" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.id.LongHolderTest" name="testBasicHiloAlgorithm" time="0.002" />
<testcase classname="org.hibernate.id.LongHolderTest" name="testInitializationChecking" time="0.001" />
<system-out><![CDATA[14:09:53,455 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.LongHolderTest
14:09:53,455 INFO CustomRunner:139 - Test: testBasicHiloAlgorithm
14:09:53,458 INFO CustomRunner:139 - Test: testInitializationChecking
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.SequenceHiLoGeneratorNoIncrementTest" tests="1" time="0.658" timestamp="2013-02-28T20:09:53">
<properties />
<testcase classname="org.hibernate.id.SequenceHiLoGeneratorNoIncrementTest" name="testHiLoAlgorithm" time="0.651" />
<system-out><![CDATA[14:09:53,469 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.SequenceHiLoGeneratorNoIncrementTest
14:09:53,470 INFO CustomRunner:139 - Test: testHiLoAlgorithm
14:09:53,471 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:53,475 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:53,531 INFO Version:37 - HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
14:09:53,645 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:53,646 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:53,646 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:53,646 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:53,647 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa, password=****}
14:09:53,833 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:53,837 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:53,849 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:09:53,854 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:09:53,857 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:09:53,904 INFO Version:24 - Hibernate Validator 4.2.0.Final
14:09:54,013 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,014 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,019 DEBUG SQL:104 -
drop sequence test_sequence
14:09:54,026 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence test_sequence
14:09:54,027 ERROR SchemaExport:426 - Sequence "TEST_SEQUENCE" not found; SQL statement:
drop sequence test_sequence [90036-145]
14:09:54,027 DEBUG SQL:104 -
create sequence test_sequence
14:09:54,032 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:54,033 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:09:54,079 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,082 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,088 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,088 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,093 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,094 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,095 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,097 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,099 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,103 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,106 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,116 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,118 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,119 DEBUG SQL:104 -
drop sequence test_sequence
14:09:54,120 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:54,121 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.SequenceHiLoGeneratorTest" tests="1" time="0.051" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.id.SequenceHiLoGeneratorTest" name="testHiLoAlgorithm" time="0.047" />
<system-out><![CDATA[14:09:54,125 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.SequenceHiLoGeneratorTest
14:09:54,125 INFO CustomRunner:139 - Test: testHiLoAlgorithm
14:09:54,127 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:54,137 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:54,137 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:54,137 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:54,138 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:54,138 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa, password=****}
14:09:54,144 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:54,145 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:54,146 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:09:54,146 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:09:54,147 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:09:54,151 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,152 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,152 DEBUG SQL:104 -
drop sequence test_sequence
14:09:54,152 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence test_sequence
14:09:54,152 ERROR SchemaExport:426 - Sequence "TEST_SEQUENCE" not found; SQL statement:
drop sequence test_sequence [90036-145]
14:09:54,152 DEBUG SQL:104 -
create sequence test_sequence
14:09:54,153 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:54,153 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:09:54,155 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,155 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,158 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,159 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,159 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,159 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,160 DEBUG SQL:104 -
call next value for test_sequence
14:09:54,161 DEBUG SQL:104 -
select
currval('test_sequence');
14:09:54,166 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,167 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,167 DEBUG SQL:104 -
drop sequence test_sequence
14:09:54,168 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:54,168 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.enhanced.OptimizerUnitTest" tests="8" time="0.027" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testBasicHiLoOptimizerUsage" time="0.003" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testBasicNoOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testBasicPooledLoOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testBasicPooledOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testRecoveredPooledLoOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testRecoveredPooledOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testSubsequentPooledLoOptimizerUsage" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.OptimizerUnitTest" name="testSubsequentPooledOptimizerUsage" time="0.011" />
<system-out><![CDATA[14:09:54,178 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.enhanced.OptimizerUnitTest
14:09:54,178 INFO CustomRunner:139 - Test: testBasicHiLoOptimizerUsage
14:09:54,181 INFO CustomRunner:139 - Test: testBasicNoOptimizerUsage
14:09:54,183 INFO CustomRunner:139 - Test: testBasicPooledLoOptimizerUsage
14:09:54,184 INFO CustomRunner:139 - Test: testBasicPooledOptimizerUsage
14:09:54,186 INFO CustomRunner:139 - Test: testRecoveredPooledLoOptimizerUsage
14:09:54,187 INFO CustomRunner:139 - Test: testRecoveredPooledOptimizerUsage
14:09:54,188 INFO CustomRunner:139 - Test: testSubsequentPooledLoOptimizerUsage
14:09:54,190 INFO CustomRunner:139 - Test: testSubsequentPooledOptimizerUsage
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" tests="7" time="0.035" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testDefaultOptimizerBasedOnIncrementBackedBySequence" time="0.014" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testDefaultOptimizerBasedOnIncrementBackedByTable" time="0.002" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testDefaultedSequenceBackedConfiguration" time="0.001" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testDefaultedTableBackedConfiguration" time="0.002" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testExplicitOptimizerWithExplicitIncrementSize" time="0.002" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testForceTableUse" time="0.006" />
<testcase classname="org.hibernate.id.enhanced.SequenceStyleConfigUnitTest" name="testPreferPooledLoSettingHonored" time="0.001" />
<system-out><![CDATA[14:09:54,207 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest
14:09:54,208 INFO CustomRunner:139 - Test: testDefaultOptimizerBasedOnIncrementBackedBySequence
14:09:54,211 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$SequenceDialect
14:09:54,219 INFO SequenceStyleGenerator:190 - HHH000107: Forcing table use for sequence-style generator due to pooled optimizer selection where db does not support pooled sequences
14:09:54,220 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$PooledSequenceDialect
14:09:54,222 INFO CustomRunner:139 - Test: testDefaultOptimizerBasedOnIncrementBackedByTable
14:09:54,224 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$TableDialect
14:09:54,225 INFO CustomRunner:139 - Test: testDefaultedSequenceBackedConfiguration
14:09:54,226 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$SequenceDialect
14:09:54,226 INFO CustomRunner:139 - Test: testDefaultedTableBackedConfiguration
14:09:54,228 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$TableDialect
14:09:54,229 INFO CustomRunner:139 - Test: testExplicitOptimizerWithExplicitIncrementSize
14:09:54,230 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$SequenceDialect
14:09:54,230 WARN SequenceStyleGenerator:323 - HHH000116: Config specified explicit optimizer of [none], but [increment_size=20; honoring optimizer setting
14:09:54,230 INFO SequenceStyleGenerator:190 - HHH000107: Forcing table use for sequence-style generator due to pooled optimizer selection where db does not support pooled sequences
14:09:54,231 INFO CustomRunner:139 - Test: testForceTableUse
14:09:54,232 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$SequenceDialect
14:09:54,238 INFO CustomRunner:139 - Test: testPreferPooledLoSettingHonored
14:09:54,238 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.id.enhanced.SequenceStyleConfigUnitTest$PooledSequenceDialect
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.id.uuid.CustomVersionOneStrategyTest" tests="2" time="0.009" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.id.uuid.CustomVersionOneStrategyTest" name="testRangeOfValues" time="0.002" />
<testcase classname="org.hibernate.id.uuid.CustomVersionOneStrategyTest" name="testUniqueCounter" time="0.003" />
<system-out><![CDATA[14:09:54,243 INFO CustomRunner:132 - BeforeClass: org.hibernate.id.uuid.CustomVersionOneStrategyTest
14:09:54,243 INFO CustomRunner:139 - Test: testRangeOfValues
14:09:54,247 INFO CustomRunner:139 - Test: testUniqueCounter
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.jdbc.LobCreatorTest" tests="4" time="0.05" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.jdbc.LobCreatorTest" name="testConfiguredNonContextualLobCreator" time="0.03" />
<testcase classname="org.hibernate.jdbc.LobCreatorTest" name="testConnectedLobCreator" time="0.005" />
<testcase classname="org.hibernate.jdbc.LobCreatorTest" name="testJdbc3LobCreator" time="0.004" />
<testcase classname="org.hibernate.jdbc.LobCreatorTest" name="testJdbc4UnsupportedLobCreator" time="0.005" />
<system-out><![CDATA[14:09:54,255 INFO CustomRunner:132 - BeforeClass: org.hibernate.jdbc.LobCreatorTest
14:09:54,255 INFO CustomRunner:139 - Test: testConfiguredNonContextualLobCreator
14:09:54,257 INFO LobCreatorBuilder:81 - HHH000421: Disabling contextual LOB creation as hibernate.jdbc.lob.non_contextual_creation is true
14:09:54,285 INFO CustomRunner:139 - Test: testConnectedLobCreator
14:09:54,291 INFO CustomRunner:139 - Test: testJdbc3LobCreator
14:09:54,295 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:54,296 INFO CustomRunner:139 - Test: testJdbc4UnsupportedLobCreator
14:09:54,300 INFO LobCreatorBuilder:120 - HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.jdbc.util.BasicFormatterTest" tests="1" time="0.019" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.jdbc.util.BasicFormatterTest" name="testNoLoss" time="0.01" />
<system-out><![CDATA[14:09:54,312 INFO CustomRunner:132 - BeforeClass: org.hibernate.jdbc.util.BasicFormatterTest
14:09:54,313 INFO CustomRunner:139 - Test: testNoLoss
Original: insert into Address (city, state, zip, "from") values (?, ?, ?, 'insert value')
Formatted:
insert
into
Address
(city, state, zip, "from")
values
(?, ?, ?, 'insert value')
Original: delete from Address where id = ? and version = ?
Formatted:
delete
from
Address
where
id = ?
and version = ?
Original: update Address set city = ?, state=?, zip=?, version = ? where id = ? and version = ?
Formatted:
update
Address
set
city = ?,
state=?,
zip=?,
version = ?
where
id = ?
and version = ?
Original: update Address set city = ?, state=?, zip=?, version = ? where id in (select aid from Person)
Formatted:
update
Address
set
city = ?,
state=?,
zip=?,
version = ?
where
id in (
select
aid
from
Person
)
Original: select p.name, a.zipCode, count(*) from Person p left outer join Employee e on e.id = p.id and p.type = 'E' and (e.effective>? or e.effective<?) join Address a on a.pid = p.id where upper(p.name) like 'G%' and p.age > 100 and (p.sex = 'M' or p.sex = 'F') and coalesce( trim(a.street), a.city, (a.zip) ) is not null order by p.name asc, a.zipCode asc
Formatted:
select
p.name,
a.zipCode,
count(*)
from
Person p
left outer join
Employee e
on e.id = p.id
and p.type = 'E'
and (
e.effective>?
or e.effective<?
)
join
Address a
on a.pid = p.id
where
upper(p.name) like 'G%'
and p.age > 100
and (
p.sex = 'M'
or p.sex = 'F'
)
and coalesce( trim(a.street), a.city, (a.zip) ) is not null
order by
p.name asc,
a.zipCode asc
Original: select ( (m.age - p.age) * 12 ), trim(upper(p.name)) from Person p, Person m where p.mother = m.id and ( p.age = (select max(p0.age) from Person p0 where (p0.mother=m.id)) and p.name like ? )
Formatted:
select
( (m.age - p.age) * 12 ),
trim(upper(p.name))
from
Person p,
Person m
where
p.mother = m.id
and (
p.age = (
select
max(p0.age)
from
Person p0
where
(
p0.mother=m.id
)
)
and p.name like ?
)
Original: select * from Address a join Person p on a.pid = p.id, Person m join Address b on b.pid = m.id where p.mother = m.id and p.name like ?
Formatted:
select
*
from
Address a
join
Person p
on a.pid = p.id,
Person m
join
Address b
on b.pid = m.id
where
p.mother = m.id
and p.name like ?
Original: select case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end from Person p where ( case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end ) like ?
Formatted:
select
case
when p.age > 50 then 'old'
when p.age > 18 then 'adult'
else 'child'
end
from
Person p
where
(
case
when p.age > 50 then 'old'
when p.age > 18 then 'adult'
else 'child'
end
) like ?
Original: /* Here we' go! */ select case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end from Person p where ( case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end ) like ?
Formatted:
/* Here we' go! */ select case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end from Person p where ( case when p.age > 50 then 'old' when p.age > 18 then 'adult' else 'child' end ) like ?
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,265 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.jpa.version.JpaSpecVersionValueUpdatingTest" tests="2" time="0.662" timestamp="2013-02-28T20:09:54">
<properties />
<testcase classname="org.hibernate.jpa.version.JpaSpecVersionValueUpdatingTest" name="testVersionNotIncrementedOnModificationOfNonOwningCollectionCascaded" time="0.186" />
<testcase classname="org.hibernate.jpa.version.JpaSpecVersionValueUpdatingTest" name="testVersionNotIncrementedOnModificationOfNonOwningCollectionNonCascaded" time="0.032" />
<system-out><![CDATA[14:09:54,340 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:54,352 INFO CustomRunner:132 - BeforeClass: org.hibernate.jpa.version.JpaSpecVersionValueUpdatingTest
14:09:54,591 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:54,591 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:54,591 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:54,592 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:54,592 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:54,598 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:54,599 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:54,600 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:09:54,601 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:09:54,602 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:09:54,745 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,746 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,746 DEBUG SQL:104 -
alter table T_ORDER
drop constraint FK227638342DBFF89
14:09:54,747 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table T_ORDER drop constraint FK227638342DBFF89
14:09:54,748 ERROR SchemaExport:426 - Table "T_ORDER" not found; SQL statement:
alter table T_ORDER
drop constraint FK227638342DBFF89 [42102-145]
14:09:54,749 DEBUG SQL:104 -
drop table Customer if exists
14:09:54,749 DEBUG SQL:104 -
drop table T_ORDER if exists
14:09:54,750 DEBUG SQL:104 -
create table Customer (
id bigint not null,
version bigint not null,
primary key (id)
)
14:09:54,756 DEBUG SQL:104 -
create table T_ORDER (
id bigint not null,
version bigint not null,
customer_id bigint,
primary key (id)
)
14:09:54,760 DEBUG SQL:104 -
alter table T_ORDER
add constraint FK227638342DBFF89
foreign key (customer_id)
references Customer
14:09:54,774 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:54,775 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:09:54,776 INFO CustomRunner:139 - Test: testVersionNotIncrementedOnModificationOfNonOwningCollectionCascaded
14:09:54,826 DEBUG SQL:104 -
insert
into
Customer
(version, id)
values
(?, ?)
14:09:54,855 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,870 DEBUG SQL:104 -
select
order_.id,
order_.customer_id as customer3_1_,
order_.version as version1_
from
T_ORDER order_
where
order_.id=?
14:09:54,876 DEBUG SQL:104 -
insert
into
T_ORDER
(customer_id, version, id)
values
(?, ?, ?)
14:09:54,880 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,905 DEBUG SQL:104 -
select
order_.id,
order_.customer_id as customer3_1_,
order_.version as version1_
from
T_ORDER order_
where
order_.id=?
14:09:54,909 DEBUG SQL:104 -
insert
into
T_ORDER
(customer_id, version, id)
values
(?, ?, ?)
14:09:54,927 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,943 DEBUG SQL:104 -
delete
from
T_ORDER
where
id=?
and version=?
14:09:54,956 DEBUG SQL:104 -
delete
from
T_ORDER
where
id=?
and version=?
14:09:54,958 DEBUG SQL:104 -
delete
from
Customer
where
id=?
and version=?
14:09:54,964 INFO CustomRunner:139 - Test: testVersionNotIncrementedOnModificationOfNonOwningCollectionNonCascaded
14:09:54,967 DEBUG SQL:104 -
insert
into
Customer
(version, id)
values
(?, ?)
14:09:54,969 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,974 DEBUG SQL:104 -
insert
into
T_ORDER
(customer_id, version, id)
values
(?, ?, ?)
14:09:54,976 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,979 DEBUG SQL:104 -
insert
into
T_ORDER
(customer_id, version, id)
values
(?, ?, ?)
14:09:54,981 DEBUG SQL:104 -
select
customer0_.id as id0_1_,
customer0_.version as version0_1_,
orders1_.customer_id as customer3_0_3_,
orders1_.id as id1_3_,
orders1_.id as id1_0_,
orders1_.customer_id as customer3_1_0_,
orders1_.version as version1_0_
from
Customer customer0_
left outer join
T_ORDER orders1_
on customer0_.id=orders1_.customer_id
where
customer0_.id=?
14:09:54,987 DEBUG SQL:104 -
delete
from
T_ORDER
where
id=?
and version=?
14:09:54,989 DEBUG SQL:104 -
delete
from
T_ORDER
where
id=?
and version=?
14:09:54,992 DEBUG SQL:104 -
delete
from
Customer
where
id=?
and version=?
14:09:54,996 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:09:54,997 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:09:54,997 DEBUG SQL:104 -
alter table T_ORDER
drop constraint FK227638342DBFF89
14:09:54,998 DEBUG SQL:104 -
drop table Customer if exists
14:09:54,999 DEBUG SQL:104 -
drop table T_ORDER if exists
14:09:54,999 INFO SchemaExport:405 - HHH000230: Schema export complete
14:09:55,000 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.binding.BasicAnnotationBindingTests" tests="4" time="0.23" timestamp="2013-02-28T20:09:55">
<properties />
<testcase classname="org.hibernate.metamodel.binding.BasicAnnotationBindingTests" name="testEntityWithManyToOneMapping" time="0.161" />
<testcase classname="org.hibernate.metamodel.binding.BasicAnnotationBindingTests" name="testSimpleEntityMapping" time="0.016" />
<testcase classname="org.hibernate.metamodel.binding.BasicAnnotationBindingTests" name="testSimpleEntityWithSimpleComponentMapping" time="0.024" />
<testcase classname="org.hibernate.metamodel.binding.BasicAnnotationBindingTests" name="testSimpleVersionedEntityMapping" time="0.021" />
<system-out><![CDATA[14:09:55,006 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.binding.BasicAnnotationBindingTests
14:09:55,007 INFO CustomRunner:139 - Test: testEntityWithManyToOneMapping
14:09:55,021 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:55,022 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:55,022 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:55,022 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,022 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:55,028 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:55,029 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:55,126 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:55,168 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,168 INFO CustomRunner:139 - Test: testSimpleEntityMapping
14:09:55,173 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:55,173 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:55,173 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:55,174 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,174 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:55,180 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:55,180 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:55,182 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:55,185 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,186 INFO CustomRunner:139 - Test: testSimpleEntityWithSimpleComponentMapping
14:09:55,191 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:55,191 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:55,192 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:55,192 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,192 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:55,198 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:55,198 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:55,203 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:55,210 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,211 INFO CustomRunner:139 - Test: testSimpleVersionedEntityMapping
14:09:55,217 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:55,217 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:55,217 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:55,218 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:55,218 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:55,224 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:55,225 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:55,227 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:55,232 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.binding.BasicCollectionBindingTests" tests="1" time="1.296" timestamp="2013-02-28T20:09:55">
<properties />
<testcase classname="org.hibernate.metamodel.binding.BasicCollectionBindingTests" name="testHbm" time="1.293" />
<system-out><![CDATA[14:09:55,236 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.binding.BasicCollectionBindingTests
14:09:55,236 INFO CustomRunner:139 - Test: testHbm
14:09:56,472 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:56,474 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:56,475 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:56,476 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:56,477 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:56,483 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:56,484 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:56,529 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.binding.BasicHbmBindingTests" tests="4" time="1.605" timestamp="2013-02-28T20:09:56">
<properties />
<testcase classname="org.hibernate.metamodel.binding.BasicHbmBindingTests" name="testEntityWithManyToOneMapping" time="0.773" />
<testcase classname="org.hibernate.metamodel.binding.BasicHbmBindingTests" name="testSimpleEntityMapping" time="0.33" />
<testcase classname="org.hibernate.metamodel.binding.BasicHbmBindingTests" name="testSimpleEntityWithSimpleComponentMapping" time="0.213" />
<testcase classname="org.hibernate.metamodel.binding.BasicHbmBindingTests" name="testSimpleVersionedEntityMapping" time="0.284" />
<system-out><![CDATA[14:09:56,533 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.binding.BasicHbmBindingTests
14:09:56,534 INFO CustomRunner:139 - Test: testEntityWithManyToOneMapping
14:09:57,285 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:57,287 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:57,287 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:57,289 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,290 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:57,296 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:57,297 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:57,306 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,307 INFO CustomRunner:139 - Test: testSimpleEntityMapping
14:09:57,621 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:57,623 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:57,624 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:57,625 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,626 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:57,631 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:57,632 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:57,636 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,638 INFO CustomRunner:139 - Test: testSimpleEntityWithSimpleComponentMapping
14:09:57,839 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:57,840 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:57,840 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:57,840 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,840 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:57,844 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:57,845 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:57,851 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:57,852 INFO CustomRunner:139 - Test: testSimpleVersionedEntityMapping
14:09:58,099 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,099 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,099 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,120 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,120 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,125 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,125 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,135 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.binding.SimpleValueBindingTests" tests="1" time="0.004" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.binding.SimpleValueBindingTests" name="testBasicMiddleOutBuilding" time="0.001" />
<system-out><![CDATA[14:09:58,140 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.binding.SimpleValueBindingTests
14:09:58,140 INFO CustomRunner:139 - Test: testBasicMiddleOutBuilding
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.relational.ObjectNameTests" tests="2" time="0.003" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.relational.ObjectNameTests" name="testIdentifierBuilding" time="0.001" />
<testcase classname="org.hibernate.metamodel.relational.ObjectNameTests" name="testMissingName" time="0.0" />
<system-out><![CDATA[14:09:58,144 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.relational.ObjectNameTests
14:09:58,144 INFO CustomRunner:139 - Test: testIdentifierBuilding
14:09:58,145 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,146 INFO CustomRunner:139 - Test: testMissingName
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.relational.TableManipulationTests" tests="4" time="0.008" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.relational.TableManipulationTests" name="testBasicForeignKeyDefinition" time="0.001" />
<testcase classname="org.hibernate.metamodel.relational.TableManipulationTests" name="testQualifiedName" time="0.002" />
<testcase classname="org.hibernate.metamodel.relational.TableManipulationTests" name="testTableCreation" time="0.001" />
<testcase classname="org.hibernate.metamodel.relational.TableManipulationTests" name="testTableSpecificationCounter" time="0.001" />
<system-out><![CDATA[14:09:58,150 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.relational.TableManipulationTests
14:09:58,150 INFO CustomRunner:139 - Test: testBasicForeignKeyDefinition
14:09:58,152 INFO CustomRunner:139 - Test: testQualifiedName
14:09:58,153 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,154 INFO CustomRunner:139 - Test: testTableCreation
14:09:58,155 INFO CustomRunner:139 - Test: testTableSpecificationCounter
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" tests="5" time="0.087" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" name="testDefaultFieldAccess" time="0.014" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" name="testDefaultPropertyAccess" time="0.013" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" name="testExplicitClassConfiguredAccess" time="0.021" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" name="testMixedAccess" time="0.017" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.AccessBindingTest" name="testNoAccess" time="0.012" />
<system-out><![CDATA[14:09:58,162 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.AccessBindingTest
14:09:58,163 INFO CustomRunner:139 - Test: testDefaultFieldAccess
14:09:58,168 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,169 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,169 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,169 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,169 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,173 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,173 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,175 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,178 INFO CustomRunner:139 - Test: testDefaultPropertyAccess
14:09:58,183 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,184 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,184 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,184 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,184 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,188 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,189 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,190 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,192 INFO CustomRunner:139 - Test: testExplicitClassConfiguredAccess
14:09:58,200 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,200 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,200 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,201 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,201 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,205 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,205 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,207 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,214 INFO CustomRunner:139 - Test: testMixedAccess
14:09:58,218 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,219 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,219 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,219 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,219 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,224 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,225 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,227 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,232 INFO CustomRunner:139 - Test: testNoAccess
14:09:58,237 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,238 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,238 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,238 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,238 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,242 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,242 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.BatchSizeBindingTest" tests="2" time="0.028" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.BatchSizeBindingTest" name="testBatchSize" time="0.013" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.BatchSizeBindingTest" name="testNoBatchSize" time="0.013" />
<system-out><![CDATA[14:09:58,248 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.BatchSizeBindingTest
14:09:58,248 INFO CustomRunner:139 - Test: testBatchSize
14:09:58,252 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,253 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,253 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,253 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,253 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,257 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,257 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,259 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,261 INFO CustomRunner:139 - Test: testNoBatchSize
14:09:58,266 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,266 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,266 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,266 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,267 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,270 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,271 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,272 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.CacheBindingTest" tests="3" time="0.066" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.CacheBindingTest" name="testHibernateCaching" time="0.032" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.CacheBindingTest" name="testJpaCaching" time="0.013" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.CacheBindingTest" name="testNoCaching" time="0.013" />
<system-out><![CDATA[14:09:58,279 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.CacheBindingTest
14:09:58,280 INFO CustomRunner:139 - Test: testHibernateCaching
14:09:58,296 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,297 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,297 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,297 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,297 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,301 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,302 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,314 INFO CustomRunner:139 - Test: testJpaCaching
14:09:58,318 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,319 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,319 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,319 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,319 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,323 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,324 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,325 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,327 INFO CustomRunner:139 - Test: testNoCaching
14:09:58,333 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,333 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,333 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,333 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,333 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,337 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,338 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.CustomSQLBindingTest" tests="2" time="0.038" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.CustomSQLBindingTest" name="testCustomSqlAnnotations" time="0.017" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.CustomSQLBindingTest" name="testNoCustomSqlAnnotations" time="0.013" />
<system-out><![CDATA[14:09:58,348 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.CustomSQLBindingTest
14:09:58,348 INFO CustomRunner:139 - Test: testCustomSqlAnnotations
14:09:58,357 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,357 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,358 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,358 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,358 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,362 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,363 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,364 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,367 INFO CustomRunner:139 - Test: testNoCustomSqlAnnotations
14:09:58,372 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,372 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,373 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,373 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,373 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,377 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,377 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,379 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" tests="6" time="0.136" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testAttributeOverrideInEmbeddable" time="0.024" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testEmbeddable" time="0.02" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testEmbeddableWithAttributeOverride" time="0.017" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testNestedEmbeddable" time="0.023" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testParentReferencingAttributeName" time="0.019" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest" name="testTargetAnnotationWithEmbeddable" time="0.019" />
<system-out><![CDATA[14:09:58,389 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.EmbeddableBindingTest
14:09:58,390 INFO CustomRunner:139 - Test: testAttributeOverrideInEmbeddable
14:09:58,394 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,395 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,395 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,395 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,395 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,399 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,399 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,408 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,417 INFO CustomRunner:139 - Test: testEmbeddable
14:09:58,423 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,423 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,423 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,424 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,424 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,427 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,428 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,430 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,438 INFO CustomRunner:139 - Test: testEmbeddableWithAttributeOverride
14:09:58,443 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,444 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,444 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,444 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,444 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,448 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,448 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,451 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,455 INFO CustomRunner:139 - Test: testNestedEmbeddable
14:09:58,461 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,461 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,461 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,462 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,462 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,465 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,466 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,469 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,480 INFO CustomRunner:139 - Test: testParentReferencingAttributeName
14:09:58,486 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,486 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,486 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,487 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,487 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,490 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,491 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,494 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,500 INFO CustomRunner:139 - Test: testTargetAnnotationWithEmbeddable
14:09:58,506 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,507 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,507 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,507 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,507 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,511 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,511 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,516 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.EmbeddedIdTest" tests="1" time="0.017" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EmbeddedIdTest" name="testEmbeddable" time="0.011" />
<system-out><![CDATA[14:09:58,526 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.EmbeddedIdTest
14:09:58,526 INFO CustomRunner:139 - Test: testEmbeddable
14:09:58,531 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,531 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,531 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,532 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,532 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,535 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,536 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,537 INFO FailureExpectedHandler:73 - Ignoring expected failure [{}] : {}
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.EnumeratedBindingTest" tests="1" time="0.031" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.EnumeratedBindingTest" name="testEnumeratedTypeAttribute" time="0.029" />
<system-out><![CDATA[14:09:58,541 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.EnumeratedBindingTest
14:09:58,541 INFO CustomRunner:139 - Test: testEnumeratedTypeAttribute
14:09:58,545 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,546 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,546 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,546 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,546 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,550 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,551 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,560 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" tests="6" time="0.116" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testAutoGenerationType" time="0.019" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testNamedGenerator" time="0.016" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testNoIdGeneration" time="0.014" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testSequenceGenerationType" time="0.013" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testTableGenerationType" time="0.018" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest" name="testUndefinedGenerator" time="0.021" />
<system-out><![CDATA[14:09:58,578 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.IdentifierGeneratorTest
14:09:58,579 INFO CustomRunner:139 - Test: testAutoGenerationType
14:09:58,584 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,585 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,585 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,585 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,585 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,591 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,591 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,595 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,598 INFO CustomRunner:139 - Test: testNamedGenerator
14:09:58,602 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,603 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,603 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,603 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,603 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,607 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,608 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,609 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,612 WARN UUIDHexGenerator:59 - HHH000409: Using org.hibernate.id.UUIDHexGenerator which does not generate IETF RFC 4122 compliant UUID values; consider using org.hibernate.id.UUIDGenerator instead
14:09:58,616 INFO CustomRunner:139 - Test: testNoIdGeneration
14:09:58,622 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,622 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,623 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,623 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,623 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,627 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,627 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,628 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,631 INFO CustomRunner:139 - Test: testSequenceGenerationType
14:09:58,635 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,636 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,636 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,636 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,636 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,640 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,640 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,642 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,645 INFO CustomRunner:139 - Test: testTableGenerationType
14:09:58,653 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,654 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,654 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,654 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,654 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,658 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,659 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,661 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,665 INFO CustomRunner:139 - Test: testUndefinedGenerator
14:09:58,669 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,670 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,670 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,670 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,670 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,674 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,674 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,678 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,678 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,679 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,679 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,680 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,684 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,684 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,201 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" tests="16" time="0.487" timestamp="2013-02-28T20:09:58">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testDefaultDiscriminatorOptions" time="0.02" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testDiscriminatorFormula" time="0.015" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testDiscriminatorValue" time="0.027" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testExplicitDiscriminatorOptions" time="0.019" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testLeafSubclassOfRoot" time="0.029" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testLeafSubclassOfSubclassOfRootPolymporhism" time="0.03" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testNoInheritance" time="0.012" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testNoPolymorphism" time="0.123" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testNonLeafSubclassOfRootPolymporhism" time="0.022" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testPostOrderRootSubEntityClosure" time="0.046" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testPreOrderRootSubEntityClosure" time="0.026" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testRootDiscriminatorMatchValue" time="0.019" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testRootEntityBinding" time="0.017" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testRootEntitySuperType" time="0.016" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testRootPolymporhism" time="0.021" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest" name="testSubclassEntitySuperType" time="0.017" />
<system-out><![CDATA[14:09:58,699 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.InheritanceBindingTest
14:09:58,700 INFO CustomRunner:139 - Test: testDefaultDiscriminatorOptions
14:09:58,708 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,708 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,708 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,709 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,709 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,713 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,713 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,715 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,721 INFO CustomRunner:139 - Test: testDiscriminatorFormula
14:09:58,726 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,726 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,726 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,726 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,726 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,730 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,731 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,732 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,737 INFO CustomRunner:139 - Test: testDiscriminatorValue
14:09:58,747 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,747 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,747 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,748 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,748 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,751 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,752 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,753 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,764 INFO CustomRunner:139 - Test: testExplicitDiscriminatorOptions
14:09:58,774 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,774 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,774 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,775 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,775 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,779 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,779 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,781 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,784 INFO CustomRunner:139 - Test: testLeafSubclassOfRoot
14:09:58,789 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,789 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,790 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,790 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,790 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,794 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,794 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,797 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,815 INFO CustomRunner:139 - Test: testLeafSubclassOfSubclassOfRootPolymporhism
14:09:58,819 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,819 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,820 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,820 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,820 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,824 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,824 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,827 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,845 INFO CustomRunner:139 - Test: testNoInheritance
14:09:58,850 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,850 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,850 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,850 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,851 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,854 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,855 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,856 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,858 INFO CustomRunner:139 - Test: testNoPolymorphism
14:09:58,872 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,873 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,873 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,873 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,873 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,877 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,877 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,881 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:58,982 INFO CustomRunner:139 - Test: testNonLeafSubclassOfRootPolymporhism
14:09:58,987 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:58,987 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:58,987 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:58,988 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:58,988 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:58,991 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:58,992 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:58,995 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,006 INFO CustomRunner:139 - Test: testPostOrderRootSubEntityClosure
14:09:59,008 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,008 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,008 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,009 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,022 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,026 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,026 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,027 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,027 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,027 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,028 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,029 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,031 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,035 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,035 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,036 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,036 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,036 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,036 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,037 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,037 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,039 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,039 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,042 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,048 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,054 INFO CustomRunner:139 - Test: testPreOrderRootSubEntityClosure
14:09:59,054 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,058 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,059 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,059 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,059 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,059 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,059 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,060 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,061 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,061 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,061 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,061 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,063 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,063 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,063 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,063 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,064 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,067 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,068 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,070 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,082 INFO CustomRunner:139 - Test: testRootDiscriminatorMatchValue
14:09:59,092 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,093 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,093 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,093 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,093 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,097 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,097 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,099 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,101 INFO CustomRunner:139 - Test: testRootEntityBinding
14:09:59,106 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,106 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,106 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,106 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,107 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,110 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,111 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,113 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,120 INFO CustomRunner:139 - Test: testRootEntitySuperType
14:09:59,125 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,126 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,126 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,126 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,126 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,130 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,130 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,132 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,136 INFO CustomRunner:139 - Test: testRootPolymporhism
14:09:59,140 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,140 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,140 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,141 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,141 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,144 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,144 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,147 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,158 INFO CustomRunner:139 - Test: testSubclassEntitySuperType
14:09:59,163 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,163 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,163 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,163 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,163 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,166 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,167 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,169 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" tests="9" time="0.217" timestamp="2013-02-28T20:09:59">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testBlobWithLobAnnotation" time="0.026" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testByteArrayWithLobAnnotation" time="0.023" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testCharacterArrayWithLobAnnotation" time="0.021" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testClobWithLobAnnotation" time="0.02" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testNoLobAttribute" time="0.02" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testPrimitiveByteArrayWithLobAnnotation" time="0.024" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testPrimitiveCharacterArrayWithLobAnnotation" time="0.021" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testSerializableWithLobAnnotation" time="0.031" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.LobBindingTests" name="testStringWithLobAnnotation" time="0.018" />
<system-out><![CDATA[14:09:59,186 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.LobBindingTests
14:09:59,186 INFO CustomRunner:139 - Test: testBlobWithLobAnnotation
14:09:59,190 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,190 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,190 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,190 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,191 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,193 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,194 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,199 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,212 INFO CustomRunner:139 - Test: testByteArrayWithLobAnnotation
14:09:59,216 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,216 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,216 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,217 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,217 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,220 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,220 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,226 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,236 INFO CustomRunner:139 - Test: testCharacterArrayWithLobAnnotation
14:09:59,242 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,242 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,243 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,243 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,243 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,246 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,246 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,249 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,258 INFO CustomRunner:139 - Test: testClobWithLobAnnotation
14:09:59,262 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,262 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,262 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,262 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,262 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,265 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,266 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,268 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,279 INFO CustomRunner:139 - Test: testNoLobAttribute
14:09:59,283 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,283 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,284 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,284 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,284 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,287 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,287 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,290 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,299 INFO CustomRunner:139 - Test: testPrimitiveByteArrayWithLobAnnotation
14:09:59,304 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,304 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,304 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,304 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,304 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,307 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,308 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,310 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,325 INFO CustomRunner:139 - Test: testPrimitiveCharacterArrayWithLobAnnotation
14:09:59,331 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,332 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,332 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,332 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,332 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,335 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,336 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,338 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,348 INFO CustomRunner:139 - Test: testSerializableWithLobAnnotation
14:09:59,352 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,352 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,352 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,352 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,352 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,355 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,356 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,359 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,379 INFO CustomRunner:139 - Test: testStringWithLobAnnotation
14:09:59,383 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,383 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,383 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,384 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,384 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,386 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,387 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,389 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.MappedSuperclassTest" tests="3" time="0.029" timestamp="2013-02-28T20:09:59">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.MappedSuperclassTest" name="testLastAttributeOverrideWins" time="0.01" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.MappedSuperclassTest" name="testNonEntityBaseClass" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.MappedSuperclassTest" name="testSimpleAttributeOverrideInMappedSuperclass" time="0.008" />
<system-out><![CDATA[14:09:59,402 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.MappedSuperclassTest
14:09:59,403 INFO CustomRunner:139 - Test: testLastAttributeOverrideWins
14:09:59,407 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,408 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,408 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,408 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,408 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,411 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,411 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,413 INFO FailureExpectedHandler:73 - Ignoring expected failure [{}] : {}
14:09:59,414 INFO CustomRunner:139 - Test: testNonEntityBaseClass
14:09:59,417 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,418 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,418 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,418 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,418 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,421 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,421 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,422 INFO FailureExpectedHandler:73 - Ignoring expected failure [{}] : {}
14:09:59,422 INFO CustomRunner:139 - Test: testSimpleAttributeOverrideInMappedSuperclass
14:09:59,426 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,426 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,426 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,426 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,426 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,429 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,429 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,430 INFO FailureExpectedHandler:73 - Ignoring expected failure [{}] : {}
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.MapsIdTest" tests="1" time="0.022" timestamp="2013-02-28T20:09:59">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.MapsIdTest" name="testMapsIsOnOneToManyThrowsException" time="0.019" />
<system-out><![CDATA[14:09:59,433 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.MapsIdTest
14:09:59,433 INFO CustomRunner:139 - Test: testMapsIsOnOneToManyThrowsException
14:09:59,437 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,437 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,438 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,438 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,438 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,441 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,441 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,446 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,446 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,447 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,447 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,447 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,450 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,450 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest" tests="4" time="0.059" timestamp="2013-02-28T20:09:59">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest" name="testNoProxy" time="0.019" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest" name="testProxyDisabled" time="0.012" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest" name="testProxyInterface" time="0.011" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest" name="testProxyNoAttributes" time="0.014" />
<system-out><![CDATA[14:09:59,458 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.ProxyBindingTest
14:09:59,458 INFO CustomRunner:139 - Test: testNoProxy
14:09:59,469 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,470 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,470 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,470 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,470 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,473 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,473 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,474 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,477 INFO CustomRunner:139 - Test: testProxyDisabled
14:09:59,481 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,482 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,482 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,482 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,482 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,485 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,485 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,486 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,489 INFO CustomRunner:139 - Test: testProxyInterface
14:09:59,492 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,493 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,493 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,493 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,493 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,496 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,496 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,498 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:09:59,500 INFO CustomRunner:139 - Test: testProxyNoAttributes
14:09:59,506 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,506 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,506 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,506 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,506 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,509 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,509 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:09:59,511 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.QuotedIdentifierTest" tests="1" time="0.539" timestamp="2013-02-28T20:09:59">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.QuotedIdentifierTest" name="testDelimitedIdentifiers" time="0.537" />
<system-out><![CDATA[14:09:59,518 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.QuotedIdentifierTest
14:09:59,518 INFO CustomRunner:139 - Test: testDelimitedIdentifiers
14:09:59,990 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:09:59,991 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:09:59,991 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:09:59,993 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:09:59,993 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:09:59,996 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:09:59,997 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,049 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.RowIdBindingTests" tests="2" time="0.02" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.RowIdBindingTests" name="testNoRowId" time="0.009" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.RowIdBindingTests" name="testRowId" time="0.008" />
<system-out><![CDATA[14:10:00,058 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.RowIdBindingTests
14:10:00,058 INFO CustomRunner:139 - Test: testNoRowId
14:10:00,062 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,062 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,062 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,062 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,062 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,064 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,064 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,065 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,067 INFO CustomRunner:139 - Test: testRowId
14:10:00,070 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,070 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,071 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,071 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,071 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,072 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,073 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,074 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.SecondaryTableTest" tests="2" time="0.022" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.SecondaryTableTest" name="testRetrievingUnknownTable" time="0.009" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.SecondaryTableTest" name="testSecondaryTableExists" time="0.01" />
<system-out><![CDATA[14:10:00,079 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.SecondaryTableTest
14:10:00,079 INFO CustomRunner:139 - Test: testRetrievingUnknownTable
14:10:00,081 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,082 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,082 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,082 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,082 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,083 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,084 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,085 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,088 ERROR AssertionFailure:43 - HHH000099: an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): org.hibernate.AssertionFailure: Unable to find table FOO amongst tables [SECOND_TABLE]
14:10:00,089 INFO CustomRunner:139 - Test: testSecondaryTableExists
14:10:00,092 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,093 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,093 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,093 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,093 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,095 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,095 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,096 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.SynchronizeBindingTest" tests="2" time="0.019" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.SynchronizeBindingTest" name="testNoSynchronizeAnnotation" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.SynchronizeBindingTest" name="testSynchronizeAnnotation" time="0.009" />
<system-out><![CDATA[14:10:00,102 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.SynchronizeBindingTest
14:10:00,103 INFO CustomRunner:139 - Test: testNoSynchronizeAnnotation
14:10:00,106 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,106 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,106 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,106 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,106 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,108 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,108 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,109 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,111 INFO CustomRunner:139 - Test: testSynchronizeAnnotation
14:10:00,114 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,115 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,115 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,115 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,115 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,117 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,117 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,118 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.TableNameTest" tests="3" time="0.032" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TableNameTest" name="testJoinedSubclassDefaultTableName" time="0.009" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TableNameTest" name="testSingleInheritanceDefaultTableName" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TableNameTest" name="testTablePerClassDefaultTableName" time="0.009" />
<system-out><![CDATA[14:10:00,124 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.TableNameTest
14:10:00,124 INFO CustomRunner:139 - Test: testJoinedSubclassDefaultTableName
14:10:00,127 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,127 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,127 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,127 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,127 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,129 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,129 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,131 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,134 INFO CustomRunner:139 - Test: testSingleInheritanceDefaultTableName
14:10:00,136 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,137 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,137 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,137 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,137 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,138 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,139 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,140 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,142 INFO CustomRunner:139 - Test: testTablePerClassDefaultTableName
14:10:00,146 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,147 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,147 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,147 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,147 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,149 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,149 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,150 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.TemporalBindingTest" tests="3" time="0.038" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TemporalBindingTest" name="testNoTemporalAnnotationOnTemporalTypeAttribute" time="0.009" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TemporalBindingTest" name="testTemporalTypeAsId" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.TemporalBindingTest" name="testTemporalTypeAttribute" time="0.009" />
<system-out><![CDATA[14:10:00,160 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.TemporalBindingTest
14:10:00,160 INFO CustomRunner:139 - Test: testNoTemporalAnnotationOnTemporalTypeAttribute
14:10:00,163 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,164 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,164 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,164 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,164 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,166 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,166 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,167 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,170 INFO CustomRunner:139 - Test: testTemporalTypeAsId
14:10:00,173 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,173 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,174 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,174 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,174 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,175 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,176 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,177 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,184 INFO CustomRunner:139 - Test: testTemporalTypeAttribute
14:10:00,188 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,188 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,188 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,189 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,189 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,190 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,190 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,192 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.UniqueConstraintBindingTest" tests="1" time="0.015" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.UniqueConstraintBindingTest" name="testTableUniqueConstraints" time="0.011" />
<system-out><![CDATA[14:10:00,198 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.UniqueConstraintBindingTest
14:10:00,198 INFO CustomRunner:139 - Test: testTableUniqueConstraints
14:10:00,201 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,202 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,202 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,202 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,202 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,203 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,204 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,206 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.entity.WhereClauseTest" tests="1" time="0.011" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.entity.WhereClauseTest" name="testWhereFilter" time="0.007" />
<system-out><![CDATA[14:10:00,214 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.entity.WhereClauseTest
14:10:00,214 INFO CustomRunner:139 - Test: testWhereFilter
14:10:00,217 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,217 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,217 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,217 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,218 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,219 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,219 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,220 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.global.FetchProfileBinderTest" tests="3" time="0.027" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.global.FetchProfileBinderTest" name="testFetchProfiles" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.global.FetchProfileBinderTest" name="testNonJoinFetchThrowsException" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.global.FetchProfileBinderTest" name="testSingleFetchProfile" time="0.007" />
<system-out><![CDATA[14:10:00,226 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.global.FetchProfileBinderTest
14:10:00,226 INFO CustomRunner:139 - Test: testFetchProfiles
14:10:00,229 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,229 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,230 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,230 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,230 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,231 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,232 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,234 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,235 INFO CustomRunner:139 - Test: testNonJoinFetchThrowsException
14:10:00,238 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,238 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,238 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,238 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,238 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,240 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,241 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,242 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,243 INFO CustomRunner:139 - Test: testSingleFetchProfile
14:10:00,246 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,247 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,247 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,247 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,247 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,249 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,249 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,250 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.global.QueryBinderTest" tests="2" time="0.018" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.global.QueryBinderTest" name="testNoResultClass" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.global.QueryBinderTest" name="testResultClass" time="0.009" />
<system-out><![CDATA[14:10:00,254 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.global.QueryBinderTest
14:10:00,255 INFO CustomRunner:139 - Test: testNoResultClass
14:10:00,257 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,258 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,258 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,258 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,258 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,260 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,260 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,261 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,262 INFO CustomRunner:139 - Test: testResultClass
14:10:00,265 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,265 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,265 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,265 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,266 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,267 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,267 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,271 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.util.EmbeddableHierarchyTest" tests="0" time="0.004" timestamp="2013-02-28T20:10:00">
<properties />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" tests="10" time="0.111" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testDefaultInheritanceStrategy" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testEntityAndEmbeddableAnnotations" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testEntityAndMappedSuperClassAnnotations" time="0.006" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testExplicitInheritanceStrategy" time="0.009" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testMappedSuperClass" time="0.013" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testMultipleConflictingInheritanceDefinitions" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testMultipleHierarchies" time="0.02" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testNoIdAnnotation" time="0.012" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testSimpleInheritance" time="0.008" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest" name="testSingleEntity" time="0.009" />
<system-out><![CDATA[14:10:00,280 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.util.EntityHierarchyTest
14:10:00,280 INFO CustomRunner:139 - Test: testDefaultInheritanceStrategy
14:10:00,283 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,284 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,284 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,284 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,284 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,286 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,286 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,288 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,289 INFO CustomRunner:139 - Test: testEntityAndEmbeddableAnnotations
14:10:00,293 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,293 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,294 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,294 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,294 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,296 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,296 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,297 INFO CustomRunner:139 - Test: testEntityAndMappedSuperClassAnnotations
14:10:00,301 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,301 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,301 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,301 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,301 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,303 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,303 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,305 INFO CustomRunner:139 - Test: testExplicitInheritanceStrategy
14:10:00,308 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,308 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,308 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,308 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,308 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,310 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,310 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,313 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,314 INFO CustomRunner:139 - Test: testMappedSuperClass
14:10:00,317 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,317 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,317 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,318 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,318 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,319 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,320 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,322 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,328 INFO CustomRunner:139 - Test: testMultipleConflictingInheritanceDefinitions
14:10:00,331 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,331 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,331 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,332 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,332 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,333 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,334 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,336 INFO CustomRunner:139 - Test: testMultipleHierarchies
14:10:00,351 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,351 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,351 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,351 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,352 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,353 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,353 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,356 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,357 INFO CustomRunner:139 - Test: testNoIdAnnotation
14:10:00,364 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,365 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,365 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,365 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,365 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,367 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,367 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,370 INFO CustomRunner:139 - Test: testSimpleInheritance
14:10:00,373 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,373 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,373 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,373 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,373 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,375 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,375 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,377 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:00,378 INFO CustomRunner:139 - Test: testSingleEntity
14:10:00,383 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,384 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,384 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,384 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,384 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,386 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,386 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,387 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.util.GenericTypeDiscoveryTest" tests="2" time="0.015" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.util.GenericTypeDiscoveryTest" name="testGenericClassHierarchy" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.GenericTypeDiscoveryTest" name="testUnresolvedType" time="0.005" />
<system-out><![CDATA[14:10:00,392 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.util.GenericTypeDiscoveryTest
14:10:00,393 INFO CustomRunner:139 - Test: testGenericClassHierarchy
14:10:00,396 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,397 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,397 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,397 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,397 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,399 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,399 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:00,400 INFO CustomRunner:139 - Test: testUnresolvedType
14:10:00,403 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,403 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,404 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,404 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,404 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,405 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,406 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" tests="9" time="0.069" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testGetMemberAnnotations" time="0.007" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testGettingNestedAnnotation" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveClassParameterAsClass" time="0.015" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveClassParameterAsString" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveDefaultEnumElement" time="0.01" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveExplicitEnumElement" time="0.01" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveStringArray" time="0.004" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testRetrieveUnknownParameter" time="0.004" />
<testcase classname="org.hibernate.metamodel.source.annotations.util.JandexHelperTest" name="testTryingToRetrieveWrongType" time="0.003" />
<system-out><![CDATA[14:10:00,410 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.util.JandexHelperTest
14:10:00,410 INFO CustomRunner:139 - Test: testGetMemberAnnotations
14:10:00,418 INFO CustomRunner:139 - Test: testGettingNestedAnnotation
14:10:00,422 INFO CustomRunner:139 - Test: testRetrieveClassParameterAsClass
14:10:00,425 ERROR AssertionFailure:43 - HHH000099: an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): org.hibernate.AssertionFailure: Annotation parameters of type Class should be retrieved as strings (fully qualified class names)
14:10:00,438 INFO CustomRunner:139 - Test: testRetrieveClassParameterAsString
14:10:00,441 INFO CustomRunner:139 - Test: testRetrieveDefaultEnumElement
14:10:00,452 INFO CustomRunner:139 - Test: testRetrieveExplicitEnumElement
14:10:00,463 INFO CustomRunner:139 - Test: testRetrieveStringArray
14:10:00,468 INFO CustomRunner:139 - Test: testRetrieveUnknownParameter
14:10:00,471 ERROR AssertionFailure:49 - HHH000099: an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): java.lang.NoSuchMethodException: javax.persistence.Entity.foo()
14:10:00,473 INFO CustomRunner:139 - Test: testTryingToRetrieveWrongType
14:10:00,476 ERROR AssertionFailure:43 - HHH000099: an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): org.hibernate.AssertionFailure: the annotation property name of annotation javax.persistence.AttributeOverride is not of type java.lang.Float
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.util.TypeDiscoveryTest" tests="1" time="0.007" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.util.TypeDiscoveryTest" name="testImplicitAndExplicitType" time="0.006" />
<system-out><![CDATA[14:10:00,480 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.util.TypeDiscoveryTest
14:10:00,480 INFO CustomRunner:139 - Test: testImplicitAndExplicitType
14:10:00,483 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:00,483 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:00,483 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:00,483 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:00,483 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:00,485 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:00,485 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.OrmXmlParserTests" tests="3" time="0.995" timestamp="2013-02-28T20:10:00">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.OrmXmlParserTests" name="testInvalidOrmXmlThrowsException" time="0.285" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.OrmXmlParserTests" name="testSimpleOrmVersion1" time="0.305" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.OrmXmlParserTests" name="testSimpleOrmVersion2" time="0.4" />
<system-out><![CDATA[14:10:00,488 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.annotations.xml.OrmXmlParserTests
14:10:00,489 INFO CustomRunner:139 - Test: testInvalidOrmXmlThrowsException
14:10:00,775 INFO CustomRunner:139 - Test: testSimpleOrmVersion1
14:10:01,038 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:01,039 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:01,039 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:01,041 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,041 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:01,043 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:01,044 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:01,057 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:01,080 INFO CustomRunner:139 - Test: testSimpleOrmVersion2
14:10:01,342 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,342 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,342 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,342 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,365 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,365 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,366 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,366 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,366 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,366 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,367 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,367 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,367 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,367 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,369 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,369 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,369 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,371 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,371 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,371 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,372 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,372 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,373 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,373 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,374 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,374 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,374 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,375 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,376 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,377 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,378 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,379 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,380 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,382 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,472 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:01,473 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:01,473 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:01,473 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:01,473 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:01,476 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:01,477 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:01,479 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.BasicMockerTest" tests="2" time="0.006" timestamp="2013-02-28T20:10:01">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.BasicMockerTest" name="testEntity" time="0.002" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.BasicMockerTest" name="testEntityWithEntityMappingsConfiguration" time="0.002" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.DefaultConfigurationHelperTest" tests="4" time="0.008" timestamp="2013-02-28T20:10:01">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.DefaultConfigurationHelperTest" name="applyDefaultToEntity" time="0.0" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.DefaultConfigurationHelperTest" name="applyNullDefaultToEntity" time="0.0" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.DefaultConfigurationHelperTest" name="testDefaultCascadePersist" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.DefaultConfigurationHelperTest" name="testDefaultSchemaToAnnotationInstance" time="0.003" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.EntityListenerTest" tests="1" time="0.287" timestamp="2013-02-28T20:10:01">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.EntityListenerTest" name="basicEntityListenerMockTest" time="0.286" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.IndexBuilderTest" tests="1" time="0.003" timestamp="2013-02-28T20:10:01">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.IndexBuilderTest" name="test" time="0.001" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" tests="8" time="1.487" timestamp="2013-02-28T20:10:01">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testPersistenceUnitDefaultsCascadePersistInAnnotation" time="0.004" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testPersistenceUnitDefaultsCascadePersistInXML" time="0.337" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testAttributeOverride" time="0.224" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testSchemaInPersistenceMetadata" time="0.225" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testSchemaInEntityMapping" time="0.192" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testPersistenceUnitMetadataMetadataComplete" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testEntityMetadataComplete" time="0.265" />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.OverrideTest" name="testOverrideToMappedSuperClass" time="0.231" />
<system-out><![CDATA[Annotations:
javax.persistence.ElementCollection:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(isMocked = true)
javax.persistence.AttributeOverrides:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(isMocked = true, value = [@javax.persistence.AttributeOverride(column = @javax.persistence.Column(isMocked = true,name = "TOPIC_SUMMARY"),isMocked = true,name = "summary"),@javax.persistence.AttributeOverride(column = @javax.persistence.Column(name = "TOC_TITLE"),isMocked = true,name = "title")])
javax.persistence.ManyToOne:
Field: org.hibernate.metamodel.source.annotations.xml.mocker.Author org.hibernate.metamodel.source.annotations.xml.mocker.Book.author
(cascade = [PERSIST,DETACH], isMocked = true)
javax.persistence.Embeddable:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Topic
javax.persistence.Id:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
javax.persistence.OneToMany:
Method: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Author.getBooks()
(cascade = [PERSIST,ALL], isMocked = true)
javax.persistence.Temporal:
Field: java.util.Date org.hibernate.metamodel.source.annotations.xml.mocker.Book.publishDate
(value = TIMESTAMP)
javax.persistence.Entity:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
(isMocked = true)
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Author
(isMocked = true)
javax.persistence.Version:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.version
javax.persistence.GeneratedValue:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
(generator = "TABLE_GEN")
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(generator = "SEQ_GEN")
Annotations:
javax.persistence.ManyToOne:
Field: org.hibernate.metamodel.source.annotations.xml.mocker.Author org.hibernate.metamodel.source.annotations.xml.mocker.Book.author
(cascade = [DETACH])
javax.persistence.ElementCollection:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
javax.persistence.Embeddable:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Topic
javax.persistence.SequenceGenerator:
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(catalog = "XML_CATALOG", initialValue = 123, isMocked = true, name = "SEQ_GEN", schema = "XML_SCHEMA")
javax.persistence.Table:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
(catalog = "XML_CATALOG", isMocked = true, isMocked = true, schema = "XML_SCHEMA")
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Author
(catalog = "XML_CATALOG", isMocked = true, isMocked = true, schema = "XML_SCHEMA")
javax.persistence.Id:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
javax.persistence.Version:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.version
javax.persistence.TableGenerator:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
(catalog = "ANNOTATION_CATALOG", name = "TABLE_GEN", schema = "ANNOTATION_SCHEMA")
javax.persistence.OneToMany:
Method: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Author.getBooks()
(cascade = [MERGE], mappedBy = "author")
javax.persistence.Temporal:
Field: java.util.Date org.hibernate.metamodel.source.annotations.xml.mocker.Book.publishDate
(value = TIMESTAMP)
javax.persistence.Entity:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Author
javax.persistence.AttributeOverride:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(column = @javax.persistence.Column(name = "TOC_TITLE"), name = "title")
javax.persistence.GeneratedValue:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
(generator = "TABLE_GEN")
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(generator = "SEQ_GEN")
Annotations:
javax.persistence.ElementCollection:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
javax.persistence.ManyToOne:
Field: org.hibernate.metamodel.source.annotations.xml.mocker.Author org.hibernate.metamodel.source.annotations.xml.mocker.Book.author
(cascade = [DETACH])
javax.persistence.SequenceGenerator:
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(initialValue = 123, name = "SEQ_GEN")
javax.persistence.Embeddable:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Topic
javax.persistence.TableGenerator:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
(catalog = "ANNOTATION_CATALOG", name = "TABLE_GEN", schema = "ANNOTATION_SCHEMA")
javax.persistence.Id:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
javax.persistence.OneToMany:
Method: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Author.getBooks()
(cascade = [MERGE], mappedBy = "author")
javax.persistence.Temporal:
Field: java.util.Date org.hibernate.metamodel.source.annotations.xml.mocker.Book.publishDate
(value = TIMESTAMP)
javax.persistence.Entity:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Author
javax.persistence.Version:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.version
javax.persistence.AttributeOverride:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(column = @javax.persistence.Column(name = "TOC_TITLE"), name = "title")
javax.persistence.GeneratedValue:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
(generator = "TABLE_GEN")
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(generator = "SEQ_GEN")
Annotations:
javax.persistence.ElementCollection:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(isMocked = true)
javax.persistence.AttributeOverrides:
Field: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Book.topics
(isMocked = true, value = [@javax.persistence.AttributeOverride(column = @javax.persistence.Column(isMocked = true,name = "TOPIC_SUMMARY"),isMocked = true,name = "summary"),@javax.persistence.AttributeOverride(column = @javax.persistence.Column(name = "TOC_TITLE"),isMocked = true,name = "title")])
javax.persistence.ManyToOne:
Field: org.hibernate.metamodel.source.annotations.xml.mocker.Author org.hibernate.metamodel.source.annotations.xml.mocker.Book.author
(cascade = [DETACH])
javax.persistence.SequenceGenerator:
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(initialValue = 123, name = "SEQ_GEN")
javax.persistence.Embeddable:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Topic
javax.persistence.Id:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
javax.persistence.OneToMany:
Method: java.util.List org.hibernate.metamodel.source.annotations.xml.mocker.Author.getBooks()
(cascade = [MERGE], mappedBy = "author")
javax.persistence.Temporal:
Field: java.util.Date org.hibernate.metamodel.source.annotations.xml.mocker.Book.publishDate
(value = TIMESTAMP)
javax.persistence.Entity:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Author
javax.persistence.Version:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.version
javax.persistence.MappedSuperclass:
Class: org.hibernate.metamodel.source.annotations.xml.mocker.Book
(isMocked = true)
javax.persistence.GeneratedValue:
Field: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Book.id
(generator = "TABLE_GEN")
Method: java.lang.Long org.hibernate.metamodel.source.annotations.xml.mocker.Author.getId()
(generator = "SEQ_GEN")
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.annotations.xml.mocker.PersistenceMetadataMockerTest" tests="1" time="0.203" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.metamodel.source.annotations.xml.mocker.PersistenceMetadataMockerTest" name="testPersistenceMetadata" time="0.2" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.internal.MetadataImplTest" tests="6" time="0.046" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testAddingNonExistingPackageName" time="0.006" />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testAddingNullClass" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testAddingNullPackageName" time="0.003" />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testAddingPackageName" time="0.01" />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testAddingPackageNameWithTrailingDot" time="0.006" />
<testcase classname="org.hibernate.metamodel.source.internal.MetadataImplTest" name="testGettingSessionFactoryBuilder" time="0.013" />
<system-out><![CDATA[14:10:03,487 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.internal.MetadataImplTest
14:10:03,487 INFO CustomRunner:139 - Test: testAddingNonExistingPackageName
14:10:03,489 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,490 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,490 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,490 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,490 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,492 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,492 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,494 INFO CustomRunner:139 - Test: testAddingNullClass
14:10:03,497 INFO CustomRunner:139 - Test: testAddingNullPackageName
14:10:03,500 INFO CustomRunner:139 - Test: testAddingPackageName
14:10:03,505 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,505 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,505 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,505 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,506 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,507 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,507 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,510 INFO CustomRunner:139 - Test: testAddingPackageNameWithTrailingDot
14:10:03,513 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,513 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,513 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,513 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,514 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,515 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,515 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,517 INFO CustomRunner:139 - Test: testGettingSessionFactoryBuilder
14:10:03,521 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,521 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,522 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,522 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,522 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,523 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,524 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,526 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,526 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,526 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,528 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.metamodel.source.internal.SessionFactoryBuilderImplTest" tests="3" time="0.064" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.metamodel.source.internal.SessionFactoryBuilderImplTest" name="testBuildSessionFactoryWithDefaultOptions" time="0.023" />
<testcase classname="org.hibernate.metamodel.source.internal.SessionFactoryBuilderImplTest" name="testBuildSessionFactoryWithUpdatedOptions" time="0.015" />
<testcase classname="org.hibernate.metamodel.source.internal.SessionFactoryBuilderImplTest" name="testGettingSessionFactoryBuilder" time="0.008" />
<system-out><![CDATA[14:10:03,535 INFO CustomRunner:132 - BeforeClass: org.hibernate.metamodel.source.internal.SessionFactoryBuilderImplTest
14:10:03,535 INFO CustomRunner:139 - Test: testBuildSessionFactoryWithDefaultOptions
14:10:03,540 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,540 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,540 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,540 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,541 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,542 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,542 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,543 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:03,546 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,546 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,546 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,558 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,571 INFO CustomRunner:139 - Test: testBuildSessionFactoryWithUpdatedOptions
14:10:03,577 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,578 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,578 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,578 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,578 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,579 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,580 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,581 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
14:10:03,584 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,584 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,584 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,588 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,589 INFO CustomRunner:139 - Test: testGettingSessionFactoryBuilder
14:10:03,591 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,591 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,591 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,591 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,591 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,593 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,593 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,594 WARN CachingRegionFactory:53 - CachingRegionFactory should be only used for testing.
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.property.BasicPropertyAccessorTest" tests="1" time="0.003" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.property.BasicPropertyAccessorTest" name="testBridgeMethodDisregarded" time="0.002" />
<system-out><![CDATA[14:10:03,600 INFO CustomRunner:132 - BeforeClass: org.hibernate.property.BasicPropertyAccessorTest
14:10:03,600 INFO CustomRunner:139 - Test: testBridgeMethodDisregarded
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.property.DirectPropertyAccessorTest" tests="1" time="0.082" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.property.DirectPropertyAccessorTest" name="testDirectIdPropertyAccess" time="0.017" />
<system-out><![CDATA[14:10:03,604 INFO CustomRunner:132 - BeforeClass: org.hibernate.property.DirectPropertyAccessorTest
14:10:03,612 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,612 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,613 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,614 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,615 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,618 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,623 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,624 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,624 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,626 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,640 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:03,641 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:03,643 DEBUG SQL:104 -
alter table C_ORDER_Item
drop constraint FK901B032089810401
14:10:03,644 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table C_ORDER_Item drop constraint FK901B032089810401
14:10:03,644 ERROR SchemaExport:426 - Table "C_ORDER_ITEM" not found; SQL statement:
alter table C_ORDER_Item
drop constraint FK901B032089810401 [42102-145]
14:10:03,647 DEBUG SQL:104 -
alter table C_ORDER_Item
drop constraint FK901B0320751CB685
14:10:03,649 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table C_ORDER_Item drop constraint FK901B0320751CB685
14:10:03,649 ERROR SchemaExport:426 - Table "C_ORDER_ITEM" not found; SQL statement:
alter table C_ORDER_Item
drop constraint FK901B0320751CB685 [42102-145]
14:10:03,649 DEBUG SQL:104 -
drop table C_ORDER if exists
14:10:03,650 DEBUG SQL:104 -
drop table C_ORDER_Item if exists
14:10:03,650 DEBUG SQL:104 -
drop table Item if exists
14:10:03,651 DEBUG SQL:104 -
create table C_ORDER (
orderNumber integer not null,
primary key (orderNumber)
)
14:10:03,654 DEBUG SQL:104 -
create table C_ORDER_Item (
C_ORDER_orderNumber integer not null,
items_itemNumber integer not null,
primary key (C_ORDER_orderNumber, items_itemNumber)
)
14:10:03,655 DEBUG SQL:104 -
create table Item (
itemNumber integer not null,
primary key (itemNumber)
)
14:10:03,656 DEBUG SQL:104 -
alter table C_ORDER_Item
add constraint UK_901B0320418E91FB unique (items_itemNumber)
14:10:03,656 DEBUG SQL:104 -
alter table C_ORDER_Item
add constraint FK901B032089810401
foreign key (items_itemNumber)
references Item
14:10:03,658 DEBUG SQL:104 -
alter table C_ORDER_Item
add constraint FK901B0320751CB685
foreign key (C_ORDER_orderNumber)
references C_ORDER
14:10:03,660 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:03,661 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,661 INFO CustomRunner:139 - Test: testDirectIdPropertyAccess
14:10:03,669 DEBUG SQL:104 -
insert
into
Item
(itemNumber)
values
(?)
14:10:03,674 DEBUG SQL:104 -
insert
into
C_ORDER
(orderNumber)
values
(?)
14:10:03,675 DEBUG SQL:104 -
insert
into
C_ORDER_Item
(C_ORDER_orderNumber, items_itemNumber)
values
(?, ?)
14:10:03,676 DEBUG SQL:104 -
select
order0_.orderNumber as orderNum1_0_0_
from
C_ORDER order0_
where
order0_.orderNumber=?
14:10:03,679 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:03,679 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:03,680 DEBUG SQL:104 -
alter table C_ORDER_Item
drop constraint FK901B032089810401
14:10:03,680 DEBUG SQL:104 -
alter table C_ORDER_Item
drop constraint FK901B0320751CB685
14:10:03,681 DEBUG SQL:104 -
drop table C_ORDER if exists
14:10:03,682 DEBUG SQL:104 -
drop table C_ORDER_Item if exists
14:10:03,683 DEBUG SQL:104 -
drop table Item if exists
14:10:03,684 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:03,684 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.serialization.SessionFactorySerializationTest" tests="2" time="0.029" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.serialization.SessionFactorySerializationTest" name="testNamedSessionFactorySerialization" time="0.013" />
<testcase classname="org.hibernate.serialization.SessionFactorySerializationTest" name="testUnNamedSessionFactorySerialization" time="0.009" />
<system-out><![CDATA[14:10:03,687 INFO CustomRunner:132 - BeforeClass: org.hibernate.serialization.SessionFactorySerializationTest
14:10:03,687 INFO CustomRunner:139 - Test: testNamedSessionFactorySerialization
14:10:03,693 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,694 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,694 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,694 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,694 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,695 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,696 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,696 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,696 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,696 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,699 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,704 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,705 INFO CustomRunner:139 - Test: testUnNamedSessionFactorySerialization
14:10:03,707 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,708 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,708 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,708 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,708 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,709 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,710 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,710 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,710 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,710 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,713 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,714 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.sharedSession.SessionWithSharedConnectionTest" tests="7" time="0.081" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testChildSessionCallsAfterTransactionAction" time="0.01" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testChildSessionTwoTransactions" time="0.004" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testSessionRemovedFromObserversOnClose" time="0.002" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testSharedTransactionContextAutoClosing" time="0.001" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testSharedTransactionContextAutoJoining" time="0.0" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testSharedTransactionContextFlushBeforeCompletion" time="0.007" />
<testcase classname="org.hibernate.sharedSession.SessionWithSharedConnectionTest" name="testSharedTransactionContextSessionClosing" time="0.013" />
<system-out><![CDATA[14:10:03,718 INFO CustomRunner:132 - BeforeClass: org.hibernate.sharedSession.SessionWithSharedConnectionTest
14:10:03,729 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,729 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,732 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,733 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,733 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,736 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:03,736 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,738 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,738 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,739 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,747 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:03,748 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:03,748 DEBUG SQL:104 -
drop table IrrelevantEntity if exists
14:10:03,748 DEBUG SQL:104 -
create table IrrelevantEntity (
id integer not null,
name varchar(255),
primary key (id)
)
14:10:03,749 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:03,750 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,751 INFO CustomRunner:139 - Test: testChildSessionCallsAfterTransactionAction
14:10:03,753 DEBUG SQL:104 -
select
max(id)
from
IrrelevantEntity
14:10:03,756 DEBUG SQL:104 -
insert
into
IrrelevantEntity
(name, id)
values
(?, ?)
14:10:03,758 DEBUG SQL:104 -
insert
into
IrrelevantEntity
(name, id)
values
(?, ?)
14:10:03,761 INFO CustomRunner:139 - Test: testChildSessionTwoTransactions
14:10:03,766 INFO CustomRunner:139 - Test: testSessionRemovedFromObserversOnClose
14:10:03,769 INFO CustomRunner:139 - Test: testSharedTransactionContextAutoClosing
14:10:03,771 INFO CustomRunner:139 - Test: testSharedTransactionContextAutoJoining
14:10:03,772 INFO CustomRunner:139 - Test: testSharedTransactionContextFlushBeforeCompletion
14:10:03,773 DEBUG SQL:104 -
insert
into
IrrelevantEntity
(name, id)
values
(?, ?)
14:10:03,775 DEBUG SQL:104 -
select
irrelevant0_.id as id0_0_,
irrelevant0_.name as name0_0_
from
IrrelevantEntity irrelevant0_
where
irrelevant0_.id=?
14:10:03,777 DEBUG SQL:104 -
delete
from
IrrelevantEntity
where
id=?
14:10:03,780 INFO CustomRunner:139 - Test: testSharedTransactionContextSessionClosing
14:10:03,791 DEBUG SQL:104 -
select
this_.id as id0_0_,
this_.name as name0_0_
from
IrrelevantEntity this_
14:10:03,794 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:03,795 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:03,795 DEBUG SQL:104 -
drop table IrrelevantEntity if exists
14:10:03,796 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:03,796 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.sql.TemplateTest" tests="15" time="0.098" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.sql.TemplateTest" name="testCollation" time="0.028" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testCollationAndOrdering" time="0.006" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testComplexNestedFunctionReferences" time="0.003" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testComponentDerefReferences" time="0.003" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testComponentReferences" time="0.001" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testDoubleQualifiedFunctionReference" time="0.002" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testFunctionReference" time="0.003" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testFunctionWithPropertyReferenceAsParam" time="0.003" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testNestedFunctionReferences" time="0.002" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testPropertyReference" time="0.003" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testQualifiedFunctionReference" time="0.002" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testQuotedSQLReferences" time="0.001" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testSQLReferences" time="0.001" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testSqlExtractFunction" time="0.001" />
<testcase classname="org.hibernate.sql.TemplateTest" name="testSqlTrimFunction" time="0.003" />
<system-out><![CDATA[14:10:03,800 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect
14:10:03,803 INFO CustomRunner:132 - BeforeClass: org.hibernate.sql.TemplateTest
14:10:03,805 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:03,806 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:03,806 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:03,806 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:03,807 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:03,808 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.HSQLDialect
14:10:03,809 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:03,812 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:03,812 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:03,812 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:03,816 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:03,816 INFO CustomRunner:139 - Test: testCollation
14:10:03,845 INFO CustomRunner:139 - Test: testCollationAndOrdering
14:10:03,853 INFO CustomRunner:139 - Test: testComplexNestedFunctionReferences
14:10:03,856 INFO CustomRunner:139 - Test: testComponentDerefReferences
14:10:03,860 INFO CustomRunner:139 - Test: testComponentReferences
14:10:03,862 INFO CustomRunner:139 - Test: testDoubleQualifiedFunctionReference
14:10:03,864 INFO CustomRunner:139 - Test: testFunctionReference
14:10:03,872 INFO CustomRunner:139 - Test: testFunctionWithPropertyReferenceAsParam
14:10:03,876 INFO CustomRunner:139 - Test: testNestedFunctionReferences
14:10:03,879 INFO CustomRunner:139 - Test: testPropertyReference
14:10:03,884 INFO CustomRunner:139 - Test: testQualifiedFunctionReference
14:10:03,886 INFO CustomRunner:139 - Test: testQuotedSQLReferences
14:10:03,888 INFO CustomRunner:139 - Test: testSQLReferences
14:10:03,890 INFO CustomRunner:139 - Test: testSqlExtractFunction
14:10:03,891 INFO CustomRunner:139 - Test: testSqlTrimFunction
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.subclassProxyInterface.SubclassProxyInterfaceTest" tests="1" time="0.299" timestamp="2013-02-28T20:10:03">
<properties />
<testcase classname="org.hibernate.subclassProxyInterface.SubclassProxyInterfaceTest" name="testSubclassProxyInterfaces" time="0.296" />
<system-out><![CDATA[14:10:03,898 INFO CustomRunner:132 - BeforeClass: org.hibernate.subclassProxyInterface.SubclassProxyInterfaceTest
14:10:03,899 INFO CustomRunner:139 - Test: testSubclassProxyInterfaces
14:10:03,901 INFO Configuration:753 - HHH000221: Reading mappings from resource: org/hibernate/subclassProxyInterface/Person.hbm.xml
14:10:03,901 INFO Configuration:706 - HHH000221: Reading mappings from resource: org/hibernate/subclassProxyInterface/Person.hbm.xml
14:10:04,081 WARN DTDEntityResolver:74 - HHH000223: Recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!
14:10:04,160 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:04,161 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:04,161 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:04,161 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,161 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:04,175 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:04,176 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:04,177 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:04,177 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:04,177 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:04,194 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:04,195 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.abstractembeddedcomponents.cid.AbstractCompositeIdTest" tests="1" time="0.267" timestamp="2013-02-28T20:10:04">
<properties />
<testcase classname="org.hibernate.test.abstractembeddedcomponents.cid.AbstractCompositeIdTest" name="testEmbeddedCompositeIdentifierOnAbstractClass" time="0.132" />
<system-out><![CDATA[14:10:04,200 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.abstractembeddedcomponents.cid.AbstractCompositeIdTest
14:10:04,204 INFO Configuration:706 - HHH000221: Reading mappings from resource: org/hibernate/test/abstractembeddedcomponents/cid/Mappings.hbm.xml
14:10:04,266 WARN RootClass:288 - HHH000038: Composite-id class does not override equals(): org.hibernate.test.abstractembeddedcomponents.cid.MyInterface
14:10:04,266 WARN RootClass:289 - HHH000039: Composite-id class does not override hashCode(): org.hibernate.test.abstractembeddedcomponents.cid.MyInterface
14:10:04,268 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:04,269 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:04,270 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:04,270 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,272 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:04,277 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:04,279 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:04,281 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:04,281 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:04,282 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:04,319 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,321 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,321 DEBUG SQL:104 -
drop table MY_INTF if exists
14:10:04,322 DEBUG SQL:104 -
create table MY_INTF (
key1 varchar(255) not null,
key2 varchar(255) not null,
"TYPE" varchar(10) not null,
name varchar(255),
primary key (key1, key2)
)
14:10:04,323 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,323 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:04,324 INFO CustomRunner:139 - Test: testEmbeddedCompositeIdentifierOnAbstractClass
14:10:04,327 DEBUG SQL:104 -
insert
into
MY_INTF
(name, "TYPE", key1, key2)
values
(?, '1', ?, ?)
14:10:04,361 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.abstractembeddedcomponents.cid.MyInterface
14:10:04,365 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'abstractembeddedcomponents'
| \-[IDENT] Node: 'cid'
\-[IDENT] Node: 'MyInterface'
14:10:04,366 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,415 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.abstractembeddedcomponents.cid.MyInterface (<no alias>) -> myinterfac0_
14:10:04,416 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} MY_INTF myinterfac0_ ) )
14:10:04,421 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:04,427 DEBUG JoinProcessor:175 - Using FROM fragment [MY_INTF myinterfac0_]
14:10:04,429 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (MY_INTF)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'myinterfac0_.key1 as key1_0_, myinterfac0_.key2 as key2_0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=MY_INTF,tableAlias=myinterfac0_,origin=null,columns={,className=org.hibernate.test.abstractembeddedcomponents.cid.MyInterface}}}
| \-[SQL_TOKEN] SqlFragment: 'myinterfac0_.name as name0_, myinterfac0_."TYPE" as TYPE3_0_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[myinterfac0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'MY_INTF myinterfac0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=MY_INTF,tableAlias=myinterfac0_,origin=null,columns={,className=org.hibernate.test.abstractembeddedcomponents.cid.MyInterface}}
14:10:04,429 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,438 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.abstractembeddedcomponents.cid.MyInterface
14:10:04,438 DEBUG QueryTranslatorImpl:236 - SQL: select myinterfac0_.key1 as key1_0_, myinterfac0_.key2 as key2_0_, myinterfac0_.name as name0_, myinterfac0_."TYPE" as TYPE3_0_ from MY_INTF myinterfac0_
14:10:04,440 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,445 DEBUG SQL:104 -
select
myinterfac0_.key1 as key1_0_,
myinterfac0_.key2 as key2_0_,
myinterfac0_.name as name0_,
myinterfac0_."TYPE" as TYPE3_0_
from
MY_INTF myinterfac0_
14:10:04,450 DEBUG SQL:104 -
delete
from
MY_INTF
where
key1=?
and key2=?
14:10:04,457 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,463 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,463 DEBUG SQL:104 -
drop table MY_INTF if exists
14:10:04,464 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,465 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.abstractembeddedcomponents.propertyref.AbstractComponentPropertyRefTest" tests="1" time="0.256" timestamp="2013-02-28T20:10:04">
<properties />
<testcase classname="org.hibernate.test.abstractembeddedcomponents.propertyref.AbstractComponentPropertyRefTest" name="testPropertiesRefCascades" time="0.094" />
<system-out><![CDATA[14:10:04,469 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.abstractembeddedcomponents.propertyref.AbstractComponentPropertyRefTest
14:10:04,473 INFO Configuration:706 - HHH000221: Reading mappings from resource: org/hibernate/test/abstractembeddedcomponents/propertyref/Mappings.hbm.xml
14:10:04,518 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:04,518 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:04,518 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:04,519 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,519 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:04,523 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:04,524 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:04,524 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:04,525 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:04,525 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:04,560 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,571 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,572 DEBUG SQL:104 -
alter table ADDRESS
drop constraint FKE66327D44493AA80
14:10:04,573 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table ADDRESS drop constraint FKE66327D44493AA80
14:10:04,573 ERROR SchemaExport:426 - Table "ADDRESS" not found; SQL statement:
alter table ADDRESS
drop constraint FKE66327D44493AA80 [42102-145]
14:10:04,574 DEBUG SQL:104 -
alter table SERVER
drop constraint FK91952343862BE88A
14:10:04,575 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table SERVER drop constraint FK91952343862BE88A
14:10:04,575 ERROR SchemaExport:426 - Table "SERVER" not found; SQL statement:
alter table SERVER
drop constraint FK91952343862BE88A [42102-145]
14:10:04,575 DEBUG SQL:104 -
drop table ADDRESS if exists
14:10:04,576 DEBUG SQL:104 -
drop table SERVER if exists
14:10:04,576 DEBUG SQL:104 -
create table ADDRESS (
ADDRESS_ID bigint generated by default as identity,
ADDRESS_TYPE varchar(30) not null,
SERVER_ID bigint not null,
primary key (ADDRESS_ID)
)
14:10:04,591 DEBUG SQL:104 -
create table SERVER (
SERVER_ID bigint generated by default as identity,
SERVER_TYPE varchar(10) not null,
ADDRESS_TYPE varchar(255),
primary key (SERVER_ID)
)
14:10:04,596 DEBUG SQL:104 -
alter table ADDRESS
add constraint FKE66327D44493AA80
foreign key (SERVER_ID)
references SERVER
14:10:04,603 DEBUG SQL:104 -
alter table SERVER
add constraint FK91952343862BE88A
foreign key (ADDRESS_TYPE, SERVER_ID)
references ADDRESS (ADDRESS_TYPE, SERVER_ID)
14:10:04,614 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,615 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:04,615 INFO CustomRunner:139 - Test: testPropertiesRefCascades
14:10:04,627 DEBUG SQL:104 -
insert
into
SERVER
(SERVER_ID, SERVER_TYPE)
values
(null, '1')
14:10:04,634 DEBUG SQL:104 -
insert
into
ADDRESS
(ADDRESS_ID, SERVER_ID, ADDRESS_TYPE)
values
(null, ?, '2')
14:10:04,649 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.abstractembeddedcomponents.propertyref.Server s join fetch s.address
14:10:04,655 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
+-[RANGE] Node: 'RANGE'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[DOT] Node: '.'
| | | | | +-[DOT] Node: '.'
| | | | | | +-[IDENT] Node: 'org'
| | | | | | \-[IDENT] Node: 'hibernate'
| | | | | \-[IDENT] Node: 'test'
| | | | \-[IDENT] Node: 'abstractembeddedcomponents'
| | | \-[IDENT] Node: 'propertyref'
| | \-[IDENT] Node: 'Server'
| \-[ALIAS] Node: 's'
\-[JOIN] Node: 'join'
+-[FETCH] Node: 'fetch'
\-[DOT] Node: '.'
+-[IDENT] Node: 's'
\-[IDENT] Node: 'address'
14:10:04,657 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,659 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.abstractembeddedcomponents.propertyref.Server (s) -> server0_
14:10:04,660 DEBUG FromReferenceNode:74 - Resolved : s -> server0_.SERVER_ID
14:10:04,662 DEBUG DotNode:599 - getDataType() : address -> org.hibernate.type.ManyToOneType(org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl)
14:10:04,662 DEBUG DotNode:389 - dereferenceEntityJoin() : generating join for address in org.hibernate.test.abstractembeddedcomponents.propertyref.Server (<no alias>) parent = [ {null} ]
14:10:04,663 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl (<no alias>) -> addressimp1_
14:10:04,663 DEBUG FromClause:282 - addJoinByPathMap() : s.address -> FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=ADDRESS,tableAlias=addressimp1_,origin=SERVER server0_,columns={server0_.ADDRESS_TYPE server0_.SERVER_ID ,className=org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl}}
14:10:04,663 DEBUG FromReferenceNode:74 - Resolved : s.address -> server0_.ADDRESS_TYPE, server0_.SERVER_ID
14:10:04,664 DEBUG HqlSqlWalker:403 - createFromJoinElement() : -- join tree --
\-[JOIN_FRAGMENT] FromElement: 'ADDRESS addressimp1_' FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=ADDRESS,tableAlias=addressimp1_,origin=SERVER server0_,columns={server0_.ADDRESS_TYPE server0_.SERVER_ID ,className=org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl}}
14:10:04,664 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} ( SERVER server0_ ADDRESS addressimp1_ ) ) )
14:10:04,665 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:04,665 DEBUG JoinProcessor:175 - Using FROM fragment [SERVER server0_]
14:10:04,669 DEBUG JoinProcessor:175 - Using FROM fragment [inner join ADDRESS addressimp1_ on server0_.ADDRESS_TYPE=addressimp1_.ADDRESS_TYPE and server0_.SERVER_ID=addressimp1_.SERVER_ID and addressimp1_.ADDRESS_TYPE='2']
14:10:04,670 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (ADDRESS,SERVER)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'server0_.SERVER_ID as SERVER1_1_0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=s,role=null,tableName=SERVER,tableAlias=server0_,origin=null,columns={,className=org.hibernate.test.abstractembeddedcomponents.propertyref.Server}}}
| +-[SELECT_EXPR] SelectExpressionImpl: 'addressimp1_.ADDRESS_ID as ADDRESS1_0_1_' {FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=ADDRESS,tableAlias=addressimp1_,origin=SERVER server0_,columns={server0_.ADDRESS_TYPE server0_.SERVER_ID ,className=org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl}}}
| +-[SQL_TOKEN] SqlFragment: 'server0_.SERVER_TYPE as SERVER2_1_0_, server0_.ADDRESS_TYPE as ADDRESS3_1_0_'
| \-[SQL_TOKEN] SqlFragment: 'addressimp1_.ADDRESS_TYPE as ADDRESS2_0_1_, addressimp1_.SERVER_ID as SERVER3_0_1_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=2, fromElements=2, fromElementByClassAlias=[s], fromElementByTableAlias=[server0_, addressimp1_], fromElementsByPath=[s.address], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'SERVER server0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=s,role=null,tableName=SERVER,tableAlias=server0_,origin=null,columns={,className=org.hibernate.test.abstractembeddedcomponents.propertyref.Server}}
\-[JOIN_FRAGMENT] FromElement: 'inner join ADDRESS addressimp1_ on server0_.ADDRESS_TYPE=addressimp1_.ADDRESS_TYPE and server0_.SERVER_ID=addressimp1_.SERVER_ID and addressimp1_.ADDRESS_TYPE='2'' FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=ADDRESS,tableAlias=addressimp1_,origin=SERVER server0_,columns={server0_.ADDRESS_TYPE server0_.SERVER_ID ,className=org.hibernate.test.abstractembeddedcomponents.propertyref.AddressImpl}}
14:10:04,670 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,671 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.abstractembeddedcomponents.propertyref.Server s join fetch s.address
14:10:04,671 DEBUG QueryTranslatorImpl:236 - SQL: select server0_.SERVER_ID as SERVER1_1_0_, addressimp1_.ADDRESS_ID as ADDRESS1_0_1_, server0_.SERVER_TYPE as SERVER2_1_0_, server0_.ADDRESS_TYPE as ADDRESS3_1_0_, addressimp1_.ADDRESS_TYPE as ADDRESS2_0_1_, addressimp1_.SERVER_ID as SERVER3_0_1_ from SERVER server0_ inner join ADDRESS addressimp1_ on server0_.ADDRESS_TYPE=addressimp1_.ADDRESS_TYPE and server0_.SERVER_ID=addressimp1_.SERVER_ID and addressimp1_.ADDRESS_TYPE='2'
14:10:04,671 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,672 DEBUG SQL:104 -
select
server0_.SERVER_ID as SERVER1_1_0_,
addressimp1_.ADDRESS_ID as ADDRESS1_0_1_,
server0_.SERVER_TYPE as SERVER2_1_0_,
server0_.ADDRESS_TYPE as ADDRESS3_1_0_,
addressimp1_.ADDRESS_TYPE as ADDRESS2_0_1_,
addressimp1_.SERVER_ID as SERVER3_0_1_
from
SERVER server0_
inner join
ADDRESS addressimp1_
on server0_.ADDRESS_TYPE=addressimp1_.ADDRESS_TYPE
and server0_.SERVER_ID=addressimp1_.SERVER_ID
and addressimp1_.ADDRESS_TYPE='2'
14:10:04,688 DEBUG SQL:104 -
delete
from
ADDRESS
where
ADDRESS_ID=?
14:10:04,689 DEBUG SQL:104 -
delete
from
SERVER
where
SERVER_ID=?
14:10:04,711 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,713 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,714 DEBUG SQL:104 -
alter table ADDRESS
drop constraint FKE66327D44493AA80
14:10:04,717 DEBUG SQL:104 -
alter table SERVER
drop constraint FK91952343862BE88A
14:10:04,719 DEBUG SQL:104 -
drop table ADDRESS if exists
14:10:04,721 DEBUG SQL:104 -
drop table SERVER if exists
14:10:04,723 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,723 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,989 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.ConfigurationTest" tests="6" time="1.4" timestamp="2013-02-28T20:10:04">
<properties />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testIgnoringHbm" time="0.187" />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testDeclarativeMix" time="0.194" />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testPrecedenceAnnotation" time="0.236" />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testHbmWithSubclassExtends" time="0.278" />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testAnnReferencesHbm" time="0.328" />
<testcase classname="org.hibernate.test.annotations.ConfigurationTest" name="testPrecedenceHbm" time="0.173" />
<system-out><![CDATA[14:10:04,735 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:04,735 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:04,739 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:04,789 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:04,806 WARN Configuration:1778 - HHH000125: Mapping metadata cache was not completely processed
14:10:04,807 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:04,807 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:04,808 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:04,808 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,808 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:04,811 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:04,811 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:04,812 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:04,812 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:04,812 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:04,828 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,829 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,829 DEBUG SQL:104 -
drop table Plane if exists
14:10:04,830 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:04,832 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,832 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:04,833 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:04,839 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:04,853 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,854 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:04,857 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:04,858 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:04,859 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:04,872 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:04,873 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:04,873 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:04,874 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive0_, plane0_.fld_altitude as fld4_0_, plane0_.color as color0_, plane0_.serialnbr as serialnbr0_, plane0_.nbrOfSeats as nbrOfSeats0_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:04,875 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,876 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:04,876 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id0_, plane0_.alive as alive0_, plane0_.fld_altitude as fld4_0_, plane0_.color as color0_, plane0_.serialnbr as serialnbr0_, plane0_.nbrOfSeats as nbrOfSeats0_ from Plane plane0_ where plane0_.id=?
14:10:04,876 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,879 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from Boat
14:10:04,880 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[IDENT] Node: 'Boat'
14:10:04,880 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,881 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane
14:10:04,893 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Plane'
14:10:04,894 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,895 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:04,895 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) )
14:10:04,895 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:04,895 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:04,896 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive0_, plane0_.fld_altitude as fld4_0_, plane0_.color as color0_, plane0_.serialnbr as serialnbr0_, plane0_.nbrOfSeats as nbrOfSeats0_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
14:10:04,897 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,897 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane
14:10:04,897 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id0_, plane0_.alive as alive0_, plane0_.fld_altitude as fld4_0_, plane0_.color as color0_, plane0_.serialnbr as serialnbr0_, plane0_.nbrOfSeats as nbrOfSeats0_ from Plane plane0_
14:10:04,909 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:04,910 DEBUG SQL:104 -
select
plane0_.id as id0_,
plane0_.alive as alive0_,
plane0_.fld_altitude as fld4_0_,
plane0_.color as color0_,
plane0_.serialnbr as serialnbr0_,
plane0_.nbrOfSeats as nbrOfSeats0_
from
Plane plane0_
14:10:04,913 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:04,914 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:04,914 DEBUG SQL:104 -
drop table Plane if exists
14:10:04,916 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:04,916 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,933 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:04,933 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:04,938 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:04,984 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:04,989 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:04,989 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:04,990 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:04,990 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:04,990 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:04,993 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:04,994 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:04,995 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:04,996 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:04,996 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:05,015 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,016 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,017 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,019 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,020 DEBUG SQL:104 -
create table BoatInXml (
id integer generated by default as identity,
boat_size integer,
primary key (id)
)
14:10:05,022 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:05,033 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,035 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:05,037 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,039 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:05,044 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,045 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,045 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:05,045 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:05,046 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:05,046 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:05,046 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,047 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,047 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:05,048 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,049 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,049 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id1_, plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_ from Plane plane0_ where plane0_.id=?
14:10:05,049 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,052 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Boat
14:10:05,054 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Boat'
14:10:05,055 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,056 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Boat (<no alias>) -> boat0_
14:10:05,056 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} BoatInXml boat0_ ) )
14:10:05,056 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,057 DEBUG JoinProcessor:175 - Using FROM fragment [BoatInXml boat0_]
14:10:05,057 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (BoatInXml)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'boat0_.id as id0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=BoatInXml,tableAlias=boat0_,origin=null,columns={,className=org.hibernate.test.annotations.Boat}}}
| \-[SQL_TOKEN] SqlFragment: 'boat0_.boat_size as boat2_0_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[boat0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'BoatInXml boat0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=BoatInXml,tableAlias=boat0_,origin=null,columns={,className=org.hibernate.test.annotations.Boat}}
14:10:05,058 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,059 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Boat
14:10:05,059 DEBUG QueryTranslatorImpl:236 - SQL: select boat0_.id as id0_, boat0_.boat_size as boat2_0_ from BoatInXml boat0_
14:10:05,059 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,060 DEBUG SQL:104 -
select
boat0_.id as id0_,
boat0_.boat_size as boat2_0_
from
BoatInXml boat0_
14:10:05,062 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane
14:10:05,064 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Plane'
14:10:05,065 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,065 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,066 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) )
14:10:05,066 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,066 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,067 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
14:10:05,068 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,068 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane
14:10:05,068 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id1_, plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_ from Plane plane0_
14:10:05,069 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,071 DEBUG SQL:104 -
select
plane0_.id as id1_,
plane0_.alive as alive1_,
plane0_.fld_altitude as fld4_1_,
plane0_.color as color1_,
plane0_.serialnbr as serialnbr1_,
plane0_.nbrOfSeats as nbrOfSeats1_
from
Plane plane0_
14:10:05,105 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,106 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,107 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,108 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,110 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,110 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,115 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,116 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,121 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:05,188 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:05,198 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:05,198 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:05,198 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:05,199 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,199 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:05,201 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:05,201 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:05,202 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:05,202 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:05,202 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:05,214 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,215 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,216 DEBUG SQL:104 -
drop table Boat if exists
14:10:05,216 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,216 DEBUG SQL:104 -
create table Boat (
id integer generated by default as identity,
boat_size integer,
weight integer not null,
primary key (id)
)
14:10:05,217 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:05,234 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,235 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:05,236 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,238 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:05,240 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,241 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,241 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:05,242 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:05,242 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:05,242 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:05,243 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,243 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,244 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:05,257 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,257 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,258 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id1_, plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_ from Plane plane0_ where plane0_.id=?
14:10:05,258 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,276 DEBUG SQL:104 -
insert
into
Boat
(id, boat_size, weight)
values
(null, ?, ?)
14:10:05,280 DEBUG SQL:104 -
select
boat0_.id as id0_0_,
boat0_.boat_size as boat2_0_0_,
boat0_.weight as weight0_0_
from
Boat boat0_
where
boat0_.id=?
14:10:05,339 DEBUG SQL:104 -
delete
from
Boat
where
id=?
14:10:05,342 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,343 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,343 DEBUG SQL:104 -
drop table Boat if exists
14:10:05,345 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,346 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,346 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,351 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,351 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,365 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:05,384 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:05,385 INFO Configuration:753 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Ferry.hbm.xml
14:10:05,385 INFO Configuration:706 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Ferry.hbm.xml
14:10:05,420 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:05,421 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:05,421 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:05,422 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,422 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:05,426 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:05,434 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:05,435 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:05,436 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:05,436 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:05,464 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,477 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,478 DEBUG SQL:104 -
alter table FerryJoined
drop constraint FKE5A820E31B10B53B
14:10:05,478 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table FerryJoined drop constraint FKE5A820E31B10B53B
14:10:05,478 ERROR SchemaExport:426 - Table "FERRYJOINED" not found; SQL statement:
alter table FerryJoined
drop constraint FKE5A820E31B10B53B [42102-145]
14:10:05,478 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,478 DEBUG SQL:104 -
drop table FerryJoined if exists
14:10:05,479 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,479 DEBUG SQL:104 -
create table BoatInXml (
id integer generated by default as identity,
boat_size integer,
primary key (id)
)
14:10:05,480 DEBUG SQL:104 -
create table FerryJoined (
id integer not null,
sea varchar(255),
primary key (id)
)
14:10:05,481 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:05,482 DEBUG SQL:104 -
alter table FerryJoined
add constraint FKE5A820E31B10B53B
foreign key (id)
references BoatInXml
14:10:05,484 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,485 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:05,486 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,511 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:05,513 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,514 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,515 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:05,515 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:05,515 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:05,516 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:05,516 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,517 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,518 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id2_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive2_, plane0_.fld_altitude as fld4_2_, plane0_.color as color2_, plane0_.serialnbr as serialnbr2_, plane0_.nbrOfSeats as nbrOfSeats2_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:05,519 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,519 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,520 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id2_, plane0_.alive as alive2_, plane0_.fld_altitude as fld4_2_, plane0_.color as color2_, plane0_.serialnbr as serialnbr2_, plane0_.nbrOfSeats as nbrOfSeats2_ from Plane plane0_ where plane0_.id=?
14:10:05,520 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,521 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Ferry
14:10:05,523 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Ferry'
14:10:05,530 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,531 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Ferry (<no alias>) -> ferry0_
14:10:05,532 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} FerryJoined ferry0_ ) )
14:10:05,532 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,532 DEBUG JoinProcessor:175 - Using FROM fragment [FerryJoined ferry0_ inner join BoatInXml ferry0_1_ on ferry0_.id=ferry0_1_.id]
14:10:05,533 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (FerryJoined,BoatInXml)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'ferry0_.id as id0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=FerryJoined,tableAlias=ferry0_,origin=null,columns={,className=org.hibernate.test.annotations.Ferry}}}
| \-[SQL_TOKEN] SqlFragment: 'ferry0_1_.boat_size as boat2_0_, ferry0_.sea as sea1_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[ferry0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'FerryJoined ferry0_ inner join BoatInXml ferry0_1_ on ferry0_.id=ferry0_1_.id' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=FerryJoined,tableAlias=ferry0_,origin=null,columns={,className=org.hibernate.test.annotations.Ferry}}
14:10:05,534 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,534 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Ferry
14:10:05,535 DEBUG QueryTranslatorImpl:236 - SQL: select ferry0_.id as id0_, ferry0_1_.boat_size as boat2_0_, ferry0_.sea as sea1_ from FerryJoined ferry0_ inner join BoatInXml ferry0_1_ on ferry0_.id=ferry0_1_.id
14:10:05,535 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,535 DEBUG SQL:104 -
select
ferry0_.id as id0_,
ferry0_1_.boat_size as boat2_0_,
ferry0_.sea as sea1_
from
FerryJoined ferry0_
inner join
BoatInXml ferry0_1_
on ferry0_.id=ferry0_1_.id
14:10:05,538 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane
14:10:05,541 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Plane'
14:10:05,542 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,543 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,543 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) )
14:10:05,543 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,544 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,551 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id2_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive2_, plane0_.fld_altitude as fld4_2_, plane0_.color as color2_, plane0_.serialnbr as serialnbr2_, plane0_.nbrOfSeats as nbrOfSeats2_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
14:10:05,553 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,554 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane
14:10:05,613 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id2_, plane0_.alive as alive2_, plane0_.fld_altitude as fld4_2_, plane0_.color as color2_, plane0_.serialnbr as serialnbr2_, plane0_.nbrOfSeats as nbrOfSeats2_ from Plane plane0_
14:10:05,613 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,614 DEBUG SQL:104 -
select
plane0_.id as id2_,
plane0_.alive as alive2_,
plane0_.fld_altitude as fld4_2_,
plane0_.color as color2_,
plane0_.serialnbr as serialnbr2_,
plane0_.nbrOfSeats as nbrOfSeats2_
from
Plane plane0_
14:10:05,619 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,620 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,620 DEBUG SQL:104 -
alter table FerryJoined
drop constraint FKE5A820E31B10B53B
14:10:05,621 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,622 DEBUG SQL:104 -
drop table FerryJoined if exists
14:10:05,623 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,625 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,625 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,676 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,676 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,682 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:05,708 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:05,732 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:05,733 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:05,733 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:05,733 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,734 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:05,764 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:05,765 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:05,766 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:05,766 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:05,766 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:05,812 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,813 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,813 DEBUG SQL:104 -
alter table Port_BoatInXml
drop constraint FKA5CA2D147B35F9C7
14:10:05,813 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Port_BoatInXml drop constraint FKA5CA2D147B35F9C7
14:10:05,814 ERROR SchemaExport:426 - Table "PORT_BOATINXML" not found; SQL statement:
alter table Port_BoatInXml
drop constraint FKA5CA2D147B35F9C7 [42102-145]
14:10:05,814 DEBUG SQL:104 -
alter table Port_BoatInXml
drop constraint FKA5CA2D143B784FA
14:10:05,814 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Port_BoatInXml drop constraint FKA5CA2D143B784FA
14:10:05,814 ERROR SchemaExport:426 - Table "PORT_BOATINXML" not found; SQL statement:
alter table Port_BoatInXml
drop constraint FKA5CA2D143B784FA [42102-145]
14:10:05,814 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,815 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,815 DEBUG SQL:104 -
drop table Port if exists
14:10:05,815 DEBUG SQL:104 -
drop table Port_BoatInXml if exists
14:10:05,815 DEBUG SQL:104 -
create table BoatInXml (
id integer generated by default as identity,
boat_size integer,
primary key (id)
)
14:10:05,832 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:05,833 DEBUG SQL:104 -
create table Port (
id bigint generated by default as identity,
primary key (id)
)
14:10:05,834 DEBUG SQL:104 -
create table Port_BoatInXml (
Port_id bigint not null,
boats_id integer not null,
primary key (Port_id, boats_id)
)
14:10:05,837 DEBUG SQL:104 -
alter table Port_BoatInXml
add constraint UK_A5CA2D14602551A7 unique (boats_id)
14:10:05,839 DEBUG SQL:104 -
alter table Port_BoatInXml
add constraint FKA5CA2D147B35F9C7
foreign key (boats_id)
references BoatInXml
14:10:05,848 DEBUG SQL:104 -
alter table Port_BoatInXml
add constraint FKA5CA2D143B784FA
foreign key (Port_id)
references Port
14:10:05,890 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,891 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:05,892 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,894 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:05,894 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,895 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:05,895 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:05,895 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:05,895 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:05,896 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:05,896 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,896 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:05,897 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:05,897 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,898 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:05,898 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id1_, plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_ from Plane plane0_ where plane0_.id=?
14:10:05,898 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,899 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Boat
14:10:05,901 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Boat'
14:10:05,903 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,904 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Boat (<no alias>) -> boat0_
14:10:05,904 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} BoatInXml boat0_ ) )
14:10:05,905 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,905 DEBUG JoinProcessor:175 - Using FROM fragment [BoatInXml boat0_]
14:10:05,906 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (BoatInXml)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'boat0_.id as id0_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=BoatInXml,tableAlias=boat0_,origin=null,columns={,className=org.hibernate.test.annotations.Boat}}}
| \-[SQL_TOKEN] SqlFragment: 'boat0_.boat_size as boat2_0_'
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[boat0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'BoatInXml boat0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=BoatInXml,tableAlias=boat0_,origin=null,columns={,className=org.hibernate.test.annotations.Boat}}
14:10:05,907 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,907 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Boat
14:10:05,907 DEBUG QueryTranslatorImpl:236 - SQL: select boat0_.id as id0_, boat0_.boat_size as boat2_0_ from BoatInXml boat0_
14:10:05,908 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,908 DEBUG SQL:104 -
select
boat0_.id as id0_,
boat0_.boat_size as boat2_0_
from
BoatInXml boat0_
14:10:05,936 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Port
14:10:05,938 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
\-[SELECT_FROM] Node: 'SELECT_FROM'
\-[FROM] Node: 'from'
\-[RANGE] Node: 'RANGE'
\-[DOT] Node: '.'
+-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[IDENT] Node: 'org'
| | | \-[IDENT] Node: 'hibernate'
| | \-[IDENT] Node: 'test'
| \-[IDENT] Node: 'annotations'
\-[IDENT] Node: 'Port'
14:10:05,939 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,940 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Port (<no alias>) -> port0_
14:10:05,940 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Port port0_ ) )
14:10:05,941 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:05,941 DEBUG JoinProcessor:175 - Using FROM fragment [Port port0_]
14:10:05,942 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Port)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| \-[SELECT_EXPR] SelectExpressionImpl: 'port0_.id as id2_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Port,tableAlias=port0_,origin=null,columns={,className=org.hibernate.test.annotations.Port}}}
\-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[port0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
\-[FROM_FRAGMENT] FromElement: 'Port port0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Port,tableAlias=port0_,origin=null,columns={,className=org.hibernate.test.annotations.Port}}
14:10:05,942 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,943 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Port
14:10:05,943 DEBUG QueryTranslatorImpl:236 - SQL: select port0_.id as id2_ from Port port0_
14:10:05,943 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:05,944 DEBUG SQL:104 -
select
port0_.id as id2_
from
Port port0_
14:10:05,945 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:05,946 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:05,947 DEBUG SQL:104 -
alter table Port_BoatInXml
drop constraint FKA5CA2D147B35F9C7
14:10:05,947 DEBUG SQL:104 -
alter table Port_BoatInXml
drop constraint FKA5CA2D143B784FA
14:10:05,948 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:05,949 DEBUG SQL:104 -
drop table Plane if exists
14:10:05,950 DEBUG SQL:104 -
drop table Port if exists
14:10:05,952 DEBUG SQL:104 -
drop table Port_BoatInXml if exists
14:10:05,953 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:05,953 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:05,958 INFO Configuration:1972 - HHH000043: Configuring from resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,959 INFO Configuration:1991 - HHH000040: Configuration resource: org/hibernate/test/annotations/hibernate.cfg.xml
14:10:05,965 INFO Configuration:725 - HHH000221: Reading mappings from resource: org/hibernate/test/annotations/Boat.hbm.xml
14:10:06,008 INFO Configuration:2113 - HHH000041: Configured SessionFactory: null
14:10:06,015 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:06,016 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:06,016 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:06,017 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:06,017 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:06,019 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:06,019 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:06,020 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:06,020 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:06,021 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:06,045 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:06,046 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:06,049 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:06,049 DEBUG SQL:104 -
drop table Plane if exists
14:10:06,050 DEBUG SQL:104 -
create table BoatInXml (
id integer generated by default as identity,
boat_size integer,
primary key (id)
)
14:10:06,051 DEBUG SQL:104 -
create table Plane (
planetype varchar(100) not null,
id bigint generated by default as identity,
alive boolean not null,
fld_altitude integer,
color varchar(255) not null,
serialnbr varchar(255),
nbrOfSeats integer not null,
primary key (id)
)
14:10:06,052 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:06,052 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:06,053 DEBUG QueryTranslatorImpl:265 - parse() - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:06,055 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| \-[FROM] Node: 'from'
| \-[RANGE] Node: 'RANGE'
| \-[DOT] Node: '.'
| +-[DOT] Node: '.'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[IDENT] Node: 'org'
| | | | \-[IDENT] Node: 'hibernate'
| | | \-[IDENT] Node: 'test'
| | \-[IDENT] Node: 'annotations'
| \-[IDENT] Node: 'Plane'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'id'
\-[COLON] Node: ':'
\-[IDENT] Node: 'id'
14:10:06,056 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:06,058 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.Plane (<no alias>) -> plane0_
14:10:06,058 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:06,059 DEBUG DotNode:599 - getDataType() : id -> org.hibernate.type.LongType@4bf3f9d
14:10:06,059 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.id -> plane0_.id
14:10:06,059 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( FromClause{level=1} Plane plane0_ ) ( where ( = ( plane0_.id {synthetic-alias} id ) ? ) ) )
14:10:06,060 DEBUG HqlSqlWalker:869 - Derived SELECT clause created.
14:10:06,061 DEBUG JoinProcessor:175 - Using FROM fragment [Plane plane0_]
14:10:06,081 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (Plane)
+-[SELECT_CLAUSE] SelectClause: '{derived select clause}'
| +-[SELECT_EXPR] SelectExpressionImpl: 'plane0_.id as id1_' {FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}}
| \-[SQL_TOKEN] SqlFragment: 'plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[], fromElementByTableAlias=[plane0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'Plane plane0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=null,role=null,tableName=Plane,tableAlias=plane0_,origin=null,columns={,className=org.hibernate.test.annotations.Plane}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'plane0_.id' {propertyName=id,dereferenceType=ALL,propertyPath=id,path={synthetic-alias}.id,tableAlias=plane0_,className=org.hibernate.test.annotations.Plane,classAlias=null}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'id' {originalText=id}
\-[NAMED_PARAM] ParameterNode: '?' {name=id, expectedType=org.hibernate.type.LongType@4bf3f9d}
14:10:06,082 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:06,083 DEBUG QueryTranslatorImpl:235 - HQL: from org.hibernate.test.annotations.Plane where id = :id
14:10:06,084 DEBUG QueryTranslatorImpl:236 - SQL: select plane0_.id as id1_, plane0_.alive as alive1_, plane0_.fld_altitude as fld4_1_, plane0_.color as color1_, plane0_.serialnbr as serialnbr1_, plane0_.nbrOfSeats as nbrOfSeats1_ from Plane plane0_ where plane0_.id=?
14:10:06,084 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:06,086 DEBUG SQL:104 -
insert
into
BoatInXml
(id, boat_size)
values
(null, ?)
14:10:06,089 DEBUG SQL:104 -
select
boat0_.id as id0_0_,
boat0_.boat_size as boat2_0_0_
from
BoatInXml boat0_
where
boat0_.id=?
14:10:06,091 DEBUG SQL:104 -
delete
from
BoatInXml
where
id=?
14:10:06,108 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:06,109 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:06,109 DEBUG SQL:104 -
drop table BoatInXml if exists
14:10:06,123 DEBUG SQL:104 -
drop table Plane if exists
14:10:06,126 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:06,126 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,335 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.JoinedSubclassTest" tests="3" time="0.361" timestamp="2013-02-28T20:10:06">
<properties />
<testcase classname="org.hibernate.test.annotations.JoinedSubclassTest" name="testCompositePk" time="0.045" />
<testcase classname="org.hibernate.test.annotations.JoinedSubclassTest" name="testDeclaredValues" time="0.076" />
<testcase classname="org.hibernate.test.annotations.JoinedSubclassTest" name="testDefaultValues" time="0.044" />
<system-out><![CDATA[14:10:06,587 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.JoinedSubclassTest
14:10:06,614 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:06,615 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:06,615 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:06,615 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:06,615 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:06,618 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:06,619 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:06,620 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:06,620 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:06,620 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:06,678 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:06,679 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:06,679 DEBUG SQL:104 -
alter table AmericaCupClass
drop constraint FK5B3D79E890B6E71A
14:10:06,685 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table AmericaCupClass drop constraint FK5B3D79E890B6E71A
14:10:06,685 ERROR SchemaExport:426 - Table "AMERICACUPCLASS" not found; SQL statement:
alter table AmericaCupClass
drop constraint FK5B3D79E890B6E71A [42102-145]
14:10:06,685 DEBUG SQL:104 -
alter table AmericaCupClass
drop constraint FK5B3D79E81E2A589A
14:10:06,686 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table AmericaCupClass drop constraint FK5B3D79E81E2A589A
14:10:06,686 ERROR SchemaExport:426 - Table "AMERICACUPCLASS" not found; SQL statement:
alter table AmericaCupClass
drop constraint FK5B3D79E81E2A589A [42102-145]
14:10:06,686 DEBUG SQL:104 -
alter table Carrot
drop constraint FK77E125A388E53625
14:10:06,687 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Carrot drop constraint FK77E125A388E53625
14:10:06,687 ERROR SchemaExport:426 - Table "CARROT" not found; SQL statement:
alter table Carrot
drop constraint FK77E125A388E53625 [42102-145]
14:10:06,687 DEBUG SQL:104 -
alter table Ferry
drop constraint FK40A10FA1B10B53B
14:10:06,687 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Ferry drop constraint FK40A10FA1B10B53B
14:10:06,687 ERROR SchemaExport:426 - Table "FERRY" not found; SQL statement:
alter table Ferry
drop constraint FK40A10FA1B10B53B [42102-145]
14:10:06,688 DEBUG SQL:104 -
alter table Tomato
drop constraint FK95A64C2AC352AF17
14:10:06,688 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Tomato drop constraint FK95A64C2AC352AF17
14:10:06,688 ERROR SchemaExport:426 - Table "TOMATO" not found; SQL statement:
alter table Tomato
drop constraint FK95A64C2AC352AF17 [42102-145]
14:10:06,688 DEBUG SQL:104 -
drop table AmericaCupClass if exists
14:10:06,689 DEBUG SQL:104 -
drop table Boat if exists
14:10:06,689 DEBUG SQL:104 -
drop table Carrot if exists
14:10:06,690 DEBUG SQL:104 -
drop table Country if exists
14:10:06,691 DEBUG SQL:104 -
drop table Ferry if exists
14:10:06,691 DEBUG SQL:104 -
drop table Tomato if exists
14:10:06,693 DEBUG SQL:104 -
drop table Vegetable if exists
14:10:06,693 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:06,694 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:06,694 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:06,694 DEBUG SQL:104 -
create table AmericaCupClass (
BOAT_ID integer not null,
COUNTRY_ID integer,
primary key (BOAT_ID)
)
14:10:06,695 DEBUG SQL:104 -
create table Boat (
id integer not null,
boat_size integer,
weight integer not null,
primary key (id)
)
14:10:06,707 DEBUG SQL:104 -
create table Carrot (
length integer not null,
carrot_farmer varchar(255) not null,
harvest varchar(255) not null,
primary key (carrot_farmer, harvest)
)
14:10:06,710 DEBUG SQL:104 -
create table Country (
id integer not null,
name varchar(255),
primary key (id)
)
14:10:06,711 DEBUG SQL:104 -
create table Ferry (
sea varchar(255),
id integer not null,
primary key (id)
)
14:10:06,712 DEBUG SQL:104 -
create table Tomato (
tom_size integer,
farmer varchar(255) not null,
harvestDate varchar(255) not null,
primary key (farmer, harvestDate)
)
14:10:06,712 DEBUG SQL:104 -
create table Vegetable (
farmer varchar(255) not null,
harvestDate varchar(255) not null,
priceInCent bigint not null,
primary key (farmer, harvestDate)
)
14:10:06,713 DEBUG SQL:104 -
alter table AmericaCupClass
add constraint FK5B3D79E890B6E71A
foreign key (COUNTRY_ID)
references Country
14:10:06,715 DEBUG SQL:104 -
alter table AmericaCupClass
add constraint FK5B3D79E81E2A589A
foreign key (BOAT_ID)
references Boat
14:10:06,757 DEBUG SQL:104 -
alter table Carrot
add constraint FK77E125A388E53625
foreign key (carrot_farmer, harvest)
references Vegetable
on delete cascade
14:10:06,759 DEBUG SQL:104 -
alter table Ferry
add constraint FK40A10FA1B10B53B
foreign key (id)
references Boat
14:10:06,760 DEBUG SQL:104 -
alter table Tomato
add constraint FK95A64C2AC352AF17
foreign key (farmer, harvestDate)
references Vegetable
on delete cascade
14:10:06,761 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:06,762 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:06,763 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:06,764 INFO CustomRunner:139 - Test: testCompositePk
14:10:06,767 DEBUG SQL:104 -
insert
into
Vegetable
(priceInCent, farmer, harvestDate)
values
(?, ?, ?)
14:10:06,805 DEBUG SQL:104 -
insert
into
Carrot
(length, carrot_farmer, harvest)
values
(?, ?, ?)
14:10:06,807 DEBUG SQL:104 -
select
this_.farmer as farmer6_0_,
this_.harvestDate as harvestD2_6_0_,
this_.priceInCent as priceInC3_6_0_,
this_1_.length as length2_0_,
this_2_.tom_size as tom1_5_0_,
case
when this_1_.carrot_farmer is not null then 1
when this_2_.farmer is not null then 2
when this_.farmer is not null then 0
end as clazz_0_
from
Vegetable this_
left outer join
Carrot this_1_
on this_.farmer=this_1_.carrot_farmer
and this_.harvestDate=this_1_.harvest
left outer join
Tomato this_2_
on this_.farmer=this_2_.farmer
and this_.harvestDate=this_2_.harvestDate
14:10:06,809 INFO CustomRunner:139 - Test: testDeclaredValues
14:10:06,810 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:06,813 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:06,814 DEBUG SQL:104 -
insert
into
Country
(name, id)
values
(?, ?)
14:10:06,817 DEBUG SQL:104 -
insert
into
Boat
(boat_size, weight, id)
values
(?, ?, ?)
14:10:06,818 DEBUG SQL:104 -
insert
into
AmericaCupClass
(COUNTRY_ID, BOAT_ID)
values
(?, ?)
14:10:06,819 DEBUG SQL:104 -
select
americacup0_.BOAT_ID as id1_1_,
americacup0_1_.boat_size as boat2_1_1_,
americacup0_1_.weight as weight1_1_,
americacup0_.COUNTRY_ID as COUNTRY2_0_1_,
country1_.id as id3_0_,
country1_.name as name3_0_
from
AmericaCupClass americacup0_
inner join
Boat americacup0_1_
on americacup0_.BOAT_ID=americacup0_1_.id
left outer join
Country country1_
on americacup0_.COUNTRY_ID=country1_.id
where
americacup0_.BOAT_ID=?
14:10:06,866 DEBUG SQL:104 -
delete
from
AmericaCupClass
where
BOAT_ID=?
14:10:06,867 DEBUG SQL:104 -
delete
from
Boat
where
id=?
14:10:06,868 DEBUG SQL:104 -
delete
from
Country
where
id=?
14:10:06,886 INFO CustomRunner:139 - Test: testDefaultValues
14:10:06,888 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:06,892 DEBUG SQL:104 -
insert
into
Boat
(boat_size, weight, id)
values
(?, ?, ?)
14:10:06,893 DEBUG SQL:104 -
insert
into
Ferry
(sea, id)
values
(?, ?)
14:10:06,895 DEBUG SQL:104 -
select
ferry0_.id as id1_0_,
ferry0_1_.boat_size as boat2_1_0_,
ferry0_1_.weight as weight1_0_,
ferry0_.sea as sea4_0_
from
Ferry ferry0_
inner join
Boat ferry0_1_
on ferry0_.id=ferry0_1_.id
where
ferry0_.id=?
14:10:06,897 DEBUG SQL:104 -
delete
from
Ferry
where
id=?
14:10:06,898 DEBUG SQL:104 -
delete
from
Boat
where
id=?
14:10:06,931 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:06,932 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:06,932 DEBUG SQL:104 -
alter table AmericaCupClass
drop constraint FK5B3D79E890B6E71A
14:10:06,932 DEBUG SQL:104 -
alter table AmericaCupClass
drop constraint FK5B3D79E81E2A589A
14:10:06,933 DEBUG SQL:104 -
alter table Carrot
drop constraint FK77E125A388E53625
14:10:06,933 DEBUG SQL:104 -
alter table Ferry
drop constraint FK40A10FA1B10B53B
14:10:06,933 DEBUG SQL:104 -
alter table Tomato
drop constraint FK95A64C2AC352AF17
14:10:06,933 DEBUG SQL:104 -
drop table AmericaCupClass if exists
14:10:06,934 DEBUG SQL:104 -
drop table Boat if exists
14:10:06,934 DEBUG SQL:104 -
drop table Carrot if exists
14:10:06,936 DEBUG SQL:104 -
drop table Country if exists
14:10:06,937 DEBUG SQL:104 -
drop table Ferry if exists
14:10:06,937 DEBUG SQL:104 -
drop table Tomato if exists
14:10:06,937 DEBUG SQL:104 -
drop table Vegetable if exists
14:10:06,938 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:06,938 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:06,946 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.SafeMappingTest" tests="1" time="0.004" timestamp="2013-02-28T20:10:06">
<properties />
<testcase classname="org.hibernate.test.annotations.SafeMappingTest" name="testDeclarativeMix" time="0.003" />
<system-out><![CDATA[]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.SecuredBindingTest" tests="1" time="0.008" timestamp="2013-02-28T20:10:06">
<properties />
<testcase classname="org.hibernate.test.annotations.SecuredBindingTest" name="testConfigurationMethods" time="0.007" />
<system-out><![CDATA[14:10:06,960 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:06,961 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [null]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,244 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.access.AccessTest" tests="6" time="0.236" timestamp="2013-02-28T20:10:06">
<properties />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testFieldsOverriding" time="0.014" />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testNonOverridenSubclass" time="0.008" />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testOverridenSubclass" time="0.009" />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testPropertyOverriding" time="0.008" />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testSuperclassNonOverriding" time="0.019" />
<testcase classname="org.hibernate.test.annotations.access.AccessTest" name="testSuperclassOverriding" time="0.052" />
<system-out><![CDATA[14:10:06,971 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.access.AccessTest
14:10:06,993 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:06,993 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:06,993 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:06,994 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:06,994 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:06,996 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:06,996 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:06,997 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:06,997 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:06,997 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,071 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:07,072 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:07,084 DEBUG SQL:104 -
drop table Furniture if exists
14:10:07,084 DEBUG SQL:104 -
drop table Gardenshed if exists
14:10:07,084 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:07,085 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:07,085 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:07,085 DEBUG SQL:104 -
create table Furniture (
DTYPE varchar(31) not null,
id integer not null,
god varchar(255),
color varchar(255),
name varchar(255),
brand varchar(255),
weight bigint not null,
bed_size integer,
primary key (id)
)
14:10:07,086 DEBUG SQL:104 -
create table Gardenshed (
id integer not null,
color varchar(255),
name varchar(255),
floors bigint not null,
primary key (id)
)
14:10:07,086 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:07,087 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:07,087 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,088 INFO CustomRunner:139 - Test: testFieldsOverriding
14:10:07,089 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,096 DEBUG SQL:104 -
insert
into
Gardenshed
(color, name, floors, id)
values
(?, ?, ?, ?)
14:10:07,098 DEBUG SQL:104 -
select
gardenshed0_.id as id1_0_,
gardenshed0_.color as color1_0_,
gardenshed0_.name as name1_0_,
gardenshed0_.floors as floors1_0_
from
Gardenshed gardenshed0_
where
gardenshed0_.id=?
14:10:07,099 DEBUG SQL:104 -
delete
from
Gardenshed
where
id=?
14:10:07,102 INFO CustomRunner:139 - Test: testNonOverridenSubclass
14:10:07,103 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,107 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Chair', ?)
14:10:07,108 DEBUG SQL:104 -
select
chair0_.id as id0_0_,
chair0_.god as god0_0_,
chair0_.color as color0_0_,
chair0_.name as name0_0_,
chair0_.brand as brand0_0_,
chair0_.weight as weight0_0_
from
Furniture chair0_
where
chair0_.id=?
and chair0_.DTYPE='Chair'
14:10:07,109 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:07,111 INFO CustomRunner:139 - Test: testOverridenSubclass
14:10:07,112 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,116 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, bed_size, DTYPE, id)
values
(?, ?, ?, ?, ?, ?, 'BigBed', ?)
14:10:07,117 DEBUG SQL:104 -
select
bigbed0_.id as id0_0_,
bigbed0_.god as god0_0_,
bigbed0_.color as color0_0_,
bigbed0_.name as name0_0_,
bigbed0_.brand as brand0_0_,
bigbed0_.weight as weight0_0_,
bigbed0_.bed_size as bed8_0_0_
from
Furniture bigbed0_
where
bigbed0_.id=?
and bigbed0_.DTYPE='BigBed'
14:10:07,118 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:07,120 INFO CustomRunner:139 - Test: testPropertyOverriding
14:10:07,121 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,123 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:07,124 DEBUG SQL:104 -
select
furniture0_.id as id0_0_,
furniture0_.god as god0_0_,
furniture0_.color as color0_0_,
furniture0_.name as name0_0_,
furniture0_.brand as brand0_0_,
furniture0_.weight as weight0_0_,
furniture0_.bed_size as bed8_0_0_,
furniture0_.DTYPE as DTYPE0_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:07,125 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:07,129 INFO CustomRunner:139 - Test: testSuperclassNonOverriding
14:10:07,134 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,144 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:07,145 DEBUG SQL:104 -
select
furniture0_.id as id0_0_,
furniture0_.god as god0_0_,
furniture0_.color as color0_0_,
furniture0_.name as name0_0_,
furniture0_.brand as brand0_0_,
furniture0_.weight as weight0_0_,
furniture0_.bed_size as bed8_0_0_,
furniture0_.DTYPE as DTYPE0_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:07,147 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:07,148 INFO CustomRunner:139 - Test: testSuperclassOverriding
14:10:07,149 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:07,151 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:07,152 DEBUG SQL:104 -
select
furniture0_.id as id0_0_,
furniture0_.god as god0_0_,
furniture0_.color as color0_0_,
furniture0_.name as name0_0_,
furniture0_.brand as brand0_0_,
furniture0_.weight as weight0_0_,
furniture0_.bed_size as bed8_0_0_,
furniture0_.DTYPE as DTYPE0_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:07,199 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:07,201 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:07,202 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:07,202 DEBUG SQL:104 -
drop table Furniture if exists
14:10:07,202 DEBUG SQL:104 -
drop table Gardenshed if exists
14:10:07,203 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:07,203 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:07,203 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.access.jpa.AccessMappingTest" tests="10" time="0.539" timestamp="2013-02-28T20:10:07">
<properties />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testInconsistentAnnotationPlacement" time="0.014" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testFieldAnnotationPlacement" time="0.031" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testPropertyAnnotationPlacement" time="0.025" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testExplicitPropertyAccessAnnotationsOnProperty" time="0.085" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testExplicitPropertyAccessAnnotationsOnField" time="0.004" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testExplicitPropertyAccessAnnotationsWithHibernateStyleOverride" time="0.054" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testExplicitPropertyAccessAnnotationsWithJpaStyleOverride" time="0.051" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testDefaultFieldAccessIsInherited" time="0.107" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testDefaultPropertyAccessIsInherited" time="0.043" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessMappingTest" name="testAccessOnClassAndId" time="0.092" />
<system-out><![CDATA[14:10:07,228 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,234 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,235 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,235 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,235 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,237 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,238 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,238 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,238 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,239 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,251 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,252 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,261 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,261 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,261 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,262 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,262 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,264 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,264 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,265 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,265 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,265 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,278 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,278 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,313 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,313 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,313 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,314 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,314 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,316 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,316 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,327 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,328 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,329 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,390 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,390 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,401 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,401 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,403 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,404 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,404 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,406 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,406 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,413 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,413 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,414 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,449 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,449 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,464 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,464 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,465 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,465 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,465 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,467 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,467 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,468 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,468 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,468 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,500 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,500 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,508 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,509 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,509 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,509 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,510 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,525 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,526 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,526 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,527 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,527 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,596 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,599 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,614 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,615 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,615 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,615 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,615 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,617 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,617 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,618 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,618 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,618 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,632 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,651 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,661 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,662 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,662 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,662 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,663 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,676 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,676 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,689 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,689 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,690 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,721 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:07,744 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,461 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.access.jpa.AccessTest" tests="9" time="0.374" timestamp="2013-02-28T20:10:07">
<properties />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testDefaultConfigurationModeIsInherited" time="0.024" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testEmbeddableExplicitAccessStrategy" time="0.009" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testEmbeddableUsesAccessStrategyOfContainingClass" time="0.01" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testFieldsOverriding" time="0.009" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testNonOverridenSubclass" time="0.007" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testOverridenSubclass" time="0.008" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testPropertyOverriding" time="0.005" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testSuperclassNonOverriding" time="0.005" />
<testcase classname="org.hibernate.test.annotations.access.jpa.AccessTest" name="testSuperclassOverriding" time="0.004" />
<system-out><![CDATA[14:10:07,748 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.access.jpa.AccessTest
14:10:07,783 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:07,784 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:07,784 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:07,784 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:07,784 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:07,796 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:07,797 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:07,798 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:07,798 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:07,798 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:07,991 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:07,992 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:07,992 DEBUG SQL:104 -
alter table Being_Being
drop constraint FK255250FF46014CAD
14:10:07,992 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Being_Being drop constraint FK255250FF46014CAD
14:10:07,993 ERROR SchemaExport:426 - Table "BEING_BEING" not found; SQL statement:
alter table Being_Being
drop constraint FK255250FF46014CAD [42102-145]
14:10:07,993 DEBUG SQL:104 -
alter table Being_Being
drop constraint FK255250FFB1BCD43
14:10:07,993 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Being_Being drop constraint FK255250FFB1BCD43
14:10:07,993 ERROR SchemaExport:426 - Table "BEING_BEING" not found; SQL statement:
alter table Being_Being
drop constraint FK255250FFB1BCD43 [42102-145]
14:10:08,000 DEBUG SQL:104 -
drop table Being if exists
14:10:08,001 DEBUG SQL:104 -
drop table Being_Being if exists
14:10:08,002 DEBUG SQL:104 -
drop table Furniture if exists
14:10:08,002 DEBUG SQL:104 -
drop table Gardenshed if exists
14:10:08,003 DEBUG SQL:104 -
drop table Shape if exists
14:10:08,003 DEBUG SQL:104 -
drop table Square if exists
14:10:08,003 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:08,003 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:08,003 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:08,004 DEBUG SQL:104 -
create table Being (
DTYPE varchar(31) not null,
id bigint not null,
firstname varchar(255),
lastname varchar(255),
primary key (id)
)
14:10:08,004 DEBUG SQL:104 -
create table Being_Being (
Being_id bigint not null,
friends_id bigint not null
)
14:10:08,005 DEBUG SQL:104 -
create table Furniture (
DTYPE varchar(31) not null,
id integer not null,
god varchar(255),
color varchar(255),
name varchar(255),
brand varchar(255),
weight bigint not null,
bed_size integer,
primary key (id)
)
14:10:08,005 DEBUG SQL:104 -
create table Gardenshed (
id integer not null,
color varchar(255),
name varchar(255),
floors bigint not null,
primary key (id)
)
14:10:08,006 DEBUG SQL:104 -
create table Shape (
DTYPE varchar(31) not null,
id bigint not null,
b integer not null,
g integer not null,
r integer not null,
primary key (id)
)
14:10:08,012 DEBUG SQL:104 -
create table Square (
id bigint not null,
x integer not null,
y integer not null,
primary key (id)
)
14:10:08,012 DEBUG SQL:104 -
alter table Being_Being
add constraint UK_255250FF97594405 unique (friends_id)
14:10:08,013 DEBUG SQL:104 -
alter table Being_Being
add constraint FK255250FF46014CAD
foreign key (friends_id)
references Being
14:10:08,014 DEBUG SQL:104 -
alter table Being_Being
add constraint FK255250FFB1BCD43
foreign key (Being_id)
references Being
14:10:08,015 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:08,018 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:08,028 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,028 INFO CustomRunner:139 - Test: testDefaultConfigurationModeIsInherited
14:10:08,029 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,036 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,040 DEBUG SQL:104 -
insert
into
Being
(firstname, lastname, DTYPE, id)
values
(?, ?, 'User', ?)
14:10:08,041 DEBUG SQL:104 -
insert
into
Being
(firstname, lastname, DTYPE, id)
values
(?, ?, 'User', ?)
14:10:08,041 DEBUG SQL:104 -
insert
into
Being_Being
(Being_id, friends_id)
values
(?, ?)
14:10:08,042 DEBUG SQL:104 -
select
user0_.id as id0_0_,
user0_.firstname as firstname0_0_,
user0_.lastname as lastname0_0_
from
Being user0_
where
user0_.id=?
and user0_.DTYPE='User'
14:10:08,045 DEBUG SQL:104 -
select
friends0_.Being_id as Being1_0_1_,
friends0_.friends_id as friends2_1_1_,
user1_.id as id0_0_,
user1_.firstname as firstname0_0_,
user1_.lastname as lastname0_0_
from
Being_Being friends0_
inner join
Being user1_
on friends0_.friends_id=user1_.id
where
friends0_.Being_id=?
14:10:08,047 DEBUG SQL:104 -
select
friends0_.Being_id as Being1_0_1_,
friends0_.friends_id as friends2_1_1_,
user1_.id as id0_0_,
user1_.firstname as firstname0_0_,
user1_.lastname as lastname0_0_
from
Being_Being friends0_
inner join
Being user1_
on friends0_.friends_id=user1_.id
where
friends0_.Being_id=?
14:10:08,049 DEBUG SQL:104 -
delete
from
Being_Being
where
Being_id=?
14:10:08,049 DEBUG SQL:104 -
delete
from
Being
where
id=?
14:10:08,051 DEBUG SQL:104 -
delete
from
Being
where
id=?
14:10:08,053 INFO CustomRunner:139 - Test: testEmbeddableExplicitAccessStrategy
14:10:08,058 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,060 DEBUG SQL:104 -
insert
into
Square
(x, y, id)
values
(?, ?, ?)
14:10:08,061 DEBUG SQL:104 -
select
square0_.id as id5_0_,
square0_.x as x5_0_,
square0_.y as y5_0_
from
Square square0_
where
square0_.id=?
14:10:08,062 DEBUG SQL:104 -
delete
from
Square
where
id=?
14:10:08,063 INFO CustomRunner:139 - Test: testEmbeddableUsesAccessStrategyOfContainingClass
14:10:08,068 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,070 DEBUG SQL:104 -
insert
into
Shape
(b, g, r, DTYPE, id)
values
(?, ?, ?, 'Circle', ?)
14:10:08,071 DEBUG SQL:104 -
select
circle0_.id as id4_0_,
circle0_.b as b4_0_,
circle0_.g as g4_0_,
circle0_.r as r4_0_
from
Shape circle0_
where
circle0_.id=?
and circle0_.DTYPE='Circle'
14:10:08,073 DEBUG SQL:104 -
delete
from
Shape
where
id=?
14:10:08,074 INFO CustomRunner:139 - Test: testFieldsOverriding
14:10:08,077 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,080 DEBUG SQL:104 -
insert
into
Gardenshed
(color, name, floors, id)
values
(?, ?, ?, ?)
14:10:08,081 DEBUG SQL:104 -
select
gardenshed0_.id as id3_0_,
gardenshed0_.color as color3_0_,
gardenshed0_.name as name3_0_,
gardenshed0_.floors as floors3_0_
from
Gardenshed gardenshed0_
where
gardenshed0_.id=?
14:10:08,082 DEBUG SQL:104 -
delete
from
Gardenshed
where
id=?
14:10:08,083 INFO CustomRunner:139 - Test: testNonOverridenSubclass
14:10:08,084 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,087 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Chair', ?)
14:10:08,088 DEBUG SQL:104 -
select
chair0_.id as id2_0_,
chair0_.god as god2_0_,
chair0_.color as color2_0_,
chair0_.name as name2_0_,
chair0_.brand as brand2_0_,
chair0_.weight as weight2_0_
from
Furniture chair0_
where
chair0_.id=?
and chair0_.DTYPE='Chair'
14:10:08,089 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:08,091 INFO CustomRunner:139 - Test: testOverridenSubclass
14:10:08,092 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,095 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, bed_size, DTYPE, id)
values
(?, ?, ?, ?, ?, ?, 'BigBed', ?)
14:10:08,096 DEBUG SQL:104 -
select
bigbed0_.id as id2_0_,
bigbed0_.god as god2_0_,
bigbed0_.color as color2_0_,
bigbed0_.name as name2_0_,
bigbed0_.brand as brand2_0_,
bigbed0_.weight as weight2_0_,
bigbed0_.bed_size as bed8_2_0_
from
Furniture bigbed0_
where
bigbed0_.id=?
and bigbed0_.DTYPE='BigBed'
14:10:08,098 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:08,099 INFO CustomRunner:139 - Test: testPropertyOverriding
14:10:08,100 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,101 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:08,102 DEBUG SQL:104 -
select
furniture0_.id as id2_0_,
furniture0_.god as god2_0_,
furniture0_.color as color2_0_,
furniture0_.name as name2_0_,
furniture0_.brand as brand2_0_,
furniture0_.weight as weight2_0_,
furniture0_.bed_size as bed8_2_0_,
furniture0_.DTYPE as DTYPE2_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:08,103 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:08,105 INFO CustomRunner:139 - Test: testSuperclassNonOverriding
14:10:08,106 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,107 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:08,108 DEBUG SQL:104 -
select
furniture0_.id as id2_0_,
furniture0_.god as god2_0_,
furniture0_.color as color2_0_,
furniture0_.name as name2_0_,
furniture0_.brand as brand2_0_,
furniture0_.weight as weight2_0_,
furniture0_.bed_size as bed8_2_0_,
furniture0_.DTYPE as DTYPE2_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:08,109 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:08,110 INFO CustomRunner:139 - Test: testSuperclassOverriding
14:10:08,111 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:08,112 DEBUG SQL:104 -
insert
into
Furniture
(god, color, name, brand, weight, DTYPE, id)
values
(?, ?, ?, ?, ?, 'Furniture', ?)
14:10:08,113 DEBUG SQL:104 -
select
furniture0_.id as id2_0_,
furniture0_.god as god2_0_,
furniture0_.color as color2_0_,
furniture0_.name as name2_0_,
furniture0_.brand as brand2_0_,
furniture0_.weight as weight2_0_,
furniture0_.bed_size as bed8_2_0_,
furniture0_.DTYPE as DTYPE2_0_
from
Furniture furniture0_
where
furniture0_.id=?
14:10:08,115 DEBUG SQL:104 -
delete
from
Furniture
where
id=?
14:10:08,116 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:08,116 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:08,117 DEBUG SQL:104 -
alter table Being_Being
drop constraint FK255250FF46014CAD
14:10:08,117 DEBUG SQL:104 -
alter table Being_Being
drop constraint FK255250FFB1BCD43
14:10:08,117 DEBUG SQL:104 -
drop table Being if exists
14:10:08,118 DEBUG SQL:104 -
drop table Being_Being if exists
14:10:08,118 DEBUG SQL:104 -
drop table Furniture if exists
14:10:08,118 DEBUG SQL:104 -
drop table Gardenshed if exists
14:10:08,119 DEBUG SQL:104 -
drop table Shape if exists
14:10:08,119 DEBUG SQL:104 -
drop table Square if exists
14:10:08,120 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:08,120 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:08,120 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,162 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.access.xml.XmlAccessTest" tests="8" time="1.244" timestamp="2013-02-28T20:10:08">
<properties />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnAssociationXmlElement" time="0.188" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnBasicXmlElement" time="0.263" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnElementCollectionXmlElement" time="0.107" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnEmbeddedXmlElement" time="0.115" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnEntityMappingsXmlElement" time="0.166" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnEntityXmlElement" time="0.121" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnMappedSuperClassXmlElement" time="0.137" />
<testcase classname="org.hibernate.test.annotations.access.xml.XmlAccessTest" name="testAccessOnPersistenceUnitDefaultsXmlElement" time="0.138" />
<system-out><![CDATA[14:10:08,124 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.access.xml.XmlAccessTest
14:10:08,124 INFO CustomRunner:139 - Test: testAccessOnAssociationXmlElement
14:10:08,258 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,259 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,259 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,259 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,259 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,272 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,273 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,274 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,274 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,274 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,311 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,313 INFO CustomRunner:139 - Test: testAccessOnBasicXmlElement
14:10:08,318 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,318 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,318 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,318 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,318 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,320 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,320 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,321 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,321 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,321 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,329 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,454 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,454 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,455 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,455 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,455 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,455 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,459 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,546 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,546 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,546 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,546 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,546 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,548 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,548 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,548 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,549 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,549 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,571 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,577 INFO CustomRunner:139 - Test: testAccessOnElementCollectionXmlElement
14:10:08,669 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,670 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,670 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,670 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,670 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,672 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,672 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,673 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,673 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,673 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,684 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,685 INFO CustomRunner:139 - Test: testAccessOnEmbeddedXmlElement
14:10:08,779 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,780 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,780 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,780 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,780 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,782 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,782 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,783 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,783 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,783 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,799 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,800 INFO CustomRunner:139 - Test: testAccessOnEntityMappingsXmlElement
14:10:08,805 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,806 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,806 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,808 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,808 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,810 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,810 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,810 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,811 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,811 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,819 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,951 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,951 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,953 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,954 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,955 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,956 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,958 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,958 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,959 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,960 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,966 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:08,967 INFO CustomRunner:139 - Test: testAccessOnEntityXmlElement
14:10:08,970 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:08,971 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:08,971 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:08,971 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:08,971 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:08,973 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:08,973 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:08,973 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:08,973 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:08,974 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:08,980 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,068 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,079 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,079 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,079 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,080 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,081 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,081 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,082 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,082 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,082 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,088 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,088 INFO CustomRunner:139 - Test: testAccessOnMappedSuperClassXmlElement
14:10:09,201 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,202 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,202 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,203 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,203 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,204 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,215 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,215 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,216 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,216 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,222 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,227 INFO CustomRunner:139 - Test: testAccessOnPersistenceUnitDefaultsXmlElement
14:10:09,231 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,231 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,231 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,231 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,231 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,233 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,233 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,234 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,234 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,234 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,240 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,354 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,355 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,355 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,355 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,355 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,358 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,358 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,359 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,359 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,360 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,365 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,676 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.any.AnyTest" tests="3" time="0.243" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.any.AnyTest" name="testDefaultAnyAssociation" time="0.048" />
<testcase classname="org.hibernate.test.annotations.any.AnyTest" name="testManyToAnyWithMap" time="0.022" />
<testcase classname="org.hibernate.test.annotations.any.AnyTest" name="testMetaDataUseWithManyToAny" time="0.034" />
<system-out><![CDATA[14:10:09,369 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.any.AnyTest
14:10:09,402 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,402 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,402 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,403 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,403 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,405 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,405 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,406 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,406 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,406 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,445 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,445 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,446 DEBUG SQL:104 -
alter table list_properties
drop constraint FK378F437454BBFD18
14:10:09,446 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table list_properties drop constraint FK378F437454BBFD18
14:10:09,446 ERROR SchemaExport:426 - Table "LIST_PROPERTIES" not found; SQL statement:
alter table list_properties
drop constraint FK378F437454BBFD18 [42102-145]
14:10:09,446 DEBUG SQL:104 -
alter table map_properties
drop constraint FKF2788BF69AF4A643
14:10:09,446 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table map_properties drop constraint FKF2788BF69AF4A643
14:10:09,447 ERROR SchemaExport:426 - Table "MAP_PROPERTIES" not found; SQL statement:
alter table map_properties
drop constraint FKF2788BF69AF4A643 [42102-145]
14:10:09,447 DEBUG SQL:104 -
alter table obj_properties
drop constraint FK768D457B9E69CBCE
14:10:09,447 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table obj_properties drop constraint FK768D457B9E69CBCE
14:10:09,447 ERROR SchemaExport:426 - Table "OBJ_PROPERTIES" not found; SQL statement:
alter table obj_properties
drop constraint FK768D457B9E69CBCE [42102-145]
14:10:09,447 DEBUG SQL:104 -
drop table char_property if exists
14:10:09,447 DEBUG SQL:104 -
drop table int_property if exists
14:10:09,448 DEBUG SQL:104 -
drop table list_properties if exists
14:10:09,448 DEBUG SQL:104 -
drop table long_property if exists
14:10:09,448 DEBUG SQL:104 -
drop table map_properties if exists
14:10:09,448 DEBUG SQL:104 -
drop table obj_properties if exists
14:10:09,448 DEBUG SQL:104 -
drop table property_list if exists
14:10:09,448 DEBUG SQL:104 -
drop table property_map if exists
14:10:09,449 DEBUG SQL:104 -
drop table property_set if exists
14:10:09,449 DEBUG SQL:104 -
drop table string_property if exists
14:10:09,449 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,449 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,449 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,449 DEBUG SQL:104 -
create table char_property (
id integer not null,
name varchar(255),
value char(255),
primary key (id)
)
14:10:09,450 DEBUG SQL:104 -
create table int_property (
id integer not null,
name varchar(255),
value integer,
primary key (id)
)
14:10:09,450 DEBUG SQL:104 -
create table list_properties (
obj_id integer not null,
property_type varchar(255),
property_id integer not null,
prop_index integer not null,
primary key (obj_id, prop_index)
)
14:10:09,451 DEBUG SQL:104 -
create table long_property (
id integer not null,
name varchar(255),
value bigint,
primary key (id)
)
14:10:09,451 DEBUG SQL:104 -
create table map_properties (
map_id integer not null,
property_type varchar(255),
property_id integer not null,
map_key varchar(255) not null,
primary key (map_id, map_key)
)
14:10:09,452 DEBUG SQL:104 -
create table obj_properties (
obj_id integer not null,
property_type varchar(255),
property_id integer not null
)
14:10:09,452 DEBUG SQL:104 -
create table property_list (
id integer not null,
name varchar(255),
property_type varchar(255),
property_id integer,
primary key (id)
)
14:10:09,453 DEBUG SQL:104 -
create table property_map (
id integer not null,
name varchar(255),
primary key (id)
)
14:10:09,453 DEBUG SQL:104 -
create table property_set (
id integer not null,
name varchar(255),
property_type varchar(255),
property_id integer,
primary key (id)
)
14:10:09,454 DEBUG SQL:104 -
create table string_property (
id integer not null,
name varchar(255),
value varchar(255),
primary key (id)
)
14:10:09,454 DEBUG SQL:104 -
alter table list_properties
add constraint FK378F437454BBFD18
foreign key (obj_id)
references property_list
14:10:09,455 DEBUG SQL:104 -
alter table map_properties
add constraint FKF2788BF69AF4A643
foreign key (map_id)
references property_map
14:10:09,481 DEBUG SQL:104 -
alter table obj_properties
add constraint FK768D457B9E69CBCE
foreign key (obj_id)
references property_set
14:10:09,483 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,484 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,485 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,486 INFO CustomRunner:139 - Test: testDefaultAnyAssociation
14:10:09,492 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,496 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,496 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,497 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,499 DEBUG SQL:104 -
insert
into
string_property
(name, value, id)
values
(?, ?, ?)
14:10:09,501 DEBUG SQL:104 -
insert
into
property_set
(name, property_type, property_id, id)
values
(?, ?, ?, ?)
14:10:09,502 DEBUG SQL:104 -
insert
into
int_property
(name, value, id)
values
(?, ?, ?)
14:10:09,502 DEBUG SQL:104 -
insert
into
property_set
(name, property_type, property_id, id)
values
(?, ?, ?, ?)
14:10:09,503 DEBUG SQL:104 -
insert
into
obj_properties
(obj_id, property_type, property_id)
values
(?, ?, ?)
14:10:09,503 DEBUG SQL:104 -
insert
into
obj_properties
(obj_id, property_type, property_id)
values
(?, ?, ?)
14:10:09,504 DEBUG QueryTranslatorImpl:265 - parse() - HQL: select s from org.hibernate.test.annotations.any.PropertySet s where name = :name
14:10:09,505 DEBUG ErrorCounter:63 - Keyword 'any' is being interpreted as an identifier due to: expecting IDENT, found 'any'
14:10:09,506 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| +-[FROM] Node: 'from'
| | \-[RANGE] Node: 'RANGE'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[DOT] Node: '.'
| | | | | +-[DOT] Node: '.'
| | | | | | +-[DOT] Node: '.'
| | | | | | | +-[IDENT] Node: 'org'
| | | | | | | \-[IDENT] Node: 'hibernate'
| | | | | | \-[IDENT] Node: 'test'
| | | | | \-[IDENT] Node: 'annotations'
| | | | \-[WEIRD_IDENT] Node: 'any'
| | | \-[IDENT] Node: 'PropertySet'
| | \-[ALIAS] Node: 's'
| \-[SELECT] Node: 'select'
| \-[IDENT] Node: 's'
\-[WHERE] Node: 'where'
\-[EQ] Node: '='
+-[IDENT] Node: 'name'
\-[COLON] Node: ':'
\-[IDENT] Node: 'name'
14:10:09,506 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,506 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.any.PropertySet (s) -> propertyse0_
14:10:09,507 DEBUG FromReferenceNode:74 - Resolved : s -> propertyse0_.id
14:10:09,507 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias} -> {synthetic-alias}
14:10:09,507 DEBUG DotNode:599 - getDataType() : name -> org.hibernate.type.StringType@2dc8de40
14:10:09,507 DEBUG FromReferenceNode:74 - Resolved : {synthetic-alias}.name -> propertyse0_.name
14:10:09,507 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} propertyse0_.id ) ( FromClause{level=1} property_set propertyse0_ ) ( where ( = ( propertyse0_.name {synthetic-alias} name ) ? ) ) )
14:10:09,508 DEBUG JoinProcessor:175 - Using FROM fragment [property_set propertyse0_]
14:10:09,508 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (property_set)
+-[SELECT_CLAUSE] SelectClause: '{select clause}'
| +-[ALIAS_REF] IdentNode: 'propertyse0_.id as id8_' {alias=s, className=org.hibernate.test.annotations.any.PropertySet, tableAlias=propertyse0_}
| \-[SQL_TOKEN] SqlFragment: 'propertyse0_.name as name8_, propertyse0_.property_type as property3_8_, propertyse0_.property_id as property4_8_'
+-[FROM] FromClause: 'from' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[s], fromElementByTableAlias=[propertyse0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'property_set propertyse0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=s,role=null,tableName=property_set,tableAlias=propertyse0_,origin=null,columns={,className=org.hibernate.test.annotations.any.PropertySet}}
\-[WHERE] SqlNode: 'where'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'propertyse0_.name' {propertyName=name,dereferenceType=ALL,propertyPath=name,path={synthetic-alias}.name,tableAlias=propertyse0_,className=org.hibernate.test.annotations.any.PropertySet,classAlias=s}
| +-[IDENT] IdentNode: '{synthetic-alias}' {originalText={synthetic-alias}}
| \-[IDENT] IdentNode: 'name' {originalText=name}
\-[NAMED_PARAM] ParameterNode: '?' {name=name, expectedType=org.hibernate.type.StringType@2dc8de40}
14:10:09,509 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,509 DEBUG QueryTranslatorImpl:235 - HQL: select s from org.hibernate.test.annotations.any.PropertySet s where name = :name
14:10:09,509 DEBUG QueryTranslatorImpl:236 - SQL: select propertyse0_.id as id8_, propertyse0_.name as name8_, propertyse0_.property_type as property3_8_, propertyse0_.property_id as property4_8_ from property_set propertyse0_ where propertyse0_.name=?
14:10:09,509 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,509 DEBUG SQL:104 -
select
propertyse0_.id as id8_,
propertyse0_.name as name8_,
propertyse0_.property_type as property3_8_,
propertyse0_.property_id as property4_8_
from
property_set propertyse0_
where
propertyse0_.name=?
14:10:09,511 DEBUG SQL:104 -
select
stringprop0_.id as id9_0_,
stringprop0_.name as name9_0_,
stringprop0_.value as value9_0_
from
string_property stringprop0_
where
stringprop0_.id=?
14:10:09,512 DEBUG SQL:104 -
select
generalpro0_.obj_id as obj1_8_0_,
generalpro0_.property_type as property2_5_0_,
generalpro0_.property_id as property3_5_0_
from
obj_properties generalpro0_
where
generalpro0_.obj_id=?
14:10:09,513 DEBUG SQL:104 -
select
propertyse0_.id as id8_,
propertyse0_.name as name8_,
propertyse0_.property_type as property3_8_,
propertyse0_.property_id as property4_8_
from
property_set propertyse0_
where
propertyse0_.name=?
14:10:09,514 DEBUG SQL:104 -
select
integerpro0_.id as id1_0_,
integerpro0_.name as name1_0_,
integerpro0_.value as value1_0_
from
int_property integerpro0_
where
integerpro0_.id=?
14:10:09,515 DEBUG SQL:104 -
select
generalpro0_.obj_id as obj1_8_0_,
generalpro0_.property_type as property2_5_0_,
generalpro0_.property_id as property3_5_0_
from
obj_properties generalpro0_
where
generalpro0_.obj_id=?
14:10:09,534 INFO CustomRunner:139 - Test: testManyToAnyWithMap
14:10:09,546 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,548 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,549 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,550 DEBUG SQL:104 -
insert
into
property_map
(name, id)
values
(?, ?)
14:10:09,551 DEBUG SQL:104 -
insert
into
int_property
(name, value, id)
values
(?, ?, ?)
14:10:09,552 DEBUG SQL:104 -
insert
into
string_property
(name, value, id)
values
(?, ?, ?)
14:10:09,552 DEBUG SQL:104 -
insert
into
map_properties
(map_id, map_key, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,552 DEBUG SQL:104 -
insert
into
map_properties
(map_id, map_key, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,553 DEBUG QueryTranslatorImpl:265 - parse() - HQL: SELECT map FROM org.hibernate.test.annotations.any.PropertyMap map WHERE map.name = :name
14:10:09,554 DEBUG ErrorCounter:63 - Keyword 'any' is being interpreted as an identifier due to: expecting IDENT, found 'any'
14:10:09,556 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| +-[FROM] Node: 'FROM'
| | \-[RANGE] Node: 'RANGE'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[DOT] Node: '.'
| | | | | +-[DOT] Node: '.'
| | | | | | +-[DOT] Node: '.'
| | | | | | | +-[IDENT] Node: 'org'
| | | | | | | \-[IDENT] Node: 'hibernate'
| | | | | | \-[IDENT] Node: 'test'
| | | | | \-[IDENT] Node: 'annotations'
| | | | \-[WEIRD_IDENT] Node: 'any'
| | | \-[IDENT] Node: 'PropertyMap'
| | \-[ALIAS] Node: 'map'
| \-[SELECT] Node: 'SELECT'
| \-[IDENT] Node: 'map'
\-[WHERE] Node: 'WHERE'
\-[EQ] Node: '='
+-[DOT] Node: '.'
| +-[IDENT] Node: 'map'
| \-[IDENT] Node: 'name'
\-[COLON] Node: ':'
\-[IDENT] Node: 'name'
14:10:09,556 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,557 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.any.PropertyMap (map) -> propertyma0_
14:10:09,557 DEBUG FromReferenceNode:74 - Resolved : map -> propertyma0_.id
14:10:09,557 DEBUG FromReferenceNode:74 - Resolved : map -> propertyma0_.id
14:10:09,557 DEBUG DotNode:599 - getDataType() : name -> org.hibernate.type.StringType@2dc8de40
14:10:09,557 DEBUG FromReferenceNode:74 - Resolved : map.name -> propertyma0_.name
14:10:09,558 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} propertyma0_.id ) ( FromClause{level=1} property_map propertyma0_ ) ( WHERE ( = ( propertyma0_.name propertyma0_.id name ) ? ) ) )
14:10:09,558 DEBUG JoinProcessor:175 - Using FROM fragment [property_map propertyma0_]
14:10:09,558 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (property_map)
+-[SELECT_CLAUSE] SelectClause: '{select clause}'
| +-[ALIAS_REF] IdentNode: 'propertyma0_.id as id7_' {alias=map, className=org.hibernate.test.annotations.any.PropertyMap, tableAlias=propertyma0_}
| \-[SQL_TOKEN] SqlFragment: 'propertyma0_.name as name7_'
+-[FROM] FromClause: 'FROM' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[map], fromElementByTableAlias=[propertyma0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'property_map propertyma0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=map,role=null,tableName=property_map,tableAlias=propertyma0_,origin=null,columns={,className=org.hibernate.test.annotations.any.PropertyMap}}
\-[WHERE] SqlNode: 'WHERE'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'propertyma0_.name' {propertyName=name,dereferenceType=ALL,propertyPath=name,path=map.name,tableAlias=propertyma0_,className=org.hibernate.test.annotations.any.PropertyMap,classAlias=map}
| +-[ALIAS_REF] IdentNode: 'propertyma0_.id' {alias=map, className=org.hibernate.test.annotations.any.PropertyMap, tableAlias=propertyma0_}
| \-[IDENT] IdentNode: 'name' {originalText=name}
\-[NAMED_PARAM] ParameterNode: '?' {name=name, expectedType=org.hibernate.type.StringType@2dc8de40}
14:10:09,559 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,559 DEBUG QueryTranslatorImpl:235 - HQL: SELECT map FROM org.hibernate.test.annotations.any.PropertyMap map WHERE map.name = :name
14:10:09,559 DEBUG QueryTranslatorImpl:236 - SQL: select propertyma0_.id as id7_, propertyma0_.name as name7_ from property_map propertyma0_ where propertyma0_.name=?
14:10:09,559 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,560 DEBUG SQL:104 -
select
propertyma0_.id as id7_,
propertyma0_.name as name7_
from
property_map propertyma0_
where
propertyma0_.name=?
14:10:09,561 DEBUG SQL:104 -
select
properties0_.map_id as map1_7_0_,
properties0_.property_type as property2_4_0_,
properties0_.property_id as property3_4_0_,
properties0_.map_key as map4_0_
from
map_properties properties0_
where
properties0_.map_id=?
14:10:09,563 DEBUG SQL:104 -
select
stringprop0_.id as id9_0_,
stringprop0_.name as name9_0_,
stringprop0_.value as value9_0_
from
string_property stringprop0_
where
stringprop0_.id=?
14:10:09,564 DEBUG SQL:104 -
select
integerpro0_.id as id1_0_,
integerpro0_.name as name1_0_,
integerpro0_.value as value1_0_
from
int_property integerpro0_
where
integerpro0_.id=?
14:10:09,566 INFO CustomRunner:139 - Test: testMetaDataUseWithManyToAny
14:10:09,567 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,568 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,570 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,570 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,571 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,572 DEBUG SQL:104 -
insert
into
long_property
(name, value, id)
values
(?, ?, ?)
14:10:09,574 DEBUG SQL:104 -
insert
into
property_list
(name, property_type, property_id, id)
values
(?, ?, ?, ?)
14:10:09,574 DEBUG SQL:104 -
insert
into
string_property
(name, value, id)
values
(?, ?, ?)
14:10:09,575 DEBUG SQL:104 -
insert
into
int_property
(name, value, id)
values
(?, ?, ?)
14:10:09,576 DEBUG SQL:104 -
insert
into
char_property
(name, value, id)
values
(?, ?, ?)
14:10:09,577 DEBUG SQL:104 -
insert
into
list_properties
(obj_id, prop_index, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,579 DEBUG SQL:104 -
insert
into
list_properties
(obj_id, prop_index, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,580 DEBUG SQL:104 -
insert
into
list_properties
(obj_id, prop_index, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,580 DEBUG SQL:104 -
insert
into
list_properties
(obj_id, prop_index, property_type, property_id)
values
(?, ?, ?, ?)
14:10:09,581 DEBUG QueryTranslatorImpl:265 - parse() - HQL: SELECT list FROM org.hibernate.test.annotations.any.PropertyList list WHERE list.name = :name
14:10:09,582 DEBUG ErrorCounter:63 - Keyword 'any' is being interpreted as an identifier due to: expecting IDENT, found 'any'
14:10:09,583 DEBUG QueryTranslatorImpl:283 - --- HQL AST ---
\-[QUERY] Node: 'query'
+-[SELECT_FROM] Node: 'SELECT_FROM'
| +-[FROM] Node: 'FROM'
| | \-[RANGE] Node: 'RANGE'
| | +-[DOT] Node: '.'
| | | +-[DOT] Node: '.'
| | | | +-[DOT] Node: '.'
| | | | | +-[DOT] Node: '.'
| | | | | | +-[DOT] Node: '.'
| | | | | | | +-[IDENT] Node: 'org'
| | | | | | | \-[IDENT] Node: 'hibernate'
| | | | | | \-[IDENT] Node: 'test'
| | | | | \-[IDENT] Node: 'annotations'
| | | | \-[WEIRD_IDENT] Node: 'any'
| | | \-[IDENT] Node: 'PropertyList'
| | \-[ALIAS] Node: 'list'
| \-[SELECT] Node: 'SELECT'
| \-[IDENT] Node: 'list'
\-[WHERE] Node: 'WHERE'
\-[EQ] Node: '='
+-[DOT] Node: '.'
| +-[IDENT] Node: 'list'
| \-[IDENT] Node: 'name'
\-[COLON] Node: ':'
\-[IDENT] Node: 'name'
14:10:09,584 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,584 DEBUG FromElement:157 - FromClause{level=1} : org.hibernate.test.annotations.any.PropertyList (list) -> propertyli0_
14:10:09,584 DEBUG FromReferenceNode:74 - Resolved : list -> propertyli0_.id
14:10:09,584 DEBUG FromReferenceNode:74 - Resolved : list -> propertyli0_.id
14:10:09,584 DEBUG DotNode:599 - getDataType() : name -> org.hibernate.type.StringType@2dc8de40
14:10:09,584 DEBUG FromReferenceNode:74 - Resolved : list.name -> propertyli0_.name
14:10:09,585 DEBUG HqlSqlWalker:629 - processQuery() : ( SELECT ( {select clause} propertyli0_.id ) ( FromClause{level=1} property_list propertyli0_ ) ( WHERE ( = ( propertyli0_.name propertyli0_.id name ) ? ) ) )
14:10:09,585 DEBUG JoinProcessor:175 - Using FROM fragment [property_list propertyli0_]
14:10:09,585 DEBUG QueryTranslatorImpl:252 - --- SQL AST ---
\-[SELECT] QueryNode: 'SELECT' querySpaces (property_list)
+-[SELECT_CLAUSE] SelectClause: '{select clause}'
| +-[ALIAS_REF] IdentNode: 'propertyli0_.id as id6_' {alias=list, className=org.hibernate.test.annotations.any.PropertyList, tableAlias=propertyli0_}
| \-[SQL_TOKEN] SqlFragment: 'propertyli0_.name as name6_, propertyli0_.property_type as property3_6_, propertyli0_.property_id as property4_6_'
+-[FROM] FromClause: 'FROM' FromClause{level=1, fromElementCounter=1, fromElements=1, fromElementByClassAlias=[list], fromElementByTableAlias=[propertyli0_], fromElementsByPath=[], collectionJoinFromElementsByPath=[], impliedElements=[]}
| \-[FROM_FRAGMENT] FromElement: 'property_list propertyli0_' FromElement{explicit,not a collection join,not a fetch join,fetch non-lazy properties,classAlias=list,role=null,tableName=property_list,tableAlias=propertyli0_,origin=null,columns={,className=org.hibernate.test.annotations.any.PropertyList}}
\-[WHERE] SqlNode: 'WHERE'
\-[EQ] BinaryLogicOperatorNode: '='
+-[DOT] DotNode: 'propertyli0_.name' {propertyName=name,dereferenceType=ALL,propertyPath=name,path=list.name,tableAlias=propertyli0_,className=org.hibernate.test.annotations.any.PropertyList,classAlias=list}
| +-[ALIAS_REF] IdentNode: 'propertyli0_.id' {alias=list, className=org.hibernate.test.annotations.any.PropertyList, tableAlias=propertyli0_}
| \-[IDENT] IdentNode: 'name' {originalText=name}
\-[NAMED_PARAM] ParameterNode: '?' {name=name, expectedType=org.hibernate.type.StringType@2dc8de40}
14:10:09,585 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,586 DEBUG QueryTranslatorImpl:235 - HQL: SELECT list FROM org.hibernate.test.annotations.any.PropertyList list WHERE list.name = :name
14:10:09,586 DEBUG QueryTranslatorImpl:236 - SQL: select propertyli0_.id as id6_, propertyli0_.name as name6_, propertyli0_.property_type as property3_6_, propertyli0_.property_id as property4_6_ from property_list propertyli0_ where propertyli0_.name=?
14:10:09,586 DEBUG ErrorCounter:82 - throwQueryException() : no errors
14:10:09,586 DEBUG SQL:104 -
select
propertyli0_.id as id6_,
propertyli0_.name as name6_,
propertyli0_.property_type as property3_6_,
propertyli0_.property_id as property4_6_
from
property_list propertyli0_
where
propertyli0_.name=?
14:10:09,587 DEBUG SQL:104 -
select
generalpro0_.obj_id as obj1_6_0_,
generalpro0_.property_type as property2_2_0_,
generalpro0_.property_id as property3_2_0_,
generalpro0_.prop_index as prop4_0_
from
list_properties generalpro0_
where
generalpro0_.obj_id=?
14:10:09,597 DEBUG SQL:104 -
select
longproper0_.id as id3_0_,
longproper0_.name as name3_0_,
longproper0_.value as value3_0_
from
long_property longproper0_
where
longproper0_.id=?
14:10:09,598 DEBUG SQL:104 -
select
stringprop0_.id as id9_0_,
stringprop0_.name as name9_0_,
stringprop0_.value as value9_0_
from
string_property stringprop0_
where
stringprop0_.id=?
14:10:09,599 DEBUG SQL:104 -
select
integerpro0_.id as id1_0_,
integerpro0_.name as name1_0_,
integerpro0_.value as value1_0_
from
int_property integerpro0_
where
integerpro0_.id=?
14:10:09,600 DEBUG SQL:104 -
select
charproper0_.id as id0_0_,
charproper0_.name as name0_0_,
charproper0_.value as value0_0_
from
char_property charproper0_
where
charproper0_.id=?
14:10:09,602 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,603 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,603 DEBUG SQL:104 -
alter table list_properties
drop constraint FK378F437454BBFD18
14:10:09,603 DEBUG SQL:104 -
alter table map_properties
drop constraint FKF2788BF69AF4A643
14:10:09,603 DEBUG SQL:104 -
alter table obj_properties
drop constraint FK768D457B9E69CBCE
14:10:09,604 DEBUG SQL:104 -
drop table char_property if exists
14:10:09,604 DEBUG SQL:104 -
drop table int_property if exists
14:10:09,605 DEBUG SQL:104 -
drop table list_properties if exists
14:10:09,605 DEBUG SQL:104 -
drop table long_property if exists
14:10:09,606 DEBUG SQL:104 -
drop table map_properties if exists
14:10:09,606 DEBUG SQL:104 -
drop table obj_properties if exists
14:10:09,607 DEBUG SQL:104 -
drop table property_list if exists
14:10:09,607 DEBUG SQL:104 -
drop table property_map if exists
14:10:09,608 DEBUG SQL:104 -
drop table property_set if exists
14:10:09,608 DEBUG SQL:104 -
drop table string_property if exists
14:10:09,609 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,609 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,609 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,214 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.array.ArrayTest" tests="1" time="0.065" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.array.ArrayTest" name="testOneToMany" time="0.016" />
<system-out><![CDATA[14:10:09,613 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.array.ArrayTest
14:10:09,624 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,626 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,626 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,626 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,626 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,628 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,628 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,629 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,629 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,629 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,644 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,644 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,645 DEBUG SQL:104 -
alter table Contest_Competitor
drop constraint FK5A1505977664CE5
14:10:09,645 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Contest_Competitor drop constraint FK5A1505977664CE5
14:10:09,645 ERROR SchemaExport:426 - Table "CONTEST_COMPETITOR" not found; SQL statement:
alter table Contest_Competitor
drop constraint FK5A1505977664CE5 [42102-145]
14:10:09,645 DEBUG SQL:104 -
alter table Contest_Competitor
drop constraint FK5A15059737D337C5
14:10:09,645 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Contest_Competitor drop constraint FK5A15059737D337C5
14:10:09,646 ERROR SchemaExport:426 - Table "CONTEST_COMPETITOR" not found; SQL statement:
alter table Contest_Competitor
drop constraint FK5A15059737D337C5 [42102-145]
14:10:09,646 DEBUG SQL:104 -
alter table Contest_heldIn
drop constraint FKB43B54E537D337C5
14:10:09,646 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table Contest_heldIn drop constraint FKB43B54E537D337C5
14:10:09,646 ERROR SchemaExport:426 - Table "CONTEST_HELDIN" not found; SQL statement:
alter table Contest_heldIn
drop constraint FKB43B54E537D337C5 [42102-145]
14:10:09,646 DEBUG SQL:104 -
drop table Competitor if exists
14:10:09,646 DEBUG SQL:104 -
drop table Contest if exists
14:10:09,647 DEBUG SQL:104 -
drop table Contest_Competitor if exists
14:10:09,647 DEBUG SQL:104 -
drop table Contest_heldIn if exists
14:10:09,647 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,647 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,647 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,648 DEBUG SQL:104 -
create table Competitor (
id integer not null,
name varchar(255),
primary key (id)
)
14:10:09,648 DEBUG SQL:104 -
create table Contest (
id integer not null,
primary key (id)
)
14:10:09,649 DEBUG SQL:104 -
create table Contest_Competitor (
Contest_id integer not null,
results_id integer not null,
pos integer not null,
primary key (Contest_id, pos)
)
14:10:09,649 DEBUG SQL:104 -
create table Contest_heldIn (
Contest_id integer not null,
heldIn integer,
pos integer not null,
primary key (Contest_id, pos)
)
14:10:09,650 DEBUG SQL:104 -
alter table Contest_Competitor
add constraint UK_5A150597DDF82A04 unique (results_id)
14:10:09,650 DEBUG SQL:104 -
alter table Contest_Competitor
add constraint FK5A1505977664CE5
foreign key (results_id)
references Competitor
14:10:09,652 DEBUG SQL:104 -
alter table Contest_Competitor
add constraint FK5A15059737D337C5
foreign key (Contest_id)
references Contest
14:10:09,653 DEBUG SQL:104 -
alter table Contest_heldIn
add constraint FKB43B54E537D337C5
foreign key (Contest_id)
references Contest
14:10:09,654 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,654 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,655 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,655 INFO CustomRunner:139 - Test: testOneToMany
14:10:09,657 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,660 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,661 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,663 DEBUG SQL:104 -
insert
into
Contest
(id)
values
(?)
14:10:09,664 DEBUG SQL:104 -
insert
into
Competitor
(name, id)
values
(?, ?)
14:10:09,665 DEBUG SQL:104 -
insert
into
Competitor
(name, id)
values
(?, ?)
14:10:09,665 DEBUG SQL:104 -
insert
into
Contest_heldIn
(Contest_id, pos, heldIn)
values
(?, ?, ?)
14:10:09,666 DEBUG SQL:104 -
insert
into
Contest_heldIn
(Contest_id, pos, heldIn)
values
(?, ?, ?)
14:10:09,666 DEBUG SQL:104 -
insert
into
Contest_Competitor
(Contest_id, pos, results_id)
values
(?, ?, ?)
14:10:09,667 DEBUG SQL:104 -
insert
into
Contest_Competitor
(Contest_id, pos, results_id)
values
(?, ?, ?)
14:10:09,668 DEBUG SQL:104 -
select
contest0_.id as id1_0_
from
Contest contest0_
where
contest0_.id=?
14:10:09,668 DEBUG SQL:104 -
select
heldin0_.Contest_id as Contest1_1_0_,
heldin0_.heldIn as heldIn3_0_,
heldin0_.pos as pos0_
from
Contest_heldIn heldin0_
where
heldin0_.Contest_id=?
14:10:09,669 DEBUG SQL:104 -
select
results0_.Contest_id as Contest1_1_1_,
results0_.results_id as results2_2_1_,
results0_.pos as pos1_,
competitor1_.id as id0_0_,
competitor1_.name as name0_0_
from
Contest_Competitor results0_
inner join
Competitor competitor1_
on results0_.results_id=competitor1_.id
where
results0_.Contest_id=?
14:10:09,672 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,672 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,673 DEBUG SQL:104 -
alter table Contest_Competitor
drop constraint FK5A1505977664CE5
14:10:09,673 DEBUG SQL:104 -
alter table Contest_Competitor
drop constraint FK5A15059737D337C5
14:10:09,673 DEBUG SQL:104 -
alter table Contest_heldIn
drop constraint FKB43B54E537D337C5
14:10:09,674 DEBUG SQL:104 -
drop table Competitor if exists
14:10:09,674 DEBUG SQL:104 -
drop table Contest if exists
14:10:09,675 DEBUG SQL:104 -
drop table Contest_Competitor if exists
14:10:09,675 DEBUG SQL:104 -
drop table Contest_heldIn if exists
14:10:09,676 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,676 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,676 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.backquotes.BackquoteTest" tests="2" time="0.037" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.backquotes.BackquoteTest" name="testBackquotes" time="0.029" />
<testcase classname="org.hibernate.test.annotations.backquotes.BackquoteTest" name="testInvalidReferenceToQuotedTableName" time="0.005" />
<system-out><![CDATA[14:10:09,680 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.backquotes.BackquoteTest
14:10:09,680 INFO CustomRunner:139 - Test: testBackquotes
14:10:09,691 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,691 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,691 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,691 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,692 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,693 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,694 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,694 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,695 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,695 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,708 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,708 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,709 INFO CustomRunner:139 - Test: testInvalidReferenceToQuotedTableName
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.beanvalidation.BeanValidationAutoTest" tests="1" time="0.097" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.beanvalidation.BeanValidationAutoTest" name="testListeners" time="0.016" />
<system-out><![CDATA[14:10:09,717 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.beanvalidation.BeanValidationAutoTest
14:10:09,724 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,724 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,724 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,724 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,724 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,736 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,737 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,738 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,738 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,738 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,790 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,790 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,791 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,791 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,791 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,791 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,791 DEBUG SQL:104 -
create table CupHolder (
id integer not null,
radius decimal(19,2) check (radius<=10),
primary key (id)
)
14:10:09,793 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,793 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,794 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,794 INFO CustomRunner:139 - Test: testListeners
14:10:09,795 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,810 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,811 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,811 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,812 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,812 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,812 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.beanvalidation.BeanValidationDisabledTest" tests="2" time="0.06" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.beanvalidation.BeanValidationDisabledTest" name="testDDLDisabled" time="0.001" />
<testcase classname="org.hibernate.test.annotations.beanvalidation.BeanValidationDisabledTest" name="testListeners" time="0.004" />
<system-out><![CDATA[14:10:09,815 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.beanvalidation.BeanValidationDisabledTest
14:10:09,834 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,835 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,835 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,835 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,835 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,837 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,837 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,838 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,838 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,838 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,857 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,858 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,858 DEBUG SQL:104 -
drop table Address if exists
14:10:09,858 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,859 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,859 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,859 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,859 DEBUG SQL:104 -
create table Address (
id bigint not null,
country varchar(255),
line1 varchar(255),
line2 varchar(255),
state varchar(255),
zip varchar(255),
primary key (id)
)
14:10:09,860 DEBUG SQL:104 -
create table CupHolder (
id integer not null,
radius decimal(19,2),
primary key (id)
)
14:10:09,861 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,861 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,862 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,862 INFO CustomRunner:139 - Test: testDDLDisabled
14:10:09,865 INFO CustomRunner:139 - Test: testListeners
14:10:09,867 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,868 DEBUG SQL:104 -
insert
into
CupHolder
(radius, id)
values
(?, ?)
14:10:09,870 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,871 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,871 DEBUG SQL:104 -
drop table Address if exists
14:10:09,872 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,872 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,873 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,873 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.beanvalidation.BeanValidationGroupsTest" tests="1" time="0.074" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.beanvalidation.BeanValidationGroupsTest" name="testListeners" time="0.014" />
<system-out><![CDATA[14:10:09,876 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.beanvalidation.BeanValidationGroupsTest
14:10:09,880 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,881 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,881 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,881 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,881 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,883 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,883 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,884 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,884 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,885 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,892 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,893 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,893 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,894 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,927 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,927 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,927 DEBUG SQL:104 -
create table CupHolder (
id integer not null,
radius decimal(19,2),
primary key (id)
)
14:10:09,928 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,928 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,930 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,930 INFO CustomRunner:139 - Test: testListeners
14:10:09,939 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:09,941 DEBUG SQL:104 -
insert
into
CupHolder
(radius, id)
values
(?, ?)
14:10:09,942 DEBUG SQL:104 -
update
CupHolder
set
radius=?
where
id=?
14:10:09,945 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,946 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,947 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,947 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,947 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,948 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite errors="0" failures="0" hostname="dhcp-10.15.208.168.stl.redhat.com" name="org.hibernate.test.annotations.beanvalidation.BeanValidationProvidedFactoryTest" tests="1" time="0.091" timestamp="2013-02-28T20:10:09">
<properties />
<testcase classname="org.hibernate.test.annotations.beanvalidation.BeanValidationProvidedFactoryTest" name="testListeners" time="0.051" />
<system-out><![CDATA[14:10:09,950 INFO CustomRunner:132 - BeforeClass: org.hibernate.test.annotations.beanvalidation.BeanValidationProvidedFactoryTest
14:10:09,956 INFO DriverManagerConnectionProviderImpl:99 - HHH000402: Using Hibernate built-in connection pool (not for production use!)
14:10:09,956 INFO DriverManagerConnectionProviderImpl:135 - HHH000115: Hibernate connection pool size: 5
14:10:09,956 INFO DriverManagerConnectionProviderImpl:138 - HHH000006: Autocommit mode: false
14:10:09,957 INFO DriverManagerConnectionProviderImpl:153 - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
14:10:09,957 INFO DriverManagerConnectionProviderImpl:158 - HHH000046: Connection properties: {user=sa}
14:10:09,958 INFO Dialect:103 - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
14:10:09,958 INFO LobCreatorBuilder:94 - HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
14:10:09,960 INFO TransactionFactoryInitiator:66 - HHH000399: Using default transaction strategy (direct JDBC transactions)
14:10:09,960 INFO ASTQueryTranslatorFactory:48 - HHH000397: Using ASTQueryTranslatorFactory
14:10:09,960 WARN CachingRegionFactory:58 - CachingRegionFactory should be only used for testing.
14:10:09,976 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:09,977 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:09,977 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:09,978 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:09,978 ERROR SchemaExport:425 - HHH000389: Unsuccessful: drop sequence hibernate_sequence
14:10:09,978 ERROR SchemaExport:426 - Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
drop sequence hibernate_sequence [90036-145]
14:10:09,979 DEBUG SQL:104 -
create table CupHolder (
id integer not null,
radius decimal(19,2) check (radius<=10),
primary key (id)
)
14:10:09,985 DEBUG SQL:104 -
create sequence hibernate_sequence start with 1 increment by 1
14:10:09,986 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:09,986 WARN SessionFactoryImpl:1554 - HHH000008: JTASessionContext being used with JDBCTransactionFactory; auto-flush will not operate correctly with getCurrentSession()
14:10:09,987 INFO CustomRunner:139 - Test: testListeners
14:10:09,991 DEBUG SQL:104 -
call next value for hibernate_sequence
14:10:10,038 INFO SchemaExport:343 - HHH000227: Running hbm2ddl schema export
14:10:10,039 DEBUG SchemaExport:353 - Import file not found: /import.sql
14:10:10,039 DEBUG SQL:104 -
drop table CupHolder if exists
14:10:10,039 DEBUG SQL:104 -
drop sequence hibernate_sequence
14:10:10,040 INFO SchemaExport:405 - HHH000230: Schema export complete
14:10:10,040 INFO DriverManagerConnectionProviderImpl:162 - HHH000030: Cleaning up connection pool [jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE]
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>

Some files were not shown because too many files have changed in this diff Show More