RussellSpitzer commented on code in PR #10862:
URL: https://github.com/apache/iceberg/pull/10862#discussion_r1703590516
##########
core/src/main/java/org/apache/iceberg/SchemaUpdate.java:
##########
@@ -185,6 +186,8 @@ private void internalAddColumn(
@Override
public UpdateSchema deleteColumn(String name) {
+ Preconditions.checkArgument(
+ !renamedNameToId.containsKey(name), "Cannot delete renaming column:
%s", name);
Review Comment:
Cannot delete renamed column: %s
--
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]