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
For example, pushdown_rows_matched and pushdown_rows_pruned are far away from each other, even though they refer to roughly the same thing.
The unstable sort also makes it hard to compare multiple EXPLAIN ANALYZE results.
Describe the solution you'd like
Sort them alphabetically, to break ties in the (very) partial order induced by MetricValue::display_sort_key
Describe alternatives you've considered
Split Metrics by categories and display each on a line; or split ParquetExec into "virtual" execution plans to reflect the successive opening and filtering steps done in ParquetOpener. That is more work, though.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge?
From
ParquetExec
metrics, with predicate pushdown enabled:For example,
pushdown_rows_matched
andpushdown_rows_pruned
are far away from each other, even though they refer to roughly the same thing.The unstable sort also makes it hard to compare multiple
EXPLAIN ANALYZE
results.Describe the solution you'd like
Sort them alphabetically, to break ties in the (very) partial order induced by
MetricValue::display_sort_key
Describe alternatives you've considered
Split
Metrics
by categories and display each on a line; or splitParquetExec
into "virtual" execution plans to reflect the successive opening and filtering steps done inParquetOpener
. That is more work, though.Additional context
No response
The text was updated successfully, but these errors were encountered: