nastra commented on code in PR #11948:
URL: https://github.com/apache/iceberg/pull/11948#discussion_r1916263730
##########
core/src/main/java/org/apache/iceberg/MetadataUpdate.java:
##########
@@ -517,4 +517,11 @@ public void applyTo(ViewMetadata.Builder
viewMetadataBuilder) {
viewMetadataBuilder.setCurrentVersionId(versionId);
}
}
+
+ class EnableRowLineage implements MetadataUpdate {
+ @Override
+ public void applyTo(TableMetadata.Builder metadataBuilder) {
+ MetadataUpdate.super.applyTo(metadataBuilder.enableRowLineage());
Review Comment:
shouldn't this be just `metadataBuilder.enableRowLineage()` without the
super call?
--
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]