Class: Arel::Nodes::JoinSource
- Defined in:
- lib/arel/nodes/join_source.rb
Overview
Class that represents a join source
http://www.sqlite.org/syntaxdiagrams.html#join-source
Instance Attribute Summary
Attributes inherited from Binary
Instance Method Summary collapse
-
#initialize(single_source, joinop = []) ⇒ JoinSource
constructor
A new instance of JoinSource.
Methods inherited from Binary
Methods inherited from Node
#and, #each, #not, #or, #to_sql
Methods included from FactoryMethods
#create_and, #create_join, #create_on, #create_string_join, #create_table_alias, #grouping, #lower
Constructor Details
#initialize(single_source, joinop = []) ⇒ JoinSource
Returns a new instance of JoinSource.
9 10 11 |
# File 'lib/arel/nodes/join_source.rb', line 9 def initialize single_source, joinop = [] super end |