Simpler / easier to see expressions in tree
explain mode
#15107
Labels
enhancement
New feature or request
tree
explain mode
#15107
Is your feature request related to a problem or challenge?
SQL EXPLAIN
Tree Rendering #14914Thanks to @Standing-Man , tree explains are looking nice
ProjectionExec
#15082The current display of expressions makes it possible to understand their inner structure (what is casted, etc)
However, it is quite hard for normal users to read. For example
For example
Describe the solution you'd like
I would like the expressions to be nicely formatted
For example instead of above it would be great to see
Describe alternatives you've considered
PhysicalExpr
already hasDebug
andDisplay
impls with varying levels of detail.One way to add another way of displaying
PhysicalExpr
, would be to add a new method to thePhysicalExpr
trait for "simplified display"Maybe something like
We could then make this work with normal
write!
style macrosAdditional context
No response
The text was updated successfully, but these errors were encountered: