nooneuse commented on code in PR #66307:
URL: https://github.com/apache/doris/pull/66307#discussion_r3842115424
##########
fe/fe-core/src/main/java/org/apache/doris/datasource/plugin/PluginDrivenExternalCatalog.java:
##########
@@ -935,12 +950,8 @@ public void dropColumn(TableIf dorisTable, String
columnName) throws UserExcepti
ConnectorMetadata metadata = PluginDrivenMetadata.get(session,
connector);
ConnectorTableHandle handle = resolveAlterHandle(externalTable,
session, metadata);
long updateTime = System.currentTimeMillis();
- try {
- metadata.dropColumn(session, handle, columnName);
- } catch (DorisConnectorException e) {
- throw new DdlException(e.getMessage(), e);
- }
- afterExternalDdl(externalTable, updateTime);
+ executeSchemaMutation(externalTable, updateTime,
Review Comment:
okay. fixed
--
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]