Method: Sequel::SQL::Function#quoted

Defined in:
lib/sequel/sql.rb

#quotedObject

Return a new function where the function name will be quoted if the database supports quoted functions:

Sequel.function(:foo).quoted # "foo"()


1450
1451
1452
# File 'lib/sequel/sql.rb', line 1450

def quoted
  with_opts(:quoted=>true)
end