| 146 | } |
| 147 | |
| 148 | std::vector<size_t> ArrowNodeTable::getBatchSizes( |
| 149 | [[maybe_unused]] const transaction::Transaction* transaction) const { |
| 150 | std::vector<size_t> batchSizes; |
| 151 | |
| 152 | for (const auto& array : arrays) { |
| 153 | batchSizes.push_back(getArrowBatchLength(array)); |
| 154 | } |
| 155 | |
| 156 | return batchSizes; |
| 157 | } |
| 158 | |
| 159 | size_t ArrowNodeTable::getNumScanMorsels( |
| 160 | [[maybe_unused]] const transaction::Transaction* transaction) const { |
nothing calls this directly
no test coverage detected