activerecord 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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +1013 -0
- data/MIT-LICENSE +22 -0
- data/README.rdoc +219 -0
- data/examples/performance.rb +185 -0
- data/examples/simple.rb +15 -0
- data/lib/active_record.rb +195 -0
- data/lib/active_record/aggregations.rb +285 -0
- data/lib/active_record/association_relation.rb +40 -0
- data/lib/active_record/associations.rb +1865 -0
- data/lib/active_record/associations/alias_tracker.rb +81 -0
- data/lib/active_record/associations/association.rb +332 -0
- data/lib/active_record/associations/association_scope.rb +166 -0
- data/lib/active_record/associations/belongs_to_association.rb +124 -0
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +36 -0
- data/lib/active_record/associations/builder/association.rb +136 -0
- data/lib/active_record/associations/builder/belongs_to.rb +130 -0
- data/lib/active_record/associations/builder/collection_association.rb +72 -0
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +114 -0
- data/lib/active_record/associations/builder/has_many.rb +19 -0
- data/lib/active_record/associations/builder/has_one.rb +64 -0
- data/lib/active_record/associations/builder/singular_association.rb +44 -0
- data/lib/active_record/associations/collection_association.rb +498 -0
- data/lib/active_record/associations/collection_proxy.rb +1128 -0
- data/lib/active_record/associations/foreign_association.rb +20 -0
- data/lib/active_record/associations/has_many_association.rb +136 -0
- data/lib/active_record/associations/has_many_through_association.rb +220 -0
- data/lib/active_record/associations/has_one_association.rb +118 -0
- data/lib/active_record/associations/has_one_through_association.rb +45 -0
- data/lib/active_record/associations/join_dependency.rb +258 -0
- data/lib/active_record/associations/join_dependency/join_association.rb +80 -0
- data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
- data/lib/active_record/associations/preloader.rb +201 -0
- data/lib/active_record/associations/preloader/association.rb +133 -0
- data/lib/active_record/associations/preloader/through_association.rb +116 -0
- data/lib/active_record/associations/singular_association.rb +59 -0
- data/lib/active_record/associations/through_association.rb +121 -0
- data/lib/active_record/attribute_assignment.rb +85 -0
- data/lib/active_record/attribute_decorators.rb +90 -0
- data/lib/active_record/attribute_methods.rb +420 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +81 -0
- data/lib/active_record/attribute_methods/dirty.rb +221 -0
- data/lib/active_record/attribute_methods/primary_key.rb +136 -0
- data/lib/active_record/attribute_methods/query.rb +41 -0
- data/lib/active_record/attribute_methods/read.rb +47 -0
- data/lib/active_record/attribute_methods/serialization.rb +90 -0
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +91 -0
- data/lib/active_record/attribute_methods/write.rb +61 -0
- data/lib/active_record/attributes.rb +279 -0
- data/lib/active_record/autosave_association.rb +508 -0
- data/lib/active_record/base.rb +328 -0
- data/lib/active_record/callbacks.rb +339 -0
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +50 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +1165 -0
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +85 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +512 -0
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +154 -0
- data/lib/active_record/connection_adapters/abstract/quoting.rb +251 -0
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +713 -0
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +93 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1475 -0
- data/lib/active_record/connection_adapters/abstract/transaction.rb +323 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +761 -0
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +821 -0
- data/lib/active_record/connection_adapters/column.rb +95 -0
- data/lib/active_record/connection_adapters/connection_specification.rb +297 -0
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +200 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +146 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +182 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +113 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +26 -0
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +205 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +222 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +776 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +949 -0
- data/lib/active_record/connection_adapters/schema_cache.rb +141 -0
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +118 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +103 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +137 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +557 -0
- data/lib/active_record/connection_adapters/statement_pool.rb +61 -0
- data/lib/active_record/connection_handling.rb +267 -0
- data/lib/active_record/core.rb +599 -0
- data/lib/active_record/counter_cache.rb +193 -0
- data/lib/active_record/database_configurations.rb +233 -0
- data/lib/active_record/database_configurations/database_config.rb +37 -0
- data/lib/active_record/database_configurations/hash_config.rb +50 -0
- data/lib/active_record/database_configurations/url_config.rb +79 -0
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +122 -0
- data/lib/active_record/enum.rb +274 -0
- data/lib/active_record/errors.rb +388 -0
- data/lib/active_record/explain.rb +50 -0
- data/lib/active_record/explain_registry.rb +32 -0
- data/lib/active_record/explain_subscriber.rb +34 -0
- data/lib/active_record/fixture_set/file.rb +82 -0
- data/lib/active_record/fixture_set/model_metadata.rb +33 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +153 -0
- data/lib/active_record/fixture_set/table_rows.rb +47 -0
- data/lib/active_record/fixtures.rb +738 -0
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +293 -0
- data/lib/active_record/insert_all.rb +179 -0
- data/lib/active_record/integration.rb +207 -0
- data/lib/active_record/internal_metadata.rb +53 -0
- data/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/lib/active_record/locale/en.yml +48 -0
- data/lib/active_record/locking/optimistic.rb +197 -0
- data/lib/active_record/locking/pessimistic.rb +89 -0
- data/lib/active_record/log_subscriber.rb +118 -0
- data/lib/active_record/middleware/database_selector.rb +75 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
- data/lib/active_record/migration.rb +1397 -0
- data/lib/active_record/migration/command_recorder.rb +284 -0
- data/lib/active_record/migration/compatibility.rb +244 -0
- data/lib/active_record/migration/join_table.rb +17 -0
- data/lib/active_record/model_schema.rb +542 -0
- data/lib/active_record/nested_attributes.rb +600 -0
- data/lib/active_record/no_touching.rb +65 -0
- data/lib/active_record/null_relation.rb +68 -0
- data/lib/active_record/persistence.rb +967 -0
- data/lib/active_record/query_cache.rb +52 -0
- data/lib/active_record/querying.rb +82 -0
- data/lib/active_record/railtie.rb +263 -0
- data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
- data/lib/active_record/railties/console_sandbox.rb +7 -0
- data/lib/active_record/railties/controller_runtime.rb +51 -0
- data/lib/active_record/railties/databases.rake +527 -0
- data/lib/active_record/readonly_attributes.rb +24 -0
- data/lib/active_record/reflection.rb +1042 -0
- data/lib/active_record/relation.rb +859 -0
- data/lib/active_record/relation/batches.rb +290 -0
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/calculations.rb +424 -0
- data/lib/active_record/relation/delegation.rb +130 -0
- data/lib/active_record/relation/finder_methods.rb +552 -0
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +184 -0
- data/lib/active_record/relation/predicate_builder.rb +150 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +49 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +1359 -0
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +77 -0
- data/lib/active_record/relation/where_clause.rb +190 -0
- data/lib/active_record/relation/where_clause_factory.rb +33 -0
- data/lib/active_record/result.rb +168 -0
- data/lib/active_record/runtime_registry.rb +24 -0
- data/lib/active_record/sanitization.rb +214 -0
- data/lib/active_record/schema.rb +61 -0
- data/lib/active_record/schema_dumper.rb +270 -0
- data/lib/active_record/schema_migration.rb +60 -0
- data/lib/active_record/scoping.rb +106 -0
- data/lib/active_record/scoping/default.rb +151 -0
- data/lib/active_record/scoping/named.rb +217 -0
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +22 -0
- data/lib/active_record/statement_cache.rb +148 -0
- data/lib/active_record/store.rb +290 -0
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +75 -0
- data/lib/active_record/tasks/database_tasks.rb +506 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +141 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +77 -0
- data/lib/active_record/test_databases.rb +23 -0
- data/lib/active_record/test_fixtures.rb +224 -0
- data/lib/active_record/timestamp.rb +167 -0
- data/lib/active_record/touch_later.rb +66 -0
- data/lib/active_record/transactions.rb +493 -0
- data/lib/active_record/translation.rb +24 -0
- data/lib/active_record/type.rb +78 -0
- data/lib/active_record/type/adapter_specific_registry.rb +129 -0
- data/lib/active_record/type/date.rb +9 -0
- data/lib/active_record/type/date_time.rb +9 -0
- data/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/lib/active_record/type/hash_lookup_type_map.rb +25 -0
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +71 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +21 -0
- data/lib/active_record/type/type_map.rb +62 -0
- data/lib/active_record/type/unsigned_integer.rb +17 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/type_caster/connection.rb +34 -0
- data/lib/active_record/type_caster/map.rb +20 -0
- data/lib/active_record/validations.rb +94 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +60 -0
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +68 -0
- data/lib/active_record/validations/uniqueness.rb +226 -0
- data/lib/active_record/version.rb +10 -0
- data/lib/arel.rb +51 -0
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes.rb +22 -0
- data/lib/arel/attributes/attribute.rb +37 -0
- data/lib/arel/collectors/bind.rb +24 -0
- data/lib/arel/collectors/composite.rb +31 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +20 -0
- data/lib/arel/collectors/substitute_binds.rb +28 -0
- data/lib/arel/crud.rb +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes.rb +68 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +52 -0
- data/lib/arel/nodes/bind_param.rb +36 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +50 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/delete_statement.rb +45 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +18 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +8 -0
- data/lib/arel/nodes/in.rb +8 -0
- data/lib/arel/nodes/infix_operation.rb +80 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +50 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +16 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +27 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +45 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +41 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +257 -0
- data/lib/arel/select_manager.rb +271 -0
- data/lib/arel/table.rb +110 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors.rb +20 -0
- data/lib/arel/visitors/depth_first.rb +204 -0
- data/lib/arel/visitors/dot.rb +297 -0
- data/lib/arel/visitors/ibm_db.rb +34 -0
- data/lib/arel/visitors/informix.rb +62 -0
- data/lib/arel/visitors/mssql.rb +157 -0
- data/lib/arel/visitors/mysql.rb +83 -0
- data/lib/arel/visitors/oracle.rb +159 -0
- data/lib/arel/visitors/oracle12.rb +66 -0
- data/lib/arel/visitors/postgresql.rb +110 -0
- data/lib/arel/visitors/sqlite.rb +39 -0
- data/lib/arel/visitors/to_sql.rb +889 -0
- data/lib/arel/visitors/visitor.rb +46 -0
- data/lib/arel/visitors/where_sql.rb +23 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/rails/generators/active_record.rb +19 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration.rb +48 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +75 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +49 -0
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
- metadata +415 -0
@@ -0,0 +1,388 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
# = Active Record Errors
|
5
|
+
#
|
6
|
+
# Generic Active Record exception class.
|
7
|
+
class ActiveRecordError < StandardError
|
8
|
+
end
|
9
|
+
|
10
|
+
# Raised when the single-table inheritance mechanism fails to locate the subclass
|
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
|
15
|
+
end
|
16
|
+
|
17
|
+
# Raised when an object assigned to an association has an incorrect type.
|
18
|
+
#
|
19
|
+
# class Ticket < ActiveRecord::Base
|
20
|
+
# has_many :patches
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# class Patch < ActiveRecord::Base
|
24
|
+
# belongs_to :ticket
|
25
|
+
# end
|
26
|
+
#
|
27
|
+
# # Comments are not patches, this assignment raises AssociationTypeMismatch.
|
28
|
+
# @ticket.patches << Comment.new(content: "Please attach tests to your patch.")
|
29
|
+
class AssociationTypeMismatch < ActiveRecordError
|
30
|
+
end
|
31
|
+
|
32
|
+
# Raised when unserialized object's type mismatches one specified for serializable field.
|
33
|
+
class SerializationTypeMismatch < ActiveRecordError
|
34
|
+
end
|
35
|
+
|
36
|
+
# Raised when adapter not specified on connection (or configuration file
|
37
|
+
# +config/database.yml+ misses adapter field).
|
38
|
+
class AdapterNotSpecified < ActiveRecordError
|
39
|
+
end
|
40
|
+
|
41
|
+
# Raised when Active Record cannot find database adapter specified in
|
42
|
+
# +config/database.yml+ or programmatically.
|
43
|
+
class AdapterNotFound < ActiveRecordError
|
44
|
+
end
|
45
|
+
|
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).
|
49
|
+
class ConnectionNotEstablished < ActiveRecordError
|
50
|
+
end
|
51
|
+
|
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.
|
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
|
67
|
+
end
|
68
|
+
|
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.
|
72
|
+
class RecordNotSaved < ActiveRecordError
|
73
|
+
attr_reader :record
|
74
|
+
|
75
|
+
def initialize(message = nil, record = nil)
|
76
|
+
@record = record
|
77
|
+
super(message)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
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
|
98
|
+
end
|
99
|
+
|
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
|
111
|
+
end
|
112
|
+
|
113
|
+
# Defunct wrapper class kept for compatibility.
|
114
|
+
# StatementInvalid wraps the original exception now.
|
115
|
+
class WrappedDatabaseException < StatementInvalid
|
116
|
+
end
|
117
|
+
|
118
|
+
# Raised when a record cannot be inserted or updated because it would violate a uniqueness constraint.
|
119
|
+
class RecordNotUnique < WrappedDatabaseException
|
120
|
+
end
|
121
|
+
|
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.
|
124
|
+
class InvalidForeignKey < WrappedDatabaseException
|
125
|
+
end
|
126
|
+
|
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.
|
175
|
+
#
|
176
|
+
# For example, when there are two placeholders with only one value supplied:
|
177
|
+
#
|
178
|
+
# Location.where("lat = ? AND lng = ?", 53.7362)
|
179
|
+
class PreparedStatementInvalid < ActiveRecordError
|
180
|
+
end
|
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
|
+
|
191
|
+
# Raised on attempt to save stale record. Record is stale when it's being saved in another query after
|
192
|
+
# instantiation, for example, when two users edit the same wiki page and one starts editing and saves
|
193
|
+
# the page before the other.
|
194
|
+
#
|
195
|
+
# Read more about optimistic locking in ActiveRecord::Locking module
|
196
|
+
# documentation.
|
197
|
+
class StaleObjectError < ActiveRecordError
|
198
|
+
attr_reader :record, :attempted_action
|
199
|
+
|
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
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
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.
|
216
|
+
class ConfigurationError < ActiveRecordError
|
217
|
+
end
|
218
|
+
|
219
|
+
# Raised on attempt to update record that is instantiated as read only.
|
220
|
+
class ReadOnlyRecord < ActiveRecordError
|
221
|
+
end
|
222
|
+
|
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
|
227
|
+
# the database transaction *and* pass on the exception. But if you raise an
|
228
|
+
# ActiveRecord::Rollback exception, then the database transaction will be rolled back,
|
229
|
+
# without passing on the exception.
|
230
|
+
#
|
231
|
+
# For example, you could do this in your controller to rollback a transaction:
|
232
|
+
#
|
233
|
+
# class BooksController < ActionController::Base
|
234
|
+
# def create
|
235
|
+
# Book.transaction do
|
236
|
+
# book = Book.new(params[:book])
|
237
|
+
# book.save!
|
238
|
+
# if today_is_friday?
|
239
|
+
# # The system must fail on Friday so that our support department
|
240
|
+
# # won't be out of job. We silently rollback this transaction
|
241
|
+
# # without telling the user.
|
242
|
+
# raise ActiveRecord::Rollback, "Call tech support!"
|
243
|
+
# end
|
244
|
+
# end
|
245
|
+
# # ActiveRecord::Rollback is the only exception that won't be passed on
|
246
|
+
# # by ActiveRecord::Base.transaction, so this line will still be reached
|
247
|
+
# # even on Friday.
|
248
|
+
# redirect_to root_url
|
249
|
+
# end
|
250
|
+
# end
|
251
|
+
class Rollback < ActiveRecordError
|
252
|
+
end
|
253
|
+
|
254
|
+
# Raised when attribute has a name reserved by Active Record (when attribute
|
255
|
+
# has name of one of Active Record instance methods).
|
256
|
+
class DangerousAttributeError < ActiveRecordError
|
257
|
+
end
|
258
|
+
|
259
|
+
# Raised when unknown attributes are supplied via mass assignment.
|
260
|
+
UnknownAttributeError = ActiveModel::UnknownAttributeError
|
261
|
+
|
262
|
+
# Raised when an error occurred while doing a mass assignment to an attribute through the
|
263
|
+
# {ActiveRecord::Base#attributes=}[rdoc-ref:AttributeAssignment#attributes=] method.
|
264
|
+
# The exception has an +attribute+ property that is the name of the offending attribute.
|
265
|
+
class AttributeAssignmentError < ActiveRecordError
|
266
|
+
attr_reader :exception, :attribute
|
267
|
+
|
268
|
+
def initialize(message = nil, exception = nil, attribute = nil)
|
269
|
+
super(message)
|
270
|
+
@exception = exception
|
271
|
+
@attribute = attribute
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
# Raised when there are multiple errors while doing a mass assignment through the
|
276
|
+
# {ActiveRecord::Base#attributes=}[rdoc-ref:AttributeAssignment#attributes=]
|
277
|
+
# method. The exception has an +errors+ property that contains an array of AttributeAssignmentError
|
278
|
+
# objects, each corresponding to the error while assigning to an attribute.
|
279
|
+
class MultiparameterAssignmentErrors < ActiveRecordError
|
280
|
+
attr_reader :errors
|
281
|
+
|
282
|
+
def initialize(errors = nil)
|
283
|
+
@errors = errors
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
287
|
+
# Raised when a primary key is needed, but not specified in the schema or model.
|
288
|
+
class UnknownPrimaryKey < ActiveRecordError
|
289
|
+
attr_reader :model
|
290
|
+
|
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
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
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
|
387
|
+
end
|
388
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_record/explain_registry"
|
4
|
+
|
5
|
+
module ActiveRecord
|
6
|
+
module Explain
|
7
|
+
# Executes the block with the collect flag enabled. Queries are collected
|
8
|
+
# asynchronously by the subscriber and returned.
|
9
|
+
def collecting_queries_for_explain # :nodoc:
|
10
|
+
ExplainRegistry.collect = true
|
11
|
+
yield
|
12
|
+
ExplainRegistry.queries
|
13
|
+
ensure
|
14
|
+
ExplainRegistry.reset
|
15
|
+
end
|
16
|
+
|
17
|
+
# Makes the adapter execute EXPLAIN for the tuples of queries and bindings.
|
18
|
+
# Returns a formatted string ready to be logged.
|
19
|
+
def exec_explain(queries) # :nodoc:
|
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)
|
28
|
+
end.join("\n")
|
29
|
+
|
30
|
+
# Overriding inspect to be more human readable, especially in the console.
|
31
|
+
def str.inspect
|
32
|
+
self
|
33
|
+
end
|
34
|
+
|
35
|
+
str
|
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
|
49
|
+
end
|
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
|