Commits

Wes McKinney authored cad2e96c460
ARROW-9442: [Python] Do not call Validate() in pyarrow_wrap_table Using a fairly large IPC stream file: Before: ``` In [1]: timeit pa.ipc.open_stream('nyctaxi.arrow').read_all() 129 ms ± 1.51 ms per loop (mean ± std. dev. of 7 runs, 10 loops each) ``` After ``` In [1]: timeit pa.ipc.open_stream('nyctaxi.arrow').read_all() 87.6 ms ± 1.68 ms per loop (mean ± std. dev. of 7 runs, 10 loops each) ``` I found some other performance concerns with the internals of this operation that I reported as ARROW-9441. Closes #7735 from wesm/ARROW-9442 Authored-by: Wes McKinney <wesm@apache.org> Signed-off-by: Wes McKinney <wesm@apache.org>