-
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.
137940: sql: allow creating or dropping roles while membership cache is being used r=Dedej-Bergin a=Dedej-Bergin When we set `allow_role_memberships_to_change_during_transaction` we should be able to create and drop users even when there are contending transactions on the `system.users` and `system.role_options`. These code changes release the locks on those system tables when `allow_role_memberships_to_change_during_transaction` is set. Fixes: #137710 Release note (bug fix): When we set `allow_role_memberships_to_change_during_transaction` are able to create and drop users quickly even when there are contending transactions on the `system.users` and `system.role_options`. 138673: changefeedccl: correct doc and rename changefeed.min_highwater_advance r=asg0451 a=andyyang890 Epic: CRDB-37337 Release note (ops change): The `changefeed.min_highwater_advance` cluster setting has been renamed to `changefeed.resolved_timestamp.min_update_interval` to more accurately reflect its function. Its description has also been updated. The old name remains usable for backwards-compatibility. 138826: crosscluster: deflake TestStreamIngestionJobWithRandomClient r=jeffswenson a=jeffswenson TestStreamIngestionJobWithRandomClient is flaking under stress with the following errors: ``` pq: cutover time 1736520389.999999000,0 is before earliest safe cutover time 1736520390.771027375,0 ``` ``` "0" is not greater than "0" ``` The first error occurs because the frontier would sometimes include a time that is earlier than the PTS created for the replication job. The second error would occur if a cutover time was picked that is earlier than any data written to the cluster. The test now uses a different strategy for picking a cutover time. The test ensures the cutover time is after the retained time and at least one checkpoint. Release note: none Epic: [CRDB-40896](https://cockroachlabs.atlassian.net/browse/CRDB-40896) Co-authored-by: Bergin Dedej <[email protected]> Co-authored-by: Andy Yang <[email protected]> Co-authored-by: Jeff Swenson <[email protected]>
- Loading branch information
Showing
8 changed files
with
159 additions
and
63 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