Skip to content

Commit cd04e03

Browse files
committed
workloadccl: mark tpccmultidb as bigInitialData
We already skip `tpcc` in `bigInitialData`, and I think it was a mistake that `tpccmultidb` wasn't marked in the same way. In particular, this will make it so that we don't run some of the test cases. The reason I was looking into this is that `TestAllRegisteredSetup/tpccmultidb` took 9 minutes on CI with external process mode. I couldn't quickly speed that up (e.g. exempting from rate limiting didn't help), but skipping it will work just fine. Release note: None
1 parent d5712a7 commit cd04e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/ccl/workloadccl/allccl/all_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434

3535
func bigInitialData(meta workload.Meta) bool {
3636
switch meta.Name {
37-
case `tpcc`, `tpch`, `tpcds`:
37+
case `tpcc`, `tpch`, `tpcds`, `tpccmultidb`:
3838
return true
3939
default:
4040
return false

0 commit comments

Comments
 (0)