aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/alias_predication.rb
blob: 3f3db7671e7c91aeb5057b609d5b1d5b99faad02 (plain) (tree)
1
2
3
4
5
6
7






                                                           
module Arel
  module AliasPredication
    def as other
      Nodes::As.new self, Nodes::SqlLiteral.new(other.to_s)
    end
  end
end