()
| 613 | |
| 614 | |
| 615 | def test_duplicate_columns(): |
| 616 | # only works for version 2 |
| 617 | table = pa.table([[1, 2, 3], [4, 5, 6], [7, 8, 9]], names=['a', 'a', 'b']) |
| 618 | _check_arrow_roundtrip(table) |
| 619 | _assert_error_on_write(table, ValueError, version=1) |
| 620 | |
| 621 | |
| 622 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected