summaryrefslogtreecommitdiffstats
path: root/benchmarks
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-07-24 10:56:30 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-07-24 10:56:30 -0400
commit5f6dd8bbc12f981c69d01d9e2c2057bfc97d429c (patch)
tree3268c80e50649db92c32aff05056a2e380c16d16 /benchmarks
parent71118b6f69229fb2a649f52af970cd6203ea7a72 (diff)
downloaddynamic-extension-5f6dd8bbc12f981c69d01d9e2c2057bfc97d429c.tar.gz
ISAM IRS query bugfixes
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/include/bench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/include/bench.h b/benchmarks/include/bench.h
index 28c1e97..d90bc3f 100644
--- a/benchmarks/include/bench.h
+++ b/benchmarks/include/bench.h
@@ -134,7 +134,7 @@ static bool static_latency_bench(Shard *shard, std::vector<QP> queries, size_t t
auto start = std::chrono::high_resolution_clock::now();
for (size_t j=0; j<queries.size(); j++) {
states[0] = Q::get_query_state(shard, &queries[j]);
- Q::process_query_states(shard, states, nullptr);
+ Q::process_query_states(&queries[j], states, nullptr);
auto res = Q::query(shard, states[0], &queries[j]);
total_results += res.size();
Q::delete_query_state(states[0]);