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
Also the severity is higher than the original report because once we announce savepoint support this pattern of txn is more likely to be issued by clients.
The check for DDL that I introduced in #43051 was broken in #45566. Try this:
issue
BEGIN; SELECT 1
, wait for results to ensure the auto-retry is disabledissue:
SAVEPOINT foo; CREATE TABLE t(x INT); SELECT crdb_internal.force_retry('1h');
so far all good
issue:
ROLLBACK TO SAVEPOINT foo
issue:
SELECT * FROM t
boom - deadlock.
Expected either of the following:
The text was updated successfully, but these errors were encountered: