Method: Symbol#sql_function

Defined in:
lib/sequel/extensions/core_extensions.rb

#sql_function(*args) ⇒ Object

Returns a Sequel::SQL::Function with this as the function name, and the given arguments. This is aliased as Symbol#[] if the RUBY_VERSION is less than 1.9.0. Ruby 1.9 defines Symbol#[], and Sequel doesn’t override methods defined by ruby itself.

:now.sql_function # SQL: now()
:sum.sql_function(:a) # SQL: sum(a)
:concat.sql_function(:a, :b) # SQL: concat(a, b)


227
228
229
# File 'lib/sequel/extensions/core_extensions.rb', line 227

def sql_function(*args)
  Sequel::SQL::Function.new(self, *args)
end