aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-06-05 00:38:40 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-10-10 11:41:07 +0900
commit0da4a08bdfea28a0cc881ca5831aadfcf8a3b7eb (patch)
tree7cb7b9c9bc5a9efb29a19a5a05a0bb02c6a9d50d /activerecord/lib
parent88e00d303df5caad9393f81a12a1eaf227b2e293 (diff)
downloadrails-0da4a08bdfea28a0cc881ca5831aadfcf8a3b7eb.tar.gz
rails-0da4a08bdfea28a0cc881ca5831aadfcf8a3b7eb.tar.bz2
rails-0da4a08bdfea28a0cc881ca5831aadfcf8a3b7eb.zip
Prevent `RangeError` for `belongs_to` associations
Currently to access `belongs_to` associations raises a `RangeError` if foreign key attribute has out of range value. It should return a nil value rather than raising a `RangeError`. Fixes #20140.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/associations/singular_association.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/associations/singular_association.rb b/activerecord/lib/active_record/associations/singular_association.rb
index e386cc0e4c..a9e7edddff 100644
--- a/activerecord/lib/active_record/associations/singular_association.rb
+++ b/activerecord/lib/active_record/associations/singular_association.rb
@@ -51,6 +51,8 @@ module ActiveRecord
sc.execute(binds, klass, conn) do |record|
set_inverse_instance record
end.first
+ rescue RangeError
+ nil
end
def replace(record)