Re: [hibernate-dev] New version of HSQLDialect.java

2010-06-28 Thread Steve Ebersole
Not really because such boolean support is not uniformly defined in JDBC. And generally speaking Hibernate is usually not using literal values, but parameters and binding the values. On Mon, 2010-06-28 at 21:16 +0100, fredt wrote: > Hi, > > We support two types of the temp table. One type is cre

Re: [hibernate-dev] New version of HSQLDialect.java

2010-06-28 Thread fredt
Hi, We support two types of the temp table. One type is created with CREATE GLOBAL TEMPORARY TABLE (since 1.8.0) with the definition stored in the schema while each session has its private copy of the data. The other type is fully private and is created with DECLARE LOCAL TEMPORARY TABLE (since

Re: [hibernate-dev] New version of HSQLDialect.java

2010-06-28 Thread Steve Ebersole
Hey Fred, thats awesome. Curious whether y'all added temp table support? On Sun, 2010-06-27 at 02:01 +0100, Fred Toussi wrote: > I have made changes and additions to HSQLDialect to work with HSQLDB v. > 2.0.x. The Hibernate unit tests now run well with HSQLDB 1.8.x and > 2.0.x. > > New snapshot

[hibernate-dev] Hibernate Validator 4.1.0.Final has landed ...

2010-06-28 Thread Hardy Ferentschik
You can find all the information you need on in.relation.to - http://in.relation.to/15996.lace --Hardy ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Commit messages

2010-06-28 Thread Emmanuel Bernard
In an ironic twist, I messed up with git and ended up committing things in the bad form a few minutes after this email. Sorry. On 28 juin 2010, at 13:40, Emmanuel Bernard wrote: > Hi committers, > > Please make sure to: > - always commit with a message > - always associate an issue number at th

[hibernate-dev] Commit messages

2010-06-28 Thread Emmanuel Bernard
Hi committers, Please make sure to: - always commit with a message - always associate an issue number at the beginning of the message (unless you do style fixing) - always associate a readable message to the issue number that explain what is going on It makes reading logs and follow what has