()
| 111 | |
| 112 | |
| 113 | def test_combine_chunks(): |
| 114 | # ARROW-77363 |
| 115 | arr = pa.array([1, 2]) |
| 116 | chunked_arr = pa.chunked_array([arr, arr]) |
| 117 | res = chunked_arr.combine_chunks() |
| 118 | expected = pa.array([1, 2, 1, 2]) |
| 119 | assert res.equals(expected) |
| 120 | |
| 121 | |
| 122 | def test_chunked_array_can_combine_chunks_with_no_chunks(): |
nothing calls this directly
no test coverage detected