instance method
select_all
Ruby on Rails 3.0.20
Since v3.0.20 Last seen in v7.0.10Signature
select_all(*args)
No documentation comment.
Parameters
-
argsrest
Source
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 52
def select_all(*args)
if @query_cache_enabled
cache_sql(args.first) { super }
else
super
end
end
Defined in activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::QueryCache