-
It'd be great to have nested transactions. I'm not sure rollbacks and exceptions should behave - do they propagate up to the outer transaction by default? Can you catch them?
-
Is there any plan on supporting nested transactions? How should I deal with this limitation? Do I really have to always check if `inWriteTransaction` is false before calling `beginWriteTransaction`?
-
`BEGIN TRANSACTION / END TRANSACTION` cannot be used in a nested fashion.
`SAVEPOINT dummy_name/ RELEASE dummy_name` should work nested.
http://www.sqlite.org/lang_savepoint.html
-
##### Brief description of problem/feature
We are seeing this error in our postgres logs (/var/lib/postgresql/data/log/postgresql-2024-05-20_234031.log) whenever we create a new anon user account. Ha…
-
**Describe the bug**
`get_chain_position` for unconfirmed transactions is very inefficient if we have "nested conflicts". Since unconfirmed transactions that spend from evicted transactions are a…
-
**As a** Polkadot.js user,
**I want** to manually construct and send transactions from nested proxy accounts,
**so that** I can work around the current issue with signing transactions.
**Acceptan…
-
I have a test like this:
```scala
test("Finagle StdClient is stuck on nested transaction") {
val finagleClient: Client with Transactions = getUnderlyingFinagleClient
val future = fina…
-
**Environment**
Dexie 2.0.4 (in a browserify bundle)
Chrome 67.0.3396.99
Ubuntu 16.04
**Steps to reproduce**
Run the following code:
```js
"use strict";
const Dexie = require("dexie");
…
-
Hi, thanks for this lib as this is really needed.
Looking at the code, I'm not sure I understand how nested transactions work... As far as I understand, Beginx() uses the same Node object and just …
-
I believe this holds true for v4 and v5.
The transaction options object can take the key `transaction` which will be set to this.parent
https://github.com/sequelize/sequelize/blob/v4/lib/transaction…