Class: SQLParser::Statement::QualifiedColumn

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#accept, #to_sql

Constructor Details

#initialize(table, column) ⇒ QualifiedColumn

Returns a new instance of QualifiedColumn.



342
343
344
345
# File 'lib/rossoc/statement.rb', line 342

def initialize(table, column)
  @table = table
  @column = column
end

Instance Attribute Details

#columnObject (readonly)

Returns the value of attribute column.



347
348
349
# File 'lib/rossoc/statement.rb', line 347

def column
  @column
end

#tableObject (readonly)

Returns the value of attribute table.



347
348
349
# File 'lib/rossoc/statement.rb', line 347

def table
  @table
end