converting to a symbol is not necessary

This commit is contained in:
Aaron Patterson 2010-08-13 16:50:22 -07:00 committed by Xavier Noria
parent 6a14eee918
commit 22b9bbc828

@ -1505,7 +1505,7 @@ def collection_reader_method(reflection, association_proxy_class)
if reflection.through_reflection && reflection.source_reflection.belongs_to? if reflection.through_reflection && reflection.source_reflection.belongs_to?
through = reflection.through_reflection through = reflection.through_reflection
primary_key = reflection.source_reflection.primary_key_name primary_key = reflection.source_reflection.primary_key_name
send(through.name).select("DISTINCT #{through.quoted_table_name}.#{primary_key}").map! { |r| r.send(:"#{primary_key}") } send(through.name).select("DISTINCT #{through.quoted_table_name}.#{primary_key}").map! { |r| r.send(primary_key) }
else else
send(reflection.name).select("#{reflection.quoted_table_name}.#{reflection.klass.primary_key}").except(:includes).map! { |r| r.id } send(reflection.name).select("#{reflection.quoted_table_name}.#{reflection.klass.primary_key}").except(:includes).map! { |r| r.id }
end end