activerecord 5.2.8.1 → 6.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activerecord might be problematic. Click here for more details.

Files changed (242) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +299 -816
  3. data/MIT-LICENSE +3 -1
  4. data/README.rdoc +1 -1
  5. data/examples/performance.rb +1 -1
  6. data/lib/active_record/aggregations.rb +4 -2
  7. data/lib/active_record/associations/association.rb +35 -19
  8. data/lib/active_record/associations/association_scope.rb +4 -6
  9. data/lib/active_record/associations/belongs_to_association.rb +36 -42
  10. data/lib/active_record/associations/belongs_to_polymorphic_association.rb +0 -4
  11. data/lib/active_record/associations/builder/belongs_to.rb +14 -50
  12. data/lib/active_record/associations/builder/collection_association.rb +3 -3
  13. data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +17 -38
  14. data/lib/active_record/associations/collection_association.rb +11 -25
  15. data/lib/active_record/associations/collection_proxy.rb +32 -6
  16. data/lib/active_record/associations/foreign_association.rb +7 -0
  17. data/lib/active_record/associations/has_many_association.rb +1 -1
  18. data/lib/active_record/associations/has_many_through_association.rb +25 -18
  19. data/lib/active_record/associations/has_one_association.rb +28 -30
  20. data/lib/active_record/associations/has_one_through_association.rb +5 -5
  21. data/lib/active_record/associations/join_dependency/join_association.rb +11 -26
  22. data/lib/active_record/associations/join_dependency/join_part.rb +2 -2
  23. data/lib/active_record/associations/join_dependency.rb +15 -20
  24. data/lib/active_record/associations/preloader/association.rb +1 -2
  25. data/lib/active_record/associations/preloader.rb +32 -29
  26. data/lib/active_record/associations/singular_association.rb +2 -16
  27. data/lib/active_record/associations.rb +16 -12
  28. data/lib/active_record/attribute_assignment.rb +7 -10
  29. data/lib/active_record/attribute_methods/dirty.rb +64 -26
  30. data/lib/active_record/attribute_methods/primary_key.rb +8 -7
  31. data/lib/active_record/attribute_methods/read.rb +16 -48
  32. data/lib/active_record/attribute_methods/serialization.rb +1 -1
  33. data/lib/active_record/attribute_methods/time_zone_conversion.rb +1 -1
  34. data/lib/active_record/attribute_methods/write.rb +15 -16
  35. data/lib/active_record/attribute_methods.rb +34 -56
  36. data/lib/active_record/autosave_association.rb +7 -21
  37. data/lib/active_record/base.rb +2 -2
  38. data/lib/active_record/callbacks.rb +3 -17
  39. data/lib/active_record/coders/yaml_column.rb +1 -13
  40. data/lib/active_record/collection_cache_key.rb +1 -1
  41. data/lib/active_record/connection_adapters/abstract/connection_pool.rb +13 -36
  42. data/lib/active_record/connection_adapters/abstract/database_limits.rb +9 -0
  43. data/lib/active_record/connection_adapters/abstract/database_statements.rb +25 -84
  44. data/lib/active_record/connection_adapters/abstract/query_cache.rb +17 -14
  45. data/lib/active_record/connection_adapters/abstract/quoting.rb +5 -11
  46. data/lib/active_record/connection_adapters/abstract/schema_creation.rb +15 -11
  47. data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +30 -13
  48. data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +0 -2
  49. data/lib/active_record/connection_adapters/abstract/schema_statements.rb +41 -27
  50. data/lib/active_record/connection_adapters/abstract/transaction.rb +81 -52
  51. data/lib/active_record/connection_adapters/abstract_adapter.rb +95 -31
  52. data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +65 -90
  53. data/lib/active_record/connection_adapters/connection_specification.rb +52 -42
  54. data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +5 -9
  55. data/lib/active_record/connection_adapters/mysql/database_statements.rb +29 -7
  56. data/lib/active_record/connection_adapters/mysql/quoting.rb +1 -1
  57. data/lib/active_record/connection_adapters/mysql/schema_creation.rb +3 -4
  58. data/lib/active_record/connection_adapters/mysql/schema_statements.rb +65 -10
  59. data/lib/active_record/connection_adapters/mysql2_adapter.rb +8 -4
  60. data/lib/active_record/connection_adapters/postgresql/column.rb +1 -2
  61. data/lib/active_record/connection_adapters/postgresql/database_statements.rb +16 -1
  62. data/lib/active_record/connection_adapters/postgresql/oid/array.rb +1 -1
  63. data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +1 -4
  64. data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +1 -1
  65. data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +1 -1
  66. data/lib/active_record/connection_adapters/postgresql/oid/money.rb +2 -2
  67. data/lib/active_record/connection_adapters/postgresql/oid/point.rb +1 -1
  68. data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +9 -7
  69. data/lib/active_record/connection_adapters/postgresql/quoting.rb +4 -4
  70. data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +11 -36
  71. data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +9 -2
  72. data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +38 -20
  73. data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +2 -1
  74. data/lib/active_record/connection_adapters/postgresql_adapter.rb +75 -56
  75. data/lib/active_record/connection_adapters/schema_cache.rb +5 -0
  76. data/lib/active_record/connection_adapters/sqlite3/quoting.rb +5 -5
  77. data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +14 -9
  78. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +95 -62
  79. data/lib/active_record/connection_handling.rb +132 -26
  80. data/lib/active_record/core.rb +75 -52
  81. data/lib/active_record/counter_cache.rb +4 -29
  82. data/lib/active_record/database_configurations/database_config.rb +37 -0
  83. data/lib/active_record/database_configurations/hash_config.rb +50 -0
  84. data/lib/active_record/database_configurations/url_config.rb +74 -0
  85. data/lib/active_record/database_configurations.rb +184 -0
  86. data/lib/active_record/enum.rb +22 -7
  87. data/lib/active_record/errors.rb +24 -21
  88. data/lib/active_record/explain.rb +1 -1
  89. data/lib/active_record/fixture_set/model_metadata.rb +33 -0
  90. data/lib/active_record/fixture_set/render_context.rb +17 -0
  91. data/lib/active_record/fixture_set/table_row.rb +153 -0
  92. data/lib/active_record/fixture_set/table_rows.rb +47 -0
  93. data/lib/active_record/fixtures.rb +140 -472
  94. data/lib/active_record/gem_version.rb +4 -4
  95. data/lib/active_record/inheritance.rb +12 -2
  96. data/lib/active_record/integration.rb +56 -16
  97. data/lib/active_record/internal_metadata.rb +5 -1
  98. data/lib/active_record/locking/optimistic.rb +2 -2
  99. data/lib/active_record/locking/pessimistic.rb +3 -3
  100. data/lib/active_record/log_subscriber.rb +7 -26
  101. data/lib/active_record/migration/command_recorder.rb +35 -5
  102. data/lib/active_record/migration/compatibility.rb +34 -16
  103. data/lib/active_record/migration.rb +38 -37
  104. data/lib/active_record/model_schema.rb +30 -9
  105. data/lib/active_record/nested_attributes.rb +2 -2
  106. data/lib/active_record/no_touching.rb +7 -0
  107. data/lib/active_record/persistence.rb +18 -7
  108. data/lib/active_record/query_cache.rb +11 -4
  109. data/lib/active_record/querying.rb +19 -11
  110. data/lib/active_record/railtie.rb +71 -60
  111. data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
  112. data/lib/active_record/railties/controller_runtime.rb +30 -35
  113. data/lib/active_record/railties/databases.rake +94 -43
  114. data/lib/active_record/reflection.rb +60 -44
  115. data/lib/active_record/relation/batches.rb +13 -10
  116. data/lib/active_record/relation/calculations.rb +38 -28
  117. data/lib/active_record/relation/delegation.rb +4 -13
  118. data/lib/active_record/relation/finder_methods.rb +12 -25
  119. data/lib/active_record/relation/merger.rb +2 -6
  120. data/lib/active_record/relation/predicate_builder/array_handler.rb +5 -4
  121. data/lib/active_record/relation/predicate_builder/association_query_value.rb +1 -4
  122. data/lib/active_record/relation/predicate_builder/base_handler.rb +1 -2
  123. data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +1 -2
  124. data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +1 -4
  125. data/lib/active_record/relation/predicate_builder/range_handler.rb +3 -23
  126. data/lib/active_record/relation/predicate_builder.rb +4 -6
  127. data/lib/active_record/relation/query_attribute.rb +15 -12
  128. data/lib/active_record/relation/query_methods.rb +29 -52
  129. data/lib/active_record/relation/where_clause.rb +4 -0
  130. data/lib/active_record/relation/where_clause_factory.rb +1 -2
  131. data/lib/active_record/relation.rb +150 -69
  132. data/lib/active_record/result.rb +30 -11
  133. data/lib/active_record/sanitization.rb +2 -39
  134. data/lib/active_record/schema.rb +1 -10
  135. data/lib/active_record/schema_dumper.rb +12 -6
  136. data/lib/active_record/schema_migration.rb +4 -0
  137. data/lib/active_record/scoping/default.rb +10 -3
  138. data/lib/active_record/scoping/named.rb +10 -14
  139. data/lib/active_record/scoping.rb +9 -8
  140. data/lib/active_record/statement_cache.rb +32 -5
  141. data/lib/active_record/store.rb +39 -8
  142. data/lib/active_record/table_metadata.rb +1 -4
  143. data/lib/active_record/tasks/database_tasks.rb +89 -23
  144. data/lib/active_record/tasks/mysql_database_tasks.rb +2 -4
  145. data/lib/active_record/tasks/postgresql_database_tasks.rb +5 -7
  146. data/lib/active_record/tasks/sqlite_database_tasks.rb +2 -8
  147. data/lib/active_record/test_databases.rb +38 -0
  148. data/lib/active_record/test_fixtures.rb +224 -0
  149. data/lib/active_record/timestamp.rb +4 -6
  150. data/lib/active_record/transactions.rb +3 -22
  151. data/lib/active_record/translation.rb +1 -1
  152. data/lib/active_record/type/adapter_specific_registry.rb +1 -8
  153. data/lib/active_record/type.rb +3 -4
  154. data/lib/active_record/type_caster/connection.rb +1 -6
  155. data/lib/active_record/type_caster/map.rb +1 -4
  156. data/lib/active_record/validations/uniqueness.rb +13 -25
  157. data/lib/active_record.rb +2 -1
  158. data/lib/arel/alias_predication.rb +9 -0
  159. data/lib/arel/attributes/attribute.rb +37 -0
  160. data/lib/arel/attributes.rb +22 -0
  161. data/lib/arel/collectors/bind.rb +24 -0
  162. data/lib/arel/collectors/composite.rb +31 -0
  163. data/lib/arel/collectors/plain_string.rb +20 -0
  164. data/lib/arel/collectors/sql_string.rb +20 -0
  165. data/lib/arel/collectors/substitute_binds.rb +28 -0
  166. data/lib/arel/crud.rb +42 -0
  167. data/lib/arel/delete_manager.rb +18 -0
  168. data/lib/arel/errors.rb +9 -0
  169. data/lib/arel/expressions.rb +29 -0
  170. data/lib/arel/factory_methods.rb +49 -0
  171. data/lib/arel/insert_manager.rb +49 -0
  172. data/lib/arel/math.rb +45 -0
  173. data/lib/arel/nodes/and.rb +32 -0
  174. data/lib/arel/nodes/ascending.rb +23 -0
  175. data/lib/arel/nodes/binary.rb +52 -0
  176. data/lib/arel/nodes/bind_param.rb +36 -0
  177. data/lib/arel/nodes/case.rb +55 -0
  178. data/lib/arel/nodes/casted.rb +50 -0
  179. data/lib/arel/nodes/count.rb +12 -0
  180. data/lib/arel/nodes/delete_statement.rb +45 -0
  181. data/lib/arel/nodes/descending.rb +23 -0
  182. data/lib/arel/nodes/equality.rb +18 -0
  183. data/lib/arel/nodes/extract.rb +24 -0
  184. data/lib/arel/nodes/false.rb +16 -0
  185. data/lib/arel/nodes/full_outer_join.rb +8 -0
  186. data/lib/arel/nodes/function.rb +44 -0
  187. data/lib/arel/nodes/grouping.rb +8 -0
  188. data/lib/arel/nodes/in.rb +8 -0
  189. data/lib/arel/nodes/infix_operation.rb +80 -0
  190. data/lib/arel/nodes/inner_join.rb +8 -0
  191. data/lib/arel/nodes/insert_statement.rb +37 -0
  192. data/lib/arel/nodes/join_source.rb +20 -0
  193. data/lib/arel/nodes/matches.rb +18 -0
  194. data/lib/arel/nodes/named_function.rb +23 -0
  195. data/lib/arel/nodes/node.rb +50 -0
  196. data/lib/arel/nodes/node_expression.rb +13 -0
  197. data/lib/arel/nodes/outer_join.rb +8 -0
  198. data/lib/arel/nodes/over.rb +15 -0
  199. data/lib/arel/nodes/regexp.rb +16 -0
  200. data/lib/arel/nodes/right_outer_join.rb +8 -0
  201. data/lib/arel/nodes/select_core.rb +63 -0
  202. data/lib/arel/nodes/select_statement.rb +41 -0
  203. data/lib/arel/nodes/sql_literal.rb +16 -0
  204. data/lib/arel/nodes/string_join.rb +11 -0
  205. data/lib/arel/nodes/table_alias.rb +27 -0
  206. data/lib/arel/nodes/terminal.rb +16 -0
  207. data/lib/arel/nodes/true.rb +16 -0
  208. data/lib/arel/nodes/unary.rb +44 -0
  209. data/lib/arel/nodes/unary_operation.rb +20 -0
  210. data/lib/arel/nodes/unqualified_column.rb +22 -0
  211. data/lib/arel/nodes/update_statement.rb +41 -0
  212. data/lib/arel/nodes/values.rb +16 -0
  213. data/lib/arel/nodes/values_list.rb +24 -0
  214. data/lib/arel/nodes/window.rb +126 -0
  215. data/lib/arel/nodes/with.rb +11 -0
  216. data/lib/arel/nodes.rb +67 -0
  217. data/lib/arel/order_predications.rb +13 -0
  218. data/lib/arel/predications.rb +257 -0
  219. data/lib/arel/select_manager.rb +271 -0
  220. data/lib/arel/table.rb +110 -0
  221. data/lib/arel/tree_manager.rb +72 -0
  222. data/lib/arel/update_manager.rb +34 -0
  223. data/lib/arel/visitors/depth_first.rb +199 -0
  224. data/lib/arel/visitors/dot.rb +292 -0
  225. data/lib/arel/visitors/ibm_db.rb +21 -0
  226. data/lib/arel/visitors/informix.rb +56 -0
  227. data/lib/arel/visitors/mssql.rb +143 -0
  228. data/lib/arel/visitors/mysql.rb +83 -0
  229. data/lib/arel/visitors/oracle.rb +159 -0
  230. data/lib/arel/visitors/oracle12.rb +67 -0
  231. data/lib/arel/visitors/postgresql.rb +116 -0
  232. data/lib/arel/visitors/sqlite.rb +39 -0
  233. data/lib/arel/visitors/to_sql.rb +913 -0
  234. data/lib/arel/visitors/visitor.rb +42 -0
  235. data/lib/arel/visitors/where_sql.rb +23 -0
  236. data/lib/arel/visitors.rb +20 -0
  237. data/lib/arel/window_predications.rb +9 -0
  238. data/lib/arel.rb +44 -0
  239. data/lib/rails/generators/active_record/migration/migration_generator.rb +2 -5
  240. data/lib/rails/generators/active_record/migration.rb +14 -1
  241. data/lib/rails/generators/active_record/model/model_generator.rb +1 -0
  242. metadata +107 -29
data/lib/arel/crud.rb ADDED
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ ###
5
+ # FIXME hopefully we can remove this
6
+ module Crud
7
+ def compile_update(values, pk)
8
+ um = UpdateManager.new
9
+
10
+ if Nodes::SqlLiteral === values
11
+ relation = @ctx.from
12
+ else
13
+ relation = values.first.first.relation
14
+ end
15
+ um.key = pk
16
+ um.table relation
17
+ um.set values
18
+ um.take @ast.limit.expr if @ast.limit
19
+ um.order(*@ast.orders)
20
+ um.wheres = @ctx.wheres
21
+ um
22
+ end
23
+
24
+ def compile_insert(values)
25
+ im = create_insert
26
+ im.insert values
27
+ im
28
+ end
29
+
30
+ def create_insert
31
+ InsertManager.new
32
+ end
33
+
34
+ def compile_delete
35
+ dm = DeleteManager.new
36
+ dm.take @ast.limit.expr if @ast.limit
37
+ dm.wheres = @ctx.wheres
38
+ dm.from @ctx.froms
39
+ dm
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ class DeleteManager < Arel::TreeManager
5
+ include TreeManager::StatementMethods
6
+
7
+ def initialize
8
+ super
9
+ @ast = Nodes::DeleteStatement.new
10
+ @ctx = @ast
11
+ end
12
+
13
+ def from(relation)
14
+ @ast.relation = relation
15
+ self
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ class ArelError < StandardError
5
+ end
6
+
7
+ class EmptyJoinError < ArelError
8
+ end
9
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Expressions
5
+ def count(distinct = false)
6
+ Nodes::Count.new [self], distinct
7
+ end
8
+
9
+ def sum
10
+ Nodes::Sum.new [self]
11
+ end
12
+
13
+ def maximum
14
+ Nodes::Max.new [self]
15
+ end
16
+
17
+ def minimum
18
+ Nodes::Min.new [self]
19
+ end
20
+
21
+ def average
22
+ Nodes::Avg.new [self]
23
+ end
24
+
25
+ def extract(field)
26
+ Nodes::Extract.new [self], field
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ ###
5
+ # Methods for creating various nodes
6
+ module FactoryMethods
7
+ def create_true
8
+ Arel::Nodes::True.new
9
+ end
10
+
11
+ def create_false
12
+ Arel::Nodes::False.new
13
+ end
14
+
15
+ def create_table_alias(relation, name)
16
+ Nodes::TableAlias.new(relation, name)
17
+ end
18
+
19
+ def create_join(to, constraint = nil, klass = Nodes::InnerJoin)
20
+ klass.new(to, constraint)
21
+ end
22
+
23
+ def create_string_join(to)
24
+ create_join to, nil, Nodes::StringJoin
25
+ end
26
+
27
+ def create_and(clauses)
28
+ Nodes::And.new clauses
29
+ end
30
+
31
+ def create_on(expr)
32
+ Nodes::On.new expr
33
+ end
34
+
35
+ def grouping(expr)
36
+ Nodes::Grouping.new expr
37
+ end
38
+
39
+ ###
40
+ # Create a LOWER() function
41
+ def lower(column)
42
+ Nodes::NamedFunction.new "LOWER", [Nodes.build_quoted(column)]
43
+ end
44
+
45
+ def coalesce(*exprs)
46
+ Nodes::NamedFunction.new "COALESCE", exprs
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ class InsertManager < Arel::TreeManager
5
+ def initialize
6
+ super
7
+ @ast = Nodes::InsertStatement.new
8
+ end
9
+
10
+ def into(table)
11
+ @ast.relation = table
12
+ self
13
+ end
14
+
15
+ def columns; @ast.columns end
16
+ def values=(val); @ast.values = val; end
17
+
18
+ def select(select)
19
+ @ast.select = select
20
+ end
21
+
22
+ def insert(fields)
23
+ return if fields.empty?
24
+
25
+ if String === fields
26
+ @ast.values = Nodes::SqlLiteral.new(fields)
27
+ else
28
+ @ast.relation ||= fields.first.first.relation
29
+
30
+ values = []
31
+
32
+ fields.each do |column, value|
33
+ @ast.columns << column
34
+ values << value
35
+ end
36
+ @ast.values = create_values values, @ast.columns
37
+ end
38
+ self
39
+ end
40
+
41
+ def create_values(values, columns)
42
+ Nodes::Values.new values, columns
43
+ end
44
+
45
+ def create_values_list(rows)
46
+ Nodes::ValuesList.new(rows)
47
+ end
48
+ end
49
+ end
data/lib/arel/math.rb ADDED
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Math
5
+ def *(other)
6
+ Arel::Nodes::Multiplication.new(self, other)
7
+ end
8
+
9
+ def +(other)
10
+ Arel::Nodes::Grouping.new(Arel::Nodes::Addition.new(self, other))
11
+ end
12
+
13
+ def -(other)
14
+ Arel::Nodes::Grouping.new(Arel::Nodes::Subtraction.new(self, other))
15
+ end
16
+
17
+ def /(other)
18
+ Arel::Nodes::Division.new(self, other)
19
+ end
20
+
21
+ def &(other)
22
+ Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseAnd.new(self, other))
23
+ end
24
+
25
+ def |(other)
26
+ Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseOr.new(self, other))
27
+ end
28
+
29
+ def ^(other)
30
+ Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseXor.new(self, other))
31
+ end
32
+
33
+ def <<(other)
34
+ Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseShiftLeft.new(self, other))
35
+ end
36
+
37
+ def >>(other)
38
+ Arel::Nodes::Grouping.new(Arel::Nodes::BitwiseShiftRight.new(self, other))
39
+ end
40
+
41
+ def ~@
42
+ Arel::Nodes::BitwiseNot.new(self)
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class And < Arel::Nodes::Node
6
+ attr_reader :children
7
+
8
+ def initialize(children)
9
+ super()
10
+ @children = children
11
+ end
12
+
13
+ def left
14
+ children.first
15
+ end
16
+
17
+ def right
18
+ children[1]
19
+ end
20
+
21
+ def hash
22
+ children.hash
23
+ end
24
+
25
+ def eql?(other)
26
+ self.class == other.class &&
27
+ self.children == other.children
28
+ end
29
+ alias :== :eql?
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Ascending < Ordering
6
+ def reverse
7
+ Descending.new(expr)
8
+ end
9
+
10
+ def direction
11
+ :asc
12
+ end
13
+
14
+ def ascending?
15
+ true
16
+ end
17
+
18
+ def descending?
19
+ false
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Binary < Arel::Nodes::NodeExpression
6
+ attr_accessor :left, :right
7
+
8
+ def initialize(left, right)
9
+ super()
10
+ @left = left
11
+ @right = right
12
+ end
13
+
14
+ def initialize_copy(other)
15
+ super
16
+ @left = @left.clone if @left
17
+ @right = @right.clone if @right
18
+ end
19
+
20
+ def hash
21
+ [self.class, @left, @right].hash
22
+ end
23
+
24
+ def eql?(other)
25
+ self.class == other.class &&
26
+ self.left == other.left &&
27
+ self.right == other.right
28
+ end
29
+ alias :== :eql?
30
+ end
31
+
32
+ %w{
33
+ As
34
+ Assignment
35
+ Between
36
+ GreaterThan
37
+ GreaterThanOrEqual
38
+ Join
39
+ LessThan
40
+ LessThanOrEqual
41
+ NotEqual
42
+ NotIn
43
+ Or
44
+ Union
45
+ UnionAll
46
+ Intersect
47
+ Except
48
+ }.each do |name|
49
+ const_set name, Class.new(Binary)
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class BindParam < Node
6
+ attr_reader :value
7
+
8
+ def initialize(value)
9
+ @value = value
10
+ super()
11
+ end
12
+
13
+ def hash
14
+ [self.class, self.value].hash
15
+ end
16
+
17
+ def eql?(other)
18
+ other.is_a?(BindParam) &&
19
+ value == other.value
20
+ end
21
+ alias :== :eql?
22
+
23
+ def nil?
24
+ value.nil?
25
+ end
26
+
27
+ def infinite?
28
+ value.respond_to?(:infinite?) && value.infinite?
29
+ end
30
+
31
+ def unboundable?
32
+ value.respond_to?(:unboundable?) && value.unboundable?
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Case < Arel::Nodes::Node
6
+ attr_accessor :case, :conditions, :default
7
+
8
+ def initialize(expression = nil, default = nil)
9
+ @case = expression
10
+ @conditions = []
11
+ @default = default
12
+ end
13
+
14
+ def when(condition, expression = nil)
15
+ @conditions << When.new(Nodes.build_quoted(condition), expression)
16
+ self
17
+ end
18
+
19
+ def then(expression)
20
+ @conditions.last.right = Nodes.build_quoted(expression)
21
+ self
22
+ end
23
+
24
+ def else(expression)
25
+ @default = Else.new Nodes.build_quoted(expression)
26
+ self
27
+ end
28
+
29
+ def initialize_copy(other)
30
+ super
31
+ @case = @case.clone if @case
32
+ @conditions = @conditions.map { |x| x.clone }
33
+ @default = @default.clone if @default
34
+ end
35
+
36
+ def hash
37
+ [@case, @conditions, @default].hash
38
+ end
39
+
40
+ def eql?(other)
41
+ self.class == other.class &&
42
+ self.case == other.case &&
43
+ self.conditions == other.conditions &&
44
+ self.default == other.default
45
+ end
46
+ alias :== :eql?
47
+ end
48
+
49
+ class When < Binary # :nodoc:
50
+ end
51
+
52
+ class Else < Unary # :nodoc:
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Casted < Arel::Nodes::NodeExpression # :nodoc:
6
+ attr_reader :val, :attribute
7
+ def initialize(val, attribute)
8
+ @val = val
9
+ @attribute = attribute
10
+ super()
11
+ end
12
+
13
+ def nil?; @val.nil?; end
14
+
15
+ def hash
16
+ [self.class, val, attribute].hash
17
+ end
18
+
19
+ def eql?(other)
20
+ self.class == other.class &&
21
+ self.val == other.val &&
22
+ self.attribute == other.attribute
23
+ end
24
+ alias :== :eql?
25
+ end
26
+
27
+ class Quoted < Arel::Nodes::Unary # :nodoc:
28
+ alias :val :value
29
+ def nil?; val.nil?; end
30
+
31
+ def infinite?
32
+ value.respond_to?(:infinite?) && value.infinite?
33
+ end
34
+ end
35
+
36
+ def self.build_quoted(other, attribute = nil)
37
+ case other
38
+ when Arel::Nodes::Node, Arel::Attributes::Attribute, Arel::Table, Arel::Nodes::BindParam, Arel::SelectManager, Arel::Nodes::Quoted, Arel::Nodes::SqlLiteral
39
+ other
40
+ else
41
+ case attribute
42
+ when Arel::Attributes::Attribute
43
+ Casted.new other, attribute
44
+ else
45
+ Quoted.new other
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Count < Arel::Nodes::Function
6
+ def initialize(expr, distinct = false, aliaz = nil)
7
+ super(expr, aliaz)
8
+ @distinct = distinct
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class DeleteStatement < Arel::Nodes::Node
6
+ attr_accessor :left, :right, :orders, :limit, :offset, :key
7
+
8
+ alias :relation :left
9
+ alias :relation= :left=
10
+ alias :wheres :right
11
+ alias :wheres= :right=
12
+
13
+ def initialize(relation = nil, wheres = [])
14
+ super()
15
+ @left = relation
16
+ @right = wheres
17
+ @orders = []
18
+ @limit = nil
19
+ @offset = nil
20
+ @key = nil
21
+ end
22
+
23
+ def initialize_copy(other)
24
+ super
25
+ @left = @left.clone if @left
26
+ @right = @right.clone if @right
27
+ end
28
+
29
+ def hash
30
+ [self.class, @left, @right, @orders, @limit, @offset, @key].hash
31
+ end
32
+
33
+ def eql?(other)
34
+ self.class == other.class &&
35
+ self.left == other.left &&
36
+ self.right == other.right &&
37
+ self.orders == other.orders &&
38
+ self.limit == other.limit &&
39
+ self.offset == other.offset &&
40
+ self.key == other.key
41
+ end
42
+ alias :== :eql?
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Descending < Ordering
6
+ def reverse
7
+ Ascending.new(expr)
8
+ end
9
+
10
+ def direction
11
+ :desc
12
+ end
13
+
14
+ def ascending?
15
+ false
16
+ end
17
+
18
+ def descending?
19
+ true
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Equality < Arel::Nodes::Binary
6
+ def operator; :== end
7
+ alias :operand1 :left
8
+ alias :operand2 :right
9
+ end
10
+
11
+ %w{
12
+ IsDistinctFrom
13
+ IsNotDistinctFrom
14
+ }.each do |name|
15
+ const_set name, Class.new(Equality)
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Extract < Arel::Nodes::Unary
6
+ attr_accessor :field
7
+
8
+ def initialize(expr, field)
9
+ super(expr)
10
+ @field = field
11
+ end
12
+
13
+ def hash
14
+ super ^ @field.hash
15
+ end
16
+
17
+ def eql?(other)
18
+ super &&
19
+ self.field == other.field
20
+ end
21
+ alias :== :eql?
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class False < Arel::Nodes::NodeExpression
6
+ def hash
7
+ self.class.hash
8
+ end
9
+
10
+ def eql?(other)
11
+ self.class == other.class
12
+ end
13
+ alias :== :eql?
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class FullOuterJoin < Arel::Nodes::Join
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Arel # :nodoc: all
4
+ module Nodes
5
+ class Function < Arel::Nodes::NodeExpression
6
+ include Arel::WindowPredications
7
+ attr_accessor :expressions, :alias, :distinct
8
+
9
+ def initialize(expr, aliaz = nil)
10
+ super()
11
+ @expressions = expr
12
+ @alias = aliaz && SqlLiteral.new(aliaz)
13
+ @distinct = false
14
+ end
15
+
16
+ def as(aliaz)
17
+ self.alias = SqlLiteral.new(aliaz)
18
+ self
19
+ end
20
+
21
+ def hash
22
+ [@expressions, @alias, @distinct].hash
23
+ end
24
+
25
+ def eql?(other)
26
+ self.class == other.class &&
27
+ self.expressions == other.expressions &&
28
+ self.alias == other.alias &&
29
+ self.distinct == other.distinct
30
+ end
31
+ alias :== :eql?
32
+ end
33
+
34
+ %w{
35
+ Sum
36
+ Exists
37
+ Max
38
+ Min
39
+ Avg
40
+ }.each do |name|
41
+ const_set(name, Class.new(Function))
42
+ end
43
+ end
44
+ end