Represents a qualified identifier (column with table or table with schema).
Set the table and column to the given arguments
[Source]
# File lib/sequel/sql.rb, line 1292 1292: def initialize(table, column) 1293: @table, @column = table, column 1294: end
[Validate]