| 2271 | /// child's null bitmap is ANDed with its ancestors' |
| 2272 | template <typename T> |
| 2273 | Result<GetType<T>> GetOneFlattened(const T& root, MemoryPool* pool = NULLPTR) const { |
| 2274 | ARROW_ASSIGN_OR_RAISE(auto match, FindOne(root)); |
| 2275 | return match.GetFlattened(root, pool); |
| 2276 | } |
| 2277 | |
| 2278 | /// \brief Get the single child matching this FieldRef. |
| 2279 | /// Return nullptr if none match, emit an error if multiple match. |
nothing calls this directly
no test coverage detected