Class: ROM::SQL::Function
- Inherits:
-
Attribute
- Object
- Attribute
- ROM::SQL::Function
- Includes:
- AttributeWrapping
- Defined in:
- lib/rom/sql/function.rb
Overview
Specialized attribute type for defining SQL functions
Constant Summary collapse
- WINDOW_FRAMES =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
Hash.new do |cache, frame| type = frame.key?(:rows) ? 'ROWS' : 'RANGE' bounds = frame[:rows] || frame[:range] cache[frame] = "#{ type } BETWEEN #{ frame_limit(bounds[0]) } AND #{ frame_limit(bounds[1]) }" end
Class Method Summary collapse
- .frame_limit(value) ⇒ Object private
Instance Method Summary collapse
-
#aliased(alias_name) ⇒ SQL::Function
(also: #as)
Return a new attribute with an alias.
-
#case(mapping) ⇒ ROM::SQL::Attribute
Add a CASE clause for handling if/then logic.
-
#cast(expr, db_type = TypeSerializer[:default].call(type)) ⇒ ROM::SQL::Attribute
Convert an expression result to another data type.
-
#filter(condition = Undefined) {|block| ... } ⇒ SQL::Function
Add a FILTER clause to aggregate function (supported by PostgreSQL 9.4+) Filter aggregate using the specified conditions.
- #is(other) ⇒ Object
- #name ⇒ Object private
- #new(&block) ⇒ Object private
- #not(other) ⇒ Object
-
#over(partition: nil, order: nil, frame: nil) ⇒ SQL::Function
Add an OVER clause making a window function call.
- #qualified(table_alias = nil) ⇒ Object private
- #qualified?(_table_alias = nil) ⇒ Boolean private
- #qualified_projection(table_alias = nil) ⇒ Object private
- #sql_literal(ds) ⇒ Object private
-
#within_group(*args) {|block| ... } ⇒ SQL::Function
Add a WITHIN GROUP clause to aggregate function (supported by PostgreSQL) Establishes an order for an ordered-set aggregate, see the docs for more details.
Methods included from AttributeWrapping
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, *args) ⇒ Object (private)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/rom/sql/function.rb', line 262 def method_missing(meth, *args) if func if func.respond_to?(meth) (func: func.__send__(meth, *args)) else super end else (func: Sequel::SQL::Function.new(meth.to_s.upcase, *args)) end end |
Class Method Details
.frame_limit(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/rom/sql/function.rb', line 16 def frame_limit(value) case value when :current then 'CURRENT ROW' when :start then 'UNBOUNDED PRECEDING' when :end then 'UNBOUNDED FOLLOWING' else if value > 0 "#{ value } FOLLOWING" else "#{ value.abs } PRECEDING" end end end |
Instance Method Details
#aliased(alias_name) ⇒ SQL::Function Also known as: as
Return a new attribute with an alias
53 54 55 |
# File 'lib/rom/sql/function.rb', line 53 def aliased(alias_name) super.with(name: name || alias_name) end |
#case(mapping) ⇒ ROM::SQL::Attribute
Add a CASE clause for handling if/then logic. This version of CASE search for the first branch which evaluates to ‘true`. See SQL::Attriubte#case if you’re looking for the version that matches an expression result
190 191 192 193 194 195 196 197 |
# File 'lib/rom/sql/function.rb', line 190 def case(mapping) mapping = mapping.dup otherwise = mapping.delete(:else) do raise ArgumentError, 'provide the default case using the :else keyword' end Attribute[type].(sql_expr: ::Sequel.case(mapping, otherwise)) end |
#cast(expr, db_type = TypeSerializer[:default].call(type)) ⇒ ROM::SQL::Attribute
Convert an expression result to another data type
175 176 177 |
# File 'lib/rom/sql/function.rb', line 175 def cast(expr, db_type = TypeSerializer[:default].call(type)) Attribute[type].(sql_expr: ::Sequel.cast(expr, db_type)) end |
#filter(condition = Undefined) {|block| ... } ⇒ SQL::Function
Add a FILTER clause to aggregate function (supported by PostgreSQL 9.4+) Filter aggregate using the specified conditions
214 215 216 217 218 219 220 221 222 223 |
# File 'lib/rom/sql/function.rb', line 214 def filter(condition = Undefined, &block) if block conditions = schema.restriction(&block) conditions = conditions & condition unless condition.equal?(Undefined) else conditions = condition end super(conditions) end |
#is(other) ⇒ Object
110 111 112 113 114 |
# File 'lib/rom/sql/function.rb', line 110 def is(other) ::ROM::SQL::Attribute[::ROM::SQL::Types::Bool].( sql_expr: ::Sequel::SQL::BooleanExpression.new(:'=', func, other) ) end |
#name ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
68 69 70 |
# File 'lib/rom/sql/function.rb', line 68 def name self.alias || super end |
#new(&block) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
91 92 93 94 95 96 97 98 |
# File 'lib/rom/sql/function.rb', line 91 def new(&block) case func when ::Sequel::SQL::Function (func: ::Sequel::SQL::Function.new!(func.name, func.args.map(&block), func.opts)) else (func: func) end end |
#not(other) ⇒ Object
119 120 121 |
# File 'lib/rom/sql/function.rb', line 119 def not(other) !is(other) end |
#over(partition: nil, order: nil, frame: nil) ⇒ SQL::Function
Add an OVER clause making a window function call
159 160 161 |
# File 'lib/rom/sql/function.rb', line 159 def over(partition: nil, order: nil, frame: nil) super(partition: partition, order: order, frame: WINDOW_FRAMES[frame]) end |
#qualified(table_alias = nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
75 76 77 78 79 |
# File 'lib/rom/sql/function.rb', line 75 def qualified(table_alias = nil) new { |arg| arg.respond_to?(:qualified) ? arg.qualified(table_alias) : arg } end |
#qualified?(_table_alias = nil) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
103 104 105 |
# File 'lib/rom/sql/function.rb', line 103 def qualified?(_table_alias = nil) [:func].args.all?(&:qualified?) end |
#qualified_projection(table_alias = nil) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
84 85 86 87 88 |
# File 'lib/rom/sql/function.rb', line 84 def qualified_projection(table_alias = nil) new { |arg| arg.respond_to?(:qualified_projection) ? arg.qualified_projection(table_alias) : arg } end |
#sql_literal(ds) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
59 60 61 62 63 64 65 |
# File 'lib/rom/sql/function.rb', line 59 def sql_literal(ds) if name ds.literal(func.as(name)) else ds.literal(func) end end |
#within_group(*args) {|block| ... } ⇒ SQL::Function
Add a WITHIN GROUP clause to aggregate function (supported by PostgreSQL) Establishes an order for an ordered-set aggregate, see the docs for more details
239 240 241 242 243 244 245 246 247 |
# File 'lib/rom/sql/function.rb', line 239 def within_group(*args, &block) if block group = args + ::ROM::SQL::OrderDSL.new(schema).(&block) else group = args end super(*group) end |