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
Currently, in the result of EXPLAIN ANALYZE, for the inner children of IndexJoin and Apply, the displayed estimated row count is for a single "probe", but the displayed actual row count is for the sum of all "probes".
This caused much confusion. We need to make them consistent. I think adjusting the estimated row count to display all "probes" is proper.
This also relates to the displayed execution plan in the slow log, statements summary...
The text was updated successfully, but these errors were encountered:
Enhancement
Currently, in the result of
EXPLAIN ANALYZE
, for the inner children ofIndexJoin
andApply
, the displayed estimated row count is for a single "probe", but the displayed actual row count is for the sum of all "probes".This caused much confusion. We need to make them consistent. I think adjusting the estimated row count to display all "probes" is proper.
This also relates to the displayed execution plan in the slow log, statements summary...
The text was updated successfully, but these errors were encountered: