summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/suites/aggregation_column_store_index_passthrough.yml
blob: 36773338d804dfcaa1bead799e13facea22f65ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This test suite re-uses the tests in the aggregation suite but will automatically create a column
# store index on each collection using the failpoint defined in the test fixture's parameters below.
# For more details and rationale for this approach, see the failpoint's definition.
test_kind: js_test

selector:
  roots:
  - jstests/aggregation/**/*.js
  exclude_files:
  - jstests/aggregation/extras/*.js
  - jstests/aggregation/data/*.js
  # TODO SERVER-67264 there is a bug in projecting "a" and matching on "a.b".
  - jstests/aggregation/bugs/match.js

  exclude_with_any_tags:
  - assumes_no_implicit_index_creation
  # Column Store Indexes are known to mess up projection field order and it is fundamental to the
  # design so we accept these tests will fail.
  - tests_projection_field_order

executor:
  archive:
    hooks:
      - ValidateCollections
  config:
    shell_options:
      # This override method helps some tests remain applicable in the passthrough by hiding the
      # column store indexes from 'listIndexes' output, so tests can still see only a list of
      # indexes that the test itself created.
      eval: load("jstests/libs/override_methods/hide_column_store_indexes_from_get_indexes.js")
  hooks:
  - class: ValidateCollections
  - class: CleanEveryN
    n: 20
  fixture:
    class: MongoDFixture
    mongod_options:
      set_parameters:
        enableTestCommands: 1
        failpoint.createColumnIndexOnAllCollections:
          mode: alwaysOn