@@ -565,6 +565,7 @@ public void OrderBy_ThenBy_ThenByDescending_with_redundant_fields_in_different_d
565
565
}
566
566
567
567
[ Test ]
568
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
568
569
public void Sample ( )
569
570
{
570
571
var query = CreateQuery ( ) . Sample ( 100 ) ;
@@ -732,6 +733,7 @@ public void Select_syntax_array()
732
733
}
733
734
734
735
[ Test ]
736
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
735
737
public void Select_method_array_index ( )
736
738
{
737
739
var query = CreateQuery ( ) . Select ( x => x . M [ 0 ] ) ;
@@ -742,6 +744,7 @@ public void Select_method_array_index()
742
744
}
743
745
744
746
[ Test ]
747
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
745
748
public void Select_syntax_array_index ( )
746
749
{
747
750
var query = from x in CreateQuery ( )
@@ -753,6 +756,7 @@ public void Select_syntax_array_index()
753
756
}
754
757
755
758
[ Test ]
759
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
756
760
public void Select_method_embedded_pipeline ( )
757
761
{
758
762
var query = CreateQuery ( ) . Select ( x => x . M . First ( ) ) ;
@@ -948,6 +952,7 @@ public void Skip()
948
952
}
949
953
950
954
[ Test ]
955
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
951
956
public void StandardDeviationPopulation ( )
952
957
{
953
958
var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulation ( ) ;
@@ -956,6 +961,7 @@ public void StandardDeviationPopulation()
956
961
}
957
962
958
963
[ Test ]
964
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
959
965
public void StandardDeviationPopulation_with_selector ( )
960
966
{
961
967
var result = CreateQuery ( ) . StandardDeviationPopulation ( x => x . C . E . F ) ;
@@ -964,6 +970,7 @@ public void StandardDeviationPopulation_with_selector()
964
970
}
965
971
966
972
[ Test ]
973
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
967
974
public async Task StandardDeviationPopulationAsync ( )
968
975
{
969
976
var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationPopulationAsync ( ) ;
@@ -972,6 +979,7 @@ public async Task StandardDeviationPopulationAsync()
972
979
}
973
980
974
981
[ Test ]
982
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
975
983
public async Task StandardDeviationPopulationAsync_with_selector ( )
976
984
{
977
985
var result = await CreateQuery ( ) . StandardDeviationPopulationAsync ( x => x . C . E . F ) ;
@@ -980,6 +988,7 @@ public async Task StandardDeviationPopulationAsync_with_selector()
980
988
}
981
989
982
990
[ Test ]
991
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
983
992
public void StandardDeviationSample ( )
984
993
{
985
994
var result = CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSample ( ) ;
@@ -988,6 +997,7 @@ public void StandardDeviationSample()
988
997
}
989
998
990
999
[ Test ]
1000
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
991
1001
public void StandardDeviationSample_with_selector ( )
992
1002
{
993
1003
var result = CreateQuery ( ) . StandardDeviationSample ( x => x . C . E . F ) ;
@@ -996,6 +1006,7 @@ public void StandardDeviationSample_with_selector()
996
1006
}
997
1007
998
1008
[ Test ]
1009
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
999
1010
public async Task StandardDeviationSampleAsync ( )
1000
1011
{
1001
1012
var result = await CreateQuery ( ) . Select ( x => x . C . E . F ) . StandardDeviationSampleAsync ( ) ;
@@ -1004,6 +1015,7 @@ public async Task StandardDeviationSampleAsync()
1004
1015
}
1005
1016
1006
1017
[ Test ]
1018
+ [ RequiresServer ( MinimumVersion = "3.1.9" ) ]
1007
1019
public async Task StandardDeviationSampleAsync_with_selector ( )
1008
1020
{
1009
1021
var result = await CreateQuery ( ) . StandardDeviationSampleAsync ( x => x . C . E . F ) ;
0 commit comments