XiaoJiang521 commented on code in PR #5517:
URL: https://github.com/apache/seatunnel/pull/5517#discussion_r1338564500
##########
seatunnel-connectors-v2/connector-jdbc/src/main/java/org/apache/seatunnel/connectors/seatunnel/jdbc/catalog/oracle/OracleCatalog.java:
##########
@@ -129,12 +129,12 @@ protected String getCreateTableSql(TablePath tablePath,
CatalogTable table) {
@Override
protected String getDropTableSql(TablePath tablePath) {
- return String.format("DROP TABLE %s", getTableName(tablePath));
+ return String.format("DROP TABLE %s",
tablePath.getSchemaAndTableName("\""));
}
@Override
protected String getTableName(TablePath tablePath) {
- return tablePath.getSchemaAndTableName().toUpperCase();
+ return tablePath.getSchemaAndTableName();
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]