(gdb_arrow)
| 757 | |
| 758 | |
| 759 | def test_arrays_stack(gdb_arrow): |
| 760 | check_stack_repr( |
| 761 | gdb_arrow, "int32_array", |
| 762 | ("arrow::Int32Array of length 4, offset 0, null count 1 = " |
| 763 | "{[0] = -5, [1] = 6, [2] = null, [3] = 42}")) |
| 764 | check_stack_repr( |
| 765 | gdb_arrow, "list_array", |
| 766 | ("arrow::ListArray of type arrow::list(arrow::int64()), " |
| 767 | "length 3, offset 0, null count 1")) |
| 768 | |
| 769 | |
| 770 | def test_arrays_heap(gdb_arrow): |
nothing calls this directly
no test coverage detected