]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
dont need this
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 25 Apr 2013 18:14:23 +0000 (14:14 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 25 Apr 2013 18:14:23 +0000 (14:14 -0400)
lib/sqlalchemy/sql/expression.py

index 92b8aea985aba51205ffb298d2a58bbbca2934dc..b6e0b5ce7861fc5d5cafd0cf8d2d5b458b5ca5a6 100644 (file)
@@ -3953,12 +3953,6 @@ class Join(FromClause):
     def get_children(self, **kwargs):
         return self.left, self.right, self.onclause
 
-    def compare(self, other):
-        return isinstance(other, Join) and \
-            self.left.compare(other.left) and \
-            self.right.compare(other.right) and \
-            self.onclause.compare(other.onclause)
-
     def _match_primaries(self, left, right):
         if isinstance(left, Join):
             left_right = left.right