File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed
src/MongoDB.Driver.Core/Core/Misc
tests/MongoDB.Driver.Tests/Linq/Linq3ImplementationTests/Jira Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ public class Feature
97
97
private static readonly Feature __maxTime = new Feature ( "MaxTime" , WireVersion . Server26 ) ;
98
98
private static readonly Feature __mmapV1StorageEngine = new Feature ( "MmapV1StorageEngine" , WireVersion . Zero , WireVersion . Server42 ) ;
99
99
private static readonly Feature __partialIndexes = new Feature ( "PartialIndexes" , WireVersion . Server32 ) ;
100
+ private static readonly Feature __pickAccumulatorsNewIn52 = new Feature ( "PickAccumulatorsNewIn52" , WireVersion . Server52 ) ;
100
101
private static readonly Feature __readConcern = new Feature ( "ReadConcern" , WireVersion . Server32 ) ;
101
102
private static readonly Feature __retryableReads = new Feature ( "RetryableReads" , WireVersion . Server36 ) ;
102
103
private static readonly Feature __retryableWrites = new Feature ( "RetryableWrites" , WireVersion . Server36 ) ;
@@ -535,6 +536,11 @@ public class Feature
535
536
[ Obsolete ( "This property will be removed in a later release." ) ]
536
537
public static Feature PartialIndexes => __partialIndexes ;
537
538
539
+ /// <summary>
540
+ /// Gets the pick accumulators new in 5.2 feature.
541
+ /// </summary>
542
+ public static Feature PickAccumulatorsNewIn52 => __pickAccumulatorsNewIn52 ;
543
+
538
544
/// <summary>
539
545
/// Gets the read concern feature.
540
546
/// </summary>
You can’t perform that action at this time.
0 commit comments