[Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Emmanuel Bernard
Tools in SF (Hibernate project) are still alpha5 from 2005, it should be 
updated.




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Max Rydahl Andersen
On Mon, 20 Mar 2006 16:23:50 +0100, Emmanuel Bernard  
[EMAIL PROTECTED] wrote:


Tools in SF (Hibernate project) are still alpha5 from 2005, it should be  
updated.


read the docs - the tools are downloadable via the eclipse plugins.

People were complaining like crazy about having different downloads
(and maintining 2 different but equal release bundles made my head spin)
so it is now bundled with the plugins (since forever ;)

The next thing we will do is to get it bundled with the main distribution,  
but

until then get it from tools.hibernate.org and the download link.

/max

--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


[Hibernate] Horrible hack to get schema from Ejb3Configuration

2006-03-20 Thread Jonathan O'Connor

Hi,
Are there any plans for hibernate-tools to support EJB3 configurations? Here is my horrible hack to get the generated schema. 

   public static void generateDDL(String ddlFileName) throws SecurityException,
NoSuchFieldException, IllegalArgumentException, IllegalAccessException {
Ejb3Configuration cfg = new Ejb3Configuration();
HashMapString, String overridden = new HashMapString, String();
overridden.put(hibernate.hbm2ddl.auto, create-drop);
// The following line actually drops and creates the DB schema.
// If only JBoss would refactor the code better.
EntityManagerFactory emf = cfg.createEntityManagerFactory(edesk-test,
overridden);

// Now go rummaging in emf's underpants (looking for privates - of course)
Field sessionFactoryField = emf.getClass().getDeclaredField(sessionFactory);
sessionFactoryField.setAccessible(true);
SessionFactoryImpl sfi = (SessionFactoryImpl) sessionFactoryField.get(emf);
Field schemaExportField = sfi.getClass().getDeclaredField(schemaExport);
schemaExportField.setAccessible(true);
SchemaExport schemaExport = (SchemaExport) schemaExportField.get(sfi);

// Now we have the SchemaExport, so we can generate the DDL now.
schemaExport.setOutputFile(ddlFileName);
schemaExport.setFormat(true);
schemaExport.setDelimiter(;);
schemaExport.execute(false, false, false, true);
}

As you can see, I use reflection to rummage around in the internals. There must be a better way to do this, but it involves refactoring the EJB3Configuration class.

Ciao,
Jonathan O'Connor
XCOM Dublin


*** XCOM AG Legal Disclaimer ***

Diese E-Mail einschliesslich ihrer Anhaenge ist vertraulich und ist allein für den Gebrauch durch den vorgesehenen Empfaenger bestimmt. Dritten ist das Lesen, Verteilen oder Weiterleiten dieser E-Mail untersagt. Wir bitten, eine fehlgeleitete E-Mail unverzueglich vollstaendig zu loeschen und uns eine Nachricht zukommen zu lassen.

This email may contain material that is confidential and for the sole use of the intended recipient. Any review, distribution by others or forwarding without express permission is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.

Hauptsitz: Bahnstrasse 33, D-47877 Willich, USt-IdNr.: DE 812 885 664
Kommunikation: Telefon +49 2154 9209-70, Telefax +49 2154 9209-900, www.xcom.de
Handelsregister: Amtsgericht Krefeld, HRB 10340
Vorstand: Matthias Albrecht, Renate Becker-Grope, Marco Marty
Vorsitzender des Aufsichtsrates: Stephan Steuer


Re: [Hibernate] Horrible hack to get schema from Ejb3Configuration

2006-03-20 Thread Max Rydahl Andersen
emmanuel just released a version of hibernate annotations where the  
configuration is
accessible - and as soon as I get around it (or someone else beats me to  
it by submitting

a patch) we will have a ejb3configuration in the ant tools...

/max


Hi,
Are there any plans for hibernate-tools to support EJB3 configurations?
Here is my horrible hack to get the generated schema.

   public static void generateDDL(String ddlFileName) throws
SecurityException,
NoSuchFieldException, IllegalArgumentException,
IllegalAccessException {
Ejb3Configuration cfg = new Ejb3Configuration();
HashMapString, String overridden = new HashMapString,  
String();

overridden.put(hibernate.hbm2ddl.auto, create-drop);
// The following line actually drops and creates the DB schema.
// If only JBoss would refactor the code better.
EntityManagerFactory emf =
cfg.createEntityManagerFactory(edesk-test,
overridden);

// Now go rummaging in emf's underpants (looking for privates -  
of

course)
Field sessionFactoryField =
emf.getClass().getDeclaredField(sessionFactory);
sessionFactoryField.setAccessible(true);
SessionFactoryImpl sfi = (SessionFactoryImpl)
sessionFactoryField.get(emf);
Field schemaExportField =
sfi.getClass().getDeclaredField(schemaExport);
schemaExportField.setAccessible(true);
SchemaExport schemaExport = (SchemaExport)
schemaExportField.get(sfi);

// Now we have the SchemaExport, so we can generate the DDL now.
schemaExport.setOutputFile(ddlFileName);
schemaExport.setFormat(true);
schemaExport.setDelimiter(;);
schemaExport.execute(false, false, false, true);
}

As you can see, I use reflection to rummage around in the internals.  
There

must be a better way to do this, but it involves refactoring the
EJB3Configuration class.

Ciao,
Jonathan O'Connor
XCOM Dublin


*** XCOM AG Legal Disclaimer ***

Diese E-Mail einschliesslich ihrer Anhaenge ist vertraulich und ist  
allein

für den Gebrauch durch den vorgesehenen Empfaenger bestimmt. Dritten ist
das Lesen, Verteilen oder Weiterleiten dieser E-Mail untersagt. Wir  
bitten,

eine fehlgeleitete E-Mail unverzueglich vollstaendig zu loeschen und uns
eine Nachricht zukommen zu lassen.

This email may contain material that is confidential and for the sole use
of the intended recipient. Any review, distribution by others or  
forwarding

without express permission is strictly prohibited. If you are not the
intended recipient, please contact the sender and delete all copies.

Hauptsitz: Bahnstrasse 33, D-47877 Willich, USt-IdNr.: DE 812 885 664
Kommunikation: Telefon +49 2154 9209-70, Telefax +49 2154 9209-900,
www.xcom.de
Handelsregister: Amtsgericht Krefeld, HRB 10340
Vorstand: Matthias Albrecht, Renate Becker-Grope, Marco Marty
Vorsitzender des Aufsichtsrates: Stephan Steuer




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


[Hibernate] subversion repo layout

2006-03-20 Thread Steve Ebersole
So we should talk about the layout of the subversion repository.  We had
talked about each project getting its own module in the repository
with its own trunk/branches/tags structure.

This is easy enough for the core stuff.

But has implications for all of the current HibernateExt subprojects.
Specifically, the biggest issue is the use of HibernateExt/common and
how y'all want to deal with that (plus the dependency on core).  Three
options:
(1) keep doing what you do now in terms of checking out each
individually 
(2) use of svn:externals to link-in the common stuff
(3) removal of common and reworking the builds


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Emmanuel Bernard

So hide the package

Max Rydahl Andersen wrote:
On Mon, 20 Mar 2006 16:23:50 +0100, Emmanuel Bernard 
[EMAIL PROTECTED] wrote:


Tools in SF (Hibernate project) are still alpha5 from 2005, it should 
be updated.


read the docs - the tools are downloadable via the eclipse plugins.

People were complaining like crazy about having different downloads
(and maintining 2 different but equal release bundles made my head spin)
so it is now bundled with the plugins (since forever ;)

The next thing we will do is to get it bundled with the main 
distribution, but

until then get it from tools.hibernate.org and the download link.

/max


Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] Horrible hack to get schema from Ejb3Configuration

2006-03-20 Thread Emmanuel Bernard

I will release soon actually.
Need some times with a decent connection.

Max Rydahl Andersen wrote:
emmanuel just released a version of hibernate annotations where the 
configuration is
accessible - and as soon as I get around it (or someone else beats me 
to it by submitting

a patch) we will have a ejb3configuration in the ant tools...

/max


Hi,
Are there any plans for hibernate-tools to support EJB3 configurations?
Here is my horrible hack to get the generated schema.

   public static void generateDDL(String ddlFileName) throws
SecurityException,
NoSuchFieldException, IllegalArgumentException,
IllegalAccessException {
Ejb3Configuration cfg = new Ejb3Configuration();
HashMapString, String overridden = new HashMapString, 
String();

overridden.put(hibernate.hbm2ddl.auto, create-drop);
// The following line actually drops and creates the DB schema.
// If only JBoss would refactor the code better.
EntityManagerFactory emf =
cfg.createEntityManagerFactory(edesk-test,
overridden);

// Now go rummaging in emf's underpants (looking for privates 
- of

course)
Field sessionFactoryField =
emf.getClass().getDeclaredField(sessionFactory);
sessionFactoryField.setAccessible(true);
SessionFactoryImpl sfi = (SessionFactoryImpl)
sessionFactoryField.get(emf);
Field schemaExportField =
sfi.getClass().getDeclaredField(schemaExport);
schemaExportField.setAccessible(true);
SchemaExport schemaExport = (SchemaExport)
schemaExportField.get(sfi);

// Now we have the SchemaExport, so we can generate the DDL now.
schemaExport.setOutputFile(ddlFileName);
schemaExport.setFormat(true);
schemaExport.setDelimiter(;);
schemaExport.execute(false, false, false, true);
}

As you can see, I use reflection to rummage around in the internals. 
There

must be a better way to do this, but it involves refactoring the
EJB3Configuration class.

Ciao,
Jonathan O'Connor
XCOM Dublin


*** XCOM AG Legal Disclaimer ***

Diese E-Mail einschliesslich ihrer Anhaenge ist vertraulich und ist 
allein

für den Gebrauch durch den vorgesehenen Empfaenger bestimmt. Dritten ist
das Lesen, Verteilen oder Weiterleiten dieser E-Mail untersagt. Wir 
bitten,

eine fehlgeleitete E-Mail unverzueglich vollstaendig zu loeschen und uns
eine Nachricht zukommen zu lassen.

This email may contain material that is confidential and for the sole 
use
of the intended recipient. Any review, distribution by others or 
forwarding

without express permission is strictly prohibited. If you are not the
intended recipient, please contact the sender and delete all copies.

Hauptsitz: Bahnstrasse 33, D-47877 Willich, USt-IdNr.: DE 812 885 664
Kommunikation: Telefon +49 2154 9209-70, Telefax +49 2154 9209-900,
www.xcom.de
Handelsregister: Amtsgericht Krefeld, HRB 10340
Vorstand: Matthias Albrecht, Renate Becker-Grope, Marco Marty
Vorsitzender des Aufsichtsrates: Stephan Steuer





Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting 
language
that extends applications into web and mobile media. Attend the live 
webcast
and join the prime developer group breaking into this new coding 
territory!

http://sel.as-us.falkag.net/sel?cmd=kkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Max Rydahl Andersen
On Mon, 20 Mar 2006 20:55:22 +0100, Emmanuel Bernard  
[EMAIL PROTECTED] wrote:



So hide the package


feel free - I have no idea on how ;)

/max


Max Rydahl Andersen wrote:
On Mon, 20 Mar 2006 16:23:50 +0100, Emmanuel Bernard  
[EMAIL PROTECTED] wrote:


Tools in SF (Hibernate project) are still alpha5 from 2005, it should  
be updated.


read the docs - the tools are downloadable via the eclipse plugins.

People were complaining like crazy about having different downloads
(and maintining 2 different but equal release bundles made my head spin)
so it is now bundled with the plugins (since forever ;)

The next thing we will do is to get it bundled with the main  
distribution, but

until then get it from tools.hibernate.org and the download link.

/max


Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]







--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] Hibernate sf dl and tools

2006-03-20 Thread Emmanuel Bernard

Done

Max Rydahl Andersen wrote:
On Mon, 20 Mar 2006 20:55:22 +0100, Emmanuel Bernard 
[EMAIL PROTECTED] wrote:



So hide the package


feel free - I have no idea on how ;)

/max


Max Rydahl Andersen wrote:
On Mon, 20 Mar 2006 16:23:50 +0100, Emmanuel Bernard 
[EMAIL PROTECTED] wrote:


Tools in SF (Hibernate project) are still alpha5 from 2005, it 
should be updated.


read the docs - the tools are downloadable via the eclipse plugins.

People were complaining like crazy about having different downloads
(and maintining 2 different but equal release bundles made my head 
spin)

so it is now bundled with the plugins (since forever ;)

The next thing we will do is to get it bundled with the main 
distribution, but

until then get it from tools.hibernate.org and the download link.

/max


Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]








Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]




---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


[Hibernate] Hibernate 3.1.3 released

2006-03-20 Thread Steve Ebersole
Hibernate 3.1.3 has just been released.  This is mainly a bug-fix
release.  

View the details at
http://sourceforge.net/project/shownotes.php?release_id=403223group_id=
40712

Download bundles are available at
http://sourceforge.net/project/showfiles.php?group_id=40712package_id=1
27784release_id=403223


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


Re: [Hibernate] subversion repo layout

2006-03-20 Thread Max Rydahl Andersen

I have better time answering this in the end of this week..


So we should talk about the layout of the subversion repository.  We had
talked about each project getting its own module in the repository
with its own trunk/branches/tags structure.

This is easy enough for the core stuff.

But has implications for all of the current HibernateExt subprojects.
Specifically, the biggest issue is the use of HibernateExt/common and
how y'all want to deal with that (plus the dependency on core).  Three
options:
(1) keep doing what you do now in terms of checking out each
individually
(2) use of svn:externals to link-in the common stuff
(3) removal of common and reworking the builds


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting  
language
that extends applications into web and mobile media. Attend the live  
webcast
and join the prime developer group breaking into this new coding  
territory!

http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel




--
--
Max Rydahl Andersen
callto://max.rydahl.andersen

Hibernate
[EMAIL PROTECTED]
http://hibernate.org

JBoss Inc
[EMAIL PROTECTED]


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel


[Hibernate] hibernate-sqlserver-jtds-testsuite Build Timed Out

2006-03-20 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-sqlserver-jtds-testsuite?log=log20060320221508
BUILD TIMED OUTAnt Error Message:build timeoutDate of build:03/20/2006 22:15:08Time to build:




   Unit Tests: (0)   Total Errors and Failures: (0)
Modifications since last build:(first 50 of 0)



[Hibernate] hibernate-mysql-testsuite Build Completed With Testsuite Errors

2006-03-20 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-mysql-testsuite?log=log20060321011508
TESTS FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:119: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:75: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-common-targets.xml:11: Build Successful - Tests completed with errors or failures.Date of build:03/21/2006 01:15:08Time to build:21 minutes 51 seconds




   Unit Tests: (822)   Total Errors and Failures: (19)testStaleVersionedInstanceFoundInQueryResultorg.hibernate.test.ejb3.lock.RepeatableReadTesttestStaleVersionedInstanceFoundOnLockorg.hibernate.test.ejb3.lock.RepeatableReadTesttestUpdateWithWhereExistsSubqueryorg.hibernate.test.hql.BulkManipulationTesttestQueryorg.hibernate.test.legacy.FooBarTesttestOneToOneGeneratororg.hibernate.test.legacy.FooBarTesttestReachabilityorg.hibernate.test.legacy.FooBarTesttestVersionedCollectionsorg.hibernate.test.legacy.FooBarTesttestReturnPropertyComponentRenameorg.hibernate.test.legacy.SQLLoaderTesttestReadOnlyOnProxiesFailureExpectedorg.hibernate.test.readonly.ReadOnlyTesttestAutoDetectAliasingorg.hibernate.test.sql.GeneralTesttestScalarStoredProcedureorg.hibernate.test.sql.MySQLTesttestParameterHandlingorg.hibernate.test.sql.MySQLTesttestEntityStoredProcedureorg.hibernate.test.sql.MySQLTesttestEmptyInListFailureExpectedorg.hibernate.test.hql.HQLTesttestMaxindexHqlFunctionInElementAccessorFailureExpectedorg.hibernate.test.hql.HQLTesttestMultipleElementAccessorOperatorsFailureExpectedorg.hibernate.test.hql.HQLTesttestKeyManyToOneJoinFailureExpectedorg.hibernate.test.hql.HQLTesttestDuplicateExplicitJoinFailureExpectedorg.hibernate.test.hql.HQLTesttestCollectionFetchVsLoadorg.hibernate.test.stats.StatsTest
Modifications since last build:(first 50 of 0)



[Hibernate] hibernate-hsqldb-testsuite Build Completed With Testsuite Errors

2006-03-20 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-hsqldb-testsuite?log=log20060321020120
TESTS FAILEDAnt Error Message:/home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:84: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:75: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-common-targets.xml:11: Build Successful - Tests completed with errors or failures.Date of build:03/21/2006 02:01:20Time to build:8 minutes 14 seconds




   Unit Tests: (824)   Total Errors and Failures: (8)testReturnPropertyComponentRenameorg.hibernate.test.legacy.SQLLoaderTesttestReadOnlyOnProxiesFailureExpectedorg.hibernate.test.readonly.ReadOnlyTesttestEmptyInListFailureExpectedorg.hibernate.test.hql.HQLTesttestMaxindexHqlFunctionInElementAccessorFailureExpectedorg.hibernate.test.hql.HQLTesttestMultipleElementAccessorOperatorsFailureExpectedorg.hibernate.test.hql.HQLTesttestKeyManyToOneJoinFailureExpectedorg.hibernate.test.hql.HQLTesttestDuplicateExplicitJoinFailureExpectedorg.hibernate.test.hql.HQLTesttestCollectionFetchVsLoadorg.hibernate.test.stats.StatsTest
Modifications since last build:(first 50 of 0)