From 41d0a3c922539464f353589f1089796b614faec9 Mon Sep 17 00:00:00 2001 From: Yahor Yuzefovich Date: Mon, 3 Jun 2019 14:12:59 -0400 Subject: [PATCH] roachtest: run TPCH queries only on v19.1.0 and after This change will skip execution of tpchbench/tpch roachtest on releases before v19.1.0 (i.e. the test and the corresponding benchmark won't be run on v2.1). This is needed since query 8 on 2.1 gets a terrible plan such that its execution runs out of disk. (Also, we were using sql20 to guide our performance in 2.1 anyway.) Release note: None --- pkg/cmd/roachtest/tpchbench.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/roachtest/tpchbench.go b/pkg/cmd/roachtest/tpchbench.go index 7f7a680bad55..6ad72369805e 100644 --- a/pkg/cmd/roachtest/tpchbench.go +++ b/pkg/cmd/roachtest/tpchbench.go @@ -259,6 +259,7 @@ func registerTPCHBench(r *registry) { ScaleFactor: 1, benchType: tpch, numRunsPerQuery: 3, + minVersion: `v19.1.0`, }, { Nodes: 3,