| 465 | }; |
| 466 | |
| 467 | inline ::flatbuffers::Offset<DictionaryBatch> CreateDictionaryBatch( |
| 468 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 469 | int64_t id = 0, |
| 470 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::RecordBatch> data = 0, |
| 471 | bool isDelta = false) { |
| 472 | DictionaryBatchBuilder builder_(_fbb); |
| 473 | builder_.add_id(id); |
| 474 | builder_.add_data(data); |
| 475 | builder_.add_isDelta(isDelta); |
| 476 | return builder_.Finish(); |
| 477 | } |
| 478 | |
| 479 | struct Message FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 480 | typedef MessageBuilder Builder; |
no test coverage detected