diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-04-10 17:10:18 -0400 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-04-11 22:17:45 -0400 |
commit | 0b8c52e60eacd87bb0fcdb30da54a64f9df85ff0 (patch) | |
tree | 346982526a80519210f0286e615e6842488a4e31 /src | |
parent | f96df350de8bd71d83cbf06fe9a233a3827e37b8 (diff) | |
download | mongo-0b8c52e60eacd87bb0fcdb30da54a64f9df85ff0.tar.gz |
SERVER-40568 Disallow restarting the catalog on BiggieSE
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. |