support oracle table edit

This commit is contained in:
SwallowGG
2023-10-01 22:47:24 +08:00
parent 73a10f12f8
commit ca2b24fc55

View File

@ -77,7 +77,7 @@ public enum OracleIndexTypeEnum {
}
private String buildIndexName(TableIndex tableIndex) {
return "\"" + tableIndex.getSchemaName() + "\"" + "\"" + tableIndex.getName() + "\"";
return "\"" + tableIndex.getSchemaName() + "\"." + "\"" + tableIndex.getName() + "\"";
}
public String buildModifyIndex(TableIndex tableIndex) {