(self, other)
| 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: |