]> granicus.if.org Git - postgresql/commit
Improve the performance of LIKE/regex estimation in non-C locales, by making
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 7 Nov 2007 22:37:24 +0000 (22:37 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 7 Nov 2007 22:37:24 +0000 (22:37 +0000)
commit2de946be6a4de5986ba7b1528aeb7eec0dec194f
tree947c111c449a9ed52fbcc9061545ed13d68583ad
parent954228712310e78e12f48070df066f984dc977f5
Improve the performance of LIKE/regex estimation in non-C locales, by making
make_greater_string() try harder to generate a string that's actually greater
than its input string.  Before we just assumed that making a string that was
memcmp-greater was enough, but it is easy to generate examples where this is
not so when the locale is not C.  Instead, loop until the relevant comparison
function agrees that the generated string is greater than the input.

Unfortunately this is probably not enough to guarantee that the generated
string is greater than all extensions of the input, so we cannot relax the
restriction to C locale for the LIKE/regex index optimization.  But it should
at least improve the odds of getting a useful selectivity estimate in
prefix_selectivity().  Per example from Guillaume Smet.

Backpatch to 8.1, mainly because that's what the complainant is using...
src/backend/optimizer/path/indxpath.c
src/backend/utils/adt/selfuncs.c
src/include/utils/selfuncs.h