PT-193 New test and updated libraries

Added a specific test for this issue and updated all binaries to the
latest TableParser version
This commit is contained in:
Carlos Salguero
2017-08-15 12:06:24 -03:00
parent c375fd068b
commit 54dfcf36de
13 changed files with 129 additions and 31 deletions

View File

@@ -1,6 +1,11 @@
Create Table: CREATE TABLE `t3` (
DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;
CREATE TABLE `t3` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`f22aBcDe` int(10) unsigned DEFAULT NULL COMMENT 'xxx`XXx',
`f23aBc` int(10) unsigned NOT NULL DEFAULT '255' COMMENT "`yyy",
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;