gitextract_pt1acgj_/ ├── .github/ │ └── workflows/ │ ├── integration_test.yml │ ├── integration_tests.yml │ ├── rubocop.yml │ └── unit_tests.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Appraisals ├── ChangeLog.md ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── UPGRADING.md ├── arproxy.gemspec ├── compose-ci.yaml ├── compose.yaml ├── db/ │ ├── mysql/ │ │ └── my.cnf │ └── sqlserver/ │ └── init.sql ├── gemfiles/ │ ├── ar_6.1.gemfile │ ├── ar_7.0.gemfile │ ├── ar_7.1.gemfile │ ├── ar_7.2.gemfile │ └── ar_8.0.gemfile ├── integration_test/ │ ├── Gemfile │ ├── docker-compose.yml │ ├── gemfiles/ │ │ ├── ar_6.1.gemfile │ │ ├── ar_7.0.gemfile │ │ └── ar_7.1.gemfile │ └── spec/ │ ├── mysql2_spec.rb │ ├── postgresql_spec.rb │ └── spec_helper.rb ├── lib/ │ ├── arproxy/ │ │ ├── base.rb │ │ ├── config.rb │ │ ├── connection_adapter_patch.rb │ │ ├── error.rb │ │ ├── plugin.rb │ │ ├── proxy.rb │ │ ├── proxy_chain.rb │ │ ├── proxy_chain_tail.rb │ │ ├── query_context.rb │ │ └── version.rb │ └── arproxy.rb └── spec/ ├── integration/ │ ├── mysql2_spec.rb │ ├── postgresql_spec.rb │ ├── shared_examples/ │ │ ├── active_record_functions.rb │ │ └── custom_proxies.rb │ ├── spec_helper.rb │ ├── sqlite3_spec.rb │ ├── sqlserver_spec.rb │ └── trilogy_spec.rb ├── lib/ │ └── arproxy/ │ └── plugin/ │ ├── legacy_plugin.rb │ ├── query_logger.rb │ └── test_plugin.rb └── unit/ ├── arproxy_spec.rb ├── config_spec.rb ├── proxy_spec.rb └── spec_helper.rb