| 387 | } |
| 388 | |
| 389 | inline ::flatbuffers::Offset<RecordBatch> CreateRecordBatchDirect( |
| 390 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 391 | int64_t length = 0, |
| 392 | const std::vector<org::apache::arrow::flatbuf::FieldNode> *nodes = nullptr, |
| 393 | const std::vector<org::apache::arrow::flatbuf::Buffer> *buffers = nullptr, |
| 394 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::BodyCompression> compression = 0, |
| 395 | const std::vector<int64_t> *variadicBufferCounts = nullptr) { |
| 396 | auto nodes__ = nodes ? _fbb.CreateVectorOfStructs<org::apache::arrow::flatbuf::FieldNode>(*nodes) : 0; |
| 397 | auto buffers__ = buffers ? _fbb.CreateVectorOfStructs<org::apache::arrow::flatbuf::Buffer>(*buffers) : 0; |
| 398 | auto variadicBufferCounts__ = variadicBufferCounts ? _fbb.CreateVector<int64_t>(*variadicBufferCounts) : 0; |
| 399 | return org::apache::arrow::flatbuf::CreateRecordBatch( |
| 400 | _fbb, |
| 401 | length, |
| 402 | nodes__, |
| 403 | buffers__, |
| 404 | compression, |
| 405 | variadicBufferCounts__); |
| 406 | } |
| 407 | |
| 408 | /// For sending dictionary encoding information. Any Field can be |
| 409 | /// dictionary-encoded, but in this case none of its children may be |
nothing calls this directly
no test coverage detected