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