]> granicus.if.org Git - postgresql/commit
Rework examine_opclause_expression to use varonleft
authorTomas Vondra <tomas.vondra@postgresql.org>
Fri, 19 Jul 2019 14:28:28 +0000 (16:28 +0200)
committerTomas Vondra <tomas.vondra@postgresql.org>
Sat, 20 Jul 2019 14:37:30 +0000 (16:37 +0200)
commite38a55ba46bbd2510baccdbaa01298cbca972b88
treeffe8d65df95070437e606d65b2ae3084cdbb1344
parent6f40ee4f837ec1ac59c8ddc73b67a04978a184d5
Rework examine_opclause_expression to use varonleft

The examine_opclause_expression function needs to return information on
which side of the operator we found the Var, but the variable was called
"isgt" which is rather misleading (it assumes the operator is either
less-than or greater-than, but it may be equality or something else).
Other places in the planner use a variable called "varonleft" for this
purpose, so just adopt the same convention here.

The code also assumed we don't care about this flag for equality, as
(Var = Const) and (Const = Var) should be the same thing. But that does
not work for cross-type operators, in which case we need to pass the
parameters to the procedure in the right order. So just use the same
code for all types of expressions.

This means we don't need to care about the selectivity estimation
function anymore, at least not in this code. We should only get the
supported cases here (thanks to statext_is_compatible_clause).

Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/8736jdhbhc.fsf%40ansel.ydns.eu
Backpatch-to: 12
src/backend/statistics/extended_stats.c
src/backend/statistics/mcv.c
src/include/statistics/extended_stats_internal.h