Class: Sequel::SQL::Function
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::Function
- Defined in:
- lib/sequel/sql.rb,
lib/sequel/extensions/eval_inspect.rb
Overview
Represents an SQL function call.
Constant Summary collapse
- WILDCARD =
LiteralString.new('*').freeze
- DISTINCT =
["DISTINCT ".freeze].freeze
- COMMA_ARRAY =
[LiteralString.new(', ').freeze].freeze
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
The array of arguments to pass to the function (may be blank).
-
#name ⇒ Object
(also: #f)
readonly
The SQL function to call.
-
#opts ⇒ Object
readonly
Options for this function.
Class Method Summary collapse
Instance Method Summary collapse
-
#*(ce = (arg=false;nil)) ⇒ Object
If no arguments are given, return a new function with the wildcard prepended to the arguments.
-
#distinct ⇒ Object
Return a new function with DISTINCT before the method arguments.
-
#filter(*args, &block) ⇒ Object
Return a new function with FILTER added to it, for filtered aggregate functions:.
-
#initialize(name, *args) ⇒ Function
constructor
Set the name and args for the function.
-
#lateral ⇒ Object
Return a function which will use LATERAL when literalized:.
-
#over(window = OPTS) ⇒ Object
Return a new function with an OVER clause (making it a window function).
-
#quoted ⇒ Object
Return a new function where the function name will be quoted if the database supports quoted functions:.
-
#unquoted ⇒ Object
Return a new function where the function name will not be quoted even if the database supports quoted functions:.
-
#with_ordinality ⇒ Object
Return a new function that will use WITH ORDINALITY to also return a row number for every row the function returns:.
-
#within_group(*expressions) ⇒ Object
Return a new function that uses WITHIN GROUP ordered by the given expression, useful for ordered-set and hypothetical-set aggregate functions:.
Methods included from Postgres::HStoreOpMethods
Methods included from Postgres::RangeOpMethods
Methods included from Postgres::ArrayOpMethods
Methods included from Postgres::JSONOpMethods
Methods included from Postgres::PGRowOp::ExpressionMethods
Methods included from SubscriptMethods
Methods included from StringMethods
Methods included from OrderMethods
Methods included from NumericMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from CastMethods
#cast, #cast_numeric, #cast_string
Methods included from BooleanMethods
Methods included from AliasMethods
Methods inherited from Expression
#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal
Constructor Details
Instance Attribute Details
#args ⇒ Object (readonly)
The array of arguments to pass to the function (may be blank)
1248 1249 1250 |
# File 'lib/sequel/sql.rb', line 1248 def args @args end |
#name ⇒ Object (readonly) Also known as: f
The SQL function to call
1244 1245 1246 |
# File 'lib/sequel/sql.rb', line 1244 def name @name end |
#opts ⇒ Object (readonly)
Options for this function
1251 1252 1253 |
# File 'lib/sequel/sql.rb', line 1251 def opts @opts end |
Class Method Details
.new!(name, args, opts) ⇒ Object
1260 1261 1262 1263 1264 |
# File 'lib/sequel/sql.rb', line 1260 def self.new!(name, args, opts) f = new(name, *args) f.instance_variable_set(:@opts, opts) f end |
Instance Method Details
#*(ce = (arg=false;nil)) ⇒ Object
1269 1270 1271 1272 1273 1274 1275 1276 |
# File 'lib/sequel/sql.rb', line 1269 def *(ce=(arg=false;nil)) if arg == false raise Error, "Cannot apply * to functions with arguments" unless args.empty? with_opts(:"*"=>true) else super(ce) end end |
#distinct ⇒ Object
1281 1282 1283 |
# File 'lib/sequel/sql.rb', line 1281 def distinct with_opts(:distinct=>true) end |
#filter(*args, &block) ⇒ Object
1289 1290 1291 1292 |
# File 'lib/sequel/sql.rb', line 1289 def filter(*args, &block) args = args.first if args.length == 1 with_opts(:filter=>args, :filter_block=>block) end |
#lateral ⇒ Object
1297 1298 1299 |
# File 'lib/sequel/sql.rb', line 1297 def lateral with_opts(:lateral=>true) end |
#over(window = OPTS) ⇒ Object
1304 1305 1306 1307 1308 |
# File 'lib/sequel/sql.rb', line 1304 def over(window=OPTS) raise Error, "function already has a window applied to it" if opts[:over] window = Window.new(window) unless window.is_a?(Window) with_opts(:over=>window) end |
#quoted ⇒ Object
1314 1315 1316 |
# File 'lib/sequel/sql.rb', line 1314 def quoted with_opts(:quoted=>true) end |
#unquoted ⇒ Object
1322 1323 1324 |
# File 'lib/sequel/sql.rb', line 1322 def unquoted with_opts(:quoted=>false) end |
#with_ordinality ⇒ Object
1330 1331 1332 |
# File 'lib/sequel/sql.rb', line 1330 def with_ordinality with_opts(:with_ordinality=>true) end |
#within_group(*expressions) ⇒ Object
1339 1340 1341 |
# File 'lib/sequel/sql.rb', line 1339 def within_group(*expressions) with_opts(:within_group=>expressions) end |