Skip to content

Commit

Permalink
Merge #35563
Browse files Browse the repository at this point in the history
35563: workload: run all TPC-H queries by default r=yuzefovich a=yuzefovich

Previously, we supported only a subset of 22 TPC-H queries, so by
default only that subset was run. Now, we support all of them, so
we should similarly run all of them by default.

Addresses: #35392. 

Release note: None

Co-authored-by: Yahor Yuzefovich <[email protected]>
  • Loading branch information
craig[bot] and yuzefovich committed Mar 12, 2019
2 parents 6a9c978 + 135d3ad commit 9d058d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/workload/tpch/tpch.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var tpchMeta = workload.Meta{
g.flags.Int64Var(&g.seed, `seed`, 1, `Random number generator seed`)
g.flags.IntVar(&g.scaleFactor, `scale-factor`, 1,
`Linear scale of how much data to use (each SF is ~1GB)`)
g.flags.StringVar(&g.queriesRaw, `queries`, `1,3,7,8,9,19`,
g.flags.StringVar(&g.queriesRaw, `queries`, `1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22`,
`Queries to run. Use a comma separated list of query numbers`)
g.flags.BoolVar(&g.distsql, `dist-sql`, true, `Use DistSQL for query execution`)
g.connFlags = workload.NewConnFlags(&g.flags)
Expand Down

0 comments on commit 9d058d5

Please sign in to comment.