]> granicus.if.org Git - postgresql/commit
Round rowcount estimate for a partial path to an integer.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 Jul 2016 18:53:37 +0000 (14:53 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 3 Jul 2016 18:53:46 +0000 (14:53 -0400)
commitc89d507649df9fbc21617e02ab4d5e765a28b7df
treea6cc92d04c3f43715b10bcd37470ed420ca16be4
parent3a4a33ad49e7887b104a29323e4ea625d164a139
Round rowcount estimate for a partial path to an integer.

I'd been wondering why I was sometimes seeing fractional rowcount
estimates in parallel-query situations, and this seems to be the
reason.  (You won't see the fractional parts in EXPLAIN, because it
prints rowcounts with %.0f, but they are apparent in the debugger.)
A fractional rowcount is not any saner for a partial path than any
other kind of path, and it's equally likely to break cost estimation
for higher paths, so apply clamp_row_est() like we do in other places.
src/backend/optimizer/path/costsize.c