Create a new ArrowArray struct with a stable C pointer
| 2619 | |
| 2620 | // Create a new ArrowArray struct with a stable C pointer |
| 2621 | struct ArrowArray* AddChild() { |
| 2622 | nested_structs_.emplace_back(); |
| 2623 | struct ArrowArray* result = &nested_structs_.back(); |
| 2624 | memset(result, 0, sizeof(*result)); |
| 2625 | result->release = NoOpArrayRelease; |
| 2626 | return result; |
| 2627 | } |
| 2628 | |
| 2629 | // Create a stable C pointer to the N last structs in nested_structs_ |
| 2630 | struct ArrowArray** NLastChildren(int64_t n_children, struct ArrowArray* parent) { |
no test coverage detected