We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca37ce3 commit e1ca74eCopy full SHA for e1ca74e
1 file changed
datafusion/core/benches/sql_planner.rs
@@ -247,6 +247,14 @@ fn criterion_benchmark(c: &mut Criterion) {
247
.collect::<Vec<_>>();
248
249
c.bench_function("physical_plan_tpch_all", |b| {
250
+ b.iter(|| {
251
+ for sql in &all_tpch_sql_queries {
252
+ physical_plan(&ctx, sql)
253
+ }
254
+ })
255
+ });
256
+
257
+ c.bench_function("logical_plan_tpch_all", |b| {
258
b.iter(|| {
259
for sql in &all_tpch_sql_queries {
260
logical_plan(&ctx, sql)
0 commit comments