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
pgqs_collectNodeStats fails to update ancestors before processing sub-plans. It needs to do
ancestors = lcons(planstate, ancestors);
before processing initPlans, and removing the planstate at the end. See how ExplainNode in explain.c (around line 1593) does that, depending on haschildren variable.
The text was updated successfully, but these errors were encountered:
pgqs_collectNodeStats fails to update ancestors before processing sub-plans. It needs to do
ancestors = lcons(planstate, ancestors);
before processing initPlans, and removing the planstate at the end. See how ExplainNode in explain.c (around line 1593) does that, depending on haschildren variable.
The text was updated successfully, but these errors were encountered: