(gdb_arrow)
| 1005 | |
| 1006 | |
| 1007 | def test_schema(gdb_arrow): |
| 1008 | check_heap_repr(gdb_arrow, "schema_empty", |
| 1009 | "arrow::Schema with 0 fields") |
| 1010 | check_heap_repr( |
| 1011 | gdb_arrow, "schema_non_empty", |
| 1012 | ('arrow::Schema with 2 fields = {["ints"] = arrow::int8(), ' |
| 1013 | '["strs"] = arrow::utf8()}')) |
| 1014 | check_heap_repr( |
| 1015 | gdb_arrow, "schema_with_metadata", |
| 1016 | ('arrow::Schema with 2 fields and 2 metadata items = ' |
| 1017 | '{["ints"] = arrow::int8(), ["strs"] = arrow::utf8()}')) |
| 1018 | |
| 1019 | |
| 1020 | def test_chunked_array(gdb_arrow): |
nothing calls this directly
no test coverage detected