aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorEugene Kenny <elkenny@gmail.com>2017-06-15 13:00:20 +0100
committerEugene Kenny <elkenny@gmail.com>2017-06-15 13:00:20 +0100
commit2e4fe3a4ada95d08a77ff4df5cbf49ada0a10f6d (patch)
treed86993ee20834723707395795e7b4f8cce1bdb80 /activerecord/test/cases
parentbbd8084ffe413e1f0848fc09432997011909f232 (diff)
downloadrails-2e4fe3a4ada95d08a77ff4df5cbf49ada0a10f6d.tar.gz
rails-2e4fe3a4ada95d08a77ff4df5cbf49ada0a10f6d.tar.bz2
rails-2e4fe3a4ada95d08a77ff4df5cbf49ada0a10f6d.zip
Don't map id to primary key in raw_write_attribute
The `raw_write_attribute` method is used to update a record's attributes to reflect the new state of the database in `update_columns`. The hash provided to `update_columns` is turned into an UPDATE query directly, which means passing an `id` key results in an update to the `id` column, even if the model uses a different attribute as its primary key. When updating the record, we don't want to apply the `id` column change to the primary key attribute, since that's not what happened in the query. Without the code to handle this case, `write_attribute_with_type_cast` no longer contains any logic shared between `raw_write_attribute` and `write_attribute`, so we can inline the code into those two methods.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/primary_keys_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/cases/primary_keys_test.rb b/activerecord/test/cases/primary_keys_test.rb
index 200d9e6434..56229b70bc 100644
--- a/activerecord/test/cases/primary_keys_test.rb
+++ b/activerecord/test/cases/primary_keys_test.rb
@@ -80,6 +80,12 @@ class PrimaryKeysTest < ActiveRecord::TestCase
assert_equal 1, subscriber.update_count
end
+ def test_update_columns_with_non_primary_key_id_column
+ subscriber = Subscriber.first
+ subscriber.update_columns(id: 1)
+ assert_not_equal 1, subscriber.nick
+ end
+
def test_string_key
subscriber = Subscriber.find(subscribers(:first).nick)
assert_equal(subscribers(:first).name, subscriber.name)