| 489 | } |
| 490 | |
| 491 | static Result<BlockDecodingOperator> Make(io::IOContext io_context, |
| 492 | ConvertOptions convert_options, |
| 493 | ConversionSchema conversion_schema) { |
| 494 | BlockDecodingOperator op(std::move(io_context), std::move(convert_options), |
| 495 | std::move(conversion_schema)); |
| 496 | RETURN_NOT_OK(op.state_->MakeColumnDecoders(io_context)); |
| 497 | return op; |
| 498 | } |
| 499 | |
| 500 | private: |
| 501 | BlockDecodingOperator(io::IOContext io_context, ConvertOptions convert_options, |
nothing calls this directly
no test coverage detected