-
-
Notifications
You must be signed in to change notification settings - Fork 578
Open
Labels
Description
Currently, Dolt only supports the transaction isolation level REPEATABLE READ
. This is acceptable for most use cases, but is not fully MySQL compatible. In particular, Django database migrations use the READ COMMITTED
isolation level during database initialization.
A Django-specific migration workaround has been included in the sql engine behind a feature flag, but this is not a general purpose solution for READ COMMITTED
.