l have an application work fine in hibernate-3.2.3.ga , it passed all test.
because of the "pretty serious performance problem introduced in 3.2.3.ga" , l have changed it to the hibernate-3.2.4.ga , all test failed.
looking to the insert query generated by hibernate-3.2.4.ga , it is,
Code:
Hibernate: insert into school.AUTHOR (VERSION, AUTHOR_NAME, AUTHOR_ID) values (?, ?, ?)
2007-05-12 14:06:56,171 WARN [org.hibernate.util.JDBCExceptionReporter] - SQL Error: 0, SQLState: 07001
2007-05-12 14:06:56,171 ERROR [org.hibernate.util.JDBCExceptionReporter] - No value specified for parameter 3
instead of hibernate-3.2.3.ga
Code:
Hibernate: insert into school.AUTHOR (VERSION, AUTHOR_NAME) values (?, ?)
is that a bug or some new configuration problem that introduce in hibernate-3.2.4.ga ?
moon