chore: Merge branch 'ntran/count_star' of https://github.com/influxdata/influxdb_iox into ntran/count_star

pull/24376/head
Nga Tran 2021-10-11 10:47:38 -04:00
commit 1718b55283
1 changed files with 1 additions and 2 deletions

View File

@ -254,8 +254,7 @@ impl IOxExecutionContext {
let ctx = self.child_ctx("prepare_sql");
debug!(text=%sql, "planning SQL query");
let logical_plan = ctx.inner.create_logical_plan(sql)?;
let s = logical_plan.display_graphviz().to_string();
debug!(plan=?s, "logical plan");
debug!(plan=%logical_plan.display_graphviz(), "logical plan");
ctx.prepare_plan(&logical_plan).await
}