1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Formatting of content from b1db615 [ci skip]

This commit is contained in:
Zachary Scott 2014-05-28 10:43:05 -07:00
parent f3e14587a6
commit bfafd0dcec

View file

@ -217,9 +217,13 @@ module ActiveRecord
class ImmutableRelation < ActiveRecordError
end
# TransactionIsolationError will be raised if: The adapter does not support setting the isolation level;
# You are joining an existing open transaction; You are creating a nested (savepoint) transaction; The mysql,
# mysql2 and postgresql adapters support setting the transaction isolation level.
# TransactionIsolationError will be raised under the following conditions:
#
# * The adapter does not support setting the isolation level
# * You are joining an existing open transaction
# * You are creating a nested (savepoint) transaction
#
# The mysql, mysql2 and postgresql adapters support setting the transaction isolation level.
class TransactionIsolationError < ActiveRecordError
end
end