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
postgresql
1.2.8
jdk8
ALTER TABLE t_test_user1 ALTER COLUMN a1 TYPE bpchar(20);
List statementList = SQLUtils.parseStatements(sql, dbType, true);
No response
原本sql语句是ALTER TABLE t_test_user1 ALTER COLUMN a1 TYPE bpchar(20); 转换完成之后ALTER TABLE t_test_user1 ALTER COLUMN a1 bpchar(20); 少了一个TYPE,导致代码修改表字段失败。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Database Type
postgresql
Database Version
postgresql
Druid Version
1.2.8
JDK Version
jdk8
Error SQL
ALTER TABLE t_test_user1 ALTER COLUMN a1 TYPE bpchar(20);
Testcase Code
List statementList = SQLUtils.parseStatements(sql, dbType, true);
Stacktrace Info
No response
Error Info
原本sql语句是ALTER TABLE t_test_user1 ALTER COLUMN a1 TYPE bpchar(20);
转换完成之后ALTER TABLE t_test_user1 ALTER COLUMN a1 bpchar(20);
少了一个TYPE,导致代码修改表字段失败。
The text was updated successfully, but these errors were encountered: