From 2357b89b58ad81ef56aeaea127576fdea889075e Mon Sep 17 00:00:00 2001 From: dsyer Date: Mon, 18 Aug 2008 06:16:04 +0000 Subject: [PATCH] Ensure table is dropped in test suite --- .../src/test/resources/org/springframework/batch/jms/init.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-batch-infrastructure-tests/src/test/resources/org/springframework/batch/jms/init.sql b/spring-batch-infrastructure-tests/src/test/resources/org/springframework/batch/jms/init.sql index 1c8a78ce6..105bd81af 100644 --- a/spring-batch-infrastructure-tests/src/test/resources/org/springframework/batch/jms/init.sql +++ b/spring-batch-infrastructure-tests/src/test/resources/org/springframework/batch/jms/init.sql @@ -1,3 +1,4 @@ +DROP TABLE T_FOOS; create table T_FOOS ( id integer not null primary key, name varchar(80),