We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 247c2cd commit 4911eabCopy full SHA for 4911eab
1 file changed
benchmarks/src/tpcds/run.rs
@@ -208,18 +208,9 @@ impl RunOpt {
208
// query 15 is special, with 3 statements. the second statement is the one from which we
209
// want to capture the results
210
let mut result = vec![];
211
- if query_id == 15 {
212
- for (n, query) in sql.iter().enumerate() {
213
- if n == 1 {
214
- result = self.execute_query(ctx, query).await?;
215
- } else {
216
- self.execute_query(ctx, query).await?;
217
- }
218
219
220
- for query in sql {
221
222
+
+ for query in sql {
+ result = self.execute_query(ctx, query).await?;
223
}
224
225
let elapsed = start.elapsed();
0 commit comments