[#2016] Bad parsing of MySQL ENUM literals by jooq-meta, if they contain

special characters - Added test data
This commit is contained in:
Lukas Eder 2012-12-15 13:43:17 +01:00
parent b4178b5dc7
commit 31205edb76
2 changed files with 4 additions and 2 deletions

View File

@ -85,7 +85,8 @@ CREATE TABLE t_959 (
'interface', 'int', 'long', 'native', 'new', 'package', 'private',
'protected', 'public', 'return', 'short', 'static', 'strictfp',
'super', 'switch', 'synchronized', 'this', 'throw', 'throws',
'transient', 'true', 'try', 'void', 'volatile', 'while')
'transient', 'true', 'try', 'void', 'volatile', 'while'),
special_characters enum('enum(', '(', ')', ',', '''', ')enum')
)
/

View File

@ -86,7 +86,8 @@ CREATE TABLE t_959 (
'interface', 'int', 'long', 'native', 'new', 'package', 'private',
'protected', 'public', 'return', 'short', 'static', 'strictfp',
'super', 'switch', 'synchronized', 'this', 'throw', 'throws',
'transient', 'true', 'try', 'void', 'volatile', 'while')
'transient', 'true', 'try', 'void', 'volatile', 'while'),
special_characters enum('enum(', '(', ')', ',', '''', ')enum')
) ENGINE = InnoDB
/