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

Method Lz4FrameCodec

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

Source from the content-addressed store, hash-verified

254class Lz4FrameCodec : public Codec {
255 public:
256 explicit Lz4FrameCodec(int compression_level)
257 : compression_level_(compression_level == kUseDefaultCompressionLevel
258 ? kLz4DefaultCompressionLevel
259 : compression_level),
260 prefs_(PreferencesWithCompressionLevel(compression_level_)) {}
261
262 int64_t MaxCompressedLen(int64_t input_len,
263 const uint8_t* ARROW_ARG_UNUSED(input)) override {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected