You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
155531: identmap: use case-insensitive matching r=rafiss a=rafiss
All usernames in CockroachDB are normalized to lower-case. Previously, the identity map would not account for this, and would use a case sensitive match to check the identities to be mapped.
Epic: None
Release note (bug fix): The username remapping functionality specified by the server.identity_map.configuration cluster setting now matches identities and usernames with a case-insensitive comparison.
156018: changefeedccl: skip TestChangefeedKafkaMessageTooLarge under duress r=andyyang890 a=arulajmani
Closes#155333
Release note: None
156066: kvcoord: always check for buffered writes when checking for locks r=miraradeva a=stevendanna
When reading through code for an unrelated reason we noted that there was a call checking for acquired locks but not buffered writes. This is concerning since the reasoning for why we need to check for acquired locks almost always implies we should also check for buffered writes.
In the particular case of RollbackToSavepoint, I believe the omission has no impact. Namely:
- Previous writes have been cleared from the buffer and thus aren't in danger of failing to be rolled back.
- Subsequent writes will bump the sequence number and thus those writes are not in danger of being erroneously rolled back.
- Subsequent reads cannot read the data that should have been rolled back because it will have been cleared from the buffer.
Further, for real-world SQL transactions, we never have a buffered write without having at least 1 lock.
However, for the avoidance fo doubt, we now check both and add a new method to avoid missing checks in the future.
Fixes#155975
Release note: None
156081: kvnemesis: bump the timeout r=miraradeva a=arulajmani
Medium -> large.
Closes#155985Closes#155852
Epic: none
Release note: None
Co-authored-by: Rafi Shamim <[email protected]>
Co-authored-by: Arul Ajmani <[email protected]>
Co-authored-by: Steven Danna <[email protected]>
0 commit comments