-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29520: sql: fix a panic in txn_state.go when verbose logging r=andreimatei,knz a=arjunravinarayan Fix a panic (reproducible with `make testlogic TESTFLAGS='-verbosity=2' FILES=pg_catalog` ) due to an uninitialized context. The comment on Ctx says that Ctx is uninitialized if we are in `fsm.stateNoTxn`. In that case, use the parent (session) context which is always initialized. First commit is just some type assertions that I found useful to understand what's going on. Fixes #29384. 29544: roachtest: fix acceptance/version-upgrade on remote clusters r=tschottdorf a=petermattis No need to run a versionStep for the base version as we manually do that before executing the version steps. Duplicating this work was failing on the second upload because we can't overwrite the executable for a running binary. Fixes #29542 Release note: None Co-authored-by: Arjun Narayan <[email protected]> Co-authored-by: Peter Mattis <[email protected]>
- Loading branch information
Showing
3 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters