Method: Sequel::SQL::QualifiedIdentifier#initialize
- Defined in:
- lib/sequel/sql.rb
permalink #initialize(table, column) ⇒ QualifiedIdentifier
Set the table and column to the given arguments
1718 1719 1720 1721 1722 |
# File 'lib/sequel/sql.rb', line 1718 def initialize(table, column) @table = convert_identifier(table) @column = convert_identifier(column) freeze end |