danielhumanmod commented on issue #1627: URL: https://github.com/apache/datafusion-ballista/issues/1627#issuecomment-4361360418
> @danielhumanmod current datafusion behaviour > > ``` > > explain format indent select 1; > +---------------+--------------------------------------+ > | plan_type | plan | > +---------------+--------------------------------------+ > | logical_plan | Projection: Int64(1) | > | | EmptyRelation: rows=1 | > | physical_plan | ProjectionExec: expr=[1 as Int64(1)] | > | | PlaceholderRowExec | > | | | > +---------------+--------------------------------------+ > 2 row(s) fetched. > Elapsed 0.003 seconds. > > > explain select 1; > +---------------+-------------------------------+ > | plan_type | plan | > +---------------+-------------------------------+ > | physical_plan | ┌───────────────────────────┐ | > | | │ ProjectionExec │ | > | | │ -------------------- │ | > | | │ Int64(1): 1 │ | > | | └─────────────┬─────────────┘ | > | | ┌─────────────┴─────────────┐ | > | | │ PlaceholderRowExec │ | > | | └───────────────────────────┘ | > | | | > +---------------+-------------------------------+ > ``` > > https://datafusion.apache.org/user-guide/sql/explain.html thanks for the information, very helpful. Didn't catch this doc at the first place🙏 -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
