Module: CoreExtensions::Arel::Nodes::SelectCore
- Defined in:
- lib/core_extensions/arel/nodes/select_core.rb
Instance Attribute Summary collapse
-
#final ⇒ Object
Returns the value of attribute final.
Instance Method Summary collapse
Instance Attribute Details
#final ⇒ Object
Returns the value of attribute final.
5 6 7 |
# File 'lib/core_extensions/arel/nodes/select_core.rb', line 5 def final @final end |
Instance Method Details
#eql?(other) ⇒ Boolean
20 21 22 |
# File 'lib/core_extensions/arel/nodes/select_core.rb', line 20 def eql?(other) super && final == other.final end |
#hash ⇒ Object
13 14 15 16 17 18 |
# File 'lib/core_extensions/arel/nodes/select_core.rb', line 13 def hash [ @source, @set_quantifier, @projections, @optimizer_hints, @wheres, @groups, @havings, @windows, @comment, @final ].hash end |