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
refactor(physical-plan): default child_stats_requests to Skip
Make the default `child_stats_requests` skip every child, so a node that does not
derive its statistics from children (for example one that only overrides the
deprecated `partition_statistics`) triggers no child traversal. This avoids the
eager child walk, and the child-stat errors it could surface, that
`StatisticsContext::compute` previously performed even when `statistics_from_inputs`
ignored the results.
Nodes that read `input_stats` now declare the children they use via
`child_stats_requests`.
0 commit comments