-
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.
58990: sql: deal with computed and default column generation in index backfi… r=ajwerner a=ajwerner This commit was mostly motivated by work on the new schema changer to enable the behavior described in #47989, however, it also turns out to be a prerequisite of the work to use virtual computed columns in secondary indexes. Given we haven't released virtual computed columns, I'm going to omit a release not for this PR. The basic idea is that we need to track dependencies for computed columns to make sure they are retrieved. Default expressions need to be evaluated first. Much of the code is testing. Release note: None 59261: sql: add full table or index scan count metric r=barryhe2000 a=barryhe2000 Previously, this metric was not available, but is now added so that users can see when full table scans or full index scans are being used for their queries. Fixes: #58653 Release note (ui change): User can see time series custom chart in admin ui for full table or index scans. 59478: cloudimpl: cache suffix in remote file sst wrapper r=dt a=dt Reading SSTs starts with multiple tiny reads in offsets near the end of the file. If we can read that whole region once and fulfill those reads from a cached buffer, we can avoid repeated RPCs. Release note: none. Co-authored-by: Andrew Werner <[email protected]> Co-authored-by: Barry He <[email protected]> Co-authored-by: David Taylor <[email protected]>
- Loading branch information
Showing
15 changed files
with
814 additions
and
71 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
Oops, something went wrong.