Skip to content

Commit

Permalink
Merge pull request #2331 from yahonda/diag2329
Browse files Browse the repository at this point in the history
Support `Simplify adapter construction; defer connect until first use`
  • Loading branch information
yahonda committed May 25, 2023
2 parents 49028d0 + 1f83455 commit 3eb404e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ group :development do
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false

gem "activerecord", github: "rails/rails", ref: "0e9267767f19065fa513038253179ad6b05c29ab"
gem "activerecord", github: "rails/rails", ref: "8551e64e2411811f26d210601abdba6e13d8798c"
gem "ruby-plsql", github: "rsim/ruby-plsql", branch: "master"

platforms :ruby do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ def dealloc(stmt)
end
end

def initialize(connection, logger = nil, config = {}) # :nodoc:
super(connection, logger, config)
def initialize(config_or_deprecated_connection, deprecated_logger = nil, deprecated_connection_options = nil, deprecated_config = nil) # :nodoc:
super(config_or_deprecated_connection, deprecated_logger, deprecated_connection_options, deprecated_config)
@enable_dbms_output = false
@do_not_prefetch_primary_key = {}
@columns_cache = {}
Expand Down

0 comments on commit 3eb404e

Please sign in to comment.