activerecord 3.2.6 → 6.0.0

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 (371) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +611 -6417
  3. data/MIT-LICENSE +4 -2
  4. data/README.rdoc +44 -47
  5. data/examples/performance.rb +79 -71
  6. data/examples/simple.rb +6 -5
  7. data/lib/active_record/aggregations.rb +268 -238
  8. data/lib/active_record/association_relation.rb +40 -0
  9. data/lib/active_record/associations/alias_tracker.rb +47 -42
  10. data/lib/active_record/associations/association.rb +173 -81
  11. data/lib/active_record/associations/association_scope.rb +124 -92
  12. data/lib/active_record/associations/belongs_to_association.rb +83 -38
  13. data/lib/active_record/associations/belongs_to_polymorphic_association.rb +11 -9
  14. data/lib/active_record/associations/builder/association.rb +113 -32
  15. data/lib/active_record/associations/builder/belongs_to.rb +105 -60
  16. data/lib/active_record/associations/builder/collection_association.rb +53 -56
  17. data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +98 -41
  18. data/lib/active_record/associations/builder/has_many.rb +11 -63
  19. data/lib/active_record/associations/builder/has_one.rb +47 -45
  20. data/lib/active_record/associations/builder/singular_association.rb +30 -18
  21. data/lib/active_record/associations/collection_association.rb +217 -295
  22. data/lib/active_record/associations/collection_proxy.rb +1074 -77
  23. data/lib/active_record/associations/foreign_association.rb +20 -0
  24. data/lib/active_record/associations/has_many_association.rb +78 -50
  25. data/lib/active_record/associations/has_many_through_association.rb +99 -61
  26. data/lib/active_record/associations/has_one_association.rb +75 -30
  27. data/lib/active_record/associations/has_one_through_association.rb +20 -11
  28. data/lib/active_record/associations/join_dependency/join_association.rb +45 -119
  29. data/lib/active_record/associations/join_dependency/join_base.rb +11 -12
  30. data/lib/active_record/associations/join_dependency/join_part.rb +35 -42
  31. data/lib/active_record/associations/join_dependency.rb +208 -164
  32. data/lib/active_record/associations/preloader/association.rb +93 -87
  33. data/lib/active_record/associations/preloader/through_association.rb +87 -38
  34. data/lib/active_record/associations/preloader.rb +134 -110
  35. data/lib/active_record/associations/singular_association.rb +19 -24
  36. data/lib/active_record/associations/through_association.rb +61 -27
  37. data/lib/active_record/associations.rb +1766 -1505
  38. data/lib/active_record/attribute_assignment.rb +57 -193
  39. data/lib/active_record/attribute_decorators.rb +90 -0
  40. data/lib/active_record/attribute_methods/before_type_cast.rb +58 -8
  41. data/lib/active_record/attribute_methods/dirty.rb +187 -67
  42. data/lib/active_record/attribute_methods/primary_key.rb +100 -78
  43. data/lib/active_record/attribute_methods/query.rb +10 -8
  44. data/lib/active_record/attribute_methods/read.rb +29 -118
  45. data/lib/active_record/attribute_methods/serialization.rb +60 -72
  46. data/lib/active_record/attribute_methods/time_zone_conversion.rb +69 -42
  47. data/lib/active_record/attribute_methods/write.rb +36 -44
  48. data/lib/active_record/attribute_methods.rb +306 -161
  49. data/lib/active_record/attributes.rb +279 -0
  50. data/lib/active_record/autosave_association.rb +324 -238
  51. data/lib/active_record/base.rb +114 -507
  52. data/lib/active_record/callbacks.rb +147 -83
  53. data/lib/active_record/coders/json.rb +15 -0
  54. data/lib/active_record/coders/yaml_column.rb +32 -23
  55. data/lib/active_record/connection_adapters/abstract/connection_pool.rb +962 -279
  56. data/lib/active_record/connection_adapters/abstract/database_limits.rb +32 -5
  57. data/lib/active_record/connection_adapters/abstract/database_statements.rb +331 -209
  58. data/lib/active_record/connection_adapters/abstract/query_cache.rb +95 -23
  59. data/lib/active_record/connection_adapters/abstract/quoting.rb +201 -65
  60. data/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
  61. data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -0
  62. data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +510 -289
  63. data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +93 -0
  64. data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1182 -313
  65. data/lib/active_record/connection_adapters/abstract/transaction.rb +323 -0
  66. data/lib/active_record/connection_adapters/abstract_adapter.rb +585 -120
  67. data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +610 -463
  68. data/lib/active_record/connection_adapters/column.rb +58 -233
  69. data/lib/active_record/connection_adapters/connection_specification.rb +297 -0
  70. data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
  71. data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
  72. data/lib/active_record/connection_adapters/mysql/database_statements.rb +200 -0
  73. data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
  74. data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
  75. data/lib/active_record/connection_adapters/mysql/schema_creation.rb +72 -0
  76. data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
  77. data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
  78. data/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
  79. data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
  80. data/lib/active_record/connection_adapters/mysql2_adapter.rb +75 -207
  81. data/lib/active_record/connection_adapters/postgresql/column.rb +30 -0
  82. data/lib/active_record/connection_adapters/postgresql/database_statements.rb +182 -0
  83. data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
  84. data/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
  85. data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -0
  86. data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
  87. data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
  88. data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
  89. data/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
  90. data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
  91. data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
  92. data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
  93. data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
  94. data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
  95. data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
  96. data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
  97. data/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
  98. data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
  99. data/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
  100. data/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
  101. data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
  102. data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +113 -0
  103. data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +26 -0
  104. data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
  105. data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
  106. data/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
  107. data/lib/active_record/connection_adapters/postgresql/quoting.rb +205 -0
  108. data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
  109. data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
  110. data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +222 -0
  111. data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
  112. data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +776 -0
  113. data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
  114. data/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
  115. data/lib/active_record/connection_adapters/postgresql_adapter.rb +695 -1052
  116. data/lib/active_record/connection_adapters/schema_cache.rb +115 -24
  117. data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
  118. data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +118 -0
  119. data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
  120. data/lib/active_record/connection_adapters/sqlite3/quoting.rb +103 -0
  121. data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
  122. data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
  123. data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
  124. data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +137 -0
  125. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +528 -26
  126. data/lib/active_record/connection_adapters/statement_pool.rb +34 -13
  127. data/lib/active_record/connection_handling.rb +267 -0
  128. data/lib/active_record/core.rb +599 -0
  129. data/lib/active_record/counter_cache.rb +177 -103
  130. data/lib/active_record/database_configurations/database_config.rb +37 -0
  131. data/lib/active_record/database_configurations/hash_config.rb +50 -0
  132. data/lib/active_record/database_configurations/url_config.rb +79 -0
  133. data/lib/active_record/database_configurations.rb +233 -0
  134. data/lib/active_record/define_callbacks.rb +22 -0
  135. data/lib/active_record/dynamic_matchers.rb +107 -64
  136. data/lib/active_record/enum.rb +274 -0
  137. data/lib/active_record/errors.rb +254 -61
  138. data/lib/active_record/explain.rb +35 -70
  139. data/lib/active_record/explain_registry.rb +32 -0
  140. data/lib/active_record/explain_subscriber.rb +18 -8
  141. data/lib/active_record/fixture_set/file.rb +82 -0
  142. data/lib/active_record/fixture_set/model_metadata.rb +33 -0
  143. data/lib/active_record/fixture_set/render_context.rb +17 -0
  144. data/lib/active_record/fixture_set/table_row.rb +153 -0
  145. data/lib/active_record/fixture_set/table_rows.rb +47 -0
  146. data/lib/active_record/fixtures.rb +291 -475
  147. data/lib/active_record/gem_version.rb +17 -0
  148. data/lib/active_record/inheritance.rb +219 -100
  149. data/lib/active_record/insert_all.rb +179 -0
  150. data/lib/active_record/integration.rb +175 -17
  151. data/lib/active_record/internal_metadata.rb +53 -0
  152. data/lib/active_record/legacy_yaml_adapter.rb +48 -0
  153. data/lib/active_record/locale/en.yml +9 -1
  154. data/lib/active_record/locking/optimistic.rb +106 -92
  155. data/lib/active_record/locking/pessimistic.rb +23 -11
  156. data/lib/active_record/log_subscriber.rb +80 -30
  157. data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
  158. data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
  159. data/lib/active_record/middleware/database_selector.rb +75 -0
  160. data/lib/active_record/migration/command_recorder.rb +235 -56
  161. data/lib/active_record/migration/compatibility.rb +244 -0
  162. data/lib/active_record/migration/join_table.rb +17 -0
  163. data/lib/active_record/migration.rb +917 -301
  164. data/lib/active_record/model_schema.rb +351 -175
  165. data/lib/active_record/nested_attributes.rb +366 -235
  166. data/lib/active_record/no_touching.rb +65 -0
  167. data/lib/active_record/null_relation.rb +68 -0
  168. data/lib/active_record/persistence.rb +761 -166
  169. data/lib/active_record/query_cache.rb +22 -44
  170. data/lib/active_record/querying.rb +55 -31
  171. data/lib/active_record/railtie.rb +185 -47
  172. data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
  173. data/lib/active_record/railties/console_sandbox.rb +5 -4
  174. data/lib/active_record/railties/controller_runtime.rb +35 -33
  175. data/lib/active_record/railties/databases.rake +366 -463
  176. data/lib/active_record/readonly_attributes.rb +4 -6
  177. data/lib/active_record/reflection.rb +736 -228
  178. data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
  179. data/lib/active_record/relation/batches.rb +252 -52
  180. data/lib/active_record/relation/calculations.rb +340 -270
  181. data/lib/active_record/relation/delegation.rb +117 -36
  182. data/lib/active_record/relation/finder_methods.rb +439 -286
  183. data/lib/active_record/relation/from_clause.rb +26 -0
  184. data/lib/active_record/relation/merger.rb +184 -0
  185. data/lib/active_record/relation/predicate_builder/array_handler.rb +49 -0
  186. data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
  187. data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
  188. data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
  189. data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
  190. data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
  191. data/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
  192. data/lib/active_record/relation/predicate_builder.rb +131 -39
  193. data/lib/active_record/relation/query_attribute.rb +50 -0
  194. data/lib/active_record/relation/query_methods.rb +1163 -221
  195. data/lib/active_record/relation/record_fetch_warning.rb +51 -0
  196. data/lib/active_record/relation/spawn_methods.rb +49 -120
  197. data/lib/active_record/relation/where_clause.rb +190 -0
  198. data/lib/active_record/relation/where_clause_factory.rb +33 -0
  199. data/lib/active_record/relation.rb +671 -349
  200. data/lib/active_record/result.rb +149 -15
  201. data/lib/active_record/runtime_registry.rb +24 -0
  202. data/lib/active_record/sanitization.rb +153 -133
  203. data/lib/active_record/schema.rb +22 -19
  204. data/lib/active_record/schema_dumper.rb +178 -112
  205. data/lib/active_record/schema_migration.rb +60 -0
  206. data/lib/active_record/scoping/default.rb +107 -98
  207. data/lib/active_record/scoping/named.rb +130 -115
  208. data/lib/active_record/scoping.rb +77 -123
  209. data/lib/active_record/secure_token.rb +40 -0
  210. data/lib/active_record/serialization.rb +10 -6
  211. data/lib/active_record/statement_cache.rb +148 -0
  212. data/lib/active_record/store.rb +256 -16
  213. data/lib/active_record/suppressor.rb +61 -0
  214. data/lib/active_record/table_metadata.rb +75 -0
  215. data/lib/active_record/tasks/database_tasks.rb +506 -0
  216. data/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
  217. data/lib/active_record/tasks/postgresql_database_tasks.rb +141 -0
  218. data/lib/active_record/tasks/sqlite_database_tasks.rb +77 -0
  219. data/lib/active_record/test_databases.rb +23 -0
  220. data/lib/active_record/test_fixtures.rb +224 -0
  221. data/lib/active_record/timestamp.rb +93 -39
  222. data/lib/active_record/touch_later.rb +66 -0
  223. data/lib/active_record/transactions.rb +260 -129
  224. data/lib/active_record/translation.rb +3 -1
  225. data/lib/active_record/type/adapter_specific_registry.rb +129 -0
  226. data/lib/active_record/type/date.rb +9 -0
  227. data/lib/active_record/type/date_time.rb +9 -0
  228. data/lib/active_record/type/decimal_without_scale.rb +15 -0
  229. data/lib/active_record/type/hash_lookup_type_map.rb +25 -0
  230. data/lib/active_record/type/internal/timezone.rb +17 -0
  231. data/lib/active_record/type/json.rb +30 -0
  232. data/lib/active_record/type/serialized.rb +71 -0
  233. data/lib/active_record/type/text.rb +11 -0
  234. data/lib/active_record/type/time.rb +21 -0
  235. data/lib/active_record/type/type_map.rb +62 -0
  236. data/lib/active_record/type/unsigned_integer.rb +17 -0
  237. data/lib/active_record/type.rb +78 -0
  238. data/lib/active_record/type_caster/connection.rb +34 -0
  239. data/lib/active_record/type_caster/map.rb +20 -0
  240. data/lib/active_record/type_caster.rb +9 -0
  241. data/lib/active_record/validations/absence.rb +25 -0
  242. data/lib/active_record/validations/associated.rb +35 -18
  243. data/lib/active_record/validations/length.rb +26 -0
  244. data/lib/active_record/validations/presence.rb +68 -0
  245. data/lib/active_record/validations/uniqueness.rb +123 -77
  246. data/lib/active_record/validations.rb +54 -43
  247. data/lib/active_record/version.rb +7 -7
  248. data/lib/active_record.rb +97 -49
  249. data/lib/arel/alias_predication.rb +9 -0
  250. data/lib/arel/attributes/attribute.rb +37 -0
  251. data/lib/arel/attributes.rb +22 -0
  252. data/lib/arel/collectors/bind.rb +24 -0
  253. data/lib/arel/collectors/composite.rb +31 -0
  254. data/lib/arel/collectors/plain_string.rb +20 -0
  255. data/lib/arel/collectors/sql_string.rb +20 -0
  256. data/lib/arel/collectors/substitute_binds.rb +28 -0
  257. data/lib/arel/crud.rb +42 -0
  258. data/lib/arel/delete_manager.rb +18 -0
  259. data/lib/arel/errors.rb +9 -0
  260. data/lib/arel/expressions.rb +29 -0
  261. data/lib/arel/factory_methods.rb +49 -0
  262. data/lib/arel/insert_manager.rb +49 -0
  263. data/lib/arel/math.rb +45 -0
  264. data/lib/arel/nodes/and.rb +32 -0
  265. data/lib/arel/nodes/ascending.rb +23 -0
  266. data/lib/arel/nodes/binary.rb +52 -0
  267. data/lib/arel/nodes/bind_param.rb +36 -0
  268. data/lib/arel/nodes/case.rb +55 -0
  269. data/lib/arel/nodes/casted.rb +50 -0
  270. data/lib/arel/nodes/comment.rb +29 -0
  271. data/lib/arel/nodes/count.rb +12 -0
  272. data/lib/arel/nodes/delete_statement.rb +45 -0
  273. data/lib/arel/nodes/descending.rb +23 -0
  274. data/lib/arel/nodes/equality.rb +18 -0
  275. data/lib/arel/nodes/extract.rb +24 -0
  276. data/lib/arel/nodes/false.rb +16 -0
  277. data/lib/arel/nodes/full_outer_join.rb +8 -0
  278. data/lib/arel/nodes/function.rb +44 -0
  279. data/lib/arel/nodes/grouping.rb +8 -0
  280. data/lib/arel/nodes/in.rb +8 -0
  281. data/lib/arel/nodes/infix_operation.rb +80 -0
  282. data/lib/arel/nodes/inner_join.rb +8 -0
  283. data/lib/arel/nodes/insert_statement.rb +37 -0
  284. data/lib/arel/nodes/join_source.rb +20 -0
  285. data/lib/arel/nodes/matches.rb +18 -0
  286. data/lib/arel/nodes/named_function.rb +23 -0
  287. data/lib/arel/nodes/node.rb +50 -0
  288. data/lib/arel/nodes/node_expression.rb +13 -0
  289. data/lib/arel/nodes/outer_join.rb +8 -0
  290. data/lib/arel/nodes/over.rb +15 -0
  291. data/lib/arel/nodes/regexp.rb +16 -0
  292. data/lib/arel/nodes/right_outer_join.rb +8 -0
  293. data/lib/arel/nodes/select_core.rb +67 -0
  294. data/lib/arel/nodes/select_statement.rb +41 -0
  295. data/lib/arel/nodes/sql_literal.rb +16 -0
  296. data/lib/arel/nodes/string_join.rb +11 -0
  297. data/lib/arel/nodes/table_alias.rb +27 -0
  298. data/lib/arel/nodes/terminal.rb +16 -0
  299. data/lib/arel/nodes/true.rb +16 -0
  300. data/lib/arel/nodes/unary.rb +45 -0
  301. data/lib/arel/nodes/unary_operation.rb +20 -0
  302. data/lib/arel/nodes/unqualified_column.rb +22 -0
  303. data/lib/arel/nodes/update_statement.rb +41 -0
  304. data/lib/arel/nodes/values_list.rb +9 -0
  305. data/lib/arel/nodes/window.rb +126 -0
  306. data/lib/arel/nodes/with.rb +11 -0
  307. data/lib/arel/nodes.rb +68 -0
  308. data/lib/arel/order_predications.rb +13 -0
  309. data/lib/arel/predications.rb +257 -0
  310. data/lib/arel/select_manager.rb +271 -0
  311. data/lib/arel/table.rb +110 -0
  312. data/lib/arel/tree_manager.rb +72 -0
  313. data/lib/arel/update_manager.rb +34 -0
  314. data/lib/arel/visitors/depth_first.rb +204 -0
  315. data/lib/arel/visitors/dot.rb +297 -0
  316. data/lib/arel/visitors/ibm_db.rb +34 -0
  317. data/lib/arel/visitors/informix.rb +62 -0
  318. data/lib/arel/visitors/mssql.rb +157 -0
  319. data/lib/arel/visitors/mysql.rb +83 -0
  320. data/lib/arel/visitors/oracle.rb +159 -0
  321. data/lib/arel/visitors/oracle12.rb +66 -0
  322. data/lib/arel/visitors/postgresql.rb +110 -0
  323. data/lib/arel/visitors/sqlite.rb +39 -0
  324. data/lib/arel/visitors/to_sql.rb +889 -0
  325. data/lib/arel/visitors/visitor.rb +46 -0
  326. data/lib/arel/visitors/where_sql.rb +23 -0
  327. data/lib/arel/visitors.rb +20 -0
  328. data/lib/arel/window_predications.rb +9 -0
  329. data/lib/arel.rb +51 -0
  330. data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
  331. data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
  332. data/lib/rails/generators/active_record/migration/migration_generator.rb +59 -9
  333. data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
  334. data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
  335. data/lib/rails/generators/active_record/migration.rb +41 -8
  336. data/lib/rails/generators/active_record/model/model_generator.rb +24 -22
  337. data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
  338. data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +1 -1
  339. data/lib/rails/generators/active_record.rb +10 -16
  340. metadata +285 -149
  341. data/examples/associations.png +0 -0
  342. data/lib/active_record/associations/has_and_belongs_to_many_association.rb +0 -63
  343. data/lib/active_record/associations/join_helper.rb +0 -55
  344. data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
  345. data/lib/active_record/associations/preloader/collection_association.rb +0 -24
  346. data/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +0 -60
  347. data/lib/active_record/associations/preloader/has_many.rb +0 -17
  348. data/lib/active_record/associations/preloader/has_many_through.rb +0 -15
  349. data/lib/active_record/associations/preloader/has_one.rb +0 -23
  350. data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
  351. data/lib/active_record/associations/preloader/singular_association.rb +0 -21
  352. data/lib/active_record/attribute_methods/deprecated_underscore_read.rb +0 -32
  353. data/lib/active_record/connection_adapters/abstract/connection_specification.rb +0 -188
  354. data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -426
  355. data/lib/active_record/connection_adapters/sqlite_adapter.rb +0 -579
  356. data/lib/active_record/dynamic_finder_match.rb +0 -68
  357. data/lib/active_record/dynamic_scope_match.rb +0 -23
  358. data/lib/active_record/fixtures/file.rb +0 -65
  359. data/lib/active_record/identity_map.rb +0 -162
  360. data/lib/active_record/observer.rb +0 -121
  361. data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
  362. data/lib/active_record/serializers/xml_serializer.rb +0 -203
  363. data/lib/active_record/session_store.rb +0 -358
  364. data/lib/active_record/test_case.rb +0 -73
  365. data/lib/rails/generators/active_record/migration/templates/migration.rb +0 -34
  366. data/lib/rails/generators/active_record/model/templates/migration.rb +0 -15
  367. data/lib/rails/generators/active_record/model/templates/model.rb +0 -12
  368. data/lib/rails/generators/active_record/observer/observer_generator.rb +0 -15
  369. data/lib/rails/generators/active_record/observer/templates/observer.rb +0 -4
  370. data/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +0 -25
  371. data/lib/rails/generators/active_record/session_migration/templates/migration.rb +0 -12
@@ -1,5 +1,6 @@
1
- module ActiveRecord
1
+ # frozen_string_literal: true
2
2
 
3
+ module ActiveRecord
3
4
  # = Active Record Errors
4
5
  #
5
6
  # Generic Active Record exception class.
@@ -7,8 +8,10 @@ module ActiveRecord
7
8
  end
8
9
 
9
10
  # Raised when the single-table inheritance mechanism fails to locate the subclass
10
- # (for example due to improper usage of column that +inheritance_column+ points to).
11
- class SubclassNotFound < ActiveRecordError #:nodoc:
11
+ # (for example due to improper usage of column that
12
+ # {ActiveRecord::Base.inheritance_column}[rdoc-ref:ModelSchema::ClassMethods#inheritance_column]
13
+ # points to).
14
+ class SubclassNotFound < ActiveRecordError
12
15
  end
13
16
 
14
17
  # Raised when an object assigned to an association has an incorrect type.
@@ -22,7 +25,7 @@ module ActiveRecord
22
25
  # end
23
26
  #
24
27
  # # Comments are not patches, this assignment raises AssociationTypeMismatch.
25
- # @ticket.patches << Comment.new(:content => "Please attach tests to your patch.")
28
+ # @ticket.patches << Comment.new(content: "Please attach tests to your patch.")
26
29
  class AssociationTypeMismatch < ActiveRecordError
27
30
  end
28
31
 
@@ -30,89 +33,186 @@ module ActiveRecord
30
33
  class SerializationTypeMismatch < ActiveRecordError
31
34
  end
32
35
 
33
- # Raised when adapter not specified on connection (or configuration file <tt>config/database.yml</tt>
34
- # misses adapter field).
36
+ # Raised when adapter not specified on connection (or configuration file
37
+ # +config/database.yml+ misses adapter field).
35
38
  class AdapterNotSpecified < ActiveRecordError
36
39
  end
37
40
 
38
- # Raised when Active Record cannot find database adapter specified in <tt>config/database.yml</tt> or programmatically.
41
+ # Raised when Active Record cannot find database adapter specified in
42
+ # +config/database.yml+ or programmatically.
39
43
  class AdapterNotFound < ActiveRecordError
40
44
  end
41
45
 
42
- # Raised when connection to the database could not been established (for example when <tt>connection=</tt>
43
- # is given a nil object).
46
+ # Raised when connection to the database could not been established (for example when
47
+ # {ActiveRecord::Base.connection=}[rdoc-ref:ConnectionHandling#connection]
48
+ # is given a +nil+ object).
44
49
  class ConnectionNotEstablished < ActiveRecordError
45
50
  end
46
51
 
47
- # Raised when Active Record cannot find record by given id or set of ids.
52
+ # Raised when a write to the database is attempted on a read only connection.
53
+ class ReadOnlyError < ActiveRecordError
54
+ end
55
+
56
+ # Raised when Active Record cannot find a record by given id or set of ids.
48
57
  class RecordNotFound < ActiveRecordError
58
+ attr_reader :model, :primary_key, :id
59
+
60
+ def initialize(message = nil, model = nil, primary_key = nil, id = nil)
61
+ @primary_key = primary_key
62
+ @model = model
63
+ @id = id
64
+
65
+ super(message)
66
+ end
49
67
  end
50
68
 
51
- # Raised by ActiveRecord::Base.save! and ActiveRecord::Base.create! methods when record cannot be
52
- # saved because record is invalid.
69
+ # Raised by {ActiveRecord::Base#save!}[rdoc-ref:Persistence#save!] and
70
+ # {ActiveRecord::Base.create!}[rdoc-ref:Persistence::ClassMethods#create!]
71
+ # methods when a record is invalid and cannot be saved.
53
72
  class RecordNotSaved < ActiveRecordError
73
+ attr_reader :record
74
+
75
+ def initialize(message = nil, record = nil)
76
+ @record = record
77
+ super(message)
78
+ end
54
79
  end
55
80
 
56
- # Raised when SQL statement cannot be executed by the database (for example, it's often the case for
57
- # MySQL when Ruby driver used is too old).
58
- class StatementInvalid < ActiveRecordError
81
+ # Raised by {ActiveRecord::Base#destroy!}[rdoc-ref:Persistence#destroy!]
82
+ # when a call to {#destroy}[rdoc-ref:Persistence#destroy!]
83
+ # would return false.
84
+ #
85
+ # begin
86
+ # complex_operation_that_internally_calls_destroy!
87
+ # rescue ActiveRecord::RecordNotDestroyed => invalid
88
+ # puts invalid.record.errors
89
+ # end
90
+ #
91
+ class RecordNotDestroyed < ActiveRecordError
92
+ attr_reader :record
93
+
94
+ def initialize(message = nil, record = nil)
95
+ @record = record
96
+ super(message)
97
+ end
59
98
  end
60
99
 
61
- # Raised when SQL statement is invalid and the application gets a blank result.
62
- class ThrowResult < ActiveRecordError
100
+ # Superclass for all database execution errors.
101
+ #
102
+ # Wraps the underlying database error as +cause+.
103
+ class StatementInvalid < ActiveRecordError
104
+ def initialize(message = nil, sql: nil, binds: nil)
105
+ super(message || $!.try(:message))
106
+ @sql = sql
107
+ @binds = binds
108
+ end
109
+
110
+ attr_reader :sql, :binds
63
111
  end
64
112
 
65
- # Parent class for all specific exceptions which wrap database driver exceptions
66
- # provides access to the original exception also.
113
+ # Defunct wrapper class kept for compatibility.
114
+ # StatementInvalid wraps the original exception now.
67
115
  class WrappedDatabaseException < StatementInvalid
68
- attr_reader :original_exception
69
-
70
- def initialize(message, original_exception)
71
- super(message)
72
- @original_exception = original_exception
73
- end
74
116
  end
75
117
 
76
- # Raised when a record cannot be inserted because it would violate a uniqueness constraint.
118
+ # Raised when a record cannot be inserted or updated because it would violate a uniqueness constraint.
77
119
  class RecordNotUnique < WrappedDatabaseException
78
120
  end
79
121
 
80
- # Raised when a record cannot be inserted or updated because it references a non-existent record.
122
+ # Raised when a record cannot be inserted or updated because it references a non-existent record,
123
+ # or when a record cannot be deleted because a parent record references it.
81
124
  class InvalidForeignKey < WrappedDatabaseException
82
125
  end
83
126
 
84
- # Raised when number of bind variables in statement given to <tt>:condition</tt> key (for example,
85
- # when using +find+ method)
86
- # does not match number of expected variables.
127
+ # Raised when a foreign key constraint cannot be added because the column type does not match the referenced column type.
128
+ class MismatchedForeignKey < StatementInvalid
129
+ def initialize(
130
+ message: nil,
131
+ sql: nil,
132
+ binds: nil,
133
+ table: nil,
134
+ foreign_key: nil,
135
+ target_table: nil,
136
+ primary_key: nil,
137
+ primary_key_column: nil
138
+ )
139
+ if table
140
+ type = primary_key_column.bigint? ? :bigint : primary_key_column.type
141
+ msg = <<~EOM.squish
142
+ Column `#{foreign_key}` on table `#{table}` does not match column `#{primary_key}` on `#{target_table}`,
143
+ which has type `#{primary_key_column.sql_type}`.
144
+ To resolve this issue, change the type of the `#{foreign_key}` column on `#{table}` to be :#{type}.
145
+ (For example `t.#{type} :#{foreign_key}`).
146
+ EOM
147
+ else
148
+ msg = <<~EOM.squish
149
+ There is a mismatch between the foreign key and primary key column types.
150
+ Verify that the foreign key column type and the primary key of the associated table match types.
151
+ EOM
152
+ end
153
+ if message
154
+ msg << "\nOriginal message: #{message}"
155
+ end
156
+ super(msg, sql: sql, binds: binds)
157
+ end
158
+ end
159
+
160
+ # Raised when a record cannot be inserted or updated because it would violate a not null constraint.
161
+ class NotNullViolation < StatementInvalid
162
+ end
163
+
164
+ # Raised when a record cannot be inserted or updated because a value too long for a column type.
165
+ class ValueTooLong < StatementInvalid
166
+ end
167
+
168
+ # Raised when values that executed are out of range.
169
+ class RangeError < StatementInvalid
170
+ end
171
+
172
+ # Raised when number of bind variables in statement given to +:condition+ key
173
+ # (for example, when using {ActiveRecord::Base.find}[rdoc-ref:FinderMethods#find] method)
174
+ # does not match number of expected values supplied.
87
175
  #
88
- # For example, in
176
+ # For example, when there are two placeholders with only one value supplied:
89
177
  #
90
178
  # Location.where("lat = ? AND lng = ?", 53.7362)
91
- #
92
- # two placeholders are given but only one variable to fill them.
93
179
  class PreparedStatementInvalid < ActiveRecordError
94
180
  end
95
181
 
182
+ # Raised when a given database does not exist.
183
+ class NoDatabaseError < StatementInvalid
184
+ end
185
+
186
+ # Raised when PostgreSQL returns 'cached plan must not change result type' and
187
+ # we cannot retry gracefully (e.g. inside a transaction)
188
+ class PreparedStatementCacheExpired < StatementInvalid
189
+ end
190
+
96
191
  # Raised on attempt to save stale record. Record is stale when it's being saved in another query after
97
192
  # instantiation, for example, when two users edit the same wiki page and one starts editing and saves
98
193
  # the page before the other.
99
194
  #
100
- # Read more about optimistic locking in ActiveRecord::Locking module RDoc.
195
+ # Read more about optimistic locking in ActiveRecord::Locking module
196
+ # documentation.
101
197
  class StaleObjectError < ActiveRecordError
102
198
  attr_reader :record, :attempted_action
103
199
 
104
- def initialize(record, attempted_action)
105
- @record = record
106
- @attempted_action = attempted_action
107
- end
108
-
109
- def message
110
- "Attempted to #{attempted_action} a stale object: #{record.class.name}"
200
+ def initialize(record = nil, attempted_action = nil)
201
+ if record && attempted_action
202
+ @record = record
203
+ @attempted_action = attempted_action
204
+ super("Attempted to #{attempted_action} a stale object: #{record.class.name}.")
205
+ else
206
+ super("Stale object error.")
207
+ end
111
208
  end
112
209
  end
113
210
 
114
- # Raised when association is being configured improperly or
115
- # user tries to use offset and limit together with has_many or has_and_belongs_to_many associations.
211
+ # Raised when association is being configured improperly or user tries to use
212
+ # offset and limit together with
213
+ # {ActiveRecord::Base.has_many}[rdoc-ref:Associations::ClassMethods#has_many] or
214
+ # {ActiveRecord::Base.has_and_belongs_to_many}[rdoc-ref:Associations::ClassMethods#has_and_belongs_to_many]
215
+ # associations.
116
216
  class ConfigurationError < ActiveRecordError
117
217
  end
118
218
 
@@ -120,9 +220,10 @@ module ActiveRecord
120
220
  class ReadOnlyRecord < ActiveRecordError
121
221
  end
122
222
 
123
- # ActiveRecord::Transactions::ClassMethods.transaction uses this exception
124
- # to distinguish a deliberate rollback from other exceptional situations.
125
- # Normally, raising an exception will cause the +transaction+ method to rollback
223
+ # {ActiveRecord::Base.transaction}[rdoc-ref:Transactions::ClassMethods#transaction]
224
+ # uses this exception to distinguish a deliberate rollback from other exceptional situations.
225
+ # Normally, raising an exception will cause the
226
+ # {.transaction}[rdoc-ref:Transactions::ClassMethods#transaction] method to rollback
126
227
  # the database transaction *and* pass on the exception. But if you raise an
127
228
  # ActiveRecord::Rollback exception, then the database transaction will be rolled back,
128
229
  # without passing on the exception.
@@ -150,46 +251,138 @@ module ActiveRecord
150
251
  class Rollback < ActiveRecordError
151
252
  end
152
253
 
153
- # Raised when attribute has a name reserved by Active Record (when attribute has name of one of Active Record instance methods).
254
+ # Raised when attribute has a name reserved by Active Record (when attribute
255
+ # has name of one of Active Record instance methods).
154
256
  class DangerousAttributeError < ActiveRecordError
155
257
  end
156
258
 
157
259
  # Raised when unknown attributes are supplied via mass assignment.
158
- class UnknownAttributeError < NoMethodError
159
- end
260
+ UnknownAttributeError = ActiveModel::UnknownAttributeError
160
261
 
161
262
  # Raised when an error occurred while doing a mass assignment to an attribute through the
162
- # <tt>attributes=</tt> method. The exception has an +attribute+ property that is the name of the
163
- # offending attribute.
263
+ # {ActiveRecord::Base#attributes=}[rdoc-ref:AttributeAssignment#attributes=] method.
264
+ # The exception has an +attribute+ property that is the name of the offending attribute.
164
265
  class AttributeAssignmentError < ActiveRecordError
165
266
  attr_reader :exception, :attribute
166
- def initialize(message, exception, attribute)
267
+
268
+ def initialize(message = nil, exception = nil, attribute = nil)
269
+ super(message)
167
270
  @exception = exception
168
271
  @attribute = attribute
169
- @message = message
170
272
  end
171
273
  end
172
274
 
173
- # Raised when there are multiple errors while doing a mass assignment through the +attributes+
275
+ # Raised when there are multiple errors while doing a mass assignment through the
276
+ # {ActiveRecord::Base#attributes=}[rdoc-ref:AttributeAssignment#attributes=]
174
277
  # method. The exception has an +errors+ property that contains an array of AttributeAssignmentError
175
278
  # objects, each corresponding to the error while assigning to an attribute.
176
279
  class MultiparameterAssignmentErrors < ActiveRecordError
177
280
  attr_reader :errors
178
- def initialize(errors)
281
+
282
+ def initialize(errors = nil)
179
283
  @errors = errors
180
284
  end
181
285
  end
182
286
 
183
- # Raised when a primary key is needed, but there is not one specified in the schema or model.
287
+ # Raised when a primary key is needed, but not specified in the schema or model.
184
288
  class UnknownPrimaryKey < ActiveRecordError
185
289
  attr_reader :model
186
290
 
187
- def initialize(model)
188
- @model = model
291
+ def initialize(model = nil, description = nil)
292
+ if model
293
+ message = "Unknown primary key for table #{model.table_name} in model #{model}."
294
+ message += "\n#{description}" if description
295
+ @model = model
296
+ super(message)
297
+ else
298
+ super("Unknown primary key.")
299
+ end
189
300
  end
301
+ end
190
302
 
191
- def message
192
- "Unknown primary key for table #{model.table_name} in model #{model}."
193
- end
303
+ # Raised when a relation cannot be mutated because it's already loaded.
304
+ #
305
+ # class Task < ActiveRecord::Base
306
+ # end
307
+ #
308
+ # relation = Task.all
309
+ # relation.loaded? # => true
310
+ #
311
+ # # Methods which try to mutate a loaded relation fail.
312
+ # relation.where!(title: 'TODO') # => ActiveRecord::ImmutableRelation
313
+ # relation.limit!(5) # => ActiveRecord::ImmutableRelation
314
+ class ImmutableRelation < ActiveRecordError
315
+ end
316
+
317
+ # TransactionIsolationError will be raised under the following conditions:
318
+ #
319
+ # * The adapter does not support setting the isolation level
320
+ # * You are joining an existing open transaction
321
+ # * You are creating a nested (savepoint) transaction
322
+ #
323
+ # The mysql2 and postgresql adapters support setting the transaction isolation level.
324
+ class TransactionIsolationError < ActiveRecordError
325
+ end
326
+
327
+ # TransactionRollbackError will be raised when a transaction is rolled
328
+ # back by the database due to a serialization failure or a deadlock.
329
+ #
330
+ # See the following:
331
+ #
332
+ # * https://www.postgresql.org/docs/current/static/transaction-iso.html
333
+ # * https://dev.mysql.com/doc/refman/5.7/en/error-messages-server.html#error_er_lock_deadlock
334
+ class TransactionRollbackError < StatementInvalid
335
+ end
336
+
337
+ # SerializationFailure will be raised when a transaction is rolled
338
+ # back by the database due to a serialization failure.
339
+ class SerializationFailure < TransactionRollbackError
340
+ end
341
+
342
+ # Deadlocked will be raised when a transaction is rolled
343
+ # back by the database when a deadlock is encountered.
344
+ class Deadlocked < TransactionRollbackError
345
+ end
346
+
347
+ # IrreversibleOrderError is raised when a relation's order is too complex for
348
+ # +reverse_order+ to automatically reverse.
349
+ class IrreversibleOrderError < ActiveRecordError
350
+ end
351
+
352
+ # LockWaitTimeout will be raised when lock wait timeout exceeded.
353
+ class LockWaitTimeout < StatementInvalid
354
+ end
355
+
356
+ # StatementTimeout will be raised when statement timeout exceeded.
357
+ class StatementTimeout < StatementInvalid
358
+ end
359
+
360
+ # QueryCanceled will be raised when canceling statement due to user request.
361
+ class QueryCanceled < StatementInvalid
362
+ end
363
+
364
+ # UnknownAttributeReference is raised when an unknown and potentially unsafe
365
+ # value is passed to a query method when allow_unsafe_raw_sql is set to
366
+ # :disabled. For example, passing a non column name value to a relation's
367
+ # #order method might cause this exception.
368
+ #
369
+ # When working around this exception, caution should be taken to avoid SQL
370
+ # injection vulnerabilities when passing user-provided values to query
371
+ # methods. Known-safe values can be passed to query methods by wrapping them
372
+ # in Arel.sql.
373
+ #
374
+ # For example, with allow_unsafe_raw_sql set to :disabled, the following
375
+ # code would raise this exception:
376
+ #
377
+ # Post.order("length(title)").first
378
+ #
379
+ # The desired result can be accomplished by wrapping the known-safe string
380
+ # in Arel.sql:
381
+ #
382
+ # Post.order(Arel.sql("length(title)")).first
383
+ #
384
+ # Again, such a workaround should *not* be used when passing user-provided
385
+ # values, such as request parameters or model attributes to query methods.
386
+ class UnknownAttributeReference < ActiveRecordError
194
387
  end
195
388
  end
@@ -1,85 +1,50 @@
1
- require 'active_support/core_ext/class/attribute'
1
+ # frozen_string_literal: true
2
+
3
+ require "active_record/explain_registry"
2
4
 
3
5
  module ActiveRecord
4
6
  module Explain
5
- def self.extended(base)
6
- base.class_eval do
7
- # If a query takes longer than these many seconds we log its query plan
8
- # automatically. nil disables this feature.
9
- class_attribute :auto_explain_threshold_in_seconds, :instance_writer => false
10
- self.auto_explain_threshold_in_seconds = nil
11
- end
12
- end
13
-
14
- # If auto explain is enabled, this method triggers EXPLAIN logging for the
15
- # queries triggered by the block if it takes more than the threshold as a
16
- # whole. That is, the threshold is not checked against each individual
17
- # query, but against the duration of the entire block. This approach is
18
- # convenient for relations.
19
- #
20
- # The available_queries_for_explain thread variable collects the queries
21
- # to be explained. If the value is nil, it means queries are not being
22
- # currently collected. A false value indicates collecting is turned
23
- # off. Otherwise it is an array of queries.
24
- def logging_query_plan # :nodoc:
25
- return yield unless logger
26
-
27
- threshold = auto_explain_threshold_in_seconds
28
- current = Thread.current
29
- if threshold && current[:available_queries_for_explain].nil?
30
- begin
31
- queries = current[:available_queries_for_explain] = []
32
- start = Time.now
33
- result = yield
34
- logger.warn(exec_explain(queries)) if Time.now - start > threshold
35
- result
36
- ensure
37
- current[:available_queries_for_explain] = nil
38
- end
39
- else
40
- yield
41
- end
42
- end
43
-
44
- # Relation#explain needs to be able to collect the queries regardless of
45
- # whether auto explain is enabled. This method serves that purpose.
7
+ # Executes the block with the collect flag enabled. Queries are collected
8
+ # asynchronously by the subscriber and returned.
46
9
  def collecting_queries_for_explain # :nodoc:
47
- current = Thread.current
48
- original, current[:available_queries_for_explain] = current[:available_queries_for_explain], []
49
- return yield, current[:available_queries_for_explain]
10
+ ExplainRegistry.collect = true
11
+ yield
12
+ ExplainRegistry.queries
50
13
  ensure
51
- # Note that the return value above does not depend on this assigment.
52
- current[:available_queries_for_explain] = original
14
+ ExplainRegistry.reset
53
15
  end
54
16
 
55
17
  # Makes the adapter execute EXPLAIN for the tuples of queries and bindings.
56
18
  # Returns a formatted string ready to be logged.
57
19
  def exec_explain(queries) # :nodoc:
58
- queries && queries.map do |sql, bind|
59
- [].tap do |msg|
60
- msg << "EXPLAIN for: #{sql}"
61
- unless bind.empty?
62
- bind_msg = bind.map {|col, val| [col.name, val]}.inspect
63
- msg.last << " #{bind_msg}"
64
- end
65
- msg << connection.explain(sql, bind)
66
- end.join("\n")
20
+ str = queries.map do |sql, binds|
21
+ msg = +"EXPLAIN for: #{sql}"
22
+ unless binds.empty?
23
+ msg << " "
24
+ msg << binds.map { |attr| render_bind(attr) }.inspect
25
+ end
26
+ msg << "\n"
27
+ msg << connection.explain(sql, binds)
67
28
  end.join("\n")
68
- end
69
29
 
70
- # Silences automatic EXPLAIN logging for the duration of the block.
71
- #
72
- # This has high priority, no EXPLAINs will be run even if downwards
73
- # the threshold is set to 0.
74
- #
75
- # As the name of the method suggests this only applies to automatic
76
- # EXPLAINs, manual calls to +ActiveRecord::Relation#explain+ run.
77
- def silence_auto_explain
78
- current = Thread.current
79
- original, current[:available_queries_for_explain] = current[:available_queries_for_explain], false
80
- yield
81
- ensure
82
- current[:available_queries_for_explain] = original
30
+ # Overriding inspect to be more human readable, especially in the console.
31
+ def str.inspect
32
+ self
33
+ end
34
+
35
+ str
83
36
  end
37
+
38
+ private
39
+
40
+ def render_bind(attr)
41
+ value = if attr.type.binary? && attr.value
42
+ "<#{attr.value_for_database.to_s.bytesize} bytes of binary data>"
43
+ else
44
+ connection.type_cast(attr.value_for_database)
45
+ end
46
+
47
+ [attr.name, value]
48
+ end
84
49
  end
85
50
  end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/per_thread_registry"
4
+
5
+ module ActiveRecord
6
+ # This is a thread locals registry for EXPLAIN. For example
7
+ #
8
+ # ActiveRecord::ExplainRegistry.queries
9
+ #
10
+ # returns the collected queries local to the current thread.
11
+ #
12
+ # See the documentation of ActiveSupport::PerThreadRegistry
13
+ # for further details.
14
+ class ExplainRegistry # :nodoc:
15
+ extend ActiveSupport::PerThreadRegistry
16
+
17
+ attr_accessor :queries, :collect
18
+
19
+ def initialize
20
+ reset
21
+ end
22
+
23
+ def collect?
24
+ @collect
25
+ end
26
+
27
+ def reset
28
+ @collect = false
29
+ @queries = []
30
+ end
31
+ end
32
+ end
@@ -1,22 +1,32 @@
1
- require 'active_support/notifications'
1
+ # frozen_string_literal: true
2
+
3
+ require "active_support/notifications"
4
+ require "active_record/explain_registry"
2
5
 
3
6
  module ActiveRecord
4
7
  class ExplainSubscriber # :nodoc:
5
- def call(*args)
6
- if queries = Thread.current[:available_queries_for_explain]
7
- payload = args.last
8
- queries << payload.values_at(:sql, :binds) unless ignore_payload?(payload)
8
+ def start(name, id, payload)
9
+ # unused
10
+ end
11
+
12
+ def finish(name, id, payload)
13
+ if ExplainRegistry.collect? && !ignore_payload?(payload)
14
+ ExplainRegistry.queries << payload.values_at(:sql, :binds)
9
15
  end
10
16
  end
11
17
 
12
18
  # SCHEMA queries cannot be EXPLAINed, also we do not want to run EXPLAIN on
13
- # our own EXPLAINs now matter how loopingly beautiful that would be.
19
+ # our own EXPLAINs no matter how loopingly beautiful that would be.
14
20
  #
15
21
  # On the other hand, we want to monitor the performance of our real database
16
22
  # queries, not the performance of the access to the query cache.
17
- IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN CACHE)
23
+ IGNORED_PAYLOADS = %w(SCHEMA EXPLAIN)
24
+ EXPLAINED_SQLS = /\A\s*(with|select|update|delete|insert)\b/i
18
25
  def ignore_payload?(payload)
19
- payload[:exception] || IGNORED_PAYLOADS.include?(payload[:name])
26
+ payload[:exception] ||
27
+ payload[:cached] ||
28
+ IGNORED_PAYLOADS.include?(payload[:name]) ||
29
+ payload[:sql] !~ EXPLAINED_SQLS
20
30
  end
21
31
 
22
32
  ActiveSupport::Notifications.subscribe("sql.active_record", new)