mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
This commit is contained in:
parent
753da21322
commit
3f7cd2c571
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ module ActiveRecord
|
|||
sc.execute(binds, klass, conn) do |record|
|
||||
set_inverse_instance record
|
||||
end.first
|
||||
rescue RangeError
|
||||
rescue ::RangeError
|
||||
nil
|
||||
end
|
||||
|
||||
|
|
|
@ -1079,7 +1079,7 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase
|
|||
end
|
||||
|
||||
comment = model.new
|
||||
comment.post_id = 10_000_000_000
|
||||
comment.post_id = 9223372036854775808 # out of range in the bigint
|
||||
|
||||
assert_nil comment.post
|
||||
assert_not comment.valid?
|
||||
|
|
Loading…
Reference in a new issue