Class: SQLParser::Statement::QualifiedColumn
- Defined in:
- lib/sql-parser/statement.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(table, column) ⇒ QualifiedColumn
constructor
A new instance of QualifiedColumn.
Methods inherited from Node
Constructor Details
#initialize(table, column) ⇒ QualifiedColumn
440 441 442 443 |
# File 'lib/sql-parser/statement.rb', line 440 def initialize(table, column) @table = table @column = column end |
Instance Attribute Details
#column ⇒ Object (readonly)
Returns the value of attribute column.
446 447 448 |
# File 'lib/sql-parser/statement.rb', line 446 def column @column end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
445 446 447 |
# File 'lib/sql-parser/statement.rb', line 445 def table @table end |