diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-03-26 20:34:16 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-03-26 20:34:16 -0300 |
commit | 054e2c42a532d4f160bdb36d2b3864880c16ce4b (patch) | |
tree | 5bf3a1cbd6906c0c3a279fd8372d718c08a654fd /activerecord/lib/active_record | |
parent | 110f2ed23a81533706a246b9955b1186896fa84f (diff) | |
download | rails-054e2c42a532d4f160bdb36d2b3864880c16ce4b.tar.gz rails-054e2c42a532d4f160bdb36d2b3864880c16ce4b.tar.bz2 rails-054e2c42a532d4f160bdb36d2b3864880c16ce4b.zip |
Remove unused method
This method is not being called anywhere in our code and a GitHub search
show it is not being used in any project.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract_adapter.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb index 05e9b03e3a..ffd5055dec 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb @@ -157,11 +157,6 @@ module ActiveRecord false end - # Does this adapter support using DISTINCT within COUNT? - def supports_count_distinct? - true - end - # Does this adapter support DDL rollbacks in transactions? That is, would # CREATE TABLE or ALTER TABLE get rolled back by a transaction? def supports_ddl_transactions? |