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:
@@ -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);
|
||||
@@ -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);
|
||||
@@ -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);
|
||||
@@ -0,0 +1 @@
|
||||
insert into T_TEST (NAME) values ('Keith');
|
||||
Reference in New Issue
Block a user