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
// For transaction scoped locks, we can't roll back the save point on success because that will roll back our hold on the lock.
141
+
// It's ok to "leak" the savepoint because if it's an internally-owned transaction then the savepoint will be cleaned up with the disposal of the transaction.
142
+
// If it's an externally-owned transaction then we must "leak" it or we will lose the lock. Also, we can't avoid using a save point in this case
143
+
// because otherwise if an exception had occurred the extrenally-owned transaction will be aborted and become completely unusable.
0 commit comments