method
reset_read_uncommitted
v6.1.7.7 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SQLite3::DatabaseStatements
reset_read_uncommitted()private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/sqlite3/database_statements.rb, line 105
def reset_read_uncommitted
read_uncommitted = Thread.current.thread_variable_get("read_uncommitted")
return unless read_uncommitted
@connection.read_uncommitted = read_uncommitted
end