@@ -476,7 +476,7 @@ public void GroupBy_with_resultSelector_anonymous_type_method()
476476 [ SkippableFact ]
477477 public void GroupJoin_method ( )
478478 {
479- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
479+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
480480 var query = CreateQuery ( )
481481 . GroupJoin (
482482 CreateOtherQuery ( ) ,
@@ -492,7 +492,7 @@ public void GroupJoin_method()
492492 [ SkippableFact ]
493493 public void GroupJoinForeignField_method ( )
494494 {
495- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
495+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
496496 var query = CreateQuery ( )
497497 . GroupJoin (
498498 CreateOtherQuery ( ) ,
@@ -508,7 +508,7 @@ public void GroupJoinForeignField_method()
508508 [ SkippableFact ]
509509 public void GroupJoin_syntax ( )
510510 {
511- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
511+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
512512 var query = from p in CreateQuery ( )
513513 join o in CreateOtherQuery ( ) on p . Id equals o . Id into joined
514514 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
522522 [ SkippableFact ]
523523 public void GroupJoin_syntax_with_a_transparent_identifier ( )
524524 {
525- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
525+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
526526 var query = from p in CreateQuery ( )
527527 join o in CreateOtherQuery ( ) on p . Id equals o . Id into joined
528528 orderby p . B
@@ -538,7 +538,7 @@ orderby p.B
538538 [ SkippableFact ]
539539 public void GroupJoin_syntax_with_select_many ( )
540540 {
541- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
541+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
542542 var query = from p in CreateQuery ( )
543543 join o in __otherCollection on p . Id equals o . Id into joined
544544 from subo in joined
@@ -554,7 +554,7 @@ from subo in joined
554554 [ SkippableFact ]
555555 public void GroupJoin_syntax_with_select_many_and_DefaultIfEmpty ( )
556556 {
557- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
557+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
558558 var query = from p in CreateQuery ( )
559559 join o in __otherCollection on p . Id equals o . Id into joined
560560 from subo in joined . DefaultIfEmpty ( )
@@ -570,7 +570,7 @@ from subo in joined.DefaultIfEmpty()
570570 [ SkippableFact ]
571571 public void Join_method ( )
572572 {
573- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
573+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
574574 var query = CreateQuery ( )
575575 . Join (
576576 CreateOtherQuery ( ) ,
@@ -587,7 +587,7 @@ public void Join_method()
587587 [ SkippableFact ]
588588 public void JoinForeignField_method ( )
589589 {
590- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
590+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
591591 var query = CreateQuery ( )
592592 . Join (
593593 CreateOtherQuery ( ) ,
@@ -604,7 +604,7 @@ public void JoinForeignField_method()
604604 [ SkippableFact ]
605605 public void Join_syntax ( )
606606 {
607- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
607+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
608608 var query = from p in CreateQuery ( )
609609 join o in CreateOtherQuery ( ) on p . Id equals o . Id
610610 select new { A = p . A , CEF = o . CEF } ;
@@ -619,7 +619,7 @@ join o in CreateOtherQuery() on p.Id equals o.Id
619619 [ SkippableFact ]
620620 public void Join_syntax_with_a_transparent_identifier ( )
621621 {
622- RequireServer . Where ( minimumVersion : "3.1.9" , modules : "enterprise ") ;
622+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
623623 var query = from p in CreateQuery ( )
624624 join o in CreateOtherQuery ( ) on p . Id equals o . Id
625625 orderby p . B , o . Id
@@ -868,7 +868,7 @@ public void OrderBy_ThenBy_ThenByDescending_with_redundant_fields_in_different_d
868868 [ SkippableFact ]
869869 public void Sample ( )
870870 {
871- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
871+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
872872 var query = CreateQuery ( ) . Sample ( 100 ) ;
873873
874874 Assert ( query ,
@@ -1046,7 +1046,7 @@ public void Select_syntax_array()
10461046 [ SkippableFact ]
10471047 public void Select_method_array_index ( )
10481048 {
1049- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1049+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
10501050 var query = CreateQuery ( ) . Select ( x => x . M [ 0 ] ) ;
10511051
10521052 Assert ( query ,
@@ -1057,7 +1057,7 @@ public void Select_method_array_index()
10571057 [ SkippableFact ]
10581058 public void Select_syntax_array_index ( )
10591059 {
1060- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1060+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
10611061 var query = from x in CreateQuery ( )
10621062 select x . M [ 0 ] ;
10631063
@@ -1069,7 +1069,7 @@ public void Select_syntax_array_index()
10691069 [ SkippableFact ]
10701070 public void Select_method_embedded_pipeline ( )
10711071 {
1072- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1072+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
10731073 var query = CreateQuery ( ) . Select ( x => x . M . First ( ) ) ;
10741074
10751075 Assert ( query ,
@@ -1288,7 +1288,7 @@ public void Skip()
12881288 [ SkippableFact ]
12891289 public void StandardDeviationPopulation ( )
12901290 {
1291- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1291+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
12921292
12931293 var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulation ( ) ;
12941294
@@ -1298,7 +1298,7 @@ public void StandardDeviationPopulation()
12981298 [ SkippableFact ]
12991299 public void StandardDeviationPopulation_with_selector ( )
13001300 {
1301- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1301+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13021302
13031303 var result = CreateQuery ( ) . StandardDeviationPopulation ( x => x . C . E . F ) ;
13041304
@@ -1308,7 +1308,7 @@ public void StandardDeviationPopulation_with_selector()
13081308 [ SkippableFact ]
13091309 public async Task StandardDeviationPopulationAsync ( )
13101310 {
1311- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1311+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13121312
13131313 var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulationAsync ( ) ;
13141314
@@ -1318,7 +1318,7 @@ public async Task StandardDeviationPopulationAsync()
13181318 [ SkippableFact ]
13191319 public async Task StandardDeviationPopulationAsync_with_selector ( )
13201320 {
1321- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1321+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13221322
13231323 var result = await CreateQuery ( ) . StandardDeviationPopulationAsync ( x => x . C . E . F ) ;
13241324
@@ -1328,7 +1328,7 @@ public async Task StandardDeviationPopulationAsync_with_selector()
13281328 [ SkippableFact ]
13291329 public void StandardDeviationSample ( )
13301330 {
1331- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1331+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13321332
13331333 var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSample ( ) ;
13341334
@@ -1338,7 +1338,7 @@ public void StandardDeviationSample()
13381338 [ SkippableFact ]
13391339 public void StandardDeviationSample_with_selector ( )
13401340 {
1341- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1341+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13421342
13431343 var result = CreateQuery ( ) . StandardDeviationSample ( x => x . C . E . F ) ;
13441344
@@ -1348,7 +1348,7 @@ public void StandardDeviationSample_with_selector()
13481348 [ SkippableFact ]
13491349 public async Task StandardDeviationSampleAsync ( )
13501350 {
1351- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1351+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13521352
13531353 var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSampleAsync ( ) ;
13541354
@@ -1358,7 +1358,7 @@ public async Task StandardDeviationSampleAsync()
13581358 [ SkippableFact ]
13591359 public async Task StandardDeviationSampleAsync_with_selector ( )
13601360 {
1361- RequireServer . Where ( minimumVersion : "3.1.9 " ) ;
1361+ RequireServer . Where ( minimumVersion : "3.2.0 " ) ;
13621362
13631363 var result = await CreateQuery ( ) . StandardDeviationSampleAsync ( x => x . C . E . F ) ;
13641364
0 commit comments