diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/algebra/relations/operations/order.rb | 7 |
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 ? |