-
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.
76473: kvserver: activate a `StoreRebalancer` log message without verbosity levels set r=aayushshah15 a=aayushshah15 The `rebalanceStore()` goroutine is only called roughly once a minute, so there's no good reason for this message to be only activated behind a verbosity level. Release note: None 77052: opt: fetch virtual columns during cascading delete r=mgartner a=mgartner #### opt: fetch virtual columns during cascading delete Previously, virtual columns were not always fetched from child tables in FK relationships during cascading deletes. This prevented the execution engine from correctly removing KV entries in indexes on virtual columns, causing index corruption. Virtual columns are now always fetched from child tables during cascading deletes. Fixes #76852 Release note (bug fix): A bug has been fixed that could corrupt indexes containing virtual columns or expressions. The bug only occured when the index's table had a foreign key reference to another table with an `ON DELETE CASCADE` action, and a row was deleted in the referenced table. This bug was present since virtual columns were added in version 21.1.0. #### opt: remove includeVirtualComputed field from columnKinds The `columnKinds.includeVirtualComputed` column field is always `true`, so there is no need for it. It has been removed. Release note: None Co-authored-by: Aayush Shah <[email protected]> Co-authored-by: Marcus Gartner <[email protected]>
- Loading branch information
Showing
9 changed files
with
109 additions
and
85 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