From 80cdb5e927cf426f537dc5b05437372720f9ea4c Mon Sep 17 00:00:00 2001 From: Neil Deshpande Date: Fri, 28 Jun 2024 00:01:28 -0700 Subject: [PATCH] Add a query feature flag for MakeList and MakeSet --- .../src/Query/Core/QueryPlan/QueryFeature.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Microsoft.Azure.Cosmos/src/Query/Core/QueryPlan/QueryFeature.cs b/Microsoft.Azure.Cosmos/src/Query/Core/QueryPlan/QueryFeature.cs index 0b3ed7fdc1..a8da1f9245 100644 --- a/Microsoft.Azure.Cosmos/src/Query/Core/QueryPlan/QueryFeature.cs +++ b/Microsoft.Azure.Cosmos/src/Query/Core/QueryPlan/QueryFeature.cs @@ -28,6 +28,7 @@ enum QueryFeatures : ulong Top = 1 << 8, NonValueAggregate = 1 << 9, DCount = 1 << 10, - NonStreamingOrderBy = 1 << 11, + NonStreamingOrderBy = 1 << 11, + ListAndSetAggregate = 1 << 12, } } \ No newline at end of file