()
| 2053 | |
| 2054 | |
| 2055 | def test_view(): |
| 2056 | # ARROW-5992 |
| 2057 | arr = pa.array(['foo', 'bar', 'baz'], type=pa.utf8()) |
| 2058 | expected = pa.array(['foo', 'bar', 'baz'], type=pa.binary()) |
| 2059 | |
| 2060 | assert arr.view(pa.binary()).equals(expected) |
| 2061 | assert arr.view('binary').equals(expected) |
| 2062 | |
| 2063 | |
| 2064 | def test_unique_simple(): |