diff options
| author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2025-02-11 15:07:35 -0300 |
|---|---|---|
| committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2025-02-11 15:07:35 -0300 |
| commit | 4cb8841196d0625dfa3825aa326f071cd27c7b8b (patch) | |
| tree | 1682a647d4463397c119183369ae6f750d5fdcff /src/mongo/db/query/projection_parser.cpp | |
| parent | aa03c6362cbaa767638e6eed9b031d86dd2643d1 (diff) | |
| parent | 8f0827553e09872941945a093b647a4211a9db7f (diff) | |
Update upstream source from tag 'upstream/6.0.0'master
Update to upstream version '6.0.0'
with Debian dir 5604a80ec1c96ca76f25f40d78e6ef855abec322
Diffstat (limited to 'src/mongo/db/query/projection_parser.cpp')
| -rw-r--r-- | src/mongo/db/query/projection_parser.cpp | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/mongo/db/query/projection_parser.cpp b/src/mongo/db/query/projection_parser.cpp index 3495f99f8f2..afb3c12556e 100644 --- a/src/mongo/db/query/projection_parser.cpp +++ b/src/mongo/db/query/projection_parser.cpp @@ -510,16 +510,7 @@ void parseSubObject(ParseContext* ctx, // It was likely intended to be an expression. Check if it's a valid field path or not to // confirm. try { - const auto elementFieldName = obj.firstElementFieldNameStringData(); - if (!hasPositionalOperator(elementFieldName)) { - FieldPath fp(elementFieldName); - } else { - // The 'FieldPath' parser doesn't take positional operators into account, but those - // are valid path projections so trim it off for this validation. - StringData pathWithoutPositionalOperator = - elementFieldName.substr(0, elementFieldName.size() - 2); - FieldPath fp(pathWithoutPositionalOperator); - } + FieldPath fp(obj.firstElementFieldNameStringData()); } catch (const DBException&) { uasserted(31325, str::stream() @@ -640,8 +631,10 @@ Projection parseAndAnalyze(boost::intrusive_ptr<ExpressionContext> expCtx, invariant(root.removeChild("_id")); } - // Optimize the projection expression if requested. - if (shouldOptimize) { + // Optimize the projection expression if requested and as long as not explicitly disabled + // pipeline optimization. + auto fp = globalFailPointRegistry().find("disablePipelineOptimization"); + if (shouldOptimize && !(fp && fp->shouldFail())) { optimizeProjection(&root); } |
