Replies: 2 comments 2 replies
-
I think this is not possible in DataFusion currently. Query results and explain results have different schemas and number of rows, and outputting both at the same time seems to conflict with the current design. |
Beta Was this translation helpful? Give feedback.
1 reply
-
here is a previous discussion related to exporting this information as traces: #9415 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to run a query once and get back both the result data and the explain analyze plan w/ metrics.
As far as I can tell I have to chose one or the other ATM, but it seems like it should be possible to get both in principle.
Is there an API I'm missing or is this not currently possible? I've looked at
DataFrame.explain
andLogicalPlanBuilder.explain
.Beta Was this translation helpful? Give feedback.
All reactions