aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-03-18 09:03:54 +0100
committerYves Senn <yves.senn@gmail.com>2015-03-18 09:03:54 +0100
commitfb646969a24be3ec4506515ea89e19ca577a4c40 (patch)
treeb5cc86f871d5edeb93f67a7a674851d511753f15
parent314ab7b14d99094e9cedd36165489f731841bd66 (diff)
parent3bcb31499862d2a11bf59e449c6d0dc0930962a4 (diff)
downloadrails-fb646969a24be3ec4506515ea89e19ca577a4c40.tar.gz
rails-fb646969a24be3ec4506515ea89e19ca577a4c40.tar.bz2
rails-fb646969a24be3ec4506515ea89e19ca577a4c40.zip
Merge pull request #19381 from Empact/null-relation
Fix NullRelation.update_all and .exists? signature to match the same on Relation
-rw-r--r--activerecord/lib/active_record/null_relation.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/null_relation.rb b/activerecord/lib/active_record/null_relation.rb
index fa6eaa7e64..74894d0c37 100644
--- a/activerecord/lib/active_record/null_relation.rb
+++ b/activerecord/lib/active_record/null_relation.rb
@@ -14,7 +14,7 @@ module ActiveRecord
0
end
- def update_all(_updates, _conditions = nil, _options = {})
+ def update_all(_updates)
0
end
@@ -80,7 +80,7 @@ module ActiveRecord
end
end
- def exists?(_id = false)
+ def exists?(_conditions = :none)
false
end