static
| 919 | |
| 920 | // static |
| 921 | ::arrow::Result<std::unique_ptr<MultipathLevelBuilder>> MultipathLevelBuilder::Make( |
| 922 | const ::arrow::Array& array, bool array_field_nullable) { |
| 923 | auto constructor = std::make_unique<PathBuilder>(array_field_nullable); |
| 924 | RETURN_NOT_OK(VisitArrayInline(array, constructor.get())); |
| 925 | return std::make_unique<MultipathLevelBuilderImpl>(array.data(), |
| 926 | std::move(constructor)); |
| 927 | } |
| 928 | |
| 929 | // static |
| 930 | Status MultipathLevelBuilder::Write(const Array& array, bool array_field_nullable, |
nothing calls this directly
no test coverage detected