MCPcopy Create free account
hub / github.com/apache/arrow / MakeDecompressor

Method MakeDecompressor

cpp/src/arrow/util/compression_lz4.cc:390–394  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

388 }
389
390 Result<std::shared_ptr<Decompressor>> MakeDecompressor() override {
391 return Status::NotImplemented(
392 "Streaming decompression unsupported with LZ4 raw format. "
393 "Try using LZ4 frame format instead.");
394 }
395
396 Compression::type compression_type() const override { return Compression::LZ4; }
397 int minimum_compression_level() const override { return kLz4MinCompressionLevel; }

Callers 5

InitMethod · 0.45
StreamingDecompressionFunction · 0.45
CheckStreamingRoundtripFunction · 0.45
TEST_PFunction · 0.45

Calls 1

NotImplementedFunction · 0.50

Tested by 3

CheckStreamingRoundtripFunction · 0.36
TEST_PFunction · 0.36