jbewing commented on code in PR #15150:
URL: https://github.com/apache/iceberg/pull/15150#discussion_r2985587238


##########
core/src/main/java/org/apache/iceberg/SerializableTable.java:
##########
@@ -80,6 +82,9 @@ protected SerializableTable(Table table) {
     Map<Integer, PartitionSpec> specs = table.specs();
     specs.forEach((specId, spec) -> specAsJsonMap.put(specId, 
PartitionSpecParser.toJson(spec)));
     this.sortOrderAsJson = SortOrderParser.toJson(table.sortOrder());
+    this.sortOrderAsJsonMap = Maps.newHashMap();

Review Comment:
   Not able to do it here (a kryo error get thrown as part of the serialization 
of this class then), but I believe I addressed your concern just the same with 
https://github.com/apache/iceberg/pull/15150/commits/cc033550e4ca94559aeddceeb8604a5f8c185db9.
 



-- 
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]

Reply via email to