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

Method validate_schemas

python/pyarrow/feather.py:81–84  ·  view source on GitHub ↗
(self, piece, table)

Source from the content-addressed store, hash-verified

79 return concat_tables(self._tables)
80
81 def validate_schemas(self, piece, table):
82 if not self.schema.equals(table.schema):
83 raise ValueError(f'Schema in {piece} was different. \n'
84 f'{self.schema}\n\nvs\n\n{table.schema}')
85
86 def read_pandas(self, columns=None, use_threads=True):
87 """

Callers 1

read_tableMethod · 0.95

Calls 1

equalsMethod · 0.80

Tested by

no test coverage detected