Class: Arel::Nodes::Function

Inherits:
Node
  • Object
show all
Includes:
Expression, Predications
Defined in:
lib/arel/nodes/function.rb

Direct Known Subclasses

Count, NamedFunction

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Predications

#does_not_match, #does_not_match_all, #does_not_match_any, #eq, #eq_all, #eq_any, #gt, #gt_all, #gt_any, #gteq, #gteq_all, #gteq_any, #in, #in_all, #in_any, #lt, #lt_all, #lt_any, #lteq, #lteq_all, #lteq_any, #matches, #matches_all, #matches_any, #not_eq, #not_eq_all, #not_eq_any, #not_in, #not_in_all, #not_in_any

Methods included from OrderPredications

#asc, #desc

Methods inherited from Node

#and, #each, #not, #or, #to_sql

Methods included from FactoryMethods

#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower

Constructor Details

#initialize(expr, aliaz = nil) ⇒ Function

Returns a new instance of Function.



8
9
10
11
12
# File 'lib/arel/nodes/function.rb', line 8

def initialize expr, aliaz = nil
  @expressions = expr
  @alias       = aliaz && SqlLiteral.new(aliaz)
  @distinct    = false
end

Instance Attribute Details

#aliasObject

Returns the value of attribute alias.



6
7
8
# File 'lib/arel/nodes/function.rb', line 6

def alias
  @alias
end

#distinctObject

Returns the value of attribute distinct.



6
7
8
# File 'lib/arel/nodes/function.rb', line 6

def distinct
  @distinct
end

#expressionsObject

Returns the value of attribute expressions.



6
7
8
# File 'lib/arel/nodes/function.rb', line 6

def expressions
  @expressions
end

Instance Method Details

#as(aliaz) ⇒ Object



14
15
16
17
# File 'lib/arel/nodes/function.rb', line 14

def as aliaz
  self.alias = SqlLiteral.new(aliaz)
  self
end