aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/active_record/connection_adapters
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-02-03 10:06:10 -0700
committerSean Griffin <sean@thoughtbot.com>2015-02-03 15:02:18 -0700
commit158c7eb1d61a28452e0aafd1e05314352eea2749 (patch)
treedba855c392407d8fbe65fa1ab6af2151705c08e6 /activerecord/test/active_record/connection_adapters
parent23bb8d77c6c5ace445659d56cf5df2adcf6c8dc3 (diff)
downloadrails-158c7eb1d61a28452e0aafd1e05314352eea2749.tar.gz
rails-158c7eb1d61a28452e0aafd1e05314352eea2749.tar.bz2
rails-158c7eb1d61a28452e0aafd1e05314352eea2749.zip
rm `Column#cast_type`
The type from the column is never used, except when being passed to the attributes API. While leaving the type on the column wasn't necessarily a bad thing, I worry that it's existence there implies that it is something which should be used. During the design and implementation process of the attributes API, there have been plenty of cases where getting the "right" type object was hard, but I had easy access to the column objects. For any contributor who isn't intimately familiar with the intents behind the type casting system, grabbing the type from the column might easily seem like the "correct" thing to do. As such, the goal of this change is to express that the column is not something that should be used for type casting. The only places that are "valid" (at the time of this commit) uses of acquiring a type object from the column are fixtures (as the YAML file is going to mirror the database more closely than the AR object), and looking up the type during schema detection to pass to the attributes API Many of the failing tests were removed, as they've been made obsolete over the last year. All of the PG column tests were testing nothing beyond polymorphism. The Mysql2 tests were duplicating the mysql tests, since they now share a column class. The implementation is a little hairy, and slightly verbose, but it felt preferable to going back to 20 constructor options for the columns. If you are git blaming to figure out wtf I was thinking with them, and have a better idea, go for it. Just don't use a type object for this.
Diffstat (limited to 'activerecord/test/active_record/connection_adapters')
-rw-r--r--activerecord/test/active_record/connection_adapters/fake_adapter.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/test/active_record/connection_adapters/fake_adapter.rb b/activerecord/test/active_record/connection_adapters/fake_adapter.rb
index ad9279aaca..49a68fb94c 100644
--- a/activerecord/test/active_record/connection_adapters/fake_adapter.rb
+++ b/activerecord/test/active_record/connection_adapters/fake_adapter.rb
@@ -29,8 +29,7 @@ module ActiveRecord
@columns[table_name] << ActiveRecord::ConnectionAdapters::Column.new(
name.to_s,
options[:default],
- lookup_cast_type(sql_type.to_s),
- sql_type.to_s,
+ fetch_type_metadata(sql_type),
options[:null])
end