Closed DestroyLee closed 1 year ago
如果建表语句字段的comment 中包含逗号(",") 会导致建表语句错误。 eg:
create table a ( `A_ratio` decimal(8,4) COMMENT 'a,b', `B_ratio` decimal(8,4) COMMENT 'a,b', `C_ratio` decimal(8,4) COMMENT 'a,b' )
格式化完了之后是
CREATE TABLE a ( `A_ratio` DECIMAL(8,4) COMMENT 'a ,`B_ratio` DECIMAL(8,4) COMMENT 'a ,`C_ratio` DECIMAL(8,4) COMMENT 'a ,b' )
0.3.22版本已经修复~
如果建表语句字段的comment 中包含逗号(",") 会导致建表语句错误。 eg:
格式化完了之后是