Module: Arel::AliasPredication

Instance Method Summary collapse

Instance Method Details

#as(other) ⇒ Object



5
6
7
8
9
# File 'lib/arel/alias_predication.rb', line 5

def as(other)
  other = other.name if other.is_a?(Symbol)

  Nodes::As.new self, Nodes::SqlLiteral.new(other, retryable: true)
end