aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/alias.rb
blob: 08be02e862815b62c0148963074b137e4c3a4209 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  class Alias < Compound
    include Recursion::BaseCase
    
    def initialize(relation)
      @relation = relation
    end
    
    def ==(other)
      equal? other
    end
  end
end