| 723 | } |
| 724 | |
| 725 | Result<std::shared_ptr<RecordBatch>> LoadRecordBatch( |
| 726 | const flatbuf::RecordBatch* metadata, const std::shared_ptr<Schema>& schema, |
| 727 | const std::vector<bool>& inclusion_mask, const IpcReadContext& context, |
| 728 | io::RandomAccessFile* file) { |
| 729 | if (inclusion_mask.empty()) { |
| 730 | return LoadRecordBatchSubset(metadata, schema, /*inclusion_mask=*/nullptr, context, |
| 731 | file); |
| 732 | } else { |
| 733 | return LoadRecordBatchSubset(metadata, schema, &inclusion_mask, context, file); |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | // ---------------------------------------------------------------------- |
| 738 | // Array loading |
nothing calls this directly
no test coverage detected