\brief Append a range of values from an array. The given array must be the same type as the builder.
| 176 | /// |
| 177 | /// The given array must be the same type as the builder. |
| 178 | virtual Status AppendArraySlice(const ArraySpan& ARROW_ARG_UNUSED(array), |
| 179 | int64_t ARROW_ARG_UNUSED(offset), |
| 180 | int64_t ARROW_ARG_UNUSED(length)) { |
| 181 | return Status::NotImplemented("AppendArraySlice for builder for ", *type()); |
| 182 | } |
| 183 | |
| 184 | /// \brief Return result of builder as an internal generic ArrayData |
| 185 | /// object. Resets builder except for dictionary builder |
nothing calls this directly
no test coverage detected