wypoon commented on code in PR #6799:
URL: https://github.com/apache/iceberg/pull/6799#discussion_r1107801736
##########
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")
+ .put("zstd", "zstandard")
+ .put("gzip", "deflate")
+ .build();
+
+ static final String AVRO_CODEC_KEY = "avro.codec";
+
+ static final long SNAPSHOT_ID = 987134631982734L;
+
+ private static final long SEQUENCE_NUMBER = 34L;
Review Comment:
Removed.
--
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]