把转义的逻辑重新提交一下

This commit is contained in:
sanChouIsACat 2021-12-28 10:10:43 +08:00
parent 9f09039a23
commit b1334308a0

View File

@ -106,7 +106,7 @@ public class ConcurrentTableWriterTask extends CommonRdbmsWriter.Task {
if (isOracleCompatibleMode) { if (isOracleCompatibleMode) {
connectInfo.databaseName = connectInfo.databaseName.toUpperCase(); connectInfo.databaseName = connectInfo.databaseName.toUpperCase();
//在转义的情况下不翻译 //在转义的情况下不翻译
if (table.startsWith("\"") && table.endsWith("\"")) { if (!(table.startsWith("\"") && table.endsWith("\""))) {
table = table.toUpperCase(); table = table.toUpperCase();
} }