aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/alias_predication.rb
blob: cb50fb95be1dc22fb432b6830e9250c56b527c70 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
module Arel
  module AliasPredication
    def as other
      Nodes::As.new self, Nodes::SqlLiteral.new(other)
    end
  end
end