Module: Arel::FactoryMethods
- Included in:
- Nodes::Node, Table, TreeManager
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb
Overview
Methods for creating various nodes
Instance Method Summary collapse
- #coalesce(*exprs) ⇒ Object
- #create_and(clauses) ⇒ Object
- #create_false ⇒ Object
- #create_join(to, constraint = nil, klass = Nodes::InnerJoin) ⇒ Object
- #create_on(expr) ⇒ Object
- #create_string_join(to) ⇒ Object
- #create_table_alias(relation, name) ⇒ Object
- #create_true ⇒ Object
- #grouping(expr) ⇒ Object
-
#lower(column) ⇒ Object
Create a LOWER() function.
Instance Method Details
#coalesce(*exprs) ⇒ Object
45 46 47 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 45 def coalesce(*exprs) Nodes::NamedFunction.new "COALESCE", exprs end |
#create_and(clauses) ⇒ Object
27 28 29 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 27 def create_and(clauses) Nodes::And.new clauses end |
#create_false ⇒ Object
11 12 13 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 11 def create_false Arel::Nodes::False.new end |
#create_join(to, constraint = nil, klass = Nodes::InnerJoin) ⇒ Object
19 20 21 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 19 def create_join(to, constraint = nil, klass = Nodes::InnerJoin) klass.new(to, constraint) end |
#create_on(expr) ⇒ Object
31 32 33 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 31 def create_on(expr) Nodes::On.new expr end |
#create_string_join(to) ⇒ Object
23 24 25 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 23 def create_string_join(to) create_join to, nil, Nodes::StringJoin end |
#create_table_alias(relation, name) ⇒ Object
15 16 17 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 15 def create_table_alias(relation, name) Nodes::TableAlias.new(relation, name) end |
#create_true ⇒ Object
7 8 9 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 7 def create_true Arel::Nodes::True.new end |
#grouping(expr) ⇒ Object
35 36 37 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 35 def grouping(expr) Nodes::Grouping.new expr end |
#lower(column) ⇒ Object
Create a LOWER() function
41 42 43 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/arel/factory_methods.rb', line 41 def lower(column) Nodes::NamedFunction.new "LOWER", [Nodes.build_quoted(column)] end |