@@ -67,7 +67,7 @@ func TestRangeFeedIntegration(t *testing.T) {
67
67
defer log .Scope (t ).Close (t )
68
68
69
69
ctx := context .Background ()
70
- settings := cluster .MakeClusterSettings ()
70
+ settings := cluster .MakeTestingClusterSettings ()
71
71
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
72
72
Settings : settings ,
73
73
})
@@ -163,7 +163,7 @@ func TestWithOnFrontierAdvance(t *testing.T) {
163
163
defer log .Scope (t ).Close (t )
164
164
165
165
ctx := context .Background ()
166
- settings := cluster .MakeClusterSettings ()
166
+ settings := cluster .MakeTestingClusterSettings ()
167
167
tc := testcluster .StartTestCluster (t , 1 , base.TestClusterArgs {
168
168
ReplicationMode : base .ReplicationManual ,
169
169
ServerArgs : base.TestServerArgs {Settings : settings },
@@ -288,7 +288,7 @@ func TestWithOnCheckpoint(t *testing.T) {
288
288
defer log .Scope (t ).Close (t )
289
289
290
290
ctx := context .Background ()
291
- settings := cluster .MakeClusterSettings ()
291
+ settings := cluster .MakeTestingClusterSettings ()
292
292
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
293
293
Settings : settings ,
294
294
})
@@ -388,7 +388,7 @@ func TestRangefeedValueTimestamps(t *testing.T) {
388
388
defer log .Scope (t ).Close (t )
389
389
390
390
ctx := context .Background ()
391
- settings := cluster .MakeClusterSettings ()
391
+ settings := cluster .MakeTestingClusterSettings ()
392
392
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
393
393
Settings : settings ,
394
394
})
@@ -502,7 +502,7 @@ func TestWithOnSSTable(t *testing.T) {
502
502
defer log .Scope (t ).Close (t )
503
503
504
504
ctx := context .Background ()
505
- settings := cluster .MakeClusterSettings ()
505
+ settings := cluster .MakeTestingClusterSettings ()
506
506
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
507
507
Settings : settings ,
508
508
DefaultTestTenant : base .TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet (109473 ),
@@ -601,7 +601,7 @@ func TestWithOnSSTableCatchesUpIfNotSet(t *testing.T) {
601
601
ctx , cancel := context .WithCancel (context .Background ())
602
602
defer cancel ()
603
603
604
- settings := cluster .MakeClusterSettings ()
604
+ settings := cluster .MakeTestingClusterSettings ()
605
605
tc := testcluster .StartTestCluster (t , 1 , base.TestClusterArgs {
606
606
ServerArgs : base.TestServerArgs {
607
607
DefaultTestTenant : base .TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet (109473 ),
@@ -707,7 +707,7 @@ func TestWithOnDeleteRange(t *testing.T) {
707
707
defer log .Scope (t ).Close (t )
708
708
709
709
ctx := context .Background ()
710
- settings := cluster .MakeClusterSettings ()
710
+ settings := cluster .MakeTestingClusterSettings ()
711
711
tc := testcluster .StartTestCluster (t , 1 , base.TestClusterArgs {
712
712
ServerArgs : base.TestServerArgs {
713
713
Settings : settings ,
@@ -888,7 +888,7 @@ func TestUnrecoverableErrors(t *testing.T) {
888
888
defer log .Scope (t ).Close (t )
889
889
890
890
ctx := context .Background ()
891
- settings := cluster .MakeClusterSettings ()
891
+ settings := cluster .MakeTestingClusterSettings ()
892
892
srv , sqlDB , kvDB := serverutils .StartServer (t , base.TestServerArgs {
893
893
DefaultTestTenant : base .TestIsForStuffThatShouldWorkWithSecondaryTenantsButDoesntYet (109472 ),
894
894
Knobs : base.TestingKnobs {
@@ -984,7 +984,7 @@ func TestMVCCHistoryMutationError(t *testing.T) {
984
984
ctx , cancel := context .WithCancel (context .Background ())
985
985
defer cancel ()
986
986
987
- settings := cluster .MakeClusterSettings ()
987
+ settings := cluster .MakeTestingClusterSettings ()
988
988
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
989
989
Settings : settings ,
990
990
})
@@ -1066,7 +1066,7 @@ func TestRangefeedWithLabelsOption(t *testing.T) {
1066
1066
defer log .Scope (t ).Close (t )
1067
1067
1068
1068
ctx := context .Background ()
1069
- settings := cluster .MakeClusterSettings ()
1069
+ settings := cluster .MakeTestingClusterSettings ()
1070
1070
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
1071
1071
Settings : settings ,
1072
1072
})
@@ -1179,7 +1179,7 @@ func TestRangeFeedStartTimeExclusive(t *testing.T) {
1179
1179
defer log .Scope (t ).Close (t )
1180
1180
1181
1181
ctx := context .Background ()
1182
- settings := cluster .MakeClusterSettings ()
1182
+ settings := cluster .MakeTestingClusterSettings ()
1183
1183
srv , _ , db := serverutils .StartServer (t , base.TestServerArgs {
1184
1184
Settings : settings ,
1185
1185
})
@@ -1312,7 +1312,7 @@ func TestRangeFeedIntentResolutionRace(t *testing.T) {
1312
1312
1313
1313
// Speed up the test by reducing various closed/resolved timestamp intervals.
1314
1314
const interval = 100 * time .Millisecond
1315
- st := cluster .MakeClusterSettings ()
1315
+ st := cluster .MakeTestingClusterSettings ()
1316
1316
kvserver .RangeFeedRefreshInterval .Override (ctx , & st .SV , interval )
1317
1317
closedts .SideTransportCloseInterval .Override (ctx , & st .SV , interval )
1318
1318
closedts .TargetDuration .Override (ctx , & st .SV , interval )
0 commit comments