aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/calculations_test.rb
diff options
context:
space:
mode:
authorLachlan Sylvester <lachlan.sylvester@publicisfrontfoot.com.au>2018-06-19 11:11:46 +1000
committerLachlan Sylvester <lachlan.sylvester@publicisfrontfoot.com.au>2018-06-19 11:11:46 +1000
commit13f0d6ebd38ad08f7550db784d64c5c6ab7f56f9 (patch)
tree73c9e62507f6ed4eb627dee35d1083a299bf3f1f /activerecord/test/cases/calculations_test.rb
parent433a3122697e41bb46c4f072d2d8223233af5dd4 (diff)
downloadrails-13f0d6ebd38ad08f7550db784d64c5c6ab7f56f9.tar.gz
rails-13f0d6ebd38ad08f7550db784d64c5c6ab7f56f9.tar.bz2
rails-13f0d6ebd38ad08f7550db784d64c5c6ab7f56f9.zip
Avoid creating temporary arrays in ActiveRecord::Result#cast_values in order to speed up pluck
Diffstat (limited to 'activerecord/test/cases/calculations_test.rb')
-rw-r--r--activerecord/test/cases/calculations_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb
index 6ceac59eec..5c9ed42173 100644
--- a/activerecord/test/cases/calculations_test.rb
+++ b/activerecord/test/cases/calculations_test.rb
@@ -642,6 +642,18 @@ class CalculationsTest < ActiveRecord::TestCase
assert_equal [ topic.written_on ], relation.pluck(:written_on)
end
+ def test_pluck_with_type_cast_does_not_corrupt_the_query_cache
+ topic = topics(:first)
+ relation = Topic.where(id: topic.id)
+ assert_queries 1 do
+ Topic.cache do
+ kind = relation.select(:written_on).load.first.read_attribute_before_type_cast(:written_on).class
+ relation.pluck(:written_on)
+ assert_kind_of kind, relation.select(:written_on).load.first.read_attribute_before_type_cast(:written_on)
+ end
+ end
+ end
+
def test_pluck_and_distinct
assert_equal [50, 53, 55, 60], Account.order(:credit_limit).distinct.pluck(:credit_limit)
end