aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/group.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/operations/group.rb')
-rw-r--r--lib/arel/algebra/relations/operations/group.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/arel/algebra/relations/operations/group.rb b/lib/arel/algebra/relations/operations/group.rb
index f3666cacf8..16a2963c93 100644
--- a/lib/arel/algebra/relations/operations/group.rb
+++ b/lib/arel/algebra/relations/operations/group.rb
@@ -7,13 +7,6 @@ module Arel
@groupings = groupings.collect { |g| g.bind(relation) }
end
- def == other
- super ||
- self.class === other &&
- @relation == other.relation &&
- @groupings == other.groupings
- end
-
def eval
raise NotImplementedError
end