summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/classic_stage_builder.cpp
diff options
context:
space:
mode:
authorIan Boros <ian.boros@mongodb.com>2022-02-04 18:05:09 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-02-04 19:10:32 +0000
commita3b36dabe82aea53d2d16d82cd20f95d19e67932 (patch)
treec8b13999033af5c1b2b9bf215ba912673a7656b3 /src/mongo/db/query/classic_stage_builder.cpp
parent78764d1593483cb96c308de98b3d5bad8a4b22ee (diff)
downloadmongo-a3b36dabe82aea53d2d16d82cd20f95d19e67932.tar.gz
SERVER-62984 Rudimentary query planning for columnar indexes
Diffstat (limited to 'src/mongo/db/query/classic_stage_builder.cpp')
-rw-r--r--src/mongo/db/query/classic_stage_builder.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mongo/db/query/classic_stage_builder.cpp b/src/mongo/db/query/classic_stage_builder.cpp
index 99e730cf9a0..dfa3f119a8f 100644
--- a/src/mongo/db/query/classic_stage_builder.cpp
+++ b/src/mongo/db/query/classic_stage_builder.cpp
@@ -417,6 +417,7 @@ std::unique_ptr<PlanStage> ClassicStageBuilder::build(const QuerySolutionNode* r
case STAGE_UNKNOWN:
case STAGE_UNPACK_TIMESERIES_BUCKET:
case STAGE_SENTINEL:
+ case STAGE_COLUMN_IXSCAN:
case STAGE_UPDATE: {
LOGV2_WARNING(4615604, "Can't build exec tree for node", "node"_attr = *root);
}