diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-12-21 10:39:23 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-12-21 10:39:31 -0700 |
commit | 12ce9a2b9a7084f54cdca2d112a96305d8218238 (patch) | |
tree | 882c94de984e803733d4b27d7c6c8980bde585d7 /activerecord/lib | |
parent | 78ea731a768e04574cde5271809e3073ef5c948e (diff) | |
download | rails-12ce9a2b9a7084f54cdca2d112a96305d8218238.tar.gz rails-12ce9a2b9a7084f54cdca2d112a96305d8218238.tar.bz2 rails-12ce9a2b9a7084f54cdca2d112a96305d8218238.zip |
removing deprecated methods
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb index 698da34d26..401398c56b 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb @@ -162,34 +162,6 @@ module ActiveRecord end end - def columns - with_connection do |c| - c.schema_cache.columns - end - end - deprecate :columns - - def columns_hash - with_connection do |c| - c.schema_cache.columns_hash - end - end - deprecate :columns_hash - - def primary_keys - with_connection do |c| - c.schema_cache.primary_keys - end - end - deprecate :primary_keys - - def clear_cache! - with_connection do |c| - c.schema_cache.clear! - end - end - deprecate :clear_cache! - # Return any checked-out connections back to the pool by threads that # are no longer alive. def clear_stale_cached_connections! |