Skip to content

Commit

Permalink
Merge #91824
Browse files Browse the repository at this point in the history
91824: storage: make `storage.mvcc.range_tombstones.enabled` tenant-readable r=erikgrinaker a=erikgrinaker

This setting needs to be readable by tenants, in order to be used by schema GC and import jobs.

Appropriate tests will be added separately.

Epic: CRDB-2624

Release note: None

Co-authored-by: Erik Grinaker <[email protected]>
  • Loading branch information
craig[bot] and erikgrinaker committed Nov 14, 2022
2 parents fed5abb + 61b3e60 commit 2e480d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/mvcc.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var minWALSyncInterval = settings.RegisterDurationSetting(
// being written, but already written tombstones will remain until GCed. The
// above note on jobs also applies in this case.
var MVCCRangeTombstonesEnabled = settings.RegisterBoolSetting(
settings.SystemOnly,
settings.TenantReadOnly,
"storage.mvcc.range_tombstones.enabled",
"enables the use of MVCC range tombstones",
true)
Expand Down

0 comments on commit 2e480d3

Please sign in to comment.