HHH-5416 - upgrade to h2 1.2.140
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20069 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
94b394f58d
commit
9dff718744
|
@ -542,7 +542,7 @@
|
|||
<dependency>
|
||||
<groupId>com.h2database</groupId>
|
||||
<artifactId>h2</artifactId>
|
||||
<version>1.2.139</version>
|
||||
<version>1.2.140</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
|
|
@ -833,6 +833,7 @@ public class BulkManipulationTest extends FunctionalTestCase {
|
|||
catch ( AssertionFailedError afe ) {
|
||||
if ( H2Dialect.class.isInstance( getDialect() ) ) {
|
||||
// http://groups.google.com/group/h2-database/t/5548ff9fd3abdb7
|
||||
// this is fixed in H2 1.2.140
|
||||
count = s.createQuery( "delete Vehicle" ).executeUpdate();
|
||||
assertEquals( "incorrect count", 4, count );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue