aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_methods.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-06-04 22:20:59 +0200
committerYves Senn <yves.senn@gmail.com>2014-06-04 22:22:45 +0200
commit3036c4031ab0ce2632d6ac1479ab27cdc4bb4941 (patch)
tree1fc6ec023ab91f35f237052b7565ced6157be8fa /activerecord/lib/active_record/attribute_methods.rb
parent31737e0461640b15ea60960ec24fef7571727831 (diff)
downloadrails-3036c4031ab0ce2632d6ac1479ab27cdc4bb4941.tar.gz
rails-3036c4031ab0ce2632d6ac1479ab27cdc4bb4941.tar.bz2
rails-3036c4031ab0ce2632d6ac1479ab27cdc4bb4941.zip
have an actual `NullColumn` object and update docs accordingly.
Follow up to #15438 and #15502. /cc @sgrif
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods.rb')
-rw-r--r--activerecord/lib/active_record/attribute_methods.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb
index dccbd48592..e626227e7e 100644
--- a/activerecord/lib/active_record/attribute_methods.rb
+++ b/activerecord/lib/active_record/attribute_methods.rb
@@ -195,8 +195,9 @@ module ActiveRecord
end
end
- # Returns the column object for the named attribute. Returns +nil+ if the
- # named attribute not exists.
+ # Returns the column object for the named attribute.
+ # Returns a +ActiveRecord::ConnectionAdapters::NullColumn+ if the
+ # named attribute does not exist.
#
# class Person < ActiveRecord::Base
# end
@@ -206,11 +207,11 @@ module ActiveRecord
# # => #<ActiveRecord::ConnectionAdapters::SQLite3Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...>
#
# person.column_for_attribute(:nothing)
- # # => #<ActiveRecord::ConnectionAdapters::Column:0xXXX @name=nil, @sql_type=nil, @cast_type=#<Type::Value>, ...>
+ # # => #<ActiveRecord::ConnectionAdapters::NullColumn:0xXXX @name=nil, @sql_type=nil, @cast_type=#<Type::Value>, ...>
def column_for_attribute(name)
name = name.to_s
columns_hash.fetch(name) do
- ConnectionAdapters::Column.new(name, nil, Type::Value.new)
+ ConnectionAdapters::NullColumn.new(name)
end
end
end