Represents a qualified identifier (column with table or table with schema).
The column/table referenced
The table/schema qualifying the reference
Set the table and column to the given arguments
# File lib/sequel/sql.rb, line 1705 def initialize(table, column) @table = convert_identifier(table) @column = convert_identifier(column) freeze end
Create a Function using this identifier as the functions name, with the given args.
# File lib/sequel/sql.rb, line 1713 def function(*args) Function.new(self, *args) end