MCPcopy Create free account
hub / github.com/apache/arrow / _read_table

Function _read_table

python/pyarrow/tests/parquet/common.py:41–46  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

39
40
41def _read_table(*args, **kwargs):
42 import pyarrow.parquet as pq
43
44 table = pq.read_table(*args, **kwargs)
45 table.validate(full=True)
46 return table
47
48
49def _roundtrip_table(table, read_table_kwargs=None,

Calls 2

read_tableMethod · 0.45
validateMethod · 0.45