aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/result.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-08-31 10:06:43 -0400
committerGitHub <noreply@github.com>2016-08-31 10:06:43 -0400
commitc14c0e3cf0f4fd828411b42602a6e7a71e0d59c7 (patch)
tree1038264f2d2f490460f59df0843d13bf02319786 /activerecord/lib/active_record/result.rb
parentcaa178c178468f7adcc5f4c597280e6362d9e175 (diff)
parent402852fc6d3222a283b65d407ffec3161946db71 (diff)
downloadrails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.tar.gz
rails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.tar.bz2
rails-c14c0e3cf0f4fd828411b42602a6e7a71e0d59c7.zip
Merge pull request #26282 from kamipo/add_type_default_value
Add `Type.default_value` and use it everywhere for internal
Diffstat (limited to 'activerecord/lib/active_record/result.rb')
-rw-r--r--activerecord/lib/active_record/result.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/result.rb b/activerecord/lib/active_record/result.rb
index f5383f4c14..9ed70a9c2b 100644
--- a/activerecord/lib/active_record/result.rb
+++ b/activerecord/lib/active_record/result.rb
@@ -32,8 +32,6 @@ module ActiveRecord
class Result
include Enumerable
- IDENTITY_TYPE = Type::Value.new # :nodoc:
-
attr_reader :columns, :rows, :column_types
def initialize(columns, rows, column_types = {})
@@ -105,7 +103,7 @@ module ActiveRecord
def column_type(name, type_overrides = {})
type_overrides.fetch(name) do
- column_types.fetch(name, IDENTITY_TYPE)
+ column_types.fetch(name, Type.default_value)
end
end