[hibernate-dev] Test 2

2023-11-15 Thread Steve Ebersole
___ hibernate-dev mailing list -- hibernate-dev@lists.jboss.org To unsubscribe send an email to hibernate-dev-le...@lists.jboss.org Privacy Statement: https://www.redhat.com/en/about/privacy-policy List Archives: https://lists.jboss.org/archives/list/hi

Re: [hibernate-dev] Test FormulaWithPartitionByTest seems to rely on implementation specific ordering

2019-06-26 Thread Mark Rotteveel
On 2019-06-24 17:53, Steve Ebersole wrote: > The query is selecting ids, so I assume you mean `1,2,3` as the > expectation. The test is asserting the result of `ROW_NUMBER() OVER( PARTITION BY DISCOUNT_CODE ORDER BY SIGN(DISCOUNT_VALUE) DESC )`, and given the `ORDER BY SIGN(DISCOUNT_VALUE) DESC`

Re: [hibernate-dev] Test FormulaWithPartitionByTest seems to rely on implementation specific ordering

2019-06-24 Thread Steve Ebersole
The query is selecting ids, so I assume you mean `1,2,3` as the expectation. Clearly Firebird cannot support what the query is attempting to do - so the best option is to skip this test for Firebird. However, the order-by is really not serving any purpose to the test aside from making the asserti

[hibernate-dev] Test FormulaWithPartitionByTest seems to rely on implementation specific ordering

2019-06-22 Thread Mark Rotteveel
The test FormulaWithPartitionByTest against Firebird 3 fails because the returned result has a different order than the one expected by the test. As far as I can tell, the order expected by the test is arbitrary or at least, as far as I can tell, the order expected is not necessarily required b

Re: [hibernate-dev] Test

2018-07-10 Thread Antônio Diego da Luz Silva
She held suggestions to turn better the Hibernate documentation. From: Antônio Diego da Luz Silva Sent: Tuesday, July 10, 2018 5:33:20 PM To: Vlad Mihalcea Subject: Re: [hibernate-dev] Test Thanks for the answer. I sended one message before that and I haven&#

[hibernate-dev] Test

2018-07-10 Thread Antônio Diego da Luz Silva
Are someone receiving my messages? ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Test case for HHH-11740

2017-05-16 Thread Vlad Mihalcea
When I fixed the SQL Server Dialects, I came up with some utilities: - setJdbcTimeout, - SQLServerSnapshotIsolationConnectionProvider - isSqlLockTimeout which makes it very easy to tackle this kind of tests. There was no effort on my side, I just wanted to make the PostgreSQL and MariaDB Jenkins

Re: [hibernate-dev] Test case for HHH-11740

2017-05-16 Thread Gail Badner
I've checked results and the updated test is passing on all dialects. On Mon, May 15, 2017 at 3:25 PM, Gail Badner wrote: > HHH-11740 is a bug that shows up on DB2 because Hibernate is using the > wrong DDL to create a global temporary table that can be shared by multiple > sessions; instead it

[hibernate-dev] Test case for HHH-11740

2017-05-15 Thread Gail Badner
HHH-11740 is a bug that shows up on DB2 because Hibernate is using the wrong DDL to create a global temporary table that can be shared by multiple sessions; instead it is creating a temporary table that is visible only to the connection that creates it. On Friday I pushed a test case to master tha

Re: [hibernate-dev] test case templates

2015-06-27 Thread Sanne Grinovero
Great idea Brett! Thanks for starting this On 26 June 2015 at 22:51, Brett Meyer wrote: > Just wanted to point out a new repo in our GitHub org: > https://github.com/hibernate/hibernate-test-case-templates > > Many users have asked to have templates to use when creating > reproducer/regression

[hibernate-dev] test case templates

2015-06-26 Thread Brett Meyer
Just wanted to point out a new repo in our GitHub org: https://github.com/hibernate/hibernate-test-case-templates Many users have asked to have templates to use when creating reproducer/regression tests for bug reports. As a starting point, I included both a standalone example, as well as one

[hibernate-dev] Test from Nabble

2015-06-16 Thread sebersole
Test from new Nabble gateway -- View this message in context: http://hibernate-development.74578.x6.nabble.com/Test-from-Nabble-tp3.html Sent from the Hibernate Development mailing list archive at Nabble.com. ___ hibernate-dev mailing list hibernate-d

[hibernate-dev] Test sending email to list

2014-08-22 Thread Hardy Ferentschik
$subject ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Test success may not mean functionality is correct

2012-08-09 Thread Gail Badner
AFAIK, joined inheritance and one-to-one are not implemented. - Original Message - > From: "Hardy Ferentschik" > To: "Steve Ebersole" > Cc: "Gail Badner" , "Hibernate hibernate-dev" > > Sent: Thursday, August 9, 2012 12:04:37 PM &

Re: [hibernate-dev] Test success may not mean functionality is correct

2012-08-09 Thread Hardy Ferentschik
On 9 Jan 2012, at 8:32 PM, Steve Ebersole wrote: > OK, I added adding FK between joined inheritance tables but > org.hibernate.test.annotations.genericsinheritance.GenericsInheritanceTest > still fails. AFAICT the problem there is that joined inheritance is > considered the default if no inhe

Re: [hibernate-dev] Test success may not mean functionality is correct

2012-08-09 Thread Steve Ebersole
OK, I added adding FK between joined inheritance tables but org.hibernate.test.annotations.genericsinheritance.GenericsInheritanceTest still fails. AFAICT the problem there is that joined inheritance is considered the default if no inheritance type is specified (at least based on the old DDL o

Re: [hibernate-dev] Test success may not mean functionality is correct

2012-08-09 Thread Steve Ebersole
I hooked in using the new schema management tool code to handle schema create/drop processing. These particular FKs are still not being created. So I looked at the tests a little closer. The issue there is that code building the bindings are not always creating Database objects. Specifically

Re: [hibernate-dev] Test success may not mean functionality is correct

2012-08-07 Thread Steve Ebersole
Perhaps we should actually hook in the new schema management code before we start worrying about missing DDL bits? ;) As it is right now, building the SessionFactory through the Metamodel is still just using SchemaExport to the hacked-together Database#generateSchemaCreationScript and Database

[hibernate-dev] Test success may not mean functionality is correct

2012-08-06 Thread Gail Badner
I've seen some cases where tests are passing for functionality that is not yet implemented. In these cases, generated DDL for the new metamodel is incorrect. For example: org.hibernate.test.annotations.genericsinheritance.GenericsInheritanceTest Generated DDL using old metamodel: create table

Re: [hibernate-dev] Test failures when entity name is mapped

2012-07-25 Thread Steve Ebersole
try. > > Gail > > - Original Message - >> From: "Gunnar Morling" >> To: "Steve Ebersole" , "Gail Badner" >> >> Cc: "hibernate-dev@lists.jboss.org hibernate-dev" >> >> Sent: Wednesday, July

Re: [hibernate-dev] Test failures when entity name is mapped

2012-07-25 Thread Gail Badner
Hi Gunnar, Thanks for mentioning git-bisect. I'll give it a try. Gail - Original Message - > From: "Gunnar Morling" > To: "Steve Ebersole" , "Gail Badner" > Cc: "hibernate-dev@lists.jboss.org hibernate-dev" > > Sent: Wedne

Re: [hibernate-dev] Test failures when entity name is mapped

2012-07-25 Thread Gunnar Morling
Hi, surely you're aware of it, so just in case: git-bisect [1] is great if you need to identify a bad commit between a known working one and now. --Gunnar [1] http://blog.evan.pro/getting-started-with-git-bisect-in-60-seconds 2012/7/25 Steve Ebersole : > I guess the bottom line is that we eit

Re: [hibernate-dev] Test failures when entity name is mapped

2012-07-25 Thread Steve Ebersole
I guess the bottom line is that we either need to accept "regressions" there or come up with a more reliable way to spot these "regressions" On Wed 25 Jul 2012 09:19:12 AM CDT, Steve Ebersole wrote: > Moving population of the JPA metamodel is the most likely culprit as I > think you already knew

Re: [hibernate-dev] Test failures when entity name is mapped

2012-07-25 Thread Steve Ebersole
Moving population of the JPA metamodel is the most likely culprit as I think you already knew. The problem as we also already discussed, imo, is the test set up on metamodel branch. For even minor changes you really have to run the full test suite 3 times and keep track of the number of tests

[hibernate-dev] Test failures when entity name is mapped

2012-07-24 Thread Gail Badner
I'm seeing 2 test failures using the new metamodel for tests that were passing in commit 787ab27d459a385411d3bf6ae0adfb9682898aa1. The tests are: org.hibernate.test.entityname.EntityNameFromSubClassTest org.hibernate.test.iterate.IterateTest Both of these tests are mapped using hbm.xml with the

Re: [hibernate-dev] Test

2012-01-26 Thread Sanne Grinovero
works! welcome On 26 January 2012 13:26, Eric Dalquist wrote: > Sorry for the spam, having subscription problems. > ___ > hibernate-dev mailing list > hibernate-dev@lists.jboss.org > https://lists.jboss.org/mailman/listinfo/hibernate-dev ___

[hibernate-dev] Test

2012-01-26 Thread Eric Dalquist
Sorry for the spam, having subscription problems. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Test failures after pull

2012-01-20 Thread Steve Ebersole
nm, clean and then test worked On 01/20/2012 11:30 AM, Steve Ebersole wrote: > Everyone else seeing these after pulling master? > > > Test > org.hibernate.test.cascade.circle.MultiPathCircleCascadeCheckNullibilityFalseTest > FAILED > Test org.hibernate.test.cascade.circle.MultiPathCircleCascadeTes

[hibernate-dev] Test failures after pull

2012-01-20 Thread Steve Ebersole
Everyone else seeing these after pulling master? Test org.hibernate.test.cascade.circle.MultiPathCircleCascadeCheckNullibilityFalseTest FAILED Test org.hibernate.test.cascade.circle.MultiPathCircleCascadeTest FAILED Test org.hibernate.test.cascade.circle.MultiPathCircleCascadeCheckNullTrueDel

Re: [hibernate-dev] Test specific for postgresql

2011-11-22 Thread Hardy Ferentschik
On Tue, 22 Nov 2011 08:53:50 +0100, Paweł Stawicki wrote: > Where can I specify URL/user/pass to my postgresql DB to run this > test? If we are talking the hibernate-core module for now (other modules are similarly structured). The easiest way to specify your database settings is to edit s

Re: [hibernate-dev] Test specific for postgresql

2011-11-21 Thread Paweł Stawicki
Thank you Strong. Where can I specify URL/user/pass to my postgresql DB to run this test? And where should I put this test? Is there some documentation introducing to hibernate developement? How is code structured, where are which tests, how is it tested against different DBs etc.? Best regards

Re: [hibernate-dev] Test specific for postgresql

2011-11-21 Thread Strong Liu
@org.hibernate.testing.RequiresDialect - Best Regards, Strong Liu http://about.me/stliu/bio On Nov 22, 2011, at 4:52 AM, Paweł Stawicki wrote: > Hello, > > I found a bug in hibernate, and would like to fix it. The bug is reported > here: > > I downloaded hibernate pro

Re: [hibernate-dev] Test specific for postgresql

2011-11-21 Thread Paweł Stawicki
Bug report is here: https://hibernate.onjira.com/browse/HHH-6580 -- Paweł Stawicki http://pawelstawicki.blogspot.com http://szczecin.jug.pl ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-de

[hibernate-dev] Test specific for postgresql

2011-11-21 Thread Paweł Stawicki
Hello, I found a bug in hibernate, and would like to fix it. The bug is reported here: I downloaded hibernate project (from https://github.com/hibernate/hibernate-core) and I'm even able to run tests by gradle. However, I don't know how to add test which is specific for postgresql. Is there some

Re: [hibernate-dev] Test failure on trunk

2010-06-16 Thread Steve Ebersole
Hi Julien. Is this against H2 (the default)? I have no issues running those tests here and the Hudson job is fine. On Tue, 2010-06-15 at 09:53 -0700, Julien HENRY wrote: > Hi, > > I would like to contribute to Hibernate. I have retrieved source code and > started a full build. There are 2 test

[hibernate-dev] Test failure on trunk

2010-06-15 Thread Julien HENRY
Hi, I would like to contribute to Hibernate. I have retrieved source code and started a full build. There are 2 test failures. Is it related to my configuration? --- Test set: org.hibernate.test.hql.BulkManipulationTest

[hibernate-dev] Test hangs if an exception is thrown, due to unclosed transaction

2008-12-10 Thread Juraci Costa
Guys, This is not new, but I realized that it is happening in trunk. We fixed in 3_2-related branches, so, I applied the same logic, but changing some things: - It now marks the test as "fail" if the test case leaves a transaction opened. Of course, it also closes the transaction. - It logs a w

[hibernate-dev] test, disregard

2007-02-09 Thread Steve Ebersole
test ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev