# File lib/active_record/connection_adapters/postgresql_adapter.rb, line 71
      def reconnect!
        # TODO: postgres-pr doesn't have PGconn#reset.
        if @connection.respond_to?(:reset)
          @connection.reset
          configure_connection
        end
      end