aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/order.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/operations/order.rb')
-rw-r--r--lib/arel/algebra/relations/operations/order.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/arel/algebra/relations/operations/order.rb b/lib/arel/algebra/relations/operations/order.rb
index d91e400419..e7306fe384 100644
--- a/lib/arel/algebra/relations/operations/order.rb
+++ b/lib/arel/algebra/relations/operations/order.rb
@@ -7,13 +7,6 @@ module Arel
@orderings = orderings.collect { |o| o.bind(relation) }
end
- def == other
- super ||
- Order === other &&
- relation == other.relation &&
- orderings == other.orderings
- end
-
# TESTME
def orders
# QUESTION - do we still need relation.orders ?