aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2013-11-12 00:52:25 -0800
committerBen Woosley <ben.woosley@gmail.com>2013-11-12 00:52:25 -0800
commita7394a271b9042340e72b6df75e8f63d3a162af5 (patch)
tree593dc042cfd9ced39b887722830bcd333c75557e /activerecord/lib/active_record
parent06c2b5bb5d3c205edd4d2fb47836b717ea37b577 (diff)
downloadrails-a7394a271b9042340e72b6df75e8f63d3a162af5.tar.gz
rails-a7394a271b9042340e72b6df75e8f63d3a162af5.tar.bz2
rails-a7394a271b9042340e72b6df75e8f63d3a162af5.zip
Remove the unused, undocumented SQLite3Adapter#supports_count_distinct?
This has returned true since 3cc9b5f1, and is not used internally.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
index 55fd20ec6a..2cf1015f2c 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
@@ -189,11 +189,6 @@ module ActiveRecord
@statements.clear
end
- # Returns true
- def supports_count_distinct? #:nodoc:
- true
- end
-
def supports_index_sort_order?
true
end