instance method
locked?
Ruby on Rails 3.2.22.5
Since v3.2.22.5 Last seen in v6.1.7.10 PrivateSignature
locked?(arel)
No documentation comment.
Parameters
-
arelreq
Source
# 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
Defined in activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb line 81
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::QueryCache