BATCH-1968: Upgrade to hsqldb 2.2.9
This commit is contained in:
committed by
Michael Minella
parent
c8ce61d598
commit
082c81765f
@@ -86,7 +86,7 @@
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>hsqldb</groupId>
|
||||
<groupId>org.hsqldb</groupId>
|
||||
<artifactId>hsqldb</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -3,7 +3,7 @@ package org.springframework.batch.item.database;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import org.hsqldb.Types;
|
||||
import org.hsqldb.types.Types;
|
||||
import org.junit.Test;
|
||||
import org.junit.runners.JUnit4;
|
||||
import org.junit.runner.RunWith;
|
||||
@@ -53,7 +53,7 @@ public class StoredProcedureItemReaderCommonTests extends AbstractDatabaseItemSt
|
||||
reader.setProcedureName("read_some_foos");
|
||||
reader.setParameters(
|
||||
new SqlParameter[] {
|
||||
new SqlParameter("from_id", Types.NUMERIC),
|
||||
new SqlParameter("from_id", Types.NUMERIC),
|
||||
new SqlParameter("to_id", Types.NUMERIC)
|
||||
});
|
||||
reader.setPreparedStatementSetter(
|
||||
|
||||
@@ -12,7 +12,7 @@ import java.sql.SQLException;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.hsqldb.Types;
|
||||
import org.hsqldb.types.Types;
|
||||
import org.junit.Test;
|
||||
import org.junit.runners.JUnit4;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
Reference in New Issue
Block a user