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