diff options
Diffstat (limited to 'src/mongo/db/query/cqf_command_utils.cpp')
-rw-r--r-- | src/mongo/db/query/cqf_command_utils.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mongo/db/query/cqf_command_utils.cpp b/src/mongo/db/query/cqf_command_utils.cpp index fd873a344b4..d6afd731f9b 100644 --- a/src/mongo/db/query/cqf_command_utils.cpp +++ b/src/mongo/db/query/cqf_command_utils.cpp @@ -70,6 +70,7 @@ #include "mongo/db/pipeline/abt/document_source_visitor.h" #include "mongo/db/pipeline/abt/match_expression_visitor.h" #include "mongo/db/pipeline/abt/utils.h" +#include "mongo/db/pipeline/accumulator_percentile.h" #include "mongo/db/pipeline/document_source_bucket_auto.h" #include "mongo/db/pipeline/document_source_change_stream_add_post_image.h" #include "mongo/db/pipeline/document_source_change_stream_add_pre_image.h" @@ -889,6 +890,15 @@ public: unsupportedExpression(); } + void visit(const ExpressionFromAccumulatorQuantile<AccumulatorMedian>* expr) override final { + unsupportedExpression(); + } + + void visit( + const ExpressionFromAccumulatorQuantile<AccumulatorPercentile>* expr) override final { + unsupportedExpression(); + } + void visit(const ExpressionFromAccumulator<AccumulatorStdDevPop>* expr) override final { unsupportedExpression(); } |