def __eq__(self, rhs):
        if rhs is None:
            return SqliteIs(self.compiler, self, rhs)

        return SqliteEqual(self.compiler, self, rhs)