| 146 | } |
| 147 | |
| 148 | ArrowSchemaWrapper makeCitySchema() { |
| 149 | ArrowSchemaWrapper schema; |
| 150 | createStructSchema(&schema, 5); |
| 151 | createSchema<int64_t>(schema.children[0], "id"); |
| 152 | createSchema<std::string>(schema.children[1], "name"); |
| 153 | createSchema<int64_t>(schema.children[2], "population"); |
| 154 | createDateSchema(schema.children[3], "founded"); |
| 155 | createListInt64Schema(schema.children[4], "tags"); |
| 156 | return schema; |
| 157 | } |
| 158 | |
| 159 | ArrowSchemaWrapper makeFollowsSchema() { |
| 160 | ArrowSchemaWrapper schema; |
no test coverage detected