SPR-6688: Add tests and explicit detection of \ in sql script extractor

This commit is contained in:
David Syer
2011-06-02 14:28:58 +00:00
parent e0ad6500be
commit 645631ad2e
5 changed files with 50 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
drop table T_TEST if exists;
create table T_TEST (NAME varchar(50) not null);

View File

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

View File

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