You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1问题:StatFilter没有适配gaussdb导致sql打印异常
2. 异常sql : delete from xx表 t where t.id=1
3.异常代码处(StatFilter.java):
` public String mergeSql(String sql, DbType dbType) {
4.错误原因:
SQLParserUtils.createSQLStatementParser方法并没有适配gaussdb。
gaussdb 应该也是使用PGSQLStatementParser把?(如下) case postgresql: case greenplum: case edb: eturn new PGSQLStatementParser(sql, features);
The text was updated successfully, but these errors were encountered:
lizongbo
added a commit
to lizongbo/druid
that referenced
this issue
Apr 16, 2024
你好。
1问题:StatFilter没有适配gaussdb导致sql打印异常
2. 异常sql : delete from xx表 t where t.id=1
3.异常代码处(StatFilter.java):
` public String mergeSql(String sql, DbType dbType) {
4.错误原因:
SQLParserUtils.createSQLStatementParser方法并没有适配gaussdb。
gaussdb 应该也是使用PGSQLStatementParser把?(如下)
case postgresql: case greenplum: case edb: eturn new PGSQLStatementParser(sql, features);
The text was updated successfully, but these errors were encountered: