aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/having.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/operations/having.rb')
-rw-r--r--lib/arel/algebra/relations/operations/having.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/arel/algebra/relations/operations/having.rb b/lib/arel/algebra/relations/operations/having.rb
index d36aad071b..3d8115c2f6 100644
--- a/lib/arel/algebra/relations/operations/having.rb
+++ b/lib/arel/algebra/relations/operations/having.rb
@@ -10,11 +10,5 @@ module Arel
def havings
@havings ||= relation.havings + predicates
end
-
- def == other
- super || Having === other &&
- relation == other.relation &&
- predicates == other.predicates
- end
end
end