Make TableParser.pm handle ANSI quotes

This commit is contained in:
Baron Schwartz
2012-06-07 00:59:59 -04:00
parent ba2ddf682b
commit f7c97e749e
3 changed files with 60 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE "t" (
"a" int(11) DEFAULT NULL,
"b`c" int(11) DEFAULT NULL,
"d""e" int(11) DEFAULT NULL,
"f
g" int(11) DEFAULT NULL,
"h\" int(11) DEFAULT NULL,
"i\""" int(11) DEFAULT NULL
)