diff options
author | David Storch <david.storch@10gen.com> | 2017-04-17 10:00:19 -0400 |
---|---|---|
committer | David Storch <david.storch@10gen.com> | 2017-04-17 18:23:33 -0400 |
commit | cd3409fa054db956e06d41a0d4e321c874e1a2d6 (patch) | |
tree | 1e1b6ffa7c92ee37456ff66664845caf3bf320a7 /src | |
parent | 4d2c6318608c22869b0655058431b37741822263 (diff) | |
download | mongo-cd3409fa054db956e06d41a0d4e321c874e1a2d6.tar.gz |
SERVER-28819 fix typo in PlanExecutor invariant
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/query/plan_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/query/plan_executor.cpp b/src/mongo/db/query/plan_executor.cpp index 7a47a801b38..135c6026137 100644 --- a/src/mongo/db/query/plan_executor.cpp +++ b/src/mongo/db/query/plan_executor.cpp @@ -238,7 +238,7 @@ Status PlanExecutor::pickBestPlan(const Collection* collection) { } PlanExecutor::~PlanExecutor() { - invariant(_currentState = kDisposed); + invariant(_currentState == kDisposed); } // static |