| 126 | } |
| 127 | |
| 128 | ArrowArrayWrapper makeIndptrBatch(const std::vector<uint64_t>& values) { |
| 129 | return createStructArray(static_cast<int64_t>(values.size()), |
| 130 | {[&](ArrowArray* array) { createUint64Array(array, values); }}); |
| 131 | } |
| 132 | |
| 133 | void createComplexCsrNodeTable(main::Connection& connection, |
| 134 | const std::string& tableName = "csr_node") { |
no test coverage detected