-
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.
Browse files
Browse the repository at this point in the history
72348: kv: fix improperly wrapped errors r=arulajmani,nvanbenschoten a=rafiss refs #42510 I'm working on a linter that detects errors that are not wrapped correctly, and it discovered these. Release note: None 72692: server: tidy tenant testing client r=matthewtodd a=matthewtodd Pushing these assertions into the test client removes some of the line noise from the tests, making them easier to read. We also generalize the tenant http client to provide plain text as well as json responses. Release note: None 72717: server: add check for sql instance ID in tenant status server rpc handlers r=lindseyjin a=lindseyjin Previously, most RPC handlers in tenant_status.go did not check if the request was received by the status server before the sql pod had finished its instance ID initialization. This commit adds in those missing checks. Release note: None 72749: cmd/roachtest: fix `--cluster` for new `roachprod` r=ajwerner a=ajwerner The `roachprod list` command no longer takes a positional argument to filter the results. This commit adopts the new `--pattern` flag in `roachtest`. This is important when providing your own cluster for roachtest with the `--cluster` flag. Release note: None 72770: ui: create error Boundary component r=maryliag a=maryliag Previously, when there was an error on the pages on the console it would crash and nothing would load. This commit introduces an error boundary, making an error message show instead of the blank page. <img width="897" alt="Screen Shot 2021-11-15 at 1 47 39 PM" src="https://user-images.githubusercontent.com/1017486/141837360-eeba1e0b-5245-43cf-a0a8-e185f2cfa179.png"> Release note (ui change): New page for when something goes wrong and the page crashes. 72777: sql: disallow ALTER COLUMN TYPE for columns stored in secondary indexes r=ajwerner a=ajwerner It is broken. After the change, the index, after the change, refers to a column which is not in the table. Fixes #72718. Relates to #72771. Release note (sql change): The experimental `ALTER COLUMN TYPE` statement is no longer permitted when the column is stored in a secondary index. Prior to this change, that was the only sort of secondary index membership which was allowed, but the result of the operation was a subtly corrupted table. 72787: util: make FastIntMap return -1 when not found always r=ajwerner a=ajwerner Before this change, it would only return -1 if it had not outgrown the small map. This lead to the oddities uncovered in #72718. Release note: None Co-authored-by: Rafi Shamim <[email protected]> Co-authored-by: Matthew Todd <[email protected]> Co-authored-by: Lindsey Jin <[email protected]> Co-authored-by: Andrew Werner <[email protected]> Co-authored-by: Marylia Gutierrez <[email protected]>
- Loading branch information
Showing
19 changed files
with
259 additions
and
72 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 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 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
Oops, something went wrong.