We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DDL建表语句 表名带有特定关键字时会出现格式化错误 原DDL
CREATE TABLE a.tmp_interact ( `uid` bigint COMMENT "uid", `label` bigint COMMENT "标签" ) COMMENT "sample table" partitioned by (`pt` STRING);
格式化后出现问题
CREATE TABLE COMMENT undefined ,`uid` bigint COMMENT "uid" ,`label` bigint COMMENT "标签"
) COMMENT "sample table" PARTITIONED by (pt STRING); 将表名中的int替换成其他比如it,再格式化后正常
pt
CREATE TABLE a.tmp_iteract ( `uid` bigint COMMENT "uid" ,`label` bigint COMMENT "标签" ) COMMENT "sample table" PARTITIONED by (`pt` STRING);
目前尝试了一下int、float都会引发此错误
The text was updated successfully, but these errors were encountered:
新版本0.3.13已经修复,感谢您的反馈!
Sorry, something went wrong.
No branches or pull requests
DDL建表语句 表名带有特定关键字时会出现格式化错误
原DDL
格式化后出现问题
) COMMENT "sample table" PARTITIONED by (
pt
STRING);将表名中的int替换成其他比如it,再格式化后正常
目前尝试了一下int、float都会引发此错误
The text was updated successfully, but these errors were encountered: