def __eq__(self, other): """ For what we are using MemoryScan for, the only use of __eq__ is in hashtable lookups for CSE optimization. We omit self.schema because the relation_key determines the level of equality needed. @see FileScan.__eq__ """ return UnaryOperator.__eq__(self, other)
def __eq__(self, other): """ See important __eq__ notes below @see FileScan.__eq__ """ return UnaryOperator.__eq__(self, other)