blob: 662d3740df02fa3d9cffe27d9781e0f9637485fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
module Arel
class Order < Compound
attr_reader :orderings
def initialize(relation, *orderings)
@relation, @orderings = relation, orderings.collect { |o| o.bind(relation) }
end
def ==(other)
self.class == other.class and
relation == other.relation and
orderings == other.orderings
end
def orders
orderings + relation.orders
end
end
end
|