aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/querying.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-05-29 06:55:44 -0700
committerSean Griffin <sean@thoughtbot.com>2014-05-29 07:13:53 -0700
commit8eb536e7b487351d7485879d436e9d747520ed90 (patch)
tree0e9bbf31ebd8aa0e11a64d826bdc275291275010 /activerecord/lib/active_record/querying.rb
parent29f8eae3faf96cbe46e7eb949c7f674c5860c1cf (diff)
downloadrails-8eb536e7b487351d7485879d436e9d747520ed90.tar.gz
rails-8eb536e7b487351d7485879d436e9d747520ed90.tar.bz2
rails-8eb536e7b487351d7485879d436e9d747520ed90.zip
Result sets never override a model's column type
MySQL and PostgreSQL provide a column type override in order to properly type cast computed columns included in a result set. This should never override the known types of full fledged columns. In addition to messing up computed properties, this would have led to inconsistent behavior between a record created with `new`, and a record created with `last` on the mysql adapter in the following cases: - `tinyint(1)` with `emulate_booleans` set to `false` - `text`, `string`, `binary`, and `decimal` columns
Diffstat (limited to 'activerecord/lib/active_record/querying.rb')
-rw-r--r--activerecord/lib/active_record/querying.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb
index ef138c6f80..1fe54cea3f 100644
--- a/activerecord/lib/active_record/querying.rb
+++ b/activerecord/lib/active_record/querying.rb
@@ -40,7 +40,7 @@ module ActiveRecord
column_types = {}
if result_set.respond_to? :column_types
- column_types = result_set.column_types
+ column_types = result_set.column_types.merge(columns_hash)
else
ActiveSupport::Deprecation.warn "the object returned from `select_all` must respond to `column_types`"
end