From 61b3e60395f7507ec3aa3939d4a27a83ffe290c8 Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Mon, 14 Nov 2022 13:38:46 +0000 Subject: [PATCH] storage: make `storage.mvcc.range_tombstones.enabled` tenant-readable 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. Release note: None --- pkg/storage/mvcc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/storage/mvcc.go b/pkg/storage/mvcc.go index 57d8825a3ed0..8a64fcc31176 100644 --- a/pkg/storage/mvcc.go +++ b/pkg/storage/mvcc.go @@ -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)