-
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.
120861: sql/pg_catalog: fix attname for dropped columns r=rafiss a=Jeremyyang920 Previously, the attname columns for dropped columns was padded used a %8d string format. This led to incorrect behavior as it meant a total of 8 '.' characters inclusive of the column ordinal as compared to the PG code base which always pads with 8 '.'. This affected migration tooling since it attempts to verify column names using the returned attname and led to mismatching column reports. This commit fixes the issue by explicitly setting the padding to 8 '.' to match the PG implementation. Fixes: #120855 Release note (bug fix): attname for dropped columns is now properly padded with 8 '.' to match PG. 120941: roachprod: add faster restarts, prettier multi-node sql printing r=dt a=dt A couple minor quality-of-life improvements motivated by working on long-lived, multi-node DRT clusters. 121119: server: delete TestIntentResolution r=arulajmani a=arulajmani This is an old test which is tightly coupled with how locks are tracked on the client. In particular, it expects all ranged locking requests to use `ResolveIntentRange` requests to resolve their locks; this is expected to change immminently (see #121086). It's also cumbersome to change given the randomization it uses to construct batches. We've got coverage for things being tested here elsewhere. There's some integration tests in `intent_resolver_integration_test.go` that test things deterministically. There's also tests for the txn pipeliner and txn committer that test lock tracking on the client. I'm probably missing some other examples as well, but deleting this should be safe. Epic: none Release note: None Co-authored-by: Jeremy Yang <[email protected]> Co-authored-by: David Taylor <[email protected]> Co-authored-by: Arul Ajmani <[email protected]>
- Loading branch information
Showing
9 changed files
with
283 additions
and
402 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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.