Class: Arel::Nodes::SelectCore
- Defined in:
- lib/arel/nodes/select_core.rb
Instance Attribute Summary collapse
-
#groups ⇒ Object
Returns the value of attribute groups.
-
#having ⇒ Object
Returns the value of attribute having.
-
#projections ⇒ Object
Returns the value of attribute projections.
-
#set_quantifier ⇒ Object
Returns the value of attribute set_quantifier.
-
#source ⇒ Object
Returns the value of attribute source.
-
#top ⇒ Object
Returns the value of attribute top.
-
#wheres ⇒ Object
Returns the value of attribute wheres.
-
#windows ⇒ Object
Returns the value of attribute windows.
Instance Method Summary collapse
- #from ⇒ Object (also: #froms)
- #from=(value) ⇒ Object (also: #froms=)
-
#initialize ⇒ SelectCore
constructor
A new instance of SelectCore.
- #initialize_copy(other) ⇒ Object
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 ⇒ SelectCore
Returns a new instance of SelectCore.
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/arel/nodes/select_core.rb', line 7 def initialize @source = JoinSource.new nil @top = nil # http://savage.net.au/SQL/sql-92.bnf.html#set%20quantifier @set_quantifier = nil @projections = [] @wheres = [] @groups = [] @having = nil @windows = [] end |
Instance Attribute Details
#groups ⇒ Object
Returns the value of attribute groups.
4 5 6 |
# File 'lib/arel/nodes/select_core.rb', line 4 def groups @groups end |
#having ⇒ Object
Returns the value of attribute having.
5 6 7 |
# File 'lib/arel/nodes/select_core.rb', line 5 def having @having end |
#projections ⇒ Object
Returns the value of attribute projections.
4 5 6 |
# File 'lib/arel/nodes/select_core.rb', line 4 def projections @projections end |
#set_quantifier ⇒ Object
Returns the value of attribute set_quantifier.
5 6 7 |
# File 'lib/arel/nodes/select_core.rb', line 5 def set_quantifier @set_quantifier end |
#source ⇒ Object
Returns the value of attribute source.
5 6 7 |
# File 'lib/arel/nodes/select_core.rb', line 5 def source @source end |
#top ⇒ Object
Returns the value of attribute top.
4 5 6 |
# File 'lib/arel/nodes/select_core.rb', line 4 def top @top end |
#wheres ⇒ Object
Returns the value of attribute wheres.
4 5 6 |
# File 'lib/arel/nodes/select_core.rb', line 4 def wheres @wheres end |
#windows ⇒ Object
Returns the value of attribute windows.
4 5 6 |
# File 'lib/arel/nodes/select_core.rb', line 4 def windows @windows end |
Instance Method Details
#from ⇒ Object Also known as: froms
20 21 22 |
# File 'lib/arel/nodes/select_core.rb', line 20 def from @source.left end |
#from=(value) ⇒ Object Also known as: froms=
24 25 26 |
# File 'lib/arel/nodes/select_core.rb', line 24 def from= value @source.left = value end |
#initialize_copy(other) ⇒ Object
31 32 33 34 35 36 37 38 39 |
# File 'lib/arel/nodes/select_core.rb', line 31 def initialize_copy other super @source = @source.clone if @source @projections = @projections.clone @wheres = @wheres.clone @groups = @groups.clone @having = @having.clone if @having @windows = @windows.clone end |