method
new
v6.0.0 -
Show latest stable
- Class:
Arel::Nodes::Function
new(expr, aliaz = nil)public
No documentation available.
# File activerecord/lib/arel/nodes/function.rb, line 9
def initialize(expr, aliaz = nil)
super()
@expressions = expr
@alias = aliaz && SqlLiteral.new(aliaz)
@distinct = false
end