Open xuetuing opened 2 months ago
issue using "import form SQL" feature with MySQL : TEXT
How to reproduce
CREATE TABLE `ys_map_info` ( `id` SMALLINT NOT NULL AUTO_INCREMENT UNIQUE, `detail` TEXT(65535), PRIMARY KEY(`id`) );
Fail
But if the datatype is VARCHAR:
CREATE TABLE `ys_map_info` ( `id` SMALLINT NOT NULL AUTO_INCREMENT UNIQUE, `detail` varchar(65535), PRIMARY KEY(`id`) );
OK
Hey! Just reported it https://github.com/taozhi8833998/node-sql-parser/issues/2099
UQC53Sk3lkCm0E7kSejCsBk8z9f_Yf4ndp-MNNUjRhG5O0KV
issue using "import form SQL" feature with MySQL : TEXT
How to reproduce
Fail
But if the datatype is VARCHAR:
OK