We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e26b15d + 38f4897 commit 315748eCopy full SHA for 315748e
.github/workflows/ruby.yml
@@ -270,4 +270,4 @@ jobs:
270
rake jar
271
- name: Run tests
272
run: |
273
- bundle exec rake ${{ matrix.test_targets }}
+ bundle exec rake ${{ matrix.test_targets }}
lib/arjdbc/jdbc/adapter_require.rb
@@ -2,7 +2,9 @@
2
3
module ActiveRecord
4
5
- if defined? ConnectionAdapters::ConnectionSpecification::Resolver # 4.0
+ if defined? ConnectionAdapters::ConnectionHandler # 6.1
6
+ ConnectionAdapters::ConnectionHandler
7
+ elsif defined? ConnectionAdapters::ConnectionSpecification::Resolver # 4.0, # 5.x, # 6.0
8
ConnectionAdapters::ConnectionSpecification::Resolver
9
elsif defined? Base::ConnectionSpecification::Resolver # 3.2
10
Base::ConnectionSpecification::Resolver
0 commit comments