nastra commented on code in PR #7144:
URL: https://github.com/apache/iceberg/pull/7144#discussion_r1164303852
##########
core/src/main/java/org/apache/iceberg/SerializableTable.java:
##########
@@ -83,6 +87,10 @@ protected SerializableTable(Table table) {
this.encryption = table.encryption();
this.locationProvider = table.locationProvider();
this.refs = SerializableMap.copyOf(table.refs());
+ this.metricsReporterProperties =
+ table instanceof BaseTable
+ ? SerializableMap.copyOf(table.metricsReporter().properties())
+ : null;
Review Comment:
we should rather do
https://github.com/apache/iceberg/pull/7144#issuecomment-1504987582 than
setting this to null here.
--
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]