Hello
I found a small bug inside of the DiffableTable logic.
The equals check in DiffableTable should also check the schema for true equality.
Proposal:
def better_eq(self, value) -> bool:
if not isinstance(value, DiffableTable):
return False
return (
(self.schema == value.schema)
and (self.class_name == value.class_name)
and (self.tablename == value.tablename)
)
DiffableTable.__eq__ = better_eq
Thanks for taking this up.
Cheers
Hello
I found a small bug inside of the DiffableTable logic.
The equals check in DiffableTable should also check the schema for true equality.
Proposal:
Thanks for taking this up.
Cheers