From 1938aee15e158f5464cbf16395d64e8558466e87 Mon Sep 17 00:00:00 2001 From: Mihai Andrei Date: Thu, 9 Sep 2021 15:04:47 -0400 Subject: SERVER-57884 Implement $firstN/$lastN as window functions --- src/mongo/db/pipeline/accumulator_multi.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/mongo/db/pipeline/accumulator_multi.cpp') diff --git a/src/mongo/db/pipeline/accumulator_multi.cpp b/src/mongo/db/pipeline/accumulator_multi.cpp index 912d7c56569..5c848f50434 100644 --- a/src/mongo/db/pipeline/accumulator_multi.cpp +++ b/src/mongo/db/pipeline/accumulator_multi.cpp @@ -92,7 +92,6 @@ REGISTER_EXPRESSION_CONDITIONALLY( AllowedWithClientType::kAny, boost::none, feature_flags::gFeatureFlagExactTopNAccumulator.isEnabledAndIgnoreFCV()); -// TODO SERVER-57884 Add $firstN/$lastN as window functions. AccumulatorN::AccumulatorN(ExpressionContext* const expCtx) : AccumulatorState(expCtx), _maxMemUsageBytes(internalQueryMaxNAccumulatorBytes.load()) {} -- cgit v1.2.1