mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 20:44:23 +01:00
Closes #2121 There are two important things to point out: 1. The support is incomplete since we yet don't support savepoints in core. 2. When a txn drops we should call `_finish()` on it, but since async drop is [unstable](https://github.com/rust-lang/rust/issues/126482) the best solution that I came up was just forcing the user to explicitly call `finish()` before any drops. Closes #2151