mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-10-14 13:50:24 +00:00
修复issue反馈的问题
This commit is contained in:
@@ -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
|
||||
|
@@ -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) {
|
||||
|
Reference in New Issue
Block a user