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
mysql5.7语法: data_type [GENERATED ALWAYS] AS (expression) [VIRTUAL | STORED] [NOT NULL | NULL] [UNIQUE [KEY]] [[PRIMARY] KEY] [COMMENT 'string'] 在SQLColumnDefinition中定义的却是sorted。
MySqlOutputVisitor的visit方法中也应新增 if (x.isVirtual()) { print0(ucase ? " VIRTUAL" : " virtual"); }
if (x.isStored()) { print0(ucase ? " STORED" : " stored"); }
The text was updated successfully, but these errors were encountered:
bug fixed for issue #2576
26d005c
https://github.com/alibaba/druid/releases/tag/1.1.10 问题修复,请用新版本
Sorry, something went wrong.
No branches or pull requests
mysql5.7语法:
data_type [GENERATED ALWAYS] AS (expression)
[VIRTUAL | STORED] [NOT NULL | NULL]
[UNIQUE [KEY]] [[PRIMARY] KEY]
[COMMENT 'string']
在SQLColumnDefinition中定义的却是sorted。
MySqlOutputVisitor的visit方法中也应新增
if (x.isVirtual()) {
print0(ucase ? " VIRTUAL" : " virtual");
}
The text was updated successfully, but these errors were encountered: