summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/plan_cache_commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/plan_cache_commands.cpp')
-rw-r--r--src/mongo/db/commands/plan_cache_commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/plan_cache_commands.cpp b/src/mongo/db/commands/plan_cache_commands.cpp
index c7ebdb034a1..7f5e0209695 100644
--- a/src/mongo/db/commands/plan_cache_commands.cpp
+++ b/src/mongo/db/commands/plan_cache_commands.cpp
@@ -108,7 +108,7 @@ using std::unique_ptr;
PlanCacheCommand::PlanCacheCommand(const string& name,
const string& helpText,
ActionType actionType)
- : Command(name), helpText(helpText), actionType(actionType) {}
+ : BasicCommand(name), helpText(helpText), actionType(actionType) {}
bool PlanCacheCommand::run(OperationContext* opCtx,
const string& dbname,