()
| 96 | |
| 97 | |
| 98 | def test_ARROW_8801(): |
| 99 | x = pd.to_datetime(np.random.randint(0, 2**32, size=2**20, dtype=np.int64), |
| 100 | unit='ms', utc=True) |
| 101 | table = pa.table(pd.DataFrame({'x': x})) |
| 102 | |
| 103 | assert_does_not_leak(lambda: table.to_pandas(split_blocks=False), |
| 104 | iterations=1000, check_interval=50, tolerance=1000) |
| 105 | |
| 106 | |
| 107 | if __name__ == '__main__': |
no test coverage detected