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

Method equals

python/pyarrow/parquet/core.py:1481–1489  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

1479 ignore_prefixes=ignore_prefixes)
1480
1481 def equals(self, other):
1482 if not isinstance(other, ParquetDataset):
1483 raise TypeError('`other` must be an instance of ParquetDataset')
1484
1485 return (self.schema == other.schema and
1486 self._dataset.format == other._dataset.format and
1487 self.filesystem == other.filesystem and
1488 # self.fragments == other.fragments and
1489 self.files == other.files)
1490
1491 def __eq__(self, other):
1492 try:

Callers 15

__eq__Method · 0.95
test_read_table_schemaFunction · 0.95
validate_schemasMethod · 0.80
write_tableMethod · 0.80
EqualsMethod · 0.80
test_tree_exp_builderFunction · 0.80
test_tableFunction · 0.80
test_filterFunction · 0.80
test_in_exprFunction · 0.80
test_in_expr_todoFunction · 0.80
test_booleanFunction · 0.80
test_regexFunction · 0.80

Calls 1

TypeErrorFunction · 0.50

Tested by 15

test_read_table_schemaFunction · 0.76
test_tree_exp_builderFunction · 0.64
test_tableFunction · 0.64
test_filterFunction · 0.64
test_in_exprFunction · 0.64
test_in_expr_todoFunction · 0.64
test_booleanFunction · 0.64
test_regexFunction · 0.64
test_filter_projectFunction · 0.64
test_combine_chunksFunction · 0.64
eqFunction · 0.64
neFunction · 0.64