修复issue反馈的问题

This commit is contained in:
inrgihc
2024-11-28 21:13:59 +08:00
parent aae7331d9e
commit 378d219869
18 changed files with 39 additions and 41 deletions

View File

@@ -111,7 +111,7 @@ public class OceanbaseMetadataQueryProvider extends AbstractMetadataProvider {
@Override
public String getQuotedSchemaTableCombination(String schemaName, String tableName) {
return this.delegate.getQuotedSchemaTableCombination(schemaName, tableName);
return quoteSchemaTableName(schemaName, tableName);
}
@Override

View File

@@ -34,10 +34,10 @@ public class OceanbaseUtils {
return false;
}
} else {
throw new RuntimeException();
throw new RuntimeException("Execute SQL[" + sql + "] return null value");
}
} else {
throw new RuntimeException();
throw new RuntimeException("Execute SQL[" + sql + "] no result");
}
}
} catch (SQLException sqlException) {