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:
parent
f3e14587a6
commit
bfafd0dcec
1 changed files with 7 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue