aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-05-10 15:41:51 +0200
committerArun Agrawal <arunagw@gmail.com>2013-05-10 16:05:05 +0200
commitde5b89ddc9f9f45760856a1eb55f53a11d067a74 (patch)
treee2c75c57db9bfce2524df641cba63aa268c8fb0c /activerecord/test
parent6ab3c730621035ef60eb117f7f9943f5c8fb4536 (diff)
downloadrails-de5b89ddc9f9f45760856a1eb55f53a11d067a74.tar.gz
rails-de5b89ddc9f9f45760856a1eb55f53a11d067a74.tar.bz2
rails-de5b89ddc9f9f45760856a1eb55f53a11d067a74.zip
Fixed pluck to be working with selects.
See #9777 for details. Previously pluck is not returning what we wanted to Added a test also to make sure it's working fine. This will also fix the build for 1.8.7 as we were doing some sort on hash. Thanks @pixeltrix for helping me out. Thanks @linduxed for pairing with me.
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/calculations_test.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb
index b9050c750f..8755e1f580 100644
--- a/activerecord/test/cases/calculations_test.rb
+++ b/activerecord/test/cases/calculations_test.rb
@@ -494,8 +494,9 @@ class CalculationsTest < ActiveRecord::TestCase
end
def test_pluck_does_not_replace_select_clause
- taks_relation = Topic.select("approved, id, id AS foo_id").order(:foo_id)
- assert_equal [false, true, true, true], taks_relation.pluck(:approved)
+ taks_relation = Topic.select("approved, id, id AS foo_id").order('foo_id DESC')
+ assert_equal [4,3,2,1], taks_relation.pluck(:id)
+ assert_equal [true, true, true, false], taks_relation.pluck(:approved)
end
def test_pluck_auto_table_name_prefix