• Tom Lane's avatar
    Fix cost estimates for EXISTS subqueries that are evaluated as initPlans · 71256875
    Tom Lane authored
    (because they are uncorrelated with the immediate parent query).  We were
    charging the full run cost to the parent node, disregarding the fact that
    only one row need be fetched for EXISTS.  While this would only be a
    cosmetic issue in most cases, it might possibly affect planning outcomes
    if the parent query were itself a subquery to some upper query.
    Per recent discussion with Steve Crawford.
    71256875
cost.h 4.54 KB