| 188 | } |
| 189 | |
| 190 | int main() { |
| 191 | Config cfg; |
| 192 | Context ctx(cfg); |
| 193 | |
| 194 | if (Object::object(ctx, array_uri).type() != Object::Type::Array) { |
| 195 | create_array(ctx); |
| 196 | write_array(ctx); |
| 197 | read_array(ctx); |
| 198 | array_schema_evolve(ctx); |
| 199 | write_array2(ctx); |
| 200 | } |
| 201 | |
| 202 | read_array2(ctx); |
| 203 | return 0; |
| 204 | } |
nothing calls this directly
no test coverage detected