diff options
author | Tobias Lütke <tobias.luetke@gmail.com> | 2005-12-20 20:32:47 +0000 |
---|---|---|
committer | Tobias Lütke <tobias.luetke@gmail.com> | 2005-12-20 20:32:47 +0000 |
commit | 1d2c6ee8f3f7e4b6881f30e6b53582738c2b3ace (patch) | |
tree | 2928e565d896bfd8e0e0f8cb3829a8c4a012359a /activerecord | |
parent | 1235d26bfbc99a7b7466bddb8ff69eecc585d27f (diff) | |
download | rails-1d2c6ee8f3f7e4b6881f30e6b53582738c2b3ace.tar.gz rails-1d2c6ee8f3f7e4b6881f30e6b53582738c2b3ace.tar.bz2 rails-1d2c6ee8f3f7e4b6881f30e6b53582738c2b3ace.zip |
added :piggyback option to has_many :through relationships to pick up values from the join table as needed
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3323 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG | 2 | ||||
-rwxr-xr-x | activerecord/lib/active_record/associations.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/associations/has_many_through_association.rb | 10 | ||||
-rw-r--r-- | activerecord/test/associations_join_model_test.rb | 4 | ||||
-rw-r--r-- | activerecord/test/fixtures/category.rb | 2 |
5 files changed, 17 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 27859d2a1d..f3eaffee84 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* added :piggyback option to has_many :through relationships to pick up values from the join table as needed [Tobias Luetke] + * Fix typo in association docs. #3296. [Blair Zajac] * Fixed :through relations when using STI inherited classes would use the inherited class's name as foreign key on the join model [Tobias Luetke] diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 583f5f8044..8ee6eca15f 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -881,7 +881,7 @@ module ActiveRecord :class_name, :table_name, :foreign_key, :exclusively_dependent, :dependent, :select, :conditions, :include, :order, :group, :limit, :offset, - :as, :through, + :as, :through, :piggyback, :finder_sql, :counter_sql, :before_add, :after_add, :before_remove, :after_remove, :extend diff --git a/activerecord/lib/active_record/associations/has_many_through_association.rb b/activerecord/lib/active_record/associations/has_many_through_association.rb index 8c91aeeed4..3a3966bb8a 100644 --- a/activerecord/lib/active_record/associations/has_many_through_association.rb +++ b/activerecord/lib/active_record/associations/has_many_through_association.rb @@ -39,7 +39,7 @@ module ActiveRecord def find_target @reflection.klass.find(:all, - :select => "#{@reflection.table_name}.*", + :select => construct_select, :conditions => construct_conditions, :from => construct_from, :order => @reflection.options[:order], @@ -73,6 +73,14 @@ module ActiveRecord "#{@reflection.table_name}, #{@owner.class.reflections[@reflection.options[:through]].table_name}" end + def construct_select + selected = ["#{@reflection.table_name}.*"] + if @reflection.options[:piggyback] + selected += [@reflection.options[:piggyback]].flatten.collect { |field| "#{@owner.class.reflections[@reflection.options[:through]].table_name}.#{field}" } + end + selected.join(', ') + end + def construct_scope { :find => { :conditions => construct_conditions }, diff --git a/activerecord/test/associations_join_model_test.rb b/activerecord/test/associations_join_model_test.rb index d53a8d98d3..502e4d28c5 100644 --- a/activerecord/test/associations_join_model_test.rb +++ b/activerecord/test/associations_join_model_test.rb @@ -38,5 +38,9 @@ class AssociationsJoinModelTest < Test::Unit::TestCase def test_polymorphic_has_many_going_through_join_model_with_inheritance assert_equal tags(:general), posts(:thinking).tags.first end + + def test_has_many_with_piggyback + assert_equal "2", categories(:sti_test).authors.first.post_id + end end diff --git a/activerecord/test/fixtures/category.rb b/activerecord/test/fixtures/category.rb index 01938d1405..d0e0dfb770 100644 --- a/activerecord/test/fixtures/category.rb +++ b/activerecord/test/fixtures/category.rb @@ -6,7 +6,7 @@ class Category < ActiveRecord::Base end has_many :categorizations - has_many :authors, :through => :categorizations + has_many :authors, :through => :categorizations, :piggyback => [:post_id] end class SpecialCategory < Category |