]> granicus.if.org Git - postgresql/commitdiff
Guard against input_rows == 0 in estimate_num_groups().
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 May 2013 21:15:35 +0000 (17:15 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 May 2013 21:15:35 +0000 (17:15 -0400)
This case doesn't normally happen, because the planner usually clamps
all row estimates to at least one row; but I found that it can arise
when dealing with relations excluded by constraints.  Without a defense,
estimate_num_groups() can return zero, which leads to divisions by zero
inside the planner as well as assertion failures in the executor.

An alternative fix would be to change set_dummy_rel_pathlist() to make
the size estimate for a dummy relation 1 row instead of 0, but that seemed
pretty ugly; and probably someday we'll want to drop the convention that
the minimum rowcount estimate is 1 row.

Back-patch to 8.4, as the problem can be demonstrated that far back.

src/backend/utils/adt/selfuncs.c

index 4b1229484eeedaf7db1572e9ce5cb77cf3cafc49..de2d7f98b27df399b2977caa3fc60e4ef7a407fc 100644 (file)
@@ -3207,6 +3207,14 @@ estimate_num_groups(PlannerInfo *root, List *groupExprs, double input_rows)
        double          numdistinct;
        ListCell   *l;
 
+       /*
+        * We don't ever want to return an estimate of zero groups, as that tends
+        * to lead to division-by-zero and other unpleasantness.  The input_rows
+        * estimate is usually already at least 1, but clamp it just in case it
+        * isn't.
+        */
+       input_rows = clamp_row_est(input_rows);
+
        /*
         * If no grouping columns, there's exactly one group.  (This can't happen
         * for normal cases with GROUP BY or DISTINCT, but it is possible for