@@ -476,7 +476,7 @@ public void GroupBy_with_resultSelector_anonymous_type_method()
476
476
[ SkippableFact ]
477
477
public void GroupJoin_method ( )
478
478
{
479
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
479
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
480
480
var query = CreateQuery ( )
481
481
. GroupJoin (
482
482
CreateOtherQuery ( ) ,
@@ -492,7 +492,7 @@ public void GroupJoin_method()
492
492
[ SkippableFact ]
493
493
public void GroupJoinForeignField_method ( )
494
494
{
495
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
495
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
496
496
var query = CreateQuery ( )
497
497
. GroupJoin (
498
498
CreateOtherQuery ( ) ,
@@ -508,7 +508,7 @@ public void GroupJoinForeignField_method()
508
508
[ SkippableFact ]
509
509
public void GroupJoin_syntax ( )
510
510
{
511
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
511
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
512
512
var query = from p in CreateQuery ( )
513
513
join o in CreateOtherQuery ( ) on p . Id equals o . Id into joined
514
514
select new { A = p . A , SumCEF = joined . Sum ( x => x . CEF ) } ;
@@ -522,7 +522,7 @@ join o in CreateOtherQuery() on p.Id equals o.Id into joined
522
522
[ SkippableFact ]
523
523
public void GroupJoin_syntax_with_a_transparent_identifier ( )
524
524
{
525
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
525
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
526
526
var query = from p in CreateQuery ( )
527
527
join o in CreateOtherQuery ( ) on p . Id equals o . Id into joined
528
528
orderby p . B
@@ -538,7 +538,7 @@ orderby p.B
538
538
[ SkippableFact ]
539
539
public void GroupJoin_syntax_with_select_many ( )
540
540
{
541
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
541
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
542
542
var query = from p in CreateQuery ( )
543
543
join o in __otherCollection on p . Id equals o . Id into joined
544
544
from subo in joined
@@ -554,7 +554,7 @@ from subo in joined
554
554
[ SkippableFact ]
555
555
public void GroupJoin_syntax_with_select_many_and_DefaultIfEmpty ( )
556
556
{
557
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
557
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
558
558
var query = from p in CreateQuery ( )
559
559
join o in __otherCollection on p . Id equals o . Id into joined
560
560
from subo in joined . DefaultIfEmpty ( )
@@ -570,7 +570,7 @@ from subo in joined.DefaultIfEmpty()
570
570
[ SkippableFact ]
571
571
public void Join_method ( )
572
572
{
573
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
573
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
574
574
var query = CreateQuery ( )
575
575
. Join (
576
576
CreateOtherQuery ( ) ,
@@ -587,7 +587,7 @@ public void Join_method()
587
587
[ SkippableFact ]
588
588
public void JoinForeignField_method ( )
589
589
{
590
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
590
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
591
591
var query = CreateQuery ( )
592
592
. Join (
593
593
CreateOtherQuery ( ) ,
@@ -604,7 +604,7 @@ public void JoinForeignField_method()
604
604
[ SkippableFact ]
605
605
public void Join_syntax ( )
606
606
{
607
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
607
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
608
608
var query = from p in CreateQuery ( )
609
609
join o in CreateOtherQuery ( ) on p . Id equals o . Id
610
610
select new { A = p . A , CEF = o . CEF } ;
@@ -619,7 +619,7 @@ join o in CreateOtherQuery() on p.Id equals o.Id
619
619
[ SkippableFact ]
620
620
public void Join_syntax_with_a_transparent_identifier ( )
621
621
{
622
- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
622
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
623
623
var query = from p in CreateQuery ( )
624
624
join o in CreateOtherQuery ( ) on p . Id equals o . Id
625
625
orderby p . B , o . Id
@@ -868,7 +868,7 @@ public void OrderBy_ThenBy_ThenByDescending_with_redundant_fields_in_different_d
868
868
[ SkippableFact ]
869
869
public void Sample ( )
870
870
{
871
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
871
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
872
872
var query = CreateQuery ( ) . Sample ( 100 ) ;
873
873
874
874
Assert ( query ,
@@ -1046,7 +1046,7 @@ public void Select_syntax_array()
1046
1046
[ SkippableFact ]
1047
1047
public void Select_method_array_index ( )
1048
1048
{
1049
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1049
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1050
1050
var query = CreateQuery ( ) . Select ( x => x . M [ 0 ] ) ;
1051
1051
1052
1052
Assert ( query ,
@@ -1057,7 +1057,7 @@ public void Select_method_array_index()
1057
1057
[ SkippableFact ]
1058
1058
public void Select_syntax_array_index ( )
1059
1059
{
1060
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1060
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1061
1061
var query = from x in CreateQuery ( )
1062
1062
select x . M [ 0 ] ;
1063
1063
@@ -1069,7 +1069,7 @@ public void Select_syntax_array_index()
1069
1069
[ SkippableFact ]
1070
1070
public void Select_method_embedded_pipeline ( )
1071
1071
{
1072
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1072
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1073
1073
var query = CreateQuery ( ) . Select ( x => x . M . First ( ) ) ;
1074
1074
1075
1075
Assert ( query ,
@@ -1288,7 +1288,7 @@ public void Skip()
1288
1288
[ SkippableFact ]
1289
1289
public void StandardDeviationPopulation ( )
1290
1290
{
1291
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1291
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1292
1292
1293
1293
var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulation ( ) ;
1294
1294
@@ -1298,7 +1298,7 @@ public void StandardDeviationPopulation()
1298
1298
[ SkippableFact ]
1299
1299
public void StandardDeviationPopulation_with_selector ( )
1300
1300
{
1301
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1301
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1302
1302
1303
1303
var result = CreateQuery ( ) . StandardDeviationPopulation ( x => x . C . E . F ) ;
1304
1304
@@ -1308,7 +1308,7 @@ public void StandardDeviationPopulation_with_selector()
1308
1308
[ SkippableFact ]
1309
1309
public async Task StandardDeviationPopulationAsync ( )
1310
1310
{
1311
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1311
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1312
1312
1313
1313
var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulationAsync ( ) ;
1314
1314
@@ -1318,7 +1318,7 @@ public async Task StandardDeviationPopulationAsync()
1318
1318
[ SkippableFact ]
1319
1319
public async Task StandardDeviationPopulationAsync_with_selector ( )
1320
1320
{
1321
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1321
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1322
1322
1323
1323
var result = await CreateQuery ( ) . StandardDeviationPopulationAsync ( x => x . C . E . F ) ;
1324
1324
@@ -1328,7 +1328,7 @@ public async Task StandardDeviationPopulationAsync_with_selector()
1328
1328
[ SkippableFact ]
1329
1329
public void StandardDeviationSample ( )
1330
1330
{
1331
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1331
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1332
1332
1333
1333
var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSample ( ) ;
1334
1334
@@ -1338,7 +1338,7 @@ public void StandardDeviationSample()
1338
1338
[ SkippableFact ]
1339
1339
public void StandardDeviationSample_with_selector ( )
1340
1340
{
1341
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1341
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1342
1342
1343
1343
var result = CreateQuery ( ) . StandardDeviationSample ( x => x . C . E . F ) ;
1344
1344
@@ -1348,7 +1348,7 @@ public void StandardDeviationSample_with_selector()
1348
1348
[ SkippableFact ]
1349
1349
public async Task StandardDeviationSampleAsync ( )
1350
1350
{
1351
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1351
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1352
1352
1353
1353
var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSampleAsync ( ) ;
1354
1354
@@ -1358,7 +1358,7 @@ public async Task StandardDeviationSampleAsync()
1358
1358
[ SkippableFact ]
1359
1359
public async Task StandardDeviationSampleAsync_with_selector ( )
1360
1360
{
1361
- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1361
+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
1362
1362
1363
1363
var result = await CreateQuery ( ) . StandardDeviationSampleAsync ( x => x . C . E . F ) ;
1364
1364
0 commit comments