Skip to content

Commit c593ccb

Browse files
committed
improve comments
1 parent 698aefd commit c593ccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/arrow/util/compression_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,8 @@ TEST(TestCodecMisc, ZstdStreamLargerWindowLog) {
605605
ASSERT_OK_AND_ASSIGN(auto decompressor2, codec2->MakeDecompressor());
606606

607607
std::vector<uint8_t> decompressed(data.size());
608-
// Using a windowLog greater than ZSTD_WINDOWLOG_LIMIT_DEFAULT(1 << 27) requires
609-
// explicitly allowing such size at decompression stage.
608+
// Using a windowLog greater than ZSTD_WINDOWLOG_LIMIT_DEFAULT(1 << 27) at compression
609+
// stage requires explicitly allowing such size at streaming decompression stage.
610610
auto ret = decompressor1->Decompress(compressed2.size(), compressed2.data(),
611611
decompressed.size(), decompressed.data());
612612
ASSERT_NOT_OK(ret);

0 commit comments

Comments
 (0)