| 98 | } |
| 99 | |
| 100 | ArrowSchemaWrapper makeComplexIndptrSchema() { |
| 101 | ArrowSchemaWrapper schema; |
| 102 | createStructSchema(&schema, 1); |
| 103 | createSchema<uint64_t>(schema.children[0], "v"); |
| 104 | return schema; |
| 105 | } |
| 106 | |
| 107 | ArrowArrayWrapper makeCsrEdgeBatch(const std::vector<CsrEdgeRow>& rows) { |
| 108 | std::vector<uint64_t> offsets; |
no test coverage detected