diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/dbtests/plan_executor_invalidation_test.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mongo/dbtests/plan_executor_invalidation_test.cpp b/src/mongo/dbtests/plan_executor_invalidation_test.cpp index ad4bd74b9d9..5918628d4fc 100644 --- a/src/mongo/dbtests/plan_executor_invalidation_test.cpp +++ b/src/mongo/dbtests/plan_executor_invalidation_test.cpp @@ -389,6 +389,12 @@ TEST_F(PlanExecutorInvalidationTest, IxscanDiesOnCollectionRenameWithinDatabase) } TEST_F(PlanExecutorInvalidationTest, CollScanDiesOnRestartCatalog) { + // TODO: SERVER-40588. Avoid restarting the catalog on the Biggie storage engine as it + // currently does not support this feature. + if (storageGlobalParams.engine == "biggie") { + return; + } + auto exec = getCollscan(); // Partially scan the collection. |