IshaGudewar commented on issue #1014: URL: https://github.com/apache/datafusion-python/issues/1014#issuecomment-2704363657
1. Import the SessionContext from the datafusion library. 2. Create a session context. 3. Execute an EXPLAIN statement using ctx.sql("explain select 1"). from datafusion import SessionContext ctx = SessionContext() ctx.sql("explain select 1") Expected Behavior The expected behavior is that the EXPLAIN statement should return a detailed explanation of the execution plan for the query, similar to what is produced by the .explain() method on a DataFrame: ctx.sql("select 1").explain() This should output something like: +---------------+--------------------------------------+ | plan_type | plan | +---------------+--------------------------------------+ | logical_plan | Projection: Int64(1) | | | EmptyRelation | | physical_plan | ProjectionExec: expr=[1 as Int64(1)] | | | PlaceholderRowExec | | | | +---------------+--------------------------------------+ -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org