We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5d4cc commit f8403a3Copy full SHA for f8403a3
dingo-driver/host/src/main/java/io/dingodb/driver/DingoDriverParser.java
@@ -288,7 +288,7 @@ public Meta.Signature parseQuery(
288
} catch (IllegalArgumentException e) {
289
// Method not found: execute([class org.apache.calcite.sql.ddl.SqlCreateTable,org.apache.calcite.jdbc.CalcitePrepare$Context])
290
LogUtils.error(log, e.getMessage(), e);
291
- if (!(sqlNode instanceof DingoSqlCreateTable)) {
+ if (!(sqlNode instanceof DingoSqlCreateTable) || retry <= 0) {
292
throw e;
293
}
294
0 commit comments