aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-12-21 10:39:23 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-12-21 10:39:31 -0700
commit12ce9a2b9a7084f54cdca2d112a96305d8218238 (patch)
tree882c94de984e803733d4b27d7c6c8980bde585d7 /activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
parent78ea731a768e04574cde5271809e3073ef5c948e (diff)
downloadrails-12ce9a2b9a7084f54cdca2d112a96305d8218238.tar.gz
rails-12ce9a2b9a7084f54cdca2d112a96305d8218238.tar.bz2
rails-12ce9a2b9a7084f54cdca2d112a96305d8218238.zip
removing deprecated methods
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb28
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!