You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The Explain Verbose currently shows physical plan before its final optimized step that includes CoalesceBatches, RepartitionExec, and MergeExec operators. This is a request to show the plan that includes all physical operators that will be executed.
Describe the solution you'd like
If you look at this create_physical_plan, the explain is created in the create_initial_plan which happens before the optimize_plan is invoked. The explain should be created after the optimize_plan
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The Explain Verbose currently shows physical plan before its final optimized step that includes CoalesceBatches, RepartitionExec, and MergeExec operators. This is a request to show the plan that includes all physical operators that will be executed.
Describe the solution you'd like
If you look at this create_physical_plan, the explain is created in the
create_initial_plan
which happens before theoptimize_plan
is invoked. The explain should be created after theoptimize_plan
The text was updated successfully, but these errors were encountered: