diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-09-29 10:18:27 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-09-29 10:36:33 -0700 |
commit | b5b7f2e442081e7270de2aadbe5eeec1759e7a0f (patch) | |
tree | 1d9d3e310a4958ca7399434a6bfdfd64b9440dec | |
parent | b2979117e0adad6f86370074237f57d96cc7c1c7 (diff) | |
download | rails-b5b7f2e442081e7270de2aadbe5eeec1759e7a0f.tar.gz rails-b5b7f2e442081e7270de2aadbe5eeec1759e7a0f.tar.bz2 rails-b5b7f2e442081e7270de2aadbe5eeec1759e7a0f.zip |
only reopen ConnectionAdapters once
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index 5078495ed8..7adc2c2276 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -164,9 +164,7 @@ module ActiveRecord end end end - end - module ConnectionAdapters # The PostgreSQL adapter works both with the native C (http://ruby.scripting.ca/postgres/) and the pure # Ruby (available both as gem and from http://rubyforge.org/frs/?group_id=234&release_id=1944) drivers. # |