method
locked?
v3.2.13 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::QueryCache
locked?(arel)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 81
def locked?(arel)
if arel.respond_to?(:locked)
arel.locked
else
false
end
end