Hacker News new | ask | show | jobs
by piaste 1681 days ago
I assume that means running everything within a transaction?

Does that mean you can't use regular transactions in code, since Postgres doesn't support 'true' nested transactions? Or does the Django ORM automatically convert those 'inner' transactions into Postgres SAVEPOINTS?

1 comments

Yes exactly. And yeah Django automatically maps transactions inside transactions to savepoints.