morrySnow commented on code in PR #61918:
URL: https://github.com/apache/doris/pull/61918#discussion_r3013978570
##########
fe/fe-core/src/main/java/org/apache/doris/alter/SchemaChangeHandler.java:
##########
@@ -408,8 +410,15 @@ private void processDropColumn(DropColumnOp dropColumnOp,
Table externalTable, L
throws DdlException {
String dropColName = dropColumnOp.getColName();
+ String tableName = externalTable.getName();
+ if (GlobalVariable.isStoredTableNamesLowerCase()) {
+ tableName = tableName.toLowerCase();
Review Comment:
Fixed — same as above, removed redundant lowercasing.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]