clarkyu2016 / sql-beautify

VS Code extension that beautifies SQL(HQL).
MIT License
60 stars 20 forks source link

建表语句comment中包含逗号导致格式化错误 #56

Closed DestroyLee closed 1 year ago

DestroyLee commented 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'
)
clarkyu2016 commented 1 year ago

0.3.22版本已经修复~