Y
Hacker News
new
|
ask
|
show
|
jobs
by
francislavoie
174 days ago
Unfortunately a lot of our tests use transactions themselves because we lock the user row when we do anything to ensure consistency, and I'm pretty sure nested transactions are still not a thing.
1 comments
hu3
174 days ago
You can emulate nested transactions using save points. A client uses that in production. And others in unit tests.
link
pak9rabid
173 days ago
Bingo...this is how I get around that.
link