SERVER-69956 introduced a new query parameter which is updated in many columnar store index tests. Since they run parallel with SBE cache tests, this may cause SBE cache to fail since updating the query parameter will clear the global cache.
A temporary fix is being made in SERVER-72636 for the purpose making the build green. This ticket will cover a proper fix which could involve any of the following:
-Using testCommandsEnabled to relax the heuristics used for planning CSI queries. This would mean no test banning is required, though it involves changing server behavior.
-Banning all tests that call this function from within the parallel suite. We'd also change setUpServerForColumnStoreIndexTest to throw an exception any time it is run inside the parallel suite, so that future callers would not accidentally introduce the same bug.
-Something else