()
| 606 | |
| 607 | |
| 608 | def test_duplicate_columns(): |
| 609 | # only works for version 2 |
| 610 | table = pa.table([[1, 2, 3], [4, 5, 6], [7, 8, 9]], names=['a', 'a', 'b']) |
| 611 | _check_arrow_roundtrip(table) |
| 612 | _assert_error_on_write(table, ValueError, version=1) |
| 613 | |
| 614 | |
| 615 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected