Replies: 2 comments
-
I believe this is because I use |
Beta Was this translation helpful? Give feedback.
-
As the documentation of the This is mainly a restriction imposed to us by sqlite3. We could try to emulate nested transactions by using |
Beta Was this translation helpful? Give feedback.
-
I have a table, like this
Let's assume we initially have one row in db
{id: 1, num: 1}
Is there any chance, that result will be
{id: 2, num: 2} {id: 3, num: 2} ?
i.e.
select
retrieved the same state, and modifications (delete
andinsert
) happened using this snapshot?Here is repro example (check test)
moor_test copy.zip
Beta Was this translation helpful? Give feedback.
All reactions