Represents an identifier (column, table, schema, etc.).
Set the identifier to the given argument
[Source]
# File lib/sequel/sql.rb, line 1452 1452: def initialize(value) 1453: @value = value 1454: freeze 1455: end
Create a Function using this identifier as the functions name, with the given args.
# File lib/sequel/sql.rb, line 1459 1459: def function(*args) 1460: Function.new(self, *args) 1461: end
[Validate]