wypoon commented on code in PR #6799: URL: https://github.com/apache/iceberg/pull/6799#discussion_r1107805822
########## core/src/test/java/org/apache/iceberg/TableTestBase.java: ########## @@ -162,6 +165,19 @@ public class TableTestBase { static final FileIO FILE_IO = new TestTables.LocalFileIO(); + static final Map<String, String> CODEC_METADATA_MAPPING = + ImmutableMap.<String, String>builder() + .put("uncompressed", "null") Review Comment: The `Codec` enum in `Avro` was private, so we couldn't use it. I made it public in order to use it as you suggest. In the process, I decided to rename the Map more appropriately and provided an explanatory comment. The keys are `Avro.Codec` values, while the values are now named constants from `org.apache.avro.file.DataFileConstants`. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org