diff options
author | Bogdan Gusiev <agresso@gmail.com> | 2012-02-08 16:37:27 +0200 |
---|---|---|
committer | Bogdan Gusiev <agresso@gmail.com> | 2012-02-08 16:37:27 +0200 |
commit | a379cb2fb5c61f3108593ff96a74ca9c99300b09 (patch) | |
tree | 87963b7855db57e3935dd3227e14099be39fcc4b /activerecord | |
parent | 17497e5c557ce49f9fbaebf9a290b2a9fa216b8a (diff) | |
download | rails-a379cb2fb5c61f3108593ff96a74ca9c99300b09.tar.gz rails-a379cb2fb5c61f3108593ff96a74ca9c99300b09.tar.bz2 rails-a379cb2fb5c61f3108593ff96a74ca9c99300b09.zip |
AR::Relation#pluck: improve to work with joins
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/relation/calculations.rb | 3 | ||||
-rw-r--r-- | activerecord/test/cases/calculations_test.rb | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/relation/calculations.rb b/activerecord/lib/active_record/relation/calculations.rb index 6bf3050af9..50239f7cb2 100644 --- a/activerecord/lib/active_record/relation/calculations.rb +++ b/activerecord/lib/active_record/relation/calculations.rb @@ -177,6 +177,9 @@ module ActiveRecord # Person.where(:confirmed => true).limit(5).pluck(:id) # def pluck(column_name) + if column_name.is_a?(Symbol) && column_names.include?(column_name.to_s) + column_name = "#{table_name}.#{column_name}" + end klass.connection.select_all(select(column_name).arel).map! do |attributes| klass.type_cast_attribute(attributes.keys.first, klass.initialize_attributes(attributes)) end diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb index 7c9ebf528e..91d0af4872 100644 --- a/activerecord/test/cases/calculations_test.rb +++ b/activerecord/test/cases/calculations_test.rb @@ -478,4 +478,15 @@ class CalculationsTest < ActiveRecord::TestCase def test_pluck_with_qualified_column_name assert_equal [1,2,3,4], Topic.order(:id).pluck("topics.id") end + + def test_pluck_auto_table_name_prefix + c = Company.create!(:name => "test", :contracts => [Contract.new]) + assert_equal [c.id], Company.joins(:contracts).pluck(:id) + end + + def test_pluck_not_auto_table_name_prefix_if_column_joined + c = Company.create!(:name => "test", :contracts => [Contract.new(:developer_id => 7)]) + # No chance for typecast here + assert_equal ["7"], Company.joins(:contracts).pluck(:developer_id) + end end |