| 37 | : schema_(schema), initial_capacity_(initial_capacity), pool_(pool) {} |
| 38 | |
| 39 | Result<std::unique_ptr<RecordBatchBuilder>> RecordBatchBuilder::Make( |
| 40 | const std::shared_ptr<Schema>& schema, MemoryPool* pool) { |
| 41 | return Make(schema, pool, kMinBuilderCapacity); |
| 42 | } |
| 43 | |
| 44 | Result<std::unique_ptr<RecordBatchBuilder>> RecordBatchBuilder::Make( |
| 45 | const std::shared_ptr<Schema>& schema, MemoryPool* pool, int64_t initial_capacity) { |
nothing calls this directly
no test coverage detected