activerecord 4.2.0 → 6.1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +5 -5
 - data/CHANGELOG.md +1221 -796
 - data/MIT-LICENSE +4 -2
 - data/README.rdoc +15 -14
 - data/examples/performance.rb +33 -32
 - data/examples/simple.rb +5 -4
 - data/lib/active_record/aggregations.rb +267 -249
 - data/lib/active_record/association_relation.rb +45 -7
 - data/lib/active_record/associations/alias_tracker.rb +40 -43
 - data/lib/active_record/associations/association.rb +172 -67
 - data/lib/active_record/associations/association_scope.rb +105 -129
 - data/lib/active_record/associations/belongs_to_association.rb +85 -59
 - data/lib/active_record/associations/belongs_to_polymorphic_association.rb +13 -12
 - data/lib/active_record/associations/builder/association.rb +57 -43
 - data/lib/active_record/associations/builder/belongs_to.rb +74 -57
 - data/lib/active_record/associations/builder/collection_association.rb +15 -33
 - data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +57 -70
 - data/lib/active_record/associations/builder/has_many.rb +13 -5
 - data/lib/active_record/associations/builder/has_one.rb +44 -6
 - data/lib/active_record/associations/builder/singular_association.rb +16 -10
 - data/lib/active_record/associations/collection_association.rb +168 -279
 - data/lib/active_record/associations/collection_proxy.rb +263 -155
 - data/lib/active_record/associations/foreign_association.rb +33 -0
 - data/lib/active_record/associations/has_many_association.rb +57 -84
 - data/lib/active_record/associations/has_many_through_association.rb +70 -82
 - data/lib/active_record/associations/has_one_association.rb +74 -47
 - data/lib/active_record/associations/has_one_through_association.rb +20 -11
 - data/lib/active_record/associations/join_dependency/join_association.rb +54 -73
 - data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
 - data/lib/active_record/associations/join_dependency/join_part.rb +14 -14
 - data/lib/active_record/associations/join_dependency.rb +175 -164
 - data/lib/active_record/associations/preloader/association.rb +107 -112
 - data/lib/active_record/associations/preloader/through_association.rb +85 -65
 - data/lib/active_record/associations/preloader.rb +99 -96
 - data/lib/active_record/associations/singular_association.rb +18 -45
 - data/lib/active_record/associations/through_association.rb +49 -24
 - data/lib/active_record/associations.rb +1845 -1597
 - data/lib/active_record/attribute_assignment.rb +59 -185
 - data/lib/active_record/attribute_methods/before_type_cast.rb +20 -7
 - data/lib/active_record/attribute_methods/dirty.rb +168 -138
 - data/lib/active_record/attribute_methods/primary_key.rb +93 -83
 - data/lib/active_record/attribute_methods/query.rb +8 -10
 - data/lib/active_record/attribute_methods/read.rb +19 -79
 - data/lib/active_record/attribute_methods/serialization.rb +49 -24
 - data/lib/active_record/attribute_methods/time_zone_conversion.rb +59 -36
 - data/lib/active_record/attribute_methods/write.rb +25 -56
 - data/lib/active_record/attribute_methods.rb +153 -162
 - data/lib/active_record/attributes.rb +234 -70
 - data/lib/active_record/autosave_association.rb +157 -69
 - data/lib/active_record/base.rb +49 -50
 - data/lib/active_record/callbacks.rb +234 -79
 - data/lib/active_record/coders/json.rb +3 -1
 - data/lib/active_record/coders/yaml_column.rb +46 -13
 - data/lib/active_record/connection_adapters/abstract/connection_pool.rb +887 -317
 - data/lib/active_record/connection_adapters/abstract/database_limits.rb +17 -41
 - data/lib/active_record/connection_adapters/abstract/database_statements.rb +301 -113
 - data/lib/active_record/connection_adapters/abstract/query_cache.rb +78 -24
 - data/lib/active_record/connection_adapters/abstract/quoting.rb +187 -60
 - data/lib/active_record/connection_adapters/abstract/savepoints.rb +9 -7
 - data/lib/active_record/connection_adapters/abstract/schema_creation.rb +157 -93
 - data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +485 -253
 - data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
 - data/lib/active_record/connection_adapters/abstract/schema_statements.rb +909 -263
 - data/lib/active_record/connection_adapters/abstract/transaction.rb +254 -92
 - data/lib/active_record/connection_adapters/abstract_adapter.rb +492 -221
 - data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +580 -608
 - data/lib/active_record/connection_adapters/column.rb +67 -40
 - data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
 - data/lib/active_record/connection_adapters/legacy_pool_manager.rb +35 -0
 - data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
 - data/lib/active_record/connection_adapters/mysql/database_statements.rb +196 -0
 - data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
 - data/lib/active_record/connection_adapters/mysql/quoting.rb +96 -0
 - data/lib/active_record/connection_adapters/mysql/schema_creation.rb +97 -0
 - data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +103 -0
 - data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +91 -0
 - data/lib/active_record/connection_adapters/mysql/schema_statements.rb +271 -0
 - data/lib/active_record/connection_adapters/mysql/type_metadata.rb +40 -0
 - data/lib/active_record/connection_adapters/mysql2_adapter.rb +81 -199
 - data/lib/active_record/connection_adapters/pool_config.rb +73 -0
 - data/lib/active_record/connection_adapters/pool_manager.rb +47 -0
 - data/lib/active_record/connection_adapters/postgresql/column.rb +44 -11
 - data/lib/active_record/connection_adapters/postgresql/database_statements.rb +78 -161
 - data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/array.rb +49 -57
 - data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +9 -8
 - data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +5 -2
 - data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +8 -6
 - data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
 - data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +17 -13
 - data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
 - data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +6 -3
 - data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -20
 - data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
 - data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
 - data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
 - data/lib/active_record/connection_adapters/postgresql/oid/{infinity.rb → oid.rb} +5 -3
 - data/lib/active_record/connection_adapters/postgresql/oid/point.rb +32 -11
 - data/lib/active_record/connection_adapters/postgresql/oid/range.rb +70 -34
 - data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -1
 - data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +67 -51
 - data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +18 -4
 - data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
 - data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
 - data/lib/active_record/connection_adapters/postgresql/oid.rb +25 -25
 - data/lib/active_record/connection_adapters/postgresql/quoting.rb +171 -48
 - data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
 - data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +80 -0
 - data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +178 -108
 - data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +49 -0
 - data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +499 -293
 - data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +44 -0
 - data/lib/active_record/connection_adapters/postgresql/utils.rb +11 -8
 - data/lib/active_record/connection_adapters/postgresql_adapter.rb +595 -382
 - data/lib/active_record/connection_adapters/schema_cache.rb +191 -29
 - data/lib/active_record/connection_adapters/sql_type_metadata.rb +45 -0
 - data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +146 -0
 - data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
 - data/lib/active_record/connection_adapters/sqlite3/quoting.rb +102 -0
 - data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +21 -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 +170 -0
 - data/lib/active_record/connection_adapters/sqlite3_adapter.rb +322 -389
 - data/lib/active_record/connection_adapters/statement_pool.rb +33 -13
 - data/lib/active_record/connection_adapters.rb +52 -0
 - data/lib/active_record/connection_handling.rb +314 -41
 - data/lib/active_record/core.rb +488 -243
 - data/lib/active_record/counter_cache.rb +71 -50
 - data/lib/active_record/database_configurations/connection_url_resolver.rb +99 -0
 - data/lib/active_record/database_configurations/database_config.rb +80 -0
 - data/lib/active_record/database_configurations/hash_config.rb +96 -0
 - data/lib/active_record/database_configurations/url_config.rb +53 -0
 - data/lib/active_record/database_configurations.rb +273 -0
 - data/lib/active_record/delegated_type.rb +209 -0
 - data/lib/active_record/destroy_association_async_job.rb +36 -0
 - data/lib/active_record/dynamic_matchers.rb +87 -106
 - data/lib/active_record/enum.rb +212 -94
 - data/lib/active_record/errors.rb +225 -54
 - data/lib/active_record/explain.rb +27 -11
 - data/lib/active_record/explain_registry.rb +4 -2
 - data/lib/active_record/explain_subscriber.rb +11 -6
 - data/lib/active_record/fixture_set/file.rb +33 -14
 - data/lib/active_record/fixture_set/model_metadata.rb +32 -0
 - data/lib/active_record/fixture_set/render_context.rb +17 -0
 - data/lib/active_record/fixture_set/table_row.rb +152 -0
 - data/lib/active_record/fixture_set/table_rows.rb +46 -0
 - data/lib/active_record/fixtures.rb +273 -496
 - data/lib/active_record/gem_version.rb +6 -4
 - data/lib/active_record/inheritance.rb +175 -110
 - data/lib/active_record/insert_all.rb +212 -0
 - data/lib/active_record/integration.rb +121 -29
 - data/lib/active_record/internal_metadata.rb +64 -0
 - data/lib/active_record/legacy_yaml_adapter.rb +52 -0
 - data/lib/active_record/locale/en.yml +3 -2
 - data/lib/active_record/locking/optimistic.rb +103 -95
 - data/lib/active_record/locking/pessimistic.rb +22 -6
 - data/lib/active_record/log_subscriber.rb +93 -31
 - data/lib/active_record/middleware/database_selector/resolver/session.rb +48 -0
 - data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
 - data/lib/active_record/middleware/database_selector.rb +77 -0
 - data/lib/active_record/migration/command_recorder.rb +185 -90
 - data/lib/active_record/migration/compatibility.rb +298 -0
 - data/lib/active_record/migration/join_table.rb +8 -7
 - data/lib/active_record/migration.rb +685 -309
 - data/lib/active_record/model_schema.rb +420 -113
 - data/lib/active_record/nested_attributes.rb +265 -216
 - data/lib/active_record/no_touching.rb +15 -2
 - data/lib/active_record/null_relation.rb +24 -38
 - data/lib/active_record/persistence.rb +574 -135
 - data/lib/active_record/query_cache.rb +29 -23
 - data/lib/active_record/querying.rb +50 -31
 - data/lib/active_record/railtie.rb +175 -54
 - data/lib/active_record/railties/console_sandbox.rb +3 -3
 - data/lib/active_record/railties/controller_runtime.rb +34 -33
 - data/lib/active_record/railties/databases.rake +533 -216
 - data/lib/active_record/readonly_attributes.rb +9 -4
 - data/lib/active_record/reflection.rb +485 -310
 - data/lib/active_record/relation/batches/batch_enumerator.rb +85 -0
 - data/lib/active_record/relation/batches.rb +217 -59
 - data/lib/active_record/relation/calculations.rb +326 -244
 - data/lib/active_record/relation/delegation.rb +76 -84
 - data/lib/active_record/relation/finder_methods.rb +318 -256
 - data/lib/active_record/relation/from_clause.rb +30 -0
 - data/lib/active_record/relation/merger.rb +99 -84
 - data/lib/active_record/relation/predicate_builder/array_handler.rb +26 -25
 - data/lib/active_record/relation/predicate_builder/association_query_value.rb +42 -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 +57 -0
 - data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
 - data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
 - data/lib/active_record/relation/predicate_builder.rb +139 -96
 - data/lib/active_record/relation/query_attribute.rb +50 -0
 - data/lib/active_record/relation/query_methods.rb +757 -409
 - data/lib/active_record/relation/record_fetch_warning.rb +51 -0
 - data/lib/active_record/relation/spawn_methods.rb +23 -21
 - data/lib/active_record/relation/where_clause.rb +239 -0
 - data/lib/active_record/relation.rb +554 -342
 - data/lib/active_record/result.rb +91 -47
 - data/lib/active_record/runtime_registry.rb +6 -4
 - data/lib/active_record/sanitization.rb +134 -122
 - data/lib/active_record/schema.rb +21 -24
 - data/lib/active_record/schema_dumper.rb +141 -92
 - data/lib/active_record/schema_migration.rb +24 -26
 - data/lib/active_record/scoping/default.rb +96 -82
 - data/lib/active_record/scoping/named.rb +78 -36
 - data/lib/active_record/scoping.rb +45 -27
 - data/lib/active_record/secure_token.rb +48 -0
 - data/lib/active_record/serialization.rb +8 -6
 - data/lib/active_record/signed_id.rb +116 -0
 - data/lib/active_record/statement_cache.rb +89 -36
 - data/lib/active_record/store.rb +133 -43
 - data/lib/active_record/suppressor.rb +61 -0
 - data/lib/active_record/table_metadata.rb +81 -0
 - data/lib/active_record/tasks/database_tasks.rb +366 -129
 - data/lib/active_record/tasks/mysql_database_tasks.rb +68 -100
 - data/lib/active_record/tasks/postgresql_database_tasks.rb +87 -39
 - data/lib/active_record/tasks/sqlite_database_tasks.rb +44 -19
 - data/lib/active_record/test_databases.rb +24 -0
 - data/lib/active_record/test_fixtures.rb +291 -0
 - data/lib/active_record/timestamp.rb +86 -43
 - data/lib/active_record/touch_later.rb +65 -0
 - data/lib/active_record/transactions.rb +181 -152
 - data/lib/active_record/translation.rb +3 -1
 - data/lib/active_record/type/adapter_specific_registry.rb +126 -0
 - data/lib/active_record/type/date.rb +4 -41
 - data/lib/active_record/type/date_time.rb +4 -38
 - data/lib/active_record/type/decimal_without_scale.rb +6 -2
 - data/lib/active_record/type/hash_lookup_type_map.rb +12 -5
 - 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 +33 -15
 - data/lib/active_record/type/text.rb +2 -2
 - data/lib/active_record/type/time.rb +21 -16
 - data/lib/active_record/type/type_map.rb +16 -19
 - data/lib/active_record/type/unsigned_integer.rb +9 -8
 - data/lib/active_record/type.rb +84 -23
 - data/lib/active_record/type_caster/connection.rb +33 -0
 - data/lib/active_record/type_caster/map.rb +23 -0
 - data/lib/active_record/type_caster.rb +9 -0
 - data/lib/active_record/validations/absence.rb +25 -0
 - data/lib/active_record/validations/associated.rb +12 -4
 - data/lib/active_record/validations/length.rb +26 -0
 - data/lib/active_record/validations/numericality.rb +35 -0
 - data/lib/active_record/validations/presence.rb +14 -13
 - data/lib/active_record/validations/uniqueness.rb +65 -48
 - data/lib/active_record/validations.rb +39 -35
 - data/lib/active_record/version.rb +3 -1
 - data/lib/active_record.rb +44 -28
 - data/lib/arel/alias_predication.rb +9 -0
 - data/lib/arel/attributes/attribute.rb +41 -0
 - data/lib/arel/collectors/bind.rb +29 -0
 - data/lib/arel/collectors/composite.rb +39 -0
 - data/lib/arel/collectors/plain_string.rb +20 -0
 - data/lib/arel/collectors/sql_string.rb +27 -0
 - data/lib/arel/collectors/substitute_binds.rb +35 -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/and.rb +32 -0
 - data/lib/arel/nodes/ascending.rb +23 -0
 - data/lib/arel/nodes/binary.rb +126 -0
 - data/lib/arel/nodes/bind_param.rb +44 -0
 - data/lib/arel/nodes/case.rb +55 -0
 - data/lib/arel/nodes/casted.rb +62 -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 +15 -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 +11 -0
 - data/lib/arel/nodes/homogeneous_in.rb +76 -0
 - data/lib/arel/nodes/in.rb +15 -0
 - data/lib/arel/nodes/infix_operation.rb +92 -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 +51 -0
 - data/lib/arel/nodes/node_expression.rb +13 -0
 - data/lib/arel/nodes/ordering.rb +27 -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 +19 -0
 - data/lib/arel/nodes/string_join.rb +11 -0
 - data/lib/arel/nodes/table_alias.rb +31 -0
 - data/lib/arel/nodes/terminal.rb +16 -0
 - data/lib/arel/nodes/true.rb +16 -0
 - data/lib/arel/nodes/unary.rb +44 -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/nodes.rb +70 -0
 - data/lib/arel/order_predications.rb +13 -0
 - data/lib/arel/predications.rb +250 -0
 - data/lib/arel/select_manager.rb +270 -0
 - data/lib/arel/table.rb +118 -0
 - data/lib/arel/tree_manager.rb +72 -0
 - data/lib/arel/update_manager.rb +34 -0
 - data/lib/arel/visitors/dot.rb +308 -0
 - data/lib/arel/visitors/mysql.rb +93 -0
 - data/lib/arel/visitors/postgresql.rb +120 -0
 - data/lib/arel/visitors/sqlite.rb +38 -0
 - data/lib/arel/visitors/to_sql.rb +899 -0
 - data/lib/arel/visitors/visitor.rb +45 -0
 - data/lib/arel/visitors.rb +13 -0
 - data/lib/arel/window_predications.rb +9 -0
 - data/lib/arel.rb +54 -0
 - data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -0
 - data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
 - data/lib/rails/generators/active_record/migration/migration_generator.rb +43 -37
 - data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +26 -0
 - data/lib/rails/generators/active_record/migration/templates/{migration.rb → migration.rb.tt} +13 -10
 - data/lib/rails/generators/active_record/migration.rb +35 -1
 - data/lib/rails/generators/active_record/model/model_generator.rb +55 -22
 - data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
 - data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
 - data/lib/rails/generators/active_record.rb +7 -5
 - metadata +175 -65
 - data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
 - data/lib/active_record/associations/preloader/collection_association.rb +0 -24
 - data/lib/active_record/associations/preloader/has_many.rb +0 -17
 - data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
 - data/lib/active_record/associations/preloader/has_one.rb +0 -23
 - data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
 - data/lib/active_record/associations/preloader/singular_association.rb +0 -21
 - data/lib/active_record/attribute.rb +0 -149
 - data/lib/active_record/attribute_decorators.rb +0 -66
 - data/lib/active_record/attribute_set/builder.rb +0 -86
 - data/lib/active_record/attribute_set.rb +0 -77
 - data/lib/active_record/connection_adapters/connection_specification.rb +0 -275
 - data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -491
 - data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
 - data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
 - data/lib/active_record/connection_adapters/postgresql/oid/integer.rb +0 -11
 - data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
 - data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
 - data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
 - data/lib/active_record/serializers/xml_serializer.rb +0 -193
 - data/lib/active_record/type/big_integer.rb +0 -13
 - data/lib/active_record/type/binary.rb +0 -50
 - data/lib/active_record/type/boolean.rb +0 -30
 - data/lib/active_record/type/decimal.rb +0 -40
 - data/lib/active_record/type/decorator.rb +0 -14
 - data/lib/active_record/type/float.rb +0 -19
 - data/lib/active_record/type/integer.rb +0 -55
 - data/lib/active_record/type/mutable.rb +0 -16
 - data/lib/active_record/type/numeric.rb +0 -36
 - data/lib/active_record/type/string.rb +0 -36
 - data/lib/active_record/type/time_value.rb +0 -38
 - data/lib/active_record/type/value.rb +0 -101
 - data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -22
 - data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
 - /data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
 
| 
         @@ -1,8 +1,10 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require "active_support/core_ext/module/attribute_accessors"
         
     | 
| 
       2 
4 
     | 
    
         | 
| 
       3 
5 
     | 
    
         
             
            module ActiveRecord
         
     | 
| 
       4 
6 
     | 
    
         
             
              module AttributeMethods
         
     | 
| 
       5 
     | 
    
         
            -
                module Dirty 
     | 
| 
      
 7 
     | 
    
         
            +
                module Dirty
         
     | 
| 
       6 
8 
     | 
    
         
             
                  extend ActiveSupport::Concern
         
     | 
| 
       7 
9 
     | 
    
         | 
| 
       8 
10 
     | 
    
         
             
                  include ActiveModel::Dirty
         
     | 
| 
         @@ -12,170 +14,198 @@ module ActiveRecord 
     | 
|
| 
       12 
14 
     | 
    
         
             
                      raise "You cannot include Dirty after Timestamp"
         
     | 
| 
       13 
15 
     | 
    
         
             
                    end
         
     | 
| 
       14 
16 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
                    class_attribute :partial_writes, instance_writer: false
         
     | 
| 
       16 
     | 
    
         
            -
                    self.partial_writes = true
         
     | 
| 
       17 
     | 
    
         
            -
                  end
         
     | 
| 
      
 17 
     | 
    
         
            +
                    class_attribute :partial_writes, instance_writer: false, default: true
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
             
     | 
| 
       21 
     | 
    
         
            -
                     
     | 
| 
       22 
     | 
    
         
            -
             
     | 
| 
       23 
     | 
    
         
            -
                    end
         
     | 
| 
       24 
     | 
    
         
            -
                    status
         
     | 
| 
       25 
     | 
    
         
            -
                  end
         
     | 
| 
      
 19 
     | 
    
         
            +
                    # Attribute methods for "changed in last call to save?"
         
     | 
| 
      
 20 
     | 
    
         
            +
                    attribute_method_affix(prefix: "saved_change_to_", suffix: "?")
         
     | 
| 
      
 21 
     | 
    
         
            +
                    attribute_method_prefix("saved_change_to_")
         
     | 
| 
      
 22 
     | 
    
         
            +
                    attribute_method_suffix("_before_last_save")
         
     | 
| 
       26 
23 
     | 
    
         | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
                     
     | 
| 
       30 
     | 
    
         
            -
                      changes_applied
         
     | 
| 
       31 
     | 
    
         
            -
                    end
         
     | 
| 
      
 24 
     | 
    
         
            +
                    # Attribute methods for "will change if I call save?"
         
     | 
| 
      
 25 
     | 
    
         
            +
                    attribute_method_affix(prefix: "will_save_change_to_", suffix: "?")
         
     | 
| 
      
 26 
     | 
    
         
            +
                    attribute_method_suffix("_change_to_be_saved", "_in_database")
         
     | 
| 
       32 
27 
     | 
    
         
             
                  end
         
     | 
| 
       33 
28 
     | 
    
         | 
| 
       34 
29 
     | 
    
         
             
                  # <tt>reload</tt> the record and clears changed attributes.
         
     | 
| 
       35 
30 
     | 
    
         
             
                  def reload(*)
         
     | 
| 
       36 
31 
     | 
    
         
             
                    super.tap do
         
     | 
| 
       37 
     | 
    
         
            -
                       
     | 
| 
      
 32 
     | 
    
         
            +
                      @mutations_before_last_save = nil
         
     | 
| 
      
 33 
     | 
    
         
            +
                      @mutations_from_database = nil
         
     | 
| 
       38 
34 
     | 
    
         
             
                    end
         
     | 
| 
       39 
35 
     | 
    
         
             
                  end
         
     | 
| 
       40 
36 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
                   
     | 
| 
       42 
     | 
    
         
            -
             
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
                   
     | 
| 
       45 
     | 
    
         
            -
             
     | 
| 
       46 
     | 
    
         
            -
                   
     | 
| 
       47 
     | 
    
         
            -
             
     | 
| 
       48 
     | 
    
         
            -
             
     | 
| 
       49 
     | 
    
         
            -
                   
     | 
| 
       50 
     | 
    
         
            -
             
     | 
| 
       51 
     | 
    
         
            -
                   
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
     | 
    
         
            -
                   
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
             
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
       61 
     | 
    
         
            -
             
     | 
| 
       62 
     | 
    
         
            -
             
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
     | 
    
         
            -
                   
     | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
                   
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
       68 
     | 
    
         
            -
             
     | 
| 
       69 
     | 
    
         
            -
             
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
                   
     | 
| 
       73 
     | 
    
         
            -
             
     | 
| 
       74 
     | 
    
         
            -
             
     | 
| 
      
 37 
     | 
    
         
            +
                  # Did this attribute change when we last saved?
         
     | 
| 
      
 38 
     | 
    
         
            +
                  #
         
     | 
| 
      
 39 
     | 
    
         
            +
                  # This method is useful in after callbacks to determine if an attribute
         
     | 
| 
      
 40 
     | 
    
         
            +
                  # was changed during the save that triggered the callbacks to run. It can
         
     | 
| 
      
 41 
     | 
    
         
            +
                  # be invoked as +saved_change_to_name?+ instead of
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # <tt>saved_change_to_attribute?("name")</tt>.
         
     | 
| 
      
 43 
     | 
    
         
            +
                  #
         
     | 
| 
      
 44 
     | 
    
         
            +
                  # ==== Options
         
     | 
| 
      
 45 
     | 
    
         
            +
                  #
         
     | 
| 
      
 46 
     | 
    
         
            +
                  # +from+ When passed, this method will return false unless the original
         
     | 
| 
      
 47 
     | 
    
         
            +
                  # value is equal to the given option
         
     | 
| 
      
 48 
     | 
    
         
            +
                  #
         
     | 
| 
      
 49 
     | 
    
         
            +
                  # +to+ When passed, this method will return false unless the value was
         
     | 
| 
      
 50 
     | 
    
         
            +
                  # changed to the given value
         
     | 
| 
      
 51 
     | 
    
         
            +
                  def saved_change_to_attribute?(attr_name, **options)
         
     | 
| 
      
 52 
     | 
    
         
            +
                    mutations_before_last_save.changed?(attr_name.to_s, **options)
         
     | 
| 
      
 53 
     | 
    
         
            +
                  end
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                  # Returns the change to an attribute during the last save. If the
         
     | 
| 
      
 56 
     | 
    
         
            +
                  # attribute was changed, the result will be an array containing the
         
     | 
| 
      
 57 
     | 
    
         
            +
                  # original value and the saved value.
         
     | 
| 
      
 58 
     | 
    
         
            +
                  #
         
     | 
| 
      
 59 
     | 
    
         
            +
                  # This method is useful in after callbacks, to see the change in an
         
     | 
| 
      
 60 
     | 
    
         
            +
                  # attribute during the save that triggered the callbacks to run. It can be
         
     | 
| 
      
 61 
     | 
    
         
            +
                  # invoked as +saved_change_to_name+ instead of
         
     | 
| 
      
 62 
     | 
    
         
            +
                  # <tt>saved_change_to_attribute("name")</tt>.
         
     | 
| 
      
 63 
     | 
    
         
            +
                  def saved_change_to_attribute(attr_name)
         
     | 
| 
      
 64 
     | 
    
         
            +
                    mutations_before_last_save.change_to_attribute(attr_name.to_s)
         
     | 
| 
      
 65 
     | 
    
         
            +
                  end
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                  # Returns the original value of an attribute before the last save.
         
     | 
| 
      
 68 
     | 
    
         
            +
                  #
         
     | 
| 
      
 69 
     | 
    
         
            +
                  # This method is useful in after callbacks to get the original value of an
         
     | 
| 
      
 70 
     | 
    
         
            +
                  # attribute before the save that triggered the callbacks to run. It can be
         
     | 
| 
      
 71 
     | 
    
         
            +
                  # invoked as +name_before_last_save+ instead of
         
     | 
| 
      
 72 
     | 
    
         
            +
                  # <tt>attribute_before_last_save("name")</tt>.
         
     | 
| 
      
 73 
     | 
    
         
            +
                  def attribute_before_last_save(attr_name)
         
     | 
| 
      
 74 
     | 
    
         
            +
                    mutations_before_last_save.original_value(attr_name.to_s)
         
     | 
| 
      
 75 
     | 
    
         
            +
                  end
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
                  # Did the last call to +save+ have any changes to change?
         
     | 
| 
      
 78 
     | 
    
         
            +
                  def saved_changes?
         
     | 
| 
      
 79 
     | 
    
         
            +
                    mutations_before_last_save.any_changes?
         
     | 
| 
      
 80 
     | 
    
         
            +
                  end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                  # Returns a hash containing all the changes that were just saved.
         
     | 
| 
      
 83 
     | 
    
         
            +
                  def saved_changes
         
     | 
| 
      
 84 
     | 
    
         
            +
                    mutations_before_last_save.changes
         
     | 
| 
      
 85 
     | 
    
         
            +
                  end
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
                  # Will this attribute change the next time we save?
         
     | 
| 
      
 88 
     | 
    
         
            +
                  #
         
     | 
| 
      
 89 
     | 
    
         
            +
                  # This method is useful in validations and before callbacks to determine
         
     | 
| 
      
 90 
     | 
    
         
            +
                  # if the next call to +save+ will change a particular attribute. It can be
         
     | 
| 
      
 91 
     | 
    
         
            +
                  # invoked as +will_save_change_to_name?+ instead of
         
     | 
| 
      
 92 
     | 
    
         
            +
                  # <tt>will_save_change_to_attribute?("name")</tt>.
         
     | 
| 
      
 93 
     | 
    
         
            +
                  #
         
     | 
| 
      
 94 
     | 
    
         
            +
                  # ==== Options
         
     | 
| 
      
 95 
     | 
    
         
            +
                  #
         
     | 
| 
      
 96 
     | 
    
         
            +
                  # +from+ When passed, this method will return false unless the original
         
     | 
| 
      
 97 
     | 
    
         
            +
                  # value is equal to the given option
         
     | 
| 
      
 98 
     | 
    
         
            +
                  #
         
     | 
| 
      
 99 
     | 
    
         
            +
                  # +to+ When passed, this method will return false unless the value will be
         
     | 
| 
      
 100 
     | 
    
         
            +
                  # changed to the given value
         
     | 
| 
      
 101 
     | 
    
         
            +
                  def will_save_change_to_attribute?(attr_name, **options)
         
     | 
| 
      
 102 
     | 
    
         
            +
                    mutations_from_database.changed?(attr_name.to_s, **options)
         
     | 
| 
      
 103 
     | 
    
         
            +
                  end
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                  # Returns the change to an attribute that will be persisted during the
         
     | 
| 
      
 106 
     | 
    
         
            +
                  # next save.
         
     | 
| 
      
 107 
     | 
    
         
            +
                  #
         
     | 
| 
      
 108 
     | 
    
         
            +
                  # This method is useful in validations and before callbacks, to see the
         
     | 
| 
      
 109 
     | 
    
         
            +
                  # change to an attribute that will occur when the record is saved. It can
         
     | 
| 
      
 110 
     | 
    
         
            +
                  # be invoked as +name_change_to_be_saved+ instead of
         
     | 
| 
      
 111 
     | 
    
         
            +
                  # <tt>attribute_change_to_be_saved("name")</tt>.
         
     | 
| 
      
 112 
     | 
    
         
            +
                  #
         
     | 
| 
      
 113 
     | 
    
         
            +
                  # If the attribute will change, the result will be an array containing the
         
     | 
| 
      
 114 
     | 
    
         
            +
                  # original value and the new value about to be saved.
         
     | 
| 
      
 115 
     | 
    
         
            +
                  def attribute_change_to_be_saved(attr_name)
         
     | 
| 
      
 116 
     | 
    
         
            +
                    mutations_from_database.change_to_attribute(attr_name.to_s)
         
     | 
| 
      
 117 
     | 
    
         
            +
                  end
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
                  # Returns the value of an attribute in the database, as opposed to the
         
     | 
| 
      
 120 
     | 
    
         
            +
                  # in-memory value that will be persisted the next time the record is
         
     | 
| 
      
 121 
     | 
    
         
            +
                  # saved.
         
     | 
| 
      
 122 
     | 
    
         
            +
                  #
         
     | 
| 
      
 123 
     | 
    
         
            +
                  # This method is useful in validations and before callbacks, to see the
         
     | 
| 
      
 124 
     | 
    
         
            +
                  # original value of an attribute prior to any changes about to be
         
     | 
| 
      
 125 
     | 
    
         
            +
                  # saved. It can be invoked as +name_in_database+ instead of
         
     | 
| 
      
 126 
     | 
    
         
            +
                  # <tt>attribute_in_database("name")</tt>.
         
     | 
| 
      
 127 
     | 
    
         
            +
                  def attribute_in_database(attr_name)
         
     | 
| 
      
 128 
     | 
    
         
            +
                    mutations_from_database.original_value(attr_name.to_s)
         
     | 
| 
      
 129 
     | 
    
         
            +
                  end
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
                  # Will the next call to +save+ have any changes to persist?
         
     | 
| 
      
 132 
     | 
    
         
            +
                  def has_changes_to_save?
         
     | 
| 
      
 133 
     | 
    
         
            +
                    mutations_from_database.any_changes?
         
     | 
| 
      
 134 
     | 
    
         
            +
                  end
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
                  # Returns a hash containing all the changes that will be persisted during
         
     | 
| 
      
 137 
     | 
    
         
            +
                  # the next save.
         
     | 
| 
      
 138 
     | 
    
         
            +
                  def changes_to_save
         
     | 
| 
      
 139 
     | 
    
         
            +
                    mutations_from_database.changes
         
     | 
| 
      
 140 
     | 
    
         
            +
                  end
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
                  # Returns an array of the names of any attributes that will change when
         
     | 
| 
      
 143 
     | 
    
         
            +
                  # the record is next saved.
         
     | 
| 
      
 144 
     | 
    
         
            +
                  def changed_attribute_names_to_save
         
     | 
| 
      
 145 
     | 
    
         
            +
                    mutations_from_database.changed_attribute_names
         
     | 
| 
      
 146 
     | 
    
         
            +
                  end
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     | 
| 
      
 148 
     | 
    
         
            +
                  # Returns a hash of the attributes that will change when the record is
         
     | 
| 
      
 149 
     | 
    
         
            +
                  # next saved.
         
     | 
| 
      
 150 
     | 
    
         
            +
                  #
         
     | 
| 
      
 151 
     | 
    
         
            +
                  # The hash keys are the attribute names, and the hash values are the
         
     | 
| 
      
 152 
     | 
    
         
            +
                  # original attribute values in the database (as opposed to the in-memory
         
     | 
| 
      
 153 
     | 
    
         
            +
                  # values about to be saved).
         
     | 
| 
      
 154 
     | 
    
         
            +
                  def attributes_in_database
         
     | 
| 
      
 155 
     | 
    
         
            +
                    mutations_from_database.changed_values
         
     | 
| 
       75 
156 
     | 
    
         
             
                  end
         
     | 
| 
       76 
157 
     | 
    
         | 
| 
       77 
158 
     | 
    
         
             
                  private
         
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
       80 
     | 
    
         
            -
             
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
                      set_attribute_was(attr, orig_value) if _field_changed?(attr, orig_value)
         
     | 
| 
      
 159 
     | 
    
         
            +
                    def write_attribute_without_type_cast(attr_name, value)
         
     | 
| 
      
 160 
     | 
    
         
            +
                      result = super
         
     | 
| 
      
 161 
     | 
    
         
            +
                      clear_attribute_change(attr_name)
         
     | 
| 
      
 162 
     | 
    
         
            +
                      result
         
     | 
| 
       83 
163 
     | 
    
         
             
                    end
         
     | 
| 
       84 
     | 
    
         
            -
                  end
         
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
       86 
     | 
    
         
            -
                  # Wrap write_attribute to remember original attribute value.
         
     | 
| 
       87 
     | 
    
         
            -
                  def write_attribute(attr, value)
         
     | 
| 
       88 
     | 
    
         
            -
                    attr = attr.to_s
         
     | 
| 
       89 
     | 
    
         
            -
             
     | 
| 
       90 
     | 
    
         
            -
                    old_value = old_attribute_value(attr)
         
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
                    result = super
         
     | 
| 
       93 
     | 
    
         
            -
                    store_original_raw_attribute(attr)
         
     | 
| 
       94 
     | 
    
         
            -
                    save_changed_attribute(attr, old_value)
         
     | 
| 
       95 
     | 
    
         
            -
                    result
         
     | 
| 
       96 
     | 
    
         
            -
                  end
         
     | 
| 
       97 
164 
     | 
    
         | 
| 
       98 
     | 
    
         
            -
             
     | 
| 
       99 
     | 
    
         
            -
             
     | 
| 
      
 165 
     | 
    
         
            +
                    def _touch_row(attribute_names, time)
         
     | 
| 
      
 166 
     | 
    
         
            +
                      @_touch_attr_names = Set.new(attribute_names)
         
     | 
| 
       100 
167 
     | 
    
         | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
       102 
     | 
    
         
            -
                    original_raw_attributes[attr] = value
         
     | 
| 
       103 
     | 
    
         
            -
                    result
         
     | 
| 
       104 
     | 
    
         
            -
                  end
         
     | 
| 
      
 168 
     | 
    
         
            +
                      affected_rows = super
         
     | 
| 
       105 
169 
     | 
    
         | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
     | 
    
         
            -
             
     | 
| 
       110 
     | 
    
         
            -
                      set_attribute_was(attr, old_value) if _field_changed?(attr, old_value)
         
     | 
| 
       111 
     | 
    
         
            -
                    end
         
     | 
| 
       112 
     | 
    
         
            -
                  end
         
     | 
| 
      
 170 
     | 
    
         
            +
                      if @_skip_dirty_tracking ||= false
         
     | 
| 
      
 171 
     | 
    
         
            +
                        clear_attribute_changes(@_touch_attr_names)
         
     | 
| 
      
 172 
     | 
    
         
            +
                        return affected_rows
         
     | 
| 
      
 173 
     | 
    
         
            +
                      end
         
     | 
| 
       113 
174 
     | 
    
         | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
                    else
         
     | 
| 
       118 
     | 
    
         
            -
                      clone_attribute_value(:_read_attribute, attr)
         
     | 
| 
       119 
     | 
    
         
            -
                    end
         
     | 
| 
       120 
     | 
    
         
            -
                  end
         
     | 
| 
      
 175 
     | 
    
         
            +
                      changes = {}
         
     | 
| 
      
 176 
     | 
    
         
            +
                      @attributes.keys.each do |attr_name|
         
     | 
| 
      
 177 
     | 
    
         
            +
                        next if @_touch_attr_names.include?(attr_name)
         
     | 
| 
       121 
178 
     | 
    
         | 
| 
       122 
     | 
    
         
            -
             
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
       124 
     | 
    
         
            -
             
     | 
| 
      
 179 
     | 
    
         
            +
                        if attribute_changed?(attr_name)
         
     | 
| 
      
 180 
     | 
    
         
            +
                          changes[attr_name] = _read_attribute(attr_name)
         
     | 
| 
      
 181 
     | 
    
         
            +
                          _write_attribute(attr_name, attribute_was(attr_name))
         
     | 
| 
      
 182 
     | 
    
         
            +
                          clear_attribute_change(attr_name)
         
     | 
| 
      
 183 
     | 
    
         
            +
                        end
         
     | 
| 
      
 184 
     | 
    
         
            +
                      end
         
     | 
| 
       125 
185 
     | 
    
         | 
| 
       126 
     | 
    
         
            -
             
     | 
| 
       127 
     | 
    
         
            -
             
     | 
| 
       128 
     | 
    
         
            -
                  end
         
     | 
| 
       129 
     | 
    
         
            -
             
     | 
| 
       130 
     | 
    
         
            -
                  # Serialized attributes should always be written in case they've been
         
     | 
| 
       131 
     | 
    
         
            -
                  # changed in place.
         
     | 
| 
       132 
     | 
    
         
            -
                  def keys_for_partial_write
         
     | 
| 
       133 
     | 
    
         
            -
                    changed
         
     | 
| 
       134 
     | 
    
         
            -
                  end
         
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
       136 
     | 
    
         
            -
                  def _field_changed?(attr, old_value)
         
     | 
| 
       137 
     | 
    
         
            -
                    @attributes[attr].changed_from?(old_value)
         
     | 
| 
       138 
     | 
    
         
            -
                  end
         
     | 
| 
      
 186 
     | 
    
         
            +
                      changes_applied
         
     | 
| 
      
 187 
     | 
    
         
            +
                      changes.each { |attr_name, value| _write_attribute(attr_name, value) }
         
     | 
| 
       139 
188 
     | 
    
         | 
| 
       140 
     | 
    
         
            -
             
     | 
| 
       141 
     | 
    
         
            -
                     
     | 
| 
       142 
     | 
    
         
            -
                       
     | 
| 
       143 
     | 
    
         
            -
                      h[attr_name] = orig
         
     | 
| 
      
 189 
     | 
    
         
            +
                      affected_rows
         
     | 
| 
      
 190 
     | 
    
         
            +
                    ensure
         
     | 
| 
      
 191 
     | 
    
         
            +
                      @_touch_attr_names, @_skip_dirty_tracking = nil, nil
         
     | 
| 
       144 
192 
     | 
    
         
             
                    end
         
     | 
| 
       145 
     | 
    
         
            -
                  end
         
     | 
| 
       146 
193 
     | 
    
         | 
| 
       147 
     | 
    
         
            -
             
     | 
| 
       148 
     | 
    
         
            -
             
     | 
| 
       149 
     | 
    
         
            -
                       
     | 
| 
      
 194 
     | 
    
         
            +
                    def _update_record(attribute_names = attribute_names_for_partial_writes)
         
     | 
| 
      
 195 
     | 
    
         
            +
                      affected_rows = super
         
     | 
| 
      
 196 
     | 
    
         
            +
                      changes_applied
         
     | 
| 
      
 197 
     | 
    
         
            +
                      affected_rows
         
     | 
| 
       150 
198 
     | 
    
         
             
                    end
         
     | 
| 
       151 
     | 
    
         
            -
                  end
         
     | 
| 
       152 
199 
     | 
    
         | 
| 
       153 
     | 
    
         
            -
             
     | 
| 
       154 
     | 
    
         
            -
             
     | 
| 
       155 
     | 
    
         
            -
                       
     | 
| 
      
 200 
     | 
    
         
            +
                    def _create_record(attribute_names = attribute_names_for_partial_writes)
         
     | 
| 
      
 201 
     | 
    
         
            +
                      id = super
         
     | 
| 
      
 202 
     | 
    
         
            +
                      changes_applied
         
     | 
| 
      
 203 
     | 
    
         
            +
                      id
         
     | 
| 
       156 
204 
     | 
    
         
             
                    end
         
     | 
| 
       157 
     | 
    
         
            -
                  end
         
     | 
| 
       158 
     | 
    
         
            -
             
     | 
| 
       159 
     | 
    
         
            -
                  def original_raw_attributes
         
     | 
| 
       160 
     | 
    
         
            -
                    @original_raw_attributes ||= {}
         
     | 
| 
       161 
     | 
    
         
            -
                  end
         
     | 
| 
       162 
     | 
    
         
            -
             
     | 
| 
       163 
     | 
    
         
            -
                  def store_original_raw_attribute(attr_name)
         
     | 
| 
       164 
     | 
    
         
            -
                    original_raw_attributes[attr_name] = @attributes[attr_name].value_for_database
         
     | 
| 
       165 
     | 
    
         
            -
                  end
         
     | 
| 
       166 
205 
     | 
    
         | 
| 
       167 
     | 
    
         
            -
             
     | 
| 
       168 
     | 
    
         
            -
             
     | 
| 
       169 
     | 
    
         
            -
                      store_original_raw_attribute(attr)
         
     | 
| 
      
 206 
     | 
    
         
            +
                    def attribute_names_for_partial_writes
         
     | 
| 
      
 207 
     | 
    
         
            +
                      partial_writes? ? changed_attribute_names_to_save : attribute_names
         
     | 
| 
       170 
208 
     | 
    
         
             
                    end
         
     | 
| 
       171 
     | 
    
         
            -
                  end
         
     | 
| 
       172 
     | 
    
         
            -
             
     | 
| 
       173 
     | 
    
         
            -
                  def cache_changed_attributes
         
     | 
| 
       174 
     | 
    
         
            -
                    @cached_changed_attributes = changed_attributes
         
     | 
| 
       175 
     | 
    
         
            -
                    yield
         
     | 
| 
       176 
     | 
    
         
            -
                  ensure
         
     | 
| 
       177 
     | 
    
         
            -
                    remove_instance_variable(:@cached_changed_attributes)
         
     | 
| 
       178 
     | 
    
         
            -
                  end
         
     | 
| 
       179 
209 
     | 
    
         
             
                end
         
     | 
| 
       180 
210 
     | 
    
         
             
              end
         
     | 
| 
       181 
211 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,128 +1,138 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require "set"
         
     | 
| 
       2 
4 
     | 
    
         | 
| 
       3 
5 
     | 
    
         
             
            module ActiveRecord
         
     | 
| 
       4 
6 
     | 
    
         
             
              module AttributeMethods
         
     | 
| 
       5 
7 
     | 
    
         
             
                module PrimaryKey
         
     | 
| 
       6 
8 
     | 
    
         
             
                  extend ActiveSupport::Concern
         
     | 
| 
       7 
9 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
                  # Returns this record's primary key value wrapped in an  
     | 
| 
      
 10 
     | 
    
         
            +
                  # Returns this record's primary key value wrapped in an array if one is
         
     | 
| 
       9 
11 
     | 
    
         
             
                  # available.
         
     | 
| 
       10 
12 
     | 
    
         
             
                  def to_key
         
     | 
| 
       11 
     | 
    
         
            -
                     
     | 
| 
       12 
     | 
    
         
            -
                    key = self.id
         
     | 
| 
      
 13 
     | 
    
         
            +
                    key = id
         
     | 
| 
       13 
14 
     | 
    
         
             
                    [key] if key
         
     | 
| 
       14 
15 
     | 
    
         
             
                  end
         
     | 
| 
       15 
16 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
                  # Returns the primary key value.
         
     | 
| 
      
 17 
     | 
    
         
            +
                  # Returns the primary key column's value.
         
     | 
| 
       17 
18 
     | 
    
         
             
                  def id
         
     | 
| 
       18 
     | 
    
         
            -
                     
     | 
| 
       19 
     | 
    
         
            -
                      sync_with_transaction_state
         
     | 
| 
       20 
     | 
    
         
            -
                      _read_attribute(pk)
         
     | 
| 
       21 
     | 
    
         
            -
                    end
         
     | 
| 
      
 19 
     | 
    
         
            +
                    _read_attribute(@primary_key)
         
     | 
| 
       22 
20 
     | 
    
         
             
                  end
         
     | 
| 
       23 
21 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
                  # Sets the primary key value.
         
     | 
| 
      
 22 
     | 
    
         
            +
                  # Sets the primary key column's value.
         
     | 
| 
       25 
23 
     | 
    
         
             
                  def id=(value)
         
     | 
| 
       26 
     | 
    
         
            -
                     
     | 
| 
       27 
     | 
    
         
            -
                    write_attribute(self.class.primary_key, value) if self.class.primary_key
         
     | 
| 
      
 24 
     | 
    
         
            +
                    _write_attribute(@primary_key, value)
         
     | 
| 
       28 
25 
     | 
    
         
             
                  end
         
     | 
| 
       29 
26 
     | 
    
         | 
| 
       30 
     | 
    
         
            -
                  # Queries the primary key value.
         
     | 
| 
      
 27 
     | 
    
         
            +
                  # Queries the primary key column's value.
         
     | 
| 
       31 
28 
     | 
    
         
             
                  def id?
         
     | 
| 
       32 
     | 
    
         
            -
                     
     | 
| 
       33 
     | 
    
         
            -
                    query_attribute(self.class.primary_key)
         
     | 
| 
      
 29 
     | 
    
         
            +
                    query_attribute(@primary_key)
         
     | 
| 
       34 
30 
     | 
    
         
             
                  end
         
     | 
| 
       35 
31 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
                  # Returns the primary key value before type cast.
         
     | 
| 
      
 32 
     | 
    
         
            +
                  # Returns the primary key column's value before type cast.
         
     | 
| 
       37 
33 
     | 
    
         
             
                  def id_before_type_cast
         
     | 
| 
       38 
     | 
    
         
            -
                     
     | 
| 
       39 
     | 
    
         
            -
                    read_attribute_before_type_cast(self.class.primary_key)
         
     | 
| 
      
 34 
     | 
    
         
            +
                    attribute_before_type_cast(@primary_key)
         
     | 
| 
       40 
35 
     | 
    
         
             
                  end
         
     | 
| 
       41 
36 
     | 
    
         | 
| 
       42 
     | 
    
         
            -
                  # Returns the primary key previous value.
         
     | 
| 
      
 37 
     | 
    
         
            +
                  # Returns the primary key column's previous value.
         
     | 
| 
       43 
38 
     | 
    
         
             
                  def id_was
         
     | 
| 
       44 
     | 
    
         
            -
                     
     | 
| 
       45 
     | 
    
         
            -
                    attribute_was(self.class.primary_key)
         
     | 
| 
      
 39 
     | 
    
         
            +
                    attribute_was(@primary_key)
         
     | 
| 
       46 
40 
     | 
    
         
             
                  end
         
     | 
| 
       47 
41 
     | 
    
         | 
| 
       48 
     | 
    
         
            -
                   
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
             
     | 
| 
       51 
     | 
    
         
            -
                    attr_name == 'id' || super
         
     | 
| 
      
 42 
     | 
    
         
            +
                  # Returns the primary key column's value from the database.
         
     | 
| 
      
 43 
     | 
    
         
            +
                  def id_in_database
         
     | 
| 
      
 44 
     | 
    
         
            +
                    attribute_in_database(@primary_key)
         
     | 
| 
       52 
45 
     | 
    
         
             
                  end
         
     | 
| 
       53 
46 
     | 
    
         | 
| 
       54 
     | 
    
         
            -
                   
     | 
| 
       55 
     | 
    
         
            -
                     
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
      
 47 
     | 
    
         
            +
                  def id_for_database # :nodoc:
         
     | 
| 
      
 48 
     | 
    
         
            +
                    @attributes[@primary_key].value_for_database
         
     | 
| 
      
 49 
     | 
    
         
            +
                  end
         
     | 
| 
       57 
50 
     | 
    
         | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
             
     | 
| 
       60 
     | 
    
         
            -
                       
     | 
| 
      
 51 
     | 
    
         
            +
                  private
         
     | 
| 
      
 52 
     | 
    
         
            +
                    def attribute_method?(attr_name)
         
     | 
| 
      
 53 
     | 
    
         
            +
                      attr_name == "id" || super
         
     | 
| 
       61 
54 
     | 
    
         
             
                    end
         
     | 
| 
       62 
55 
     | 
    
         | 
| 
       63 
     | 
    
         
            -
                     
     | 
| 
      
 56 
     | 
    
         
            +
                    module ClassMethods
         
     | 
| 
      
 57 
     | 
    
         
            +
                      ID_ATTRIBUTE_METHODS = %w(id id= id? id_before_type_cast id_was id_in_database id_for_database).to_set
         
     | 
| 
       64 
58 
     | 
    
         | 
| 
       65 
     | 
    
         
            -
             
     | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
      
 59 
     | 
    
         
            +
                      def instance_method_already_implemented?(method_name)
         
     | 
| 
      
 60 
     | 
    
         
            +
                        super || primary_key && ID_ATTRIBUTE_METHODS.include?(method_name)
         
     | 
| 
      
 61 
     | 
    
         
            +
                      end
         
     | 
| 
       68 
62 
     | 
    
         | 
| 
       69 
     | 
    
         
            -
             
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
             
     | 
| 
       72 
     | 
    
         
            -
                    def primary_key
         
     | 
| 
       73 
     | 
    
         
            -
                      @primary_key = reset_primary_key unless defined? @primary_key
         
     | 
| 
       74 
     | 
    
         
            -
                      @primary_key
         
     | 
| 
       75 
     | 
    
         
            -
                    end
         
     | 
| 
      
 63 
     | 
    
         
            +
                      def dangerous_attribute_method?(method_name)
         
     | 
| 
      
 64 
     | 
    
         
            +
                        super && !ID_ATTRIBUTE_METHODS.include?(method_name)
         
     | 
| 
      
 65 
     | 
    
         
            +
                      end
         
     | 
| 
       76 
66 
     | 
    
         | 
| 
       77 
     | 
    
         
            -
             
     | 
| 
       78 
     | 
    
         
            -
             
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
       80 
     | 
    
         
            -
                       
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
      
 67 
     | 
    
         
            +
                      # Defines the primary key field -- can be overridden in subclasses.
         
     | 
| 
      
 68 
     | 
    
         
            +
                      # Overwriting will negate any effect of the +primary_key_prefix_type+
         
     | 
| 
      
 69 
     | 
    
         
            +
                      # setting, though.
         
     | 
| 
      
 70 
     | 
    
         
            +
                      def primary_key
         
     | 
| 
      
 71 
     | 
    
         
            +
                        @primary_key = reset_primary_key unless defined? @primary_key
         
     | 
| 
      
 72 
     | 
    
         
            +
                        @primary_key
         
     | 
| 
      
 73 
     | 
    
         
            +
                      end
         
     | 
| 
       82 
74 
     | 
    
         | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
                       
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
     | 
    
         
            -
                        self.primary_key = base_class.primary_key
         
     | 
| 
      
 75 
     | 
    
         
            +
                      # Returns a quoted version of the primary key name, used to construct
         
     | 
| 
      
 76 
     | 
    
         
            +
                      # SQL statements.
         
     | 
| 
      
 77 
     | 
    
         
            +
                      def quoted_primary_key
         
     | 
| 
      
 78 
     | 
    
         
            +
                        @quoted_primary_key ||= connection.quote_column_name(primary_key)
         
     | 
| 
       88 
79 
     | 
    
         
             
                      end
         
     | 
| 
       89 
     | 
    
         
            -
                    end
         
     | 
| 
       90 
80 
     | 
    
         | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
             
     | 
| 
       94 
     | 
    
         
            -
                      elsif base_name && primary_key_prefix_type == :table_name_with_underscore
         
     | 
| 
       95 
     | 
    
         
            -
                        base_name.foreign_key
         
     | 
| 
       96 
     | 
    
         
            -
                      else
         
     | 
| 
       97 
     | 
    
         
            -
                        if ActiveRecord::Base != self && table_exists?
         
     | 
| 
       98 
     | 
    
         
            -
                          connection.schema_cache.primary_keys(table_name)
         
     | 
| 
      
 81 
     | 
    
         
            +
                      def reset_primary_key #:nodoc:
         
     | 
| 
      
 82 
     | 
    
         
            +
                        if base_class?
         
     | 
| 
      
 83 
     | 
    
         
            +
                          self.primary_key = get_primary_key(base_class.name)
         
     | 
| 
       99 
84 
     | 
    
         
             
                        else
         
     | 
| 
       100 
     | 
    
         
            -
                           
     | 
| 
      
 85 
     | 
    
         
            +
                          self.primary_key = base_class.primary_key
         
     | 
| 
      
 86 
     | 
    
         
            +
                        end
         
     | 
| 
      
 87 
     | 
    
         
            +
                      end
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
                      def get_primary_key(base_name) #:nodoc:
         
     | 
| 
      
 90 
     | 
    
         
            +
                        if base_name && primary_key_prefix_type == :table_name
         
     | 
| 
      
 91 
     | 
    
         
            +
                          base_name.foreign_key(false)
         
     | 
| 
      
 92 
     | 
    
         
            +
                        elsif base_name && primary_key_prefix_type == :table_name_with_underscore
         
     | 
| 
      
 93 
     | 
    
         
            +
                          base_name.foreign_key
         
     | 
| 
      
 94 
     | 
    
         
            +
                        else
         
     | 
| 
      
 95 
     | 
    
         
            +
                          if ActiveRecord::Base != self && table_exists?
         
     | 
| 
      
 96 
     | 
    
         
            +
                            pk = connection.schema_cache.primary_keys(table_name)
         
     | 
| 
      
 97 
     | 
    
         
            +
                            suppress_composite_primary_key(pk)
         
     | 
| 
      
 98 
     | 
    
         
            +
                          else
         
     | 
| 
      
 99 
     | 
    
         
            +
                            "id"
         
     | 
| 
      
 100 
     | 
    
         
            +
                          end
         
     | 
| 
       101 
101 
     | 
    
         
             
                        end
         
     | 
| 
       102 
102 
     | 
    
         
             
                      end
         
     | 
| 
       103 
     | 
    
         
            -
                    end
         
     | 
| 
       104 
103 
     | 
    
         | 
| 
       105 
     | 
    
         
            -
             
     | 
| 
       106 
     | 
    
         
            -
             
     | 
| 
       107 
     | 
    
         
            -
             
     | 
| 
       108 
     | 
    
         
            -
             
     | 
| 
       109 
     | 
    
         
            -
             
     | 
| 
       110 
     | 
    
         
            -
             
     | 
| 
       111 
     | 
    
         
            -
             
     | 
| 
       112 
     | 
    
         
            -
             
     | 
| 
       113 
     | 
    
         
            -
             
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
             
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
             
     | 
| 
       120 
     | 
    
         
            -
             
     | 
| 
       121 
     | 
    
         
            -
             
     | 
| 
       122 
     | 
    
         
            -
             
     | 
| 
       123 
     | 
    
         
            -
             
     | 
| 
      
 104 
     | 
    
         
            +
                      # Sets the name of the primary key column.
         
     | 
| 
      
 105 
     | 
    
         
            +
                      #
         
     | 
| 
      
 106 
     | 
    
         
            +
                      #   class Project < ActiveRecord::Base
         
     | 
| 
      
 107 
     | 
    
         
            +
                      #     self.primary_key = 'sysid'
         
     | 
| 
      
 108 
     | 
    
         
            +
                      #   end
         
     | 
| 
      
 109 
     | 
    
         
            +
                      #
         
     | 
| 
      
 110 
     | 
    
         
            +
                      # You can also define the #primary_key method yourself:
         
     | 
| 
      
 111 
     | 
    
         
            +
                      #
         
     | 
| 
      
 112 
     | 
    
         
            +
                      #   class Project < ActiveRecord::Base
         
     | 
| 
      
 113 
     | 
    
         
            +
                      #     def self.primary_key
         
     | 
| 
      
 114 
     | 
    
         
            +
                      #       'foo_' + super
         
     | 
| 
      
 115 
     | 
    
         
            +
                      #     end
         
     | 
| 
      
 116 
     | 
    
         
            +
                      #   end
         
     | 
| 
      
 117 
     | 
    
         
            +
                      #
         
     | 
| 
      
 118 
     | 
    
         
            +
                      #   Project.primary_key # => "foo_id"
         
     | 
| 
      
 119 
     | 
    
         
            +
                      def primary_key=(value)
         
     | 
| 
      
 120 
     | 
    
         
            +
                        @primary_key        = value && -value.to_s
         
     | 
| 
      
 121 
     | 
    
         
            +
                        @quoted_primary_key = nil
         
     | 
| 
      
 122 
     | 
    
         
            +
                        @attributes_builder = nil
         
     | 
| 
      
 123 
     | 
    
         
            +
                      end
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
                      private
         
     | 
| 
      
 126 
     | 
    
         
            +
                        def suppress_composite_primary_key(pk)
         
     | 
| 
      
 127 
     | 
    
         
            +
                          return pk unless pk.is_a?(Array)
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
                          warn <<~WARNING
         
     | 
| 
      
 130 
     | 
    
         
            +
                            WARNING: Active Record does not support composite primary key.
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
                            #{table_name} has composite primary key. Composite primary key is ignored.
         
     | 
| 
      
 133 
     | 
    
         
            +
                          WARNING
         
     | 
| 
      
 134 
     | 
    
         
            +
                        end
         
     | 
| 
       124 
135 
     | 
    
         
             
                    end
         
     | 
| 
       125 
     | 
    
         
            -
                  end
         
     | 
| 
       126 
136 
     | 
    
         
             
                end
         
     | 
| 
       127 
137 
     | 
    
         
             
              end
         
     | 
| 
       128 
138 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            module ActiveRecord
         
     | 
| 
       2 
4 
     | 
    
         
             
              module AttributeMethods
         
     | 
| 
       3 
5 
     | 
    
         
             
                module Query
         
     | 
| 
         @@ -14,15 +16,14 @@ module ActiveRecord 
     | 
|
| 
       14 
16 
     | 
    
         
             
                    when true        then true
         
     | 
| 
       15 
17 
     | 
    
         
             
                    when false, nil  then false
         
     | 
| 
       16 
18 
     | 
    
         
             
                    else
         
     | 
| 
       17 
     | 
    
         
            -
                       
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
                        if Numeric === value || value !~ /[^0-9]/
         
     | 
| 
      
 19 
     | 
    
         
            +
                      if !type_for_attribute(attr_name) { false }
         
     | 
| 
      
 20 
     | 
    
         
            +
                        if Numeric === value || !value.match?(/[^0-9]/)
         
     | 
| 
       20 
21 
     | 
    
         
             
                          !value.to_i.zero?
         
     | 
| 
       21 
22 
     | 
    
         
             
                        else
         
     | 
| 
       22 
     | 
    
         
            -
                          return false if  
     | 
| 
      
 23 
     | 
    
         
            +
                          return false if ActiveModel::Type::Boolean::FALSE_VALUES.include?(value)
         
     | 
| 
       23 
24 
     | 
    
         
             
                          !value.blank?
         
     | 
| 
       24 
25 
     | 
    
         
             
                        end
         
     | 
| 
       25 
     | 
    
         
            -
                      elsif  
     | 
| 
      
 26 
     | 
    
         
            +
                      elsif value.respond_to?(:zero?)
         
     | 
| 
       26 
27 
     | 
    
         
             
                        !value.zero?
         
     | 
| 
       27 
28 
     | 
    
         
             
                      else
         
     | 
| 
       28 
29 
     | 
    
         
             
                        !value.blank?
         
     | 
| 
         @@ -30,11 +31,8 @@ module ActiveRecord 
     | 
|
| 
       30 
31 
     | 
    
         
             
                    end
         
     | 
| 
       31 
32 
     | 
    
         
             
                  end
         
     | 
| 
       32 
33 
     | 
    
         | 
| 
       33 
     | 
    
         
            -
                   
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                    def attribute?(attribute_name)
         
     | 
| 
       36 
     | 
    
         
            -
                      query_attribute(attribute_name)
         
     | 
| 
       37 
     | 
    
         
            -
                    end
         
     | 
| 
      
 34 
     | 
    
         
            +
                  alias :attribute? :query_attribute
         
     | 
| 
      
 35 
     | 
    
         
            +
                  private :attribute?
         
     | 
| 
       38 
36 
     | 
    
         
             
                end
         
     | 
| 
       39 
37 
     | 
    
         
             
              end
         
     | 
| 
       40 
38 
     | 
    
         
             
            end
         
     |