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

Function CheckSupportsCompressionLevel

cpp/src/arrow/util/compression.cc:36–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34namespace {
35
36Status CheckSupportsCompressionLevel(Compression::type type) {
37 if (!Codec::SupportsCompressionLevel(type)) {
38 return Status::Invalid(
39 "The specified codec does not support the compression level parameter");
40 }
41 return Status::OK();
42}
43
44} // namespace
45

Callers 3

Calls 2

InvalidFunction · 0.50
OKFunction · 0.50

Tested by

no test coverage detected