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
151870: sql,multiregion: prevent DROP REGION in user DB from cleaning up `system.sql_instances` r=fqazi a=Nukitt
Previously, DROP REGION cleanup logic for system.sql_instances was
unintentionally applied to all databases when in multiregion setup, not
just the system database. The original intent was to only perform this
cleanup when extending `DROP REGION` for the system database.
However, the logic leaked through, affecting user databases as well.
This PR implements the fix described in #151789, and after a quick
check of these changes with the blocked tests in the #150730, this
fixes them plus passes the original tests created for testing drop region
in system database.
Epic: None
Fixes: #151789
Release note: None
151936: go.mod: bump Pebble to eaca9d0cc5ea r=jbowens a=jbowens
Changes:
* [`eaca9d0c`](cockroachdb/pebble@eaca9d0c) strparse: add (*Parser).Offset
* [`f8b8a139`](cockroachdb/pebble@f8b8a139) db: include size of input, output files for blob file rewrites
* [`d143b0d8`](cockroachdb/pebble@d143b0d8) compact: convert MERGE keys to SET when bottommost
Release note: none.
Epic: none.
152014: roachtest: fix client retry token bucket setting r=jeffswenson a=jeffswenson
Previously, backup fixtures were failing to generate due to a misnamed setting. The setting was originally correct, but became incorrect when I renamed the setting to fix the setting name lint.
We don't have to backport this because the roachtest change hit a merge conflict during the backport and I removed the roachtest changes from the backport since they were non-essential.
Release note: none
Informs: #148334
Co-authored-by: Nukitt <[email protected]>
Co-authored-by: Jackson Owens <[email protected]>
Co-authored-by: Jeff Swenson <[email protected]>
{"ALTER PARTITION \"us-east3\" OF INDEX system.public.lease@primary CONFIGURE ZONE USING\n\tnum_voters = 3,\n\tvoter_constraints = '[+region=us-east3]',\n\tlease_preferences = '[[+region=us-east3]]'"},
599
599
})
600
600
}
601
+
602
+
// TestDropRegionFromUserDatabaseCleansUpSystemTables verifies that
603
+
// dropping a region from a user database doesn't remove rows
0 commit comments