aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-06 22:35:10 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-06 22:42:29 -0200
commitf88c336e37dc25f3e587de31903a2fd81aaba7ef (patch)
tree6540935bac4dbd9cf03a8bd82100cce735b8ace5 /activerecord/lib
parent7173919af932f4a79e595cf74688d1d7cb3317ec (diff)
downloadrails-f88c336e37dc25f3e587de31903a2fd81aaba7ef.tar.gz
rails-f88c336e37dc25f3e587de31903a2fd81aaba7ef.tar.bz2
rails-f88c336e37dc25f3e587de31903a2fd81aaba7ef.zip
Call super to use the abstract adapter implementation instead
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index 84e48970ca..0818760b11 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -610,7 +610,7 @@ module ActiveRecord
res = exec_query "SELECT extname from pg_extension", "SCHEMA"
res.rows.map { |r| res.column_types['extname'].type_cast r.first }
else
- []
+ super
end
end