simonvandel commented on code in PR #9536:
URL: https://github.com/apache/arrow-datafusion/pull/9536#discussion_r1520016206
##########
datafusion/core/benches/sql_planner.rs:
##########
@@ -194,6 +196,16 @@ fn criterion_benchmark(c: &mut Criterion) {
b.iter(|| physical_plan(&ctx, "SELECT c1 FROM t700"))
});
+ // Test simplest
+ c.bench_function("logical_select_all_from_1000", |b| {
+ b.iter(|| logical_plan(&ctx, "SELECT * FROM t1000"))
Review Comment:
Obviously 1000 > 700, but I'm wondering if we should just reuse the t700
table which already intents to be a "huge" table?
So the query would be "SELECT * FROM t700"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]