Represents a qualified identifier (column with table or table with schema).
Included modules
Attributes
Public Class methods
new(table, column)
Set the table and column to the given arguments
[show source]
# File lib/sequel/sql.rb 1718 def initialize(table, column) 1719 @table = convert_identifier(table) 1720 @column = convert_identifier(column) 1721 freeze 1722 end
Public Instance methods
function(*args)
Create a Function
using this identifier as the functions name, with the given args.
[show source]
# File lib/sequel/sql.rb 1726 def function(*args) 1727 Function.new(self, *args) 1728 end