Class: SQLParser::Statement::JoinedTable

Inherits:
Node
  • Object
show all
Defined in:
lib/rossoc/statement.rb

Direct Known Subclasses

CrossJoin, QualifiedJoin

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#accept, #to_sql

Constructor Details

#initialize(left, right) ⇒ JoinedTable



300
301
302
303
# File 'lib/rossoc/statement.rb', line 300

def initialize(left, right)
  @left = left
  @right = right
end

Instance Attribute Details

#leftObject (readonly)

Returns the value of attribute left.



305
306
307
# File 'lib/rossoc/statement.rb', line 305

def left
  @left
end

#rightObject (readonly)

Returns the value of attribute right.



305
306
307
# File 'lib/rossoc/statement.rb', line 305

def right
  @right
end