aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-07-14 11:59:12 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-07-14 11:59:12 -0400
commit1007b0a126c608b530fd2914825f1e6d133cb649 (patch)
treef01cbf28a5463b80f74baa791bdeaea18694cd0f /src/backend/utils/adt/numeric.c
parent28a1ae5342fe39b7c4057d3f872cb6057f5f33bf (diff)
downloadpostgresql-1007b0a126c608b530fd2914825f1e6d133cb649.tar.gz
postgresql-1007b0a126c608b530fd2914825f1e6d133cb649.zip
Fix hashjoin costing mistake introduced with inner_unique optimization.
In final_cost_hashjoin(), commit 9c7f5229a allowed inner_unique cases to follow a code path previously used only for SEMI/ANTI joins; but it neglected to fix an if-test within that path that assumed SEMI and ANTI were the only possible cases. This resulted in a wrong value for hashjointuples, and an ensuing bad cost estimate, for inner_unique normal joins. Fortunately, for inner_unique normal joins we can assume the number of joined tuples is the same as for a SEMI join; so there's no need for more code, we just have to invert the test to check for ANTI not SEMI. It turns out that in two contrib tests in which commit 9c7f5229a changed the plan expected for a query, the change was actually wrong and induced by this estimation error, not by any real improvement. Hence this patch also reverts those changes. Per report from RK Korlapati. Backpatch to v10 where the error was introduced. David Rowley Discussion: https://postgr.es/m/CA+SNy03bhq0fodsfOkeWDCreNjJVjsdHwUsb7AG=jpe0PtZc_g@mail.gmail.com
Diffstat (limited to 'src/backend/utils/adt/numeric.c')
0 files changed, 0 insertions, 0 deletions