You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a transaction that has been started with BeginTx, rows are added to a table using insert statements, and then the context passed in to BeginTx is cancelled, the connection is closed immediately, making it impossible to roll back the transaction, and the rows are commited.
The expected behaviour would be to automatically roll back an interrupted transaction, or at least allow the user to do so.