summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/index_filter_commands_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/index_filter_commands_test.cpp')
-rw-r--r--src/mongo/db/commands/index_filter_commands_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/commands/index_filter_commands_test.cpp b/src/mongo/db/commands/index_filter_commands_test.cpp
index b23b3d34ed8..ba6f6c87e6c 100644
--- a/src/mongo/db/commands/index_filter_commands_test.cpp
+++ b/src/mongo/db/commands/index_filter_commands_test.cpp
@@ -157,7 +157,8 @@ bool planCacheContains(const PlanCache& planCache,
PlanCacheEntry* entry = *i;
// Canonicalizing query shape in cache entry to get cache key.
- // Alternatively, we could add key to PlanCacheEntry but that would be used in one place only.
+ // Alternatively, we could add key to PlanCacheEntry but that would be used in one place
+ // only.
ASSERT_OK(
CanonicalQuery::canonicalize(ns, entry->query, entry->sort, entry->projection, &cqRaw));
unique_ptr<CanonicalQuery> currentQuery(cqRaw);