diff options
author | Roman Shatsov <roshats@gmail.com> | 2012-07-23 11:33:21 +0300 |
---|---|---|
committer | Roman Shatsov <roshats@gmail.com> | 2012-08-14 21:04:48 +0300 |
commit | f28096476dee5c7d5af037e4cdf06b339fe4778a (patch) | |
tree | defee001d3a44a5b4a95dae407802af585d71acb | |
parent | 580fa0c7be62868ff521570d37094e22ffa81f00 (diff) | |
download | rails-f28096476dee5c7d5af037e4cdf06b339fe4778a.tar.gz rails-f28096476dee5c7d5af037e4cdf06b339fe4778a.tar.bz2 rails-f28096476dee5c7d5af037e4cdf06b339fe4778a.zip |
raise ArgumentError if list of attributes to change is empty in update_all
-rw-r--r-- | activerecord/CHANGELOG.md | 4 | ||||
-rw-r--r-- | activerecord/lib/active_record/relation.rb | 4 | ||||
-rw-r--r-- | activerecord/test/cases/relations_test.rb | 4 |
3 files changed, 11 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 08aa3aae34..5c7f992cde 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -529,6 +529,10 @@ * PostgreSQL hstore types are automatically deserialized from the database. +* Raise `ArgumentError` if list of attributes to change is empty in `update_all`. + + *Roman Shatsov* + ## Rails 3.2.5 (Jun 1, 2012) ## diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb index 3821c6122a..b57bd90709 100644 --- a/activerecord/lib/active_record/relation.rb +++ b/activerecord/lib/active_record/relation.rb @@ -296,6 +296,8 @@ module ActiveRecord # # Update all books that match conditions, but limit it to 5 ordered by date # Book.where('title LIKE ?', '%Rails%').order(:created_at).limit(5).update_all(:author => 'David') def update_all(updates) + raise ArgumentError, "Empty list of attributes to change" if updates.blank? + stmt = Arel::UpdateManager.new(arel.engine) stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates)) @@ -483,7 +485,7 @@ module ActiveRecord # Returns sql statement for the relation. # # Users.where(name: 'Oscar').to_sql - # # => SELECT "users".* FROM "users" WHERE "users"."name" = 'Oscar' + # # => SELECT "users".* FROM "users" WHERE "users"."name" = 'Oscar' def to_sql @to_sql ||= klass.connection.to_sql(arel, bind_values.dup) end diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb index c8da7ddd99..4c5e8aaa1c 100644 --- a/activerecord/test/cases/relations_test.rb +++ b/activerecord/test/cases/relations_test.rb @@ -1122,6 +1122,10 @@ class RelationTest < ActiveRecord::TestCase assert_equal authors(:david), Author.order('id DESC , name DESC').last end + def test_update_all_with_blank_argument + assert_raises(ArgumentError) { Comment.update_all({}) } + end + def test_update_all_with_joins comments = Comment.joins(:post).where('posts.id' => posts(:welcome).id) count = comments.count |