Skip to content

Commit

Permalink
Use default writer version in a test
Browse files Browse the repository at this point in the history
The test does not test writer version, so should use the default.
  • Loading branch information
findepi committed Apr 13, 2021
1 parent 7098233 commit 05a21c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void testOrcHiveBloomFilterSerde()
assertTrue(bloomFilterWrite.test(TEST_STRING));
assertTrue(bloomFilterWrite.testSlice(wrappedBuffer(TEST_STRING)));

Slice bloomFilterBytes = new CompressedMetadataWriter(new OrcMetadataWriter(true), CompressionKind.NONE, 1024)
Slice bloomFilterBytes = new CompressedMetadataWriter(new OrcMetadataWriter(false), CompressionKind.NONE, 1024)
.writeBloomFilters(ImmutableList.of(bloomFilterWrite));

// Read through method
Expand Down

0 comments on commit 05a21c5

Please sign in to comment.