| 2320 | }; |
| 2321 | |
| 2322 | inline ::flatbuffers::Offset<Field> CreateField( |
| 2323 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 2324 | ::flatbuffers::Offset<::flatbuffers::String> name = 0, |
| 2325 | bool nullable = false, |
| 2326 | org::apache::arrow::flatbuf::Type type_type = org::apache::arrow::flatbuf::Type_NONE, |
| 2327 | ::flatbuffers::Offset<void> type = 0, |
| 2328 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::DictionaryEncoding> dictionary = 0, |
| 2329 | ::flatbuffers::Offset<::flatbuffers::Vector<::flatbuffers::Offset<org::apache::arrow::flatbuf::Field>>> children = 0, |
| 2330 | ::flatbuffers::Offset<::flatbuffers::Vector<::flatbuffers::Offset<org::apache::arrow::flatbuf::KeyValue>>> custom_metadata = 0) { |
| 2331 | FieldBuilder builder_(_fbb); |
| 2332 | builder_.add_custom_metadata(custom_metadata); |
| 2333 | builder_.add_children(children); |
| 2334 | builder_.add_dictionary(dictionary); |
| 2335 | builder_.add_type(type); |
| 2336 | builder_.add_name(name); |
| 2337 | builder_.add_type_type(type_type); |
| 2338 | builder_.add_nullable(nullable); |
| 2339 | return builder_.Finish(); |
| 2340 | } |
| 2341 | |
| 2342 | inline ::flatbuffers::Offset<Field> CreateFieldDirect( |
| 2343 | ::flatbuffers::FlatBufferBuilder &_fbb, |
no test coverage detected