Class: Arel::Nodes::Function
Do not use. This class is for internal use only.
| Relationships & Source Files | |
| Extension / Inclusion / Inheritance Descendants | |
|
Subclasses:
|
|
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
NodeExpression,
Node
|
|
|
Instance Chain:
|
|
| Inherits: |
Arel::Nodes::NodeExpression
|
| Defined in: | activerecord/lib/arel/nodes/function.rb |
Class Method Summary
- .new(expr) ⇒ Function constructor
Instance Attribute Summary
Instance Method Summary
-
#==(other)
Alias for #eql?.
- #eql?(other) ⇒ Boolean (also: #==)
- #hash
::Arel::FilterPredications - Included
::Arel::WindowPredications - Included
::Arel::Math - Included
::Arel::OrderPredications - Included
::Arel::AliasPredication - Included
::Arel::Predications - Included
::Arel::Expressions - Included
Node - Inherited
| #and | Factory method to create an And node. |
| #fetch_attribute, #invert, | |
| #not | Factory method to create a |
| #or | |
| #to_sql | FIXME: this method should go away. |
::Arel::FactoryMethods - Included
| #cast, #coalesce, #create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, | |
| #lower | Create a LOWER() function. |
Constructor Details
.new(expr) ⇒ Function
# File 'activerecord/lib/arel/nodes/function.rb', line 11
def initialize(expr) super() @expressions = expr @distinct = false end
Instance Attribute Details
#distinct (rw)
[ GitHub ]# File 'activerecord/lib/arel/nodes/function.rb', line 9
attr_accessor :expressions, :distinct
#expressions (rw)
[ GitHub ]# File 'activerecord/lib/arel/nodes/function.rb', line 9
attr_accessor :expressions, :distinct
Instance Method Details
#==(other)
Alias for #eql?.
# File 'activerecord/lib/arel/nodes/function.rb', line 26
alias :== :eql?
#eql?(other) ⇒ Boolean
Also known as: #==
# File 'activerecord/lib/arel/nodes/function.rb', line 21
def eql?(other) self.class == other.class && self.expressions == other.expressions && self.distinct == other.distinct end
#hash
[ GitHub ]# File 'activerecord/lib/arel/nodes/function.rb', line 17
def hash [@expressions, @distinct].hash end