# File lib/active_record/connection_adapters/jdbc_adapter.rb, line 414
      def alias_chained_method(meth, feature, target)
        if instance_methods.include?("#{meth}_without_#{feature}")
          alias_method "#{meth}_without_#{feature}".to_sym, target
        else
          alias_method meth, target
        end
      end