class Sequel::SQL::Function

Represents an SQL function call.

Constants

COMMA_ARRAY
DISTINCT
WILDCARD

Attributes

args[R]

The array of arguments to pass to the function (may be blank)

name[R]

The SQL function to call

opts[R]

Options for this function

Public Class Methods

new(name, *args) click to toggle source

Set the name and args for the function

     # File lib/sequel/sql.rb
1361 def initialize(name, *args)
1362   _initialize(name, args, OPTS)
1363 end

Public Instance Methods

*(ce=(arg=false;nil)) click to toggle source

If no arguments are given, return a new function with the wildcard prepended to the arguments.

Sequel.function(:count).*  # count(*)
Calls superclass method
     # File lib/sequel/sql.rb
1373 def *(ce=(arg=false;nil))
1374   if arg == false
1375     raise Error, "Cannot apply * to functions with arguments" unless args.empty?
1376     with_opts(:"*"=>true)
1377   else
1378     super(ce)
1379   end
1380 end
distinct() click to toggle source

Return a new function with DISTINCT before the method arguments.

Sequel.function(:count, :col).distinct # count(DISTINCT col)
     # File lib/sequel/sql.rb
1385 def distinct
1386   with_opts(:distinct=>true)
1387 end
filter(*args, &block) click to toggle source

Return a new function with FILTER added to it, for filtered aggregate functions:

Sequel.function(:foo, :col).filter(a: 1) # foo(col) FILTER (WHERE (a = 1))
     # File lib/sequel/sql.rb
1393 def filter(*args, &block)
1394   if args.length == 1
1395     args = args.first
1396   else
1397     args.freeze
1398   end
1399 
1400   with_opts(:filter=>args, :filter_block=>block)
1401 end
lateral() click to toggle source

Return a function which will use LATERAL when literalized:

Sequel.function(:foo, :col).lateral # LATERAL foo(col)
     # File lib/sequel/sql.rb
1406 def lateral
1407   with_opts(:lateral=>true)
1408 end
order(*args) click to toggle source

Return a new function where the function will be ordered. Only useful for aggregate functions that are order dependent.

Sequel.function(:foo, :a).order(:a, Sequel.desc(:b)) # foo(a ORDER BY a, b DESC)
     # File lib/sequel/sql.rb
1414 def order(*args)
1415   with_opts(:order=>args.freeze)
1416 end
over(window=OPTS) click to toggle source

Return a new function with an OVER clause (making it a window function). See Sequel::SQL::Window for the list of options over can receive.

Sequel.function(:row_number).over(partition: :col) # row_number() OVER (PARTITION BY col)
     # File lib/sequel/sql.rb
1422 def over(window=OPTS)
1423   raise Error, "function already has a window applied to it" if opts[:over]
1424   window = Window.new(window) unless window.is_a?(Window)
1425   with_opts(:over=>window)
1426 end
quoted() click to toggle source

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

Sequel.function(:foo).quoted # "foo"()
     # File lib/sequel/sql.rb
1432 def quoted
1433   with_opts(:quoted=>true)
1434 end
unquoted() click to toggle source

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

Sequel[:foo][:bar].function.unquoted # foo.bar()
     # File lib/sequel/sql.rb
1440 def unquoted
1441   with_opts(:quoted=>false)
1442 end
with_ordinality() click to toggle source

Return a new function that will use WITH ORDINALITY to also return a row number for every row the function returns:

Sequel.function(:foo).with_ordinality # foo() WITH ORDINALITY
     # File lib/sequel/sql.rb
1448 def with_ordinality
1449   with_opts(:with_ordinality=>true)
1450 end
within_group(*expressions) click to toggle source

Return a new function that uses WITHIN GROUP ordered by the given expression, useful for ordered-set and hypothetical-set aggregate functions:

Sequel.function(:rank, :a).within_group(:b, :c)
# rank(a) WITHIN GROUP (ORDER BY b, c)
     # File lib/sequel/sql.rb
1457 def within_group(*expressions)
1458   with_opts(:within_group=>expressions.freeze)
1459 end

Private Instance Methods

_initialize(name, args, opts) click to toggle source

Set name, args, and opts

     # File lib/sequel/sql.rb
1466 def _initialize(name, args, opts)
1467   @name = name
1468   @args = args.freeze
1469   @opts = opts.freeze
1470   freeze
1471 end
inspect_new_method() click to toggle source

Function uses a new! method for creating functions with options, since Function.new does not allow for an options hash.

    # File lib/sequel/extensions/eval_inspect.rb
137 def inspect_new_method
138   :new!
139 end
with_opts(opts) click to toggle source

Return a new function call with the given opts merged into the current opts.

     # File lib/sequel/sql.rb
1474 def with_opts(opts)
1475   self.class.new!(name, args, @opts.merge(opts))
1476 end