Represents an identifier (column, table, schema, etc.).
The identifier to reference
Set the identifier to the given argument
# File lib/sequel/sql.rb, line 1450 def initialize(value) @value = value freeze end
Create a Function using this identifier as the functions name, with the given args.
# File lib/sequel/sql.rb, line 1457 def function(*args) Function.new(self, *args) end