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 890 890: def initialize(table, column) 891: @table, @column = table, column 892: end
[Validate]