]> git.openstreetmap.org Git - rails.git/commitdiff
Monkey patch postgres adapter for postgres 9 support
authorTom Hughes <tom@compton.nu>
Sun, 3 Apr 2011 16:39:06 +0000 (17:39 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 3 Apr 2011 16:39:06 +0000 (17:39 +0100)
config/initializers/postgresql_adapter.rb

index d8f84959cd83f18efc7d256e78fa04f1f91f31f2..6e77a3fb0577a72092921f4554a943cc64123609 100644 (file)
@@ -2,6 +2,13 @@ if defined?(ActiveRecord::ConnectionAdaptors::PostgreSQLAdaptor)
   module ActiveRecord
     module ConnectionAdapters
       class PostgreSQLAdapter
   module ActiveRecord
     module ConnectionAdapters
       class PostgreSQLAdapter
+        def supports_disable_referential_integrity?() #:nodoc:
+          version = query("SHOW server_version")[0][0].split('.')
+          (version[0].to_i >= 9 || (version[0].to_i == 8 && version[1].to_i >= 1)) ? true : false
+        rescue
+          return false
+        end
+
         def pk_and_sequence_for(table)
           # First try looking for a sequence with a dependency on the
           # given table's primary key.
         def pk_and_sequence_for(table)
           # First try looking for a sequence with a dependency on the
           # given table's primary key.