changed the way the datasource is initialised for tests (inadvertently)
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
DROP TABLE T_FOOS;
|
||||
DROP TABLE T_WRITE_FOOS;
|
||||
@@ -10,7 +10,6 @@
|
||||
</bean>
|
||||
</property>
|
||||
<property name="initScripts" value="org/springframework/batch/item/database/init-foo-schema-hsqldb.sql" />
|
||||
<property name="destroyScript" value="org/springframework/batch/item/database/destroy-foo-schema-hsqldb.sql" />
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
DROP TABLE T_FOOS if exists;
|
||||
DROP TABLE T_WRITE_FOOS if exists;
|
||||
|
||||
CREATE TABLE T_FOOS (
|
||||
ID BIGINT NOT NULL,
|
||||
NAME VARCHAR(45),
|
||||
|
||||
Reference in New Issue
Block a user