-
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.
81310: sql: Remove GRANT privilege r=RichardJCai a=ecwall The GRANT privilege has been replaced by the more granular WITH GRANT OPTION that gives control over which privileges are allowed to be granted. Release note (sql change): Remove deprecated GRANT privilege. 81844: opt: use expr and input fds to remap index join columns r=rharding6373 a=rharding6373 Before this change index joins would use their own FDs to remap input to output columns if there was a required ordering. This could miss some cases where the index joins' FDs were generated from another expression in the memo group and did not include FDs from its own input, such as equivalent columns only found the index joins' input. This change modifies the FDs used for remapping columns to include both the index join and input FDs. Fixes: #81649 Release note (bug fix): Index joins now consider functional dependencies from their input when determining equivalent columns instead of returning an internal error. 82452: kvserver/rangefeed: move `CatchUpScan()` params to constructor r=stevendanna,miretskiy a=erikgrinaker `CatchUpIterator` took keyspan and start time parameters both in the constructor and when calling `CatchUpScan()`. This wasn't safe, because the iterator could have been constructed with bounds that would not satisfy the parameters passed to the scan -- for example, if passing a wider key span or lower start time -- in which case the scan would omit values. This patch removes the keyspan and start time parameters to `CatchUpScan()`, such that the caller must provide them during construction Release note: None Co-authored-by: Evan Wall <[email protected]> Co-authored-by: rharding6373 <[email protected]> Co-authored-by: Erik Grinaker <[email protected]>
- Loading branch information
Showing
72 changed files
with
939 additions
and
2,001 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.