[hibernate-dev] hibernate-mysql-testsuite Build Timed Out
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-mysql-testsuite?log=log20060908023503 BUILD TIMED OUTAnt Error Message: build timeoutDate of build: 09/08/2006 02:35:03Time to build: Last changed: 12/31/2005 20:44:14Last log entry: less noisy Unit Tests: (0) Total Errors and Failures: (0) Modifications since last build: (first 50 of 1982)10461modifiedepbernard//trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.javarollback10455modifiedepbernard//trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.javaEJB-160 make Ejb3Configuration and AnnotationConfiguration serializable and allow JNDI referenceEntityNotFoundDelegate must be serializable10451addedepbernard//trunk/HibernateExt/ejb/src/test/org/hibernate/ejb/test/cascade/FetchTest2.javaEJB-221 TransientObjectException raised on proxies during persist_on_fllush.noCascade()10451modifiedepbernard//trunk/Hibernate3/src/org/hibernate/engine/CascadingAction.javaEJB-221 TransientObjectException raised on proxies during persist_on_fllush.noCascade()10451addedepbernard//trunk/HibernateExt/ejb/src/test/org/hibernate/ejb/test/cascade/Soldier2.javaEJB-221 TransientObjectException raised on proxies during persist_on_fllush.noCascade()10451addedepbernard//trunk/HibernateExt/ejb/src/test/org/hibernate/ejb/test/cascade/Troop2.javaEJB-221 TransientObjectException raised on proxies during persist_on_fllush.noCascade()10450modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/modules/basic_mapping.xml10449deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Gulim.xmlRemoved Gulim.xml, Readme4font.txtAdded Hankc.ttf, Hankc.xml10449addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Hankc.ttfRemoved Gulim.xml, Readme4font.txtAdded Hankc.ttf, Hankc.xml10449addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Hankc.xmlRemoved Gulim.xml, Readme4font.txtAdded Hankc.ttf, Hankc.xml10449deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/ReadMe4Font.txtRemoved Gulim.xml, Readme4font.txtAdded Hankc.ttf, Hankc.xml10448modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/userconfig.xmlReplaced Gulim font With Hankc10447modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/styles/fopdf.xslReplaced Gulim font with Kankc font10446addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/ReadMe4Font.txtremoved dotum.xml and gulim.ttc, and added readme.txt for font10446deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/gulim.ttcremoved dotum.xml and gulim.ttc, and added readme.txt for font10446deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Dotum.xmlremoved dotum.xml and gulim.ttc, and added readme.txt for font10445modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/userconfig.xmlc:\windows\fonts? ?? ? ? ??.10444deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Guseul.ttfremoved a Gauel font and added free fonts(Bangwool)10444deletedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Guseul.xmlremoved a Gauel font and added free fonts(Bangwool)10443modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/styles/fopdf.xslmodified font name(Bangwool) and font sizes10442addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/gulim.ttc10441addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Dotum.xml10440addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Gulim.xml10439modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/userconfig.xmlAdded Dotum font metric info and modified the font-metric's name of Bangwool10438modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Bangwool.xmlModified font-metric(Bangwool)10437modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/styles/fopdf.xsl3.2 cr3 korean10436addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Guseul.ttf3.2 cr3 korean10436addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Guseul.xml3.2 cr3 korean10436modifiedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/userconfig.xml3.2 cr3 korean10436addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Bangwool.ttf3.2 cr3 korean10436addedjdkim528//trunk/Hibernate3/doc/reference/ko/fop/Bangwool.xml3.2 cr3 korean10434modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/generated/AbstractGeneratedPropertyTest.javafixed failures on SQLServer10434modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/generated/TimestampGeneratedValuesWithCachingTest.javafixed failures on SQLServer10434modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/generated/TriggerGeneratedValuesWithCachingTest.javafixed failures on SQLServer10434modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/generated/TriggerGeneratedValuesWithoutCachingTest.javafixed failures on SQLServer10434added[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/generated/MSSQLGeneratedPropertyEntity.hbm.xmlfixed failures on SQLServer10432modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernat
[hibernate-dev] Major issue with Hibernate Filters
Hibernate developers, I'm afraid the forums had nothing about this issue - and I believe I have found the bit of Hibernate coding causing the problem: I have spent the last few weeks trying to get the Filters to work as per the example in the Hibernate reference manual - the problem is that filters are only currently applied for queries - they are not applied when lazy loading entities - this causes major errors when using the historical filters as per your example that need the filters in order to achieve uniqueness. (I cannot realistically eager load everything in the database! Here is the bit of code from AbstractEntityLoader that appears to be causing the problem: public void processFilters(String sql, SessionImplementor session) { if ( session.getEnabledFilters().size()==0 || sql.indexOf(ParserHelper.HQL_VARIABLE_PREFIX)<0 ) { // HELLA IMPORTANT OPTIMIZATION!!! processedPositionalParameterValues = getPositionalParameterValues(); processedPositionalParameterTypes = getPositionalParameterTypes(); processedSQL = sql; } else { Do you agree this is an issue - and if so - I take it I should raise it as a JIRA issue. If not - can you suggest a workaround? Alex -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Fri 9/8/2006 12:17 PM To: hibernate-dev@lists.jboss.org Subject: hibernate-dev Digest, Vol 3, Issue 32 Send hibernate-dev mailing list submissions to hibernate-dev@lists.jboss.org To subscribe or unsubscribe via the World Wide Web, visit https://lists.jboss.org/mailman/listinfo/hibernate-dev or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of hibernate-dev digest..." Today's Topics: 1. hibernate-sybase-testsuite Build Completed With Testsuite Errors ([EMAIL PROTECTED]) -- Message: 1 Date: Thu, 7 Sep 2006 22:17:33 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [hibernate-dev] hibernate-sybase-testsuite Build Completed WithTestsuite Errors To: hibernate-dev@lists.jboss.org, [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/hibernate-dev/attachments/20060907/4cb1300f/attachment.html -- ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev End of hibernate-dev Digest, Vol 3, Issue 32 <>___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev
[hibernate-dev] RE: Major issue with Hibernate Filters
You need to point me to where we ever created an example of filter usage "in order to achieve uniqueness". That is expressly *not* a usage of filters; filters by definition cannot change the multiplicity of an association. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alex Bacon Sent: Friday, September 08, 2006 4:51 AM To: hibernate-dev@lists.jboss.org Subject: Major issue with Hibernate Filters Hibernate developers, I'm afraid the forums had nothing about this issue - and I believe I have found the bit of Hibernate coding causing the problem: I have spent the last few weeks trying to get the Filters to work as per the example in the Hibernate reference manual - the problem is that filters are only currently applied for queries - they are not applied when lazy loading entities - this causes major errors when using the historical filters as per your example that need the filters in order to achieve uniqueness. (I cannot realistically eager load everything in the database! Here is the bit of code from AbstractEntityLoader that appears to be causing the problem: public void processFilters(String sql, SessionImplementor session) { if ( session.getEnabledFilters().size()==0 || sql.indexOf(ParserHelper.HQL_VARIABLE_PREFIX)<0 ) { // HELLA IMPORTANT OPTIMIZATION!!! processedPositionalParameterValues = getPositionalParameterValues(); processedPositionalParameterTypes = getPositionalParameterTypes(); processedSQL = sql; } else { Do you agree this is an issue - and if so - I take it I should raise it as a JIRA issue. If not - can you suggest a workaround? Alex -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Fri 9/8/2006 12:17 PM To: hibernate-dev@lists.jboss.org Subject: hibernate-dev Digest, Vol 3, Issue 32 Send hibernate-dev mailing list submissions to hibernate-dev@lists.jboss.org To subscribe or unsubscribe via the World Wide Web, visit https://lists.jboss.org/mailman/listinfo/hibernate-dev or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of hibernate-dev digest..." Today's Topics: 1. hibernate-sybase-testsuite Build Completed With Testsuite Errors ([EMAIL PROTECTED]) -- Message: 1 Date: Thu, 7 Sep 2006 22:17:33 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [hibernate-dev] hibernate-sybase-testsuite Build Completed WithTestsuite Errors To: hibernate-dev@lists.jboss.org, [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/hibernate-dev/attachments/20060907/4cb1 300f/attachment.html -- ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev End of hibernate-dev Digest, Vol 3, Issue 32 ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev
[hibernate-dev] hibernate-hsqldb-testsuite Build Completed With Testsuite Errors
View results here -> http://cruisecontrol.jboss.com/cc/buildresults/hibernate-hsqldb-testsuite?log=log20060908215956 TESTS FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:92: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-hibernate-db-matrix.xml:83: 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: 09/08/2006 21:59:56Time to build: 10 minutes 53 secondsLast changed: 12/31/2005 20:44:14Last log entry: less noisy Unit Tests: (911) Total Errors and Failures: (50)testDirtyCheckorg.hibernate.test.instrument.buildtime.InstrumentTesttestFetchAllorg.hibernate.test.instrument.buildtime.InstrumentTesttestLazyorg.hibernate.test.instrument.buildtime.InstrumentTesttestLazyManyToOneorg.hibernate.test.instrument.buildtime.InstrumentTesttestSetFieldInterceptororg.hibernate.test.instrument.buildtime.InstrumentTesttestPropertyInitializedorg.hibernate.test.instrument.buildtime.InstrumentTesttestManyToOneProxyorg.hibernate.test.instrument.buildtime.InstrumentTesttestDirtyCheckorg.hibernate.test.instrument.buildtime.InstrumentTesttestFetchAllorg.hibernate.test.instrument.buildtime.InstrumentTesttestLazyorg.hibernate.test.instrument.buildtime.InstrumentTesttestLazyManyToOneorg.hibernate.test.instrument.buildtime.InstrumentTesttestSetFieldInterceptororg.hibernate.test.instrument.buildtime.InstrumentTesttestPropertyInitializedorg.hibernate.test.instrument.buildtime.InstrumentTesttestManyToOneProxyorg.hibernate.test.instrument.buildtime.InstrumentTesttestJoinedSubclassorg.hibernate.test.joinedsubclass.JoinedSubclassTesttestReturnPropertyComponentRenameorg.hibernate.test.legacy.SQLLoaderTesttestManyToManyPropertyReforg.hibernate.test.propertyref.PropertyRefTesttestFiltersWithSubclassorg.hibernate.test.subclassfilter.DiscrimSubclassFilterTesttestFiltersWithJoinedSubclassorg.hibernate.test.subclassfilter.JoinedSubclassFilterTesttestUnionSubclassorg.hibernate.test.unionsubclass2.UnionSubclassTesttestLazyorg.hibernate.test.bidi.AuctionTesttestSubclassingorg.hibernate.test.legacy.ABCProxyTesttestFormulaAssociationorg.hibernate.test.legacy.ABCTesttestComponentNotNullorg.hibernate.test.legacy.ComponentNotNullTesttestCompositeElementorg.hibernate.test.legacy.ComponentNotNullTesttestUnflushedSessionSerializationorg.hibernate.test.legacy.FumTesttestOneToOneCacheorg.hibernate.test.legacy.OneToOneCacheTesttestLoadAfterNonExistsorg.hibernate.test.legacy.ParentChildTesttestSimpleQBEorg.hibernate.test.legacy.QueryByExampleTesttestJunctionNotExpressionQBEorg.hibernate.test.legacy.QueryByExampleTesttestExcludingQBEorg.hibernate.test.legacy.QueryByExampleTesttestBlobCloborg.hibernate.test.legacy.SQLFunctionsTesttestFindBySQLStarorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLPropertiesorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLAssociatedObjectsorg.hibernate.test.legacy.SQLLoaderTesttestPropertyResultSQLorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLMultipleObjectorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLParametersorg.hibernate.test.legacy.SQLLoaderTesttestDoubleAliasingorg.hibernate.test.legacy.SQLLoaderTesttestEmbeddedCompositePropertiesorg.hibernate.test.legacy.SQLLoaderTesttestFindSimpleBySQLorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLSimpleByDiffSessionsorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLDiscriminatedSameSessionorg.hibernate.test.legacy.SQLLoaderTesttestFindBySQLDiscriminatedDiffSessionorg.hibernate.test.legacy.SQLLoaderTesttestCompositeIdIdorg.hibernate.test.legacy.SQLLoaderTesttestSessionStatsorg.hibernate.test.legacy.StatisticsTesttestPaginationorg.hibernate.test.pagination.PaginationTesttestJoinFetchPropertyReforg.hibernate.test.propertyref.PropertyRefTesttestSessionStatisticsorg.hibernate.test.stats.SessionStatsTesttestWhereorg.hibernate.test.where.WhereTest Modifications since last build: (first 50 of 1993)10476modifiedepbernard//trunk/Hibernate3/src/org/hibernate/jdbc/JDBCContext.javalower trace, ignoring a tx join happens a lot in EJB 310473modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/AllTests.javaHHH-1986 : InvocationTargetException on JavassistLazyInitializer10472modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/bytecode/Bean.javaHHH-1986 : InvocationTargetException on JavassistLazyInitializer10472added[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/bytecode/javassist/InvocationTargetExceptionTest.javaHHH-1986 : InvocationTargetException on JavassistLazyInitializer10472added[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/test/bytecode/BytecodeSuite.javaHHH-1986 : InvocationTargetException on JavassistLazyInitializer10472modified[EMAIL PROTECTED]//trunk/Hibernate3/test/org/hibernate/t