Method: Sequel::SQL::Function#with_ordinality

Defined in:
lib/sequel/sql.rb

#with_ordinalityObject

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


1466
1467
1468
# File 'lib/sequel/sql.rb', line 1466

def with_ordinality
  with_opts(:with_ordinality=>true)
end