| 2025 | }; |
| 2026 | |
| 2027 | inline ::flatbuffers::Offset<DictionaryEncoding> CreateDictionaryEncoding( |
| 2028 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 2029 | int64_t id = 0, |
| 2030 | ::flatbuffers::Offset<org::apache::arrow::flatbuf::Int> indexType = 0, |
| 2031 | bool isOrdered = false, |
| 2032 | org::apache::arrow::flatbuf::DictionaryKind dictionaryKind = org::apache::arrow::flatbuf::DictionaryKind_DenseArray) { |
| 2033 | DictionaryEncodingBuilder builder_(_fbb); |
| 2034 | builder_.add_id(id); |
| 2035 | builder_.add_indexType(indexType); |
| 2036 | builder_.add_dictionaryKind(dictionaryKind); |
| 2037 | builder_.add_isOrdered(isOrdered); |
| 2038 | return builder_.Finish(); |
| 2039 | } |
| 2040 | |
| 2041 | /// ---------------------------------------------------------------------- |
| 2042 | /// A field represents a named column in a record / row batch or child of a |
no test coverage detected