From 9cb541d7ee35d7b2f7cfeb738b4daaa8284255ad Mon Sep 17 00:00:00 2001 From: Rafi Shamim Date: Tue, 17 Sep 2024 17:29:45 -0400 Subject: [PATCH] sql: deflake TestValidationWithProtectedTS This test does not work if ranges get split, so we disable the split queue. Release note: None --- pkg/sql/backfill_protected_timestamp_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/sql/backfill_protected_timestamp_test.go b/pkg/sql/backfill_protected_timestamp_test.go index cf818a5da2aa..8693fe13acb4 100644 --- a/pkg/sql/backfill_protected_timestamp_test.go +++ b/pkg/sql/backfill_protected_timestamp_test.go @@ -61,6 +61,9 @@ func TestValidationWithProtectedTS(t *testing.T) { SQLEvalContext: &eval.TestingKnobs{ ForceProductionValues: true, }, + Store: &kvserver.StoreTestingKnobs{ + DisableSplitQueue: true, + }, SQLExecutor: &sql.ExecutorTestingKnobs{ BeforeExecute: func(ctx context.Context, sql string, descriptors *descs.Collection) { if indexScanQuery.MatchString(sql) {