| 1943 | } |
| 1944 | |
| 1945 | inline ::flatbuffers::Offset<KeyValue> CreateKeyValueDirect( |
| 1946 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1947 | const char *key = nullptr, |
| 1948 | const char *value = nullptr) { |
| 1949 | auto key__ = key ? _fbb.CreateString(key) : 0; |
| 1950 | auto value__ = value ? _fbb.CreateString(value) : 0; |
| 1951 | return org::apache::arrow::flatbuf::CreateKeyValue( |
| 1952 | _fbb, |
| 1953 | key__, |
| 1954 | value__); |
| 1955 | } |
| 1956 | |
| 1957 | struct DictionaryEncoding FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 1958 | typedef DictionaryEncodingBuilder Builder; |
nothing calls this directly
no test coverage detected