| 265 | }; |
| 266 | |
| 267 | inline ::flatbuffers::Offset<BodyCompression> CreateBodyCompression( |
| 268 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 269 | org::apache::arrow::flatbuf::CompressionType codec = org::apache::arrow::flatbuf::CompressionType_LZ4_FRAME, |
| 270 | org::apache::arrow::flatbuf::BodyCompressionMethod method = org::apache::arrow::flatbuf::BodyCompressionMethod_BUFFER) { |
| 271 | BodyCompressionBuilder builder_(_fbb); |
| 272 | builder_.add_method(method); |
| 273 | builder_.add_codec(codec); |
| 274 | return builder_.Finish(); |
| 275 | } |
| 276 | |
| 277 | /// A data header describing the shared memory layout of a "record" or "row" |
| 278 | /// batch. Some systems call this a "row batch" internally and others a "record |
no test coverage detected