RESOLVED - issue SPR-6345: ResourceDatabasePopulator does not handle comments properly when ignoring failures

http://jira.springframework.org/browse/SPR-6345
This commit is contained in:
David Syer
2009-11-14 09:02:03 +00:00
parent aac9107f6b
commit 534f8a4705
9 changed files with 97 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
-- Failed DROP can be ignored if necessary
drop table T_TEST if exists;
-- Create the test table
create table T_TEST (NAME varchar(50) not null);

View File

@@ -0,0 +1,5 @@
-- Failed DROP can be ignored if necessary
drop table T_TEST;
-- Create the test table
create table T_TEST (NAME varchar(50) not null);

View File

@@ -0,0 +1,5 @@
-- Failed DROP can be ignored if necessary
drop table T_TEST;
-- Create the test table
create table T_TEST (NAME varchar(50) not null);

View File

@@ -0,0 +1 @@
insert into T_TEST (NAME) values ('Keith');