diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2017-02-03 10:16:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 10:16:53 -0500 |
commit | 3497f04d3682d4c9becc63565c962e91b0d7aea2 (patch) | |
tree | 9d8d55268b840fdda4e7160a431fdd4b26870507 | |
parent | 26a137b946d2e1e54993eebc2b94cd278cd69c21 (diff) | |
parent | 796d8599f384c7da41318695028d60e62738beb0 (diff) | |
download | rails-3497f04d3682d4c9becc63565c962e91b0d7aea2.tar.gz rails-3497f04d3682d4c9becc63565c962e91b0d7aea2.tar.bz2 rails-3497f04d3682d4c9becc63565c962e91b0d7aea2.zip |
Merge pull request #27865 from composerinteralia/collection-ids-setter-bug
Fix collection_singular_ids= bug
-rw-r--r-- | activerecord/CHANGELOG.md | 6 | ||||
-rw-r--r-- | activerecord/lib/active_record/reflection.rb | 4 | ||||
-rw-r--r-- | activerecord/test/cases/reflection_test.rb | 9 |
3 files changed, 17 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 12a037465b..b2d13e86f3 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,9 @@ +* Fix `association_primary_key_type` for reflections with symbol primary key + + Fixes #27864 + + *Daniel Colson* + * Virtual/generated column support for MySQL 5.7.5+ and MariaDB 5.2.0+. MySQL generated columns: https://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.html diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb index 81ec4924b0..61a2279292 100644 --- a/activerecord/lib/active_record/reflection.rb +++ b/activerecord/lib/active_record/reflection.rb @@ -421,7 +421,7 @@ module ActiveRecord end def association_primary_key_type - klass.type_for_attribute(association_primary_key) + klass.type_for_attribute(association_primary_key.to_s) end def active_record_primary_key @@ -835,7 +835,7 @@ module ActiveRecord end def association_primary_key_type - klass.type_for_attribute(association_primary_key) + klass.type_for_attribute(association_primary_key.to_s) end # Gets an array of possible <tt>:through</tt> source reflection names in both singular and plural form. diff --git a/activerecord/test/cases/reflection_test.rb b/activerecord/test/cases/reflection_test.rb index 04ee67c177..c1c2efb9c8 100644 --- a/activerecord/test/cases/reflection_test.rb +++ b/activerecord/test/cases/reflection_test.rb @@ -335,6 +335,15 @@ class ReflectionTest < ActiveRecord::TestCase assert_equal "custom_primary_key", Author.reflect_on_association(:tags_with_primary_key).association_primary_key.to_s # nested end + def test_association_primary_key_type + # Normal Association + assert_equal :integer, Author.reflect_on_association(:posts).association_primary_key_type.type + assert_equal :string, Author.reflect_on_association(:essay).association_primary_key_type.type + + # Through Association + assert_equal :string, Author.reflect_on_association(:essay_category).association_primary_key_type.type + end + def test_association_primary_key_raises_when_missing_primary_key reflection = ActiveRecord::Reflection.create(:has_many, :edge, nil, {}, Author) assert_raises(ActiveRecord::UnknownPrimaryKey) { reflection.association_primary_key } |