summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/column_scan_explain.js
diff options
context:
space:
mode:
authorIrina Yatsenko <irina.yatsenko@mongodb.com>2022-09-26 15:59:20 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-09-26 17:21:40 +0000
commit14689df2c9025183c9700efcf7e479e247b29d82 (patch)
treec42845ac0ede3ae33ccdca53bdbb0412bb0fe323 /jstests/noPassthroughWithMongod/column_scan_explain.js
parented0dffba9cb908bb22c21d3d79f6434e25fa8947 (diff)
downloadmongo-14689df2c9025183c9700efcf7e479e247b29d82.tar.gz
SERVER-69549 Unify tags used in columnstore index tests
Diffstat (limited to 'jstests/noPassthroughWithMongod/column_scan_explain.js')
-rw-r--r--jstests/noPassthroughWithMongod/column_scan_explain.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/jstests/noPassthroughWithMongod/column_scan_explain.js b/jstests/noPassthroughWithMongod/column_scan_explain.js
index 1f2a60e8253..e08df3fe9b2 100644
--- a/jstests/noPassthroughWithMongod/column_scan_explain.js
+++ b/jstests/noPassthroughWithMongod/column_scan_explain.js
@@ -1,5 +1,13 @@
/**
* Tests the explain support for the COLUMN_SCAN stage.
+ * @tags: [
+ * # column store indexes are still under a feature flag and require full sbe
+ * uses_column_store_index,
+ * featureFlagColumnstoreIndexes,
+ * featureFlagSbeFull,
+ * # TODO SERVER-69884: featureFlag guarded tests shouldn't require explicit 'no_selinux' tag.
+ * no_selinux,
+ * ]
*/
(function() {
"use strict";
@@ -9,13 +17,6 @@ load("jstests/libs/analyze_plan.js"); // For planHasStage.
load("jstests/libs/sbe_util.js"); // For checkSBEEnabled.
load("jstests/libs/sbe_explain_helpers.js"); // For getSbePlanStages.
-const columnstoreEnabled =
- checkSBEEnabled(db, ["featureFlagColumnstoreIndexes", "featureFlagSbeFull"]);
-if (!columnstoreEnabled) {
- jsTestLog("Skipping columnstore index validation test since the feature flag is not enabled.");
- return;
-}
-
const coll = db.column_scan_explain;
coll.drop();