Skip to content

Commit 85b5eff

Browse files
celialaclaude
andcommitted
storage: advance MinimumSupportedFormatVersion from 25.2 to 25.3
Part of the quarterly M.4 "Bump MinSupported" task as outlined in `pkg/clusterversion/README.md`. This commit advances storage's MinimumSupportedFormatVersion from 25.2 (pebble.FormatTableFormatV6) to 25.3 (pebble.FormatValueSeparation). Epic: None Release note: None 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent cf51343 commit 85b5eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/storage/pebble.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2447,7 +2447,7 @@ var pebbleFormatVersionMap = map[clusterversion.Key]pebble.FormatMajorVersion{
24472447
// Cockroach code relies on unconditionally (like range keys). New stores are by
24482448
// default created with this version. It should correspond to the minimum
24492449
// supported binary version.
2450-
const MinimumSupportedFormatVersion = pebble.FormatTableFormatV6
2450+
const MinimumSupportedFormatVersion = pebble.FormatValueSeparation
24512451

24522452
// pebbleFormatVersionKeys contains the keys in the map above, in descending order.
24532453
var pebbleFormatVersionKeys = slices.SortedFunc(maps.Keys(pebbleFormatVersionMap), func(a, b clusterversion.Key) int {

0 commit comments

Comments
 (0)