LCOV - code coverage report
Current view: top level - src/backend/utils/adt - like_support.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 462 560 82.5 %
Date: 2023-12-11 15:11:28 Functions: 32 41 78.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  * like_support.c
       4             :  *    Planner support functions for LIKE, regex, and related operators.
       5             :  *
       6             :  * These routines handle special optimization of operators that can be
       7             :  * used with index scans even though they are not known to the executor's
       8             :  * indexscan machinery.  The key idea is that these operators allow us
       9             :  * to derive approximate indexscan qual clauses, such that any tuples
      10             :  * that pass the operator clause itself must also satisfy the simpler
      11             :  * indexscan condition(s).  Then we can use the indexscan machinery
      12             :  * to avoid scanning as much of the table as we'd otherwise have to,
      13             :  * while applying the original operator as a qpqual condition to ensure
      14             :  * we deliver only the tuples we want.  (In essence, we're using a regular
      15             :  * index as if it were a lossy index.)
      16             :  *
      17             :  * An example of what we're doing is
      18             :  *          textfield LIKE 'abc%def'
      19             :  * from which we can generate the indexscanable conditions
      20             :  *          textfield >= 'abc' AND textfield < 'abd'
      21             :  * which allow efficient scanning of an index on textfield.
      22             :  * (In reality, character set and collation issues make the transformation
      23             :  * from LIKE to indexscan limits rather harder than one might think ...
      24             :  * but that's the basic idea.)
      25             :  *
      26             :  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
      27             :  * Portions Copyright (c) 1994, Regents of the University of California
      28             :  *
      29             :  *
      30             :  * IDENTIFICATION
      31             :  *    src/backend/utils/adt/like_support.c
      32             :  *
      33             :  *-------------------------------------------------------------------------
      34             :  */
      35             : #include "postgres.h"
      36             : 
      37             : #include <math.h>
      38             : 
      39             : #include "access/htup_details.h"
      40             : #include "access/stratnum.h"
      41             : #include "catalog/pg_collation.h"
      42             : #include "catalog/pg_operator.h"
      43             : #include "catalog/pg_opfamily.h"
      44             : #include "catalog/pg_statistic.h"
      45             : #include "catalog/pg_type.h"
      46             : #include "mb/pg_wchar.h"
      47             : #include "miscadmin.h"
      48             : #include "nodes/makefuncs.h"
      49             : #include "nodes/nodeFuncs.h"
      50             : #include "nodes/supportnodes.h"
      51             : #include "utils/builtins.h"
      52             : #include "utils/datum.h"
      53             : #include "utils/lsyscache.h"
      54             : #include "utils/pg_locale.h"
      55             : #include "utils/selfuncs.h"
      56             : #include "utils/varlena.h"
      57             : 
      58             : 
      59             : typedef enum
      60             : {
      61             :     Pattern_Type_Like,
      62             :     Pattern_Type_Like_IC,
      63             :     Pattern_Type_Regex,
      64             :     Pattern_Type_Regex_IC,
      65             :     Pattern_Type_Prefix,
      66             : } Pattern_Type;
      67             : 
      68             : typedef enum
      69             : {
      70             :     Pattern_Prefix_None, Pattern_Prefix_Partial, Pattern_Prefix_Exact,
      71             : } Pattern_Prefix_Status;
      72             : 
      73             : static Node *like_regex_support(Node *rawreq, Pattern_Type ptype);
      74             : static List *match_pattern_prefix(Node *leftop,
      75             :                                   Node *rightop,
      76             :                                   Pattern_Type ptype,
      77             :                                   Oid expr_coll,
      78             :                                   Oid opfamily,
      79             :                                   Oid indexcollation);
      80             : static double patternsel_common(PlannerInfo *root,
      81             :                                 Oid oprid,
      82             :                                 Oid opfuncid,
      83             :                                 List *args,
      84             :                                 int varRelid,
      85             :                                 Oid collation,
      86             :                                 Pattern_Type ptype,
      87             :                                 bool negate);
      88             : static Pattern_Prefix_Status pattern_fixed_prefix(Const *patt,
      89             :                                                   Pattern_Type ptype,
      90             :                                                   Oid collation,
      91             :                                                   Const **prefix,
      92             :                                                   Selectivity *rest_selec);
      93             : static Selectivity prefix_selectivity(PlannerInfo *root,
      94             :                                       VariableStatData *vardata,
      95             :                                       Oid eqopr, Oid ltopr, Oid geopr,
      96             :                                       Oid collation,
      97             :                                       Const *prefixcon);
      98             : static Selectivity like_selectivity(const char *patt, int pattlen,
      99             :                                     bool case_insensitive);
     100             : static Selectivity regex_selectivity(const char *patt, int pattlen,
     101             :                                      bool case_insensitive,
     102             :                                      int fixed_prefix_len);
     103             : static int  pattern_char_isalpha(char c, bool is_multibyte,
     104             :                                  pg_locale_t locale, bool locale_is_c);
     105             : static Const *make_greater_string(const Const *str_const, FmgrInfo *ltproc,
     106             :                                   Oid collation);
     107             : static Datum string_to_datum(const char *str, Oid datatype);
     108             : static Const *string_to_const(const char *str, Oid datatype);
     109             : static Const *string_to_bytea_const(const char *str, size_t str_len);
     110             : 
     111             : 
     112             : /*
     113             :  * Planner support functions for LIKE, regex, and related operators
     114             :  */
     115             : Datum
     116        4664 : textlike_support(PG_FUNCTION_ARGS)
     117             : {
     118        4664 :     Node       *rawreq = (Node *) PG_GETARG_POINTER(0);
     119             : 
     120        4664 :     PG_RETURN_POINTER(like_regex_support(rawreq, Pattern_Type_Like));
     121             : }
     122             : 
     123             : Datum
     124         218 : texticlike_support(PG_FUNCTION_ARGS)
     125             : {
     126         218 :     Node       *rawreq = (Node *) PG_GETARG_POINTER(0);
     127             : 
     128         218 :     PG_RETURN_POINTER(like_regex_support(rawreq, Pattern_Type_Like_IC));
     129             : }
     130             : 
     131             : Datum
     132       19846 : textregexeq_support(PG_FUNCTION_ARGS)
     133             : {
     134       19846 :     Node       *rawreq = (Node *) PG_GETARG_POINTER(0);
     135             : 
     136       19846 :     PG_RETURN_POINTER(like_regex_support(rawreq, Pattern_Type_Regex));
     137             : }
     138             : 
     139             : Datum
     140          82 : texticregexeq_support(PG_FUNCTION_ARGS)
     141             : {
     142          82 :     Node       *rawreq = (Node *) PG_GETARG_POINTER(0);
     143             : 
     144          82 :     PG_RETURN_POINTER(like_regex_support(rawreq, Pattern_Type_Regex_IC));
     145             : }
     146             : 
     147             : Datum
     148         156 : text_starts_with_support(PG_FUNCTION_ARGS)
     149             : {
     150         156 :     Node       *rawreq = (Node *) PG_GETARG_POINTER(0);
     151             : 
     152         156 :     PG_RETURN_POINTER(like_regex_support(rawreq, Pattern_Type_Prefix));
     153             : }
     154             : 
     155             : /* Common code for the above */
     156             : static Node *
     157       24966 : like_regex_support(Node *rawreq, Pattern_Type ptype)
     158             : {
     159       24966 :     Node       *ret = NULL;
     160             : 
     161       24966 :     if (IsA(rawreq, SupportRequestSelectivity))
     162             :     {
     163             :         /*
     164             :          * Make a selectivity estimate for a function call, just as we'd do if
     165             :          * the call was via the corresponding operator.
     166             :          */
     167          24 :         SupportRequestSelectivity *req = (SupportRequestSelectivity *) rawreq;
     168             :         Selectivity s1;
     169             : 
     170          24 :         if (req->is_join)
     171             :         {
     172             :             /*
     173             :              * For the moment we just punt.  If patternjoinsel is ever
     174             :              * improved to do better, this should be made to call it.
     175             :              */
     176           0 :             s1 = DEFAULT_MATCH_SEL;
     177             :         }
     178             :         else
     179             :         {
     180             :             /* Share code with operator restriction selectivity functions */
     181          24 :             s1 = patternsel_common(req->root,
     182             :                                    InvalidOid,
     183             :                                    req->funcid,
     184             :                                    req->args,
     185             :                                    req->varRelid,
     186             :                                    req->inputcollid,
     187             :                                    ptype,
     188             :                                    false);
     189             :         }
     190          24 :         req->selectivity = s1;
     191          24 :         ret = (Node *) req;
     192             :     }
     193       24942 :     else if (IsA(rawreq, SupportRequestIndexCondition))
     194             :     {
     195             :         /* Try to convert operator/function call to index conditions */
     196        7150 :         SupportRequestIndexCondition *req = (SupportRequestIndexCondition *) rawreq;
     197             : 
     198             :         /*
     199             :          * Currently we have no "reverse" match operators with the pattern on
     200             :          * the left, so we only need consider cases with the indexkey on the
     201             :          * left.
     202             :          */
     203        7150 :         if (req->indexarg != 0)
     204           0 :             return NULL;
     205             : 
     206        7150 :         if (is_opclause(req->node))
     207             :         {
     208        7126 :             OpExpr     *clause = (OpExpr *) req->node;
     209             : 
     210             :             Assert(list_length(clause->args) == 2);
     211             :             ret = (Node *)
     212        7126 :                 match_pattern_prefix((Node *) linitial(clause->args),
     213        7126 :                                      (Node *) lsecond(clause->args),
     214             :                                      ptype,
     215             :                                      clause->inputcollid,
     216             :                                      req->opfamily,
     217             :                                      req->indexcollation);
     218             :         }
     219          24 :         else if (is_funcclause(req->node))   /* be paranoid */
     220             :         {
     221          24 :             FuncExpr   *clause = (FuncExpr *) req->node;
     222             : 
     223             :             Assert(list_length(clause->args) == 2);
     224             :             ret = (Node *)
     225          24 :                 match_pattern_prefix((Node *) linitial(clause->args),
     226          24 :                                      (Node *) lsecond(clause->args),
     227             :                                      ptype,
     228             :                                      clause->inputcollid,
     229             :                                      req->opfamily,
     230             :                                      req->indexcollation);
     231             :         }
     232             :     }
     233             : 
     234       24966 :     return ret;
     235             : }
     236             : 
     237             : /*
     238             :  * match_pattern_prefix
     239             :  *    Try to generate an indexqual for a LIKE or regex operator.
     240             :  */
     241             : static List *
     242        7150 : match_pattern_prefix(Node *leftop,
     243             :                      Node *rightop,
     244             :                      Pattern_Type ptype,
     245             :                      Oid expr_coll,
     246             :                      Oid opfamily,
     247             :                      Oid indexcollation)
     248             : {
     249             :     List       *result;
     250             :     Const      *patt;
     251             :     Const      *prefix;
     252             :     Pattern_Prefix_Status pstatus;
     253             :     Oid         ldatatype;
     254             :     Oid         rdatatype;
     255             :     Oid         eqopr;
     256             :     Oid         ltopr;
     257             :     Oid         geopr;
     258        7150 :     Oid         preopr = InvalidOid;
     259             :     bool        collation_aware;
     260             :     Expr       *expr;
     261             :     FmgrInfo    ltproc;
     262             :     Const      *greaterstr;
     263             : 
     264             :     /*
     265             :      * Can't do anything with a non-constant or NULL pattern argument.
     266             :      *
     267             :      * Note that since we restrict ourselves to cases with a hard constant on
     268             :      * the RHS, it's a-fortiori a pseudoconstant, and we don't need to worry
     269             :      * about verifying that.
     270             :      */
     271        7150 :     if (!IsA(rightop, Const) ||
     272        7030 :         ((Const *) rightop)->constisnull)
     273         120 :         return NIL;
     274        7030 :     patt = (Const *) rightop;
     275             : 
     276             :     /*
     277             :      * Not supported if the expression collation is nondeterministic.  The
     278             :      * optimized equality or prefix tests use bytewise comparisons, which is
     279             :      * not consistent with nondeterministic collations.  The actual
     280             :      * pattern-matching implementation functions will later error out that
     281             :      * pattern-matching is not supported with nondeterministic collations. (We
     282             :      * could also error out here, but by doing it later we get more precise
     283             :      * error messages.)  (It should be possible to support at least
     284             :      * Pattern_Prefix_Exact, but no point as long as the actual
     285             :      * pattern-matching implementations don't support it.)
     286             :      *
     287             :      * expr_coll is not set for a non-collation-aware data type such as bytea.
     288             :      */
     289        7030 :     if (expr_coll && !get_collation_isdeterministic(expr_coll))
     290           4 :         return NIL;
     291             : 
     292             :     /*
     293             :      * Try to extract a fixed prefix from the pattern.
     294             :      */
     295        7026 :     pstatus = pattern_fixed_prefix(patt, ptype, expr_coll,
     296             :                                    &prefix, NULL);
     297             : 
     298             :     /* fail if no fixed prefix */
     299        7026 :     if (pstatus == Pattern_Prefix_None)
     300         244 :         return NIL;
     301             : 
     302             :     /*
     303             :      * Identify the operators we want to use, based on the type of the
     304             :      * left-hand argument.  Usually these are just the type's regular
     305             :      * comparison operators, but if we are considering one of the semi-legacy
     306             :      * "pattern" opclasses, use the "pattern" operators instead.  Those are
     307             :      * not collation-sensitive but always use C collation, as we want.  The
     308             :      * selected operators also determine the needed type of the prefix
     309             :      * constant.
     310             :      */
     311        6782 :     ldatatype = exprType(leftop);
     312        6782 :     switch (ldatatype)
     313             :     {
     314          60 :         case TEXTOID:
     315          60 :             if (opfamily == TEXT_PATTERN_BTREE_FAM_OID)
     316             :             {
     317           0 :                 eqopr = TextEqualOperator;
     318           0 :                 ltopr = TextPatternLessOperator;
     319           0 :                 geopr = TextPatternGreaterEqualOperator;
     320           0 :                 collation_aware = false;
     321             :             }
     322          60 :             else if (opfamily == TEXT_SPGIST_FAM_OID)
     323             :             {
     324          24 :                 eqopr = TextEqualOperator;
     325          24 :                 ltopr = TextPatternLessOperator;
     326          24 :                 geopr = TextPatternGreaterEqualOperator;
     327             :                 /* This opfamily has direct support for prefixing */
     328          24 :                 preopr = TextPrefixOperator;
     329          24 :                 collation_aware = false;
     330             :             }
     331             :             else
     332             :             {
     333          36 :                 eqopr = TextEqualOperator;
     334          36 :                 ltopr = TextLessOperator;
     335          36 :                 geopr = TextGreaterEqualOperator;
     336          36 :                 collation_aware = true;
     337             :             }
     338          60 :             rdatatype = TEXTOID;
     339          60 :             break;
     340        6698 :         case NAMEOID:
     341             : 
     342             :             /*
     343             :              * Note that here, we need the RHS type to be text, so that the
     344             :              * comparison value isn't improperly truncated to NAMEDATALEN.
     345             :              */
     346        6698 :             eqopr = NameEqualTextOperator;
     347        6698 :             ltopr = NameLessTextOperator;
     348        6698 :             geopr = NameGreaterEqualTextOperator;
     349        6698 :             collation_aware = true;
     350        6698 :             rdatatype = TEXTOID;
     351        6698 :             break;
     352          24 :         case BPCHAROID:
     353          24 :             if (opfamily == BPCHAR_PATTERN_BTREE_FAM_OID)
     354             :             {
     355           0 :                 eqopr = BpcharEqualOperator;
     356           0 :                 ltopr = BpcharPatternLessOperator;
     357           0 :                 geopr = BpcharPatternGreaterEqualOperator;
     358           0 :                 collation_aware = false;
     359             :             }
     360             :             else
     361             :             {
     362          24 :                 eqopr = BpcharEqualOperator;
     363          24 :                 ltopr = BpcharLessOperator;
     364          24 :                 geopr = BpcharGreaterEqualOperator;
     365          24 :                 collation_aware = true;
     366             :             }
     367          24 :             rdatatype = BPCHAROID;
     368          24 :             break;
     369           0 :         case BYTEAOID:
     370           0 :             eqopr = ByteaEqualOperator;
     371           0 :             ltopr = ByteaLessOperator;
     372           0 :             geopr = ByteaGreaterEqualOperator;
     373           0 :             collation_aware = false;
     374           0 :             rdatatype = BYTEAOID;
     375           0 :             break;
     376           0 :         default:
     377             :             /* Can't get here unless we're attached to the wrong operator */
     378           0 :             return NIL;
     379             :     }
     380             : 
     381             :     /*
     382             :      * If necessary, coerce the prefix constant to the right type.  The given
     383             :      * prefix constant is either text or bytea type, therefore the only case
     384             :      * where we need to do anything is when converting text to bpchar.  Those
     385             :      * two types are binary-compatible, so relabeling the Const node is
     386             :      * sufficient.
     387             :      */
     388        6782 :     if (prefix->consttype != rdatatype)
     389             :     {
     390             :         Assert(prefix->consttype == TEXTOID &&
     391             :                rdatatype == BPCHAROID);
     392          24 :         prefix->consttype = rdatatype;
     393             :     }
     394             : 
     395             :     /*
     396             :      * If we found an exact-match pattern, generate an "=" indexqual.
     397             :      *
     398             :      * Here and below, check to see whether the desired operator is actually
     399             :      * supported by the index opclass, and fail quietly if not.  This allows
     400             :      * us to not be concerned with specific opclasses (except for the legacy
     401             :      * "pattern" cases); any index that correctly implements the operators
     402             :      * will work.
     403             :      */
     404        6782 :     if (pstatus == Pattern_Prefix_Exact)
     405             :     {
     406        5590 :         if (!op_in_opfamily(eqopr, opfamily))
     407          12 :             return NIL;
     408        5578 :         expr = make_opclause(eqopr, BOOLOID, false,
     409             :                              (Expr *) leftop, (Expr *) prefix,
     410             :                              InvalidOid, indexcollation);
     411        5578 :         result = list_make1(expr);
     412        5578 :         return result;
     413             :     }
     414             : 
     415             :     /*
     416             :      * Otherwise, we have a nonempty required prefix of the values.  Some
     417             :      * opclasses support prefix checks directly, otherwise we'll try to
     418             :      * generate a range constraint.
     419             :      */
     420        1192 :     if (OidIsValid(preopr) && op_in_opfamily(preopr, opfamily))
     421             :     {
     422          24 :         expr = make_opclause(preopr, BOOLOID, false,
     423             :                              (Expr *) leftop, (Expr *) prefix,
     424             :                              InvalidOid, indexcollation);
     425          24 :         result = list_make1(expr);
     426          24 :         return result;
     427             :     }
     428             : 
     429             :     /*
     430             :      * Since we need a range constraint, it's only going to work reliably if
     431             :      * the index is collation-insensitive or has "C" collation.  Note that
     432             :      * here we are looking at the index's collation, not the expression's
     433             :      * collation -- this test is *not* dependent on the LIKE/regex operator's
     434             :      * collation.
     435             :      */
     436        1168 :     if (collation_aware &&
     437        1168 :         !lc_collate_is_c(indexcollation))
     438           0 :         return NIL;
     439             : 
     440             :     /*
     441             :      * We can always say "x >= prefix".
     442             :      */
     443        1168 :     if (!op_in_opfamily(geopr, opfamily))
     444          12 :         return NIL;
     445        1156 :     expr = make_opclause(geopr, BOOLOID, false,
     446             :                          (Expr *) leftop, (Expr *) prefix,
     447             :                          InvalidOid, indexcollation);
     448        1156 :     result = list_make1(expr);
     449             : 
     450             :     /*-------
     451             :      * If we can create a string larger than the prefix, we can say
     452             :      * "x < greaterstr".  NB: we rely on make_greater_string() to generate
     453             :      * a guaranteed-greater string, not just a probably-greater string.
     454             :      * In general this is only guaranteed in C locale, so we'd better be
     455             :      * using a C-locale index collation.
     456             :      *-------
     457             :      */
     458        1156 :     if (!op_in_opfamily(ltopr, opfamily))
     459           0 :         return result;
     460        1156 :     fmgr_info(get_opcode(ltopr), &ltproc);
     461        1156 :     greaterstr = make_greater_string(prefix, &ltproc, indexcollation);
     462        1156 :     if (greaterstr)
     463             :     {
     464        1156 :         expr = make_opclause(ltopr, BOOLOID, false,
     465             :                              (Expr *) leftop, (Expr *) greaterstr,
     466             :                              InvalidOid, indexcollation);
     467        1156 :         result = lappend(result, expr);
     468             :     }
     469             : 
     470        1156 :     return result;
     471             : }
     472             : 
     473             : 
     474             : /*
     475             :  * patternsel_common - generic code for pattern-match restriction selectivity.
     476             :  *
     477             :  * To support using this from either the operator or function paths, caller
     478             :  * may pass either operator OID or underlying function OID; we look up the
     479             :  * latter from the former if needed.  (We could just have patternsel() call
     480             :  * get_opcode(), but the work would be wasted if we don't have a need to
     481             :  * compare a fixed prefix to the pg_statistic data.)
     482             :  *
     483             :  * Note that oprid and/or opfuncid should be for the positive-match operator
     484             :  * even when negate is true.
     485             :  */
     486             : static double
     487        9524 : patternsel_common(PlannerInfo *root,
     488             :                   Oid oprid,
     489             :                   Oid opfuncid,
     490             :                   List *args,
     491             :                   int varRelid,
     492             :                   Oid collation,
     493             :                   Pattern_Type ptype,
     494             :                   bool negate)
     495             : {
     496             :     VariableStatData vardata;
     497             :     Node       *other;
     498             :     bool        varonleft;
     499             :     Datum       constval;
     500             :     Oid         consttype;
     501             :     Oid         vartype;
     502             :     Oid         rdatatype;
     503             :     Oid         eqopr;
     504             :     Oid         ltopr;
     505             :     Oid         geopr;
     506             :     Pattern_Prefix_Status pstatus;
     507             :     Const      *patt;
     508        9524 :     Const      *prefix = NULL;
     509        9524 :     Selectivity rest_selec = 0;
     510        9524 :     double      nullfrac = 0.0;
     511             :     double      result;
     512             : 
     513             :     /*
     514             :      * Initialize result to the appropriate default estimate depending on
     515             :      * whether it's a match or not-match operator.
     516             :      */
     517        9524 :     if (negate)
     518        1318 :         result = 1.0 - DEFAULT_MATCH_SEL;
     519             :     else
     520        8206 :         result = DEFAULT_MATCH_SEL;
     521             : 
     522             :     /*
     523             :      * If expression is not variable op constant, then punt and return the
     524             :      * default estimate.
     525             :      */
     526        9524 :     if (!get_restriction_variable(root, args, varRelid,
     527             :                                   &vardata, &other, &varonleft))
     528         208 :         return result;
     529        9316 :     if (!varonleft || !IsA(other, Const))
     530             :     {
     531          50 :         ReleaseVariableStats(vardata);
     532          50 :         return result;
     533             :     }
     534             : 
     535             :     /*
     536             :      * If the constant is NULL, assume operator is strict and return zero, ie,
     537             :      * operator will never return TRUE.  (It's zero even for a negator op.)
     538             :      */
     539        9266 :     if (((Const *) other)->constisnull)
     540             :     {
     541           0 :         ReleaseVariableStats(vardata);
     542           0 :         return 0.0;
     543             :     }
     544        9266 :     constval = ((Const *) other)->constvalue;
     545        9266 :     consttype = ((Const *) other)->consttype;
     546             : 
     547             :     /*
     548             :      * The right-hand const is type text or bytea for all supported operators.
     549             :      * We do not expect to see binary-compatible types here, since
     550             :      * const-folding should have relabeled the const to exactly match the
     551             :      * operator's declared type.
     552             :      */
     553        9266 :     if (consttype != TEXTOID && consttype != BYTEAOID)
     554             :     {
     555          24 :         ReleaseVariableStats(vardata);
     556          24 :         return result;
     557             :     }
     558             : 
     559             :     /*
     560             :      * Similarly, the exposed type of the left-hand side should be one of
     561             :      * those we know.  (Do not look at vardata.atttype, which might be
     562             :      * something binary-compatible but different.)  We can use it to identify
     563             :      * the comparison operators and the required type of the comparison
     564             :      * constant, much as in match_pattern_prefix().
     565             :      */
     566        9242 :     vartype = vardata.vartype;
     567             : 
     568        9242 :     switch (vartype)
     569             :     {
     570        1238 :         case TEXTOID:
     571        1238 :             eqopr = TextEqualOperator;
     572        1238 :             ltopr = TextLessOperator;
     573        1238 :             geopr = TextGreaterEqualOperator;
     574        1238 :             rdatatype = TEXTOID;
     575        1238 :             break;
     576        7926 :         case NAMEOID:
     577             : 
     578             :             /*
     579             :              * Note that here, we need the RHS type to be text, so that the
     580             :              * comparison value isn't improperly truncated to NAMEDATALEN.
     581             :              */
     582        7926 :             eqopr = NameEqualTextOperator;
     583        7926 :             ltopr = NameLessTextOperator;
     584        7926 :             geopr = NameGreaterEqualTextOperator;
     585        7926 :             rdatatype = TEXTOID;
     586        7926 :             break;
     587          68 :         case BPCHAROID:
     588          68 :             eqopr = BpcharEqualOperator;
     589          68 :             ltopr = BpcharLessOperator;
     590          68 :             geopr = BpcharGreaterEqualOperator;
     591          68 :             rdatatype = BPCHAROID;
     592          68 :             break;
     593           6 :         case BYTEAOID:
     594           6 :             eqopr = ByteaEqualOperator;
     595           6 :             ltopr = ByteaLessOperator;
     596           6 :             geopr = ByteaGreaterEqualOperator;
     597           6 :             rdatatype = BYTEAOID;
     598           6 :             break;
     599           4 :         default:
     600             :             /* Can't get here unless we're attached to the wrong operator */
     601           4 :             ReleaseVariableStats(vardata);
     602           4 :             return result;
     603             :     }
     604             : 
     605             :     /*
     606             :      * Grab the nullfrac for use below.
     607             :      */
     608        9238 :     if (HeapTupleIsValid(vardata.statsTuple))
     609             :     {
     610             :         Form_pg_statistic stats;
     611             : 
     612        7570 :         stats = (Form_pg_statistic) GETSTRUCT(vardata.statsTuple);
     613        7570 :         nullfrac = stats->stanullfrac;
     614             :     }
     615             : 
     616             :     /*
     617             :      * Pull out any fixed prefix implied by the pattern, and estimate the
     618             :      * fractional selectivity of the remainder of the pattern.  Unlike many
     619             :      * other selectivity estimators, we use the pattern operator's actual
     620             :      * collation for this step.  This is not because we expect the collation
     621             :      * to make a big difference in the selectivity estimate (it seldom would),
     622             :      * but because we want to be sure we cache compiled regexps under the
     623             :      * right cache key, so that they can be re-used at runtime.
     624             :      */
     625        9238 :     patt = (Const *) other;
     626        9238 :     pstatus = pattern_fixed_prefix(patt, ptype, collation,
     627             :                                    &prefix, &rest_selec);
     628             : 
     629             :     /*
     630             :      * If necessary, coerce the prefix constant to the right type.  The only
     631             :      * case where we need to do anything is when converting text to bpchar.
     632             :      * Those two types are binary-compatible, so relabeling the Const node is
     633             :      * sufficient.
     634             :      */
     635        9230 :     if (prefix && prefix->consttype != rdatatype)
     636             :     {
     637             :         Assert(prefix->consttype == TEXTOID &&
     638             :                rdatatype == BPCHAROID);
     639          28 :         prefix->consttype = rdatatype;
     640             :     }
     641             : 
     642        9230 :     if (pstatus == Pattern_Prefix_Exact)
     643             :     {
     644             :         /*
     645             :          * Pattern specifies an exact match, so estimate as for '='
     646             :          */
     647        5744 :         result = var_eq_const(&vardata, eqopr, collation, prefix->constvalue,
     648             :                               false, true, false);
     649             :     }
     650             :     else
     651             :     {
     652             :         /*
     653             :          * Not exact-match pattern.  If we have a sufficiently large
     654             :          * histogram, estimate selectivity for the histogram part of the
     655             :          * population by counting matches in the histogram.  If not, estimate
     656             :          * selectivity of the fixed prefix and remainder of pattern
     657             :          * separately, then combine the two to get an estimate of the
     658             :          * selectivity for the part of the column population represented by
     659             :          * the histogram.  (For small histograms, we combine these
     660             :          * approaches.)
     661             :          *
     662             :          * We then add up data for any most-common-values values; these are
     663             :          * not in the histogram population, and we can get exact answers for
     664             :          * them by applying the pattern operator, so there's no reason to
     665             :          * approximate.  (If the MCVs cover a significant part of the total
     666             :          * population, this gives us a big leg up in accuracy.)
     667             :          */
     668             :         Selectivity selec;
     669             :         int         hist_size;
     670             :         FmgrInfo    opproc;
     671             :         double      mcv_selec,
     672             :                     sumcommon;
     673             : 
     674             :         /* Try to use the histogram entries to get selectivity */
     675        3486 :         if (!OidIsValid(opfuncid))
     676        3462 :             opfuncid = get_opcode(oprid);
     677        3486 :         fmgr_info(opfuncid, &opproc);
     678             : 
     679        3486 :         selec = histogram_selectivity(&vardata, &opproc, collation,
     680             :                                       constval, true,
     681             :                                       10, 1, &hist_size);
     682             : 
     683             :         /* If not at least 100 entries, use the heuristic method */
     684        3486 :         if (hist_size < 100)
     685             :         {
     686             :             Selectivity heursel;
     687             :             Selectivity prefixsel;
     688             : 
     689        2270 :             if (pstatus == Pattern_Prefix_Partial)
     690        1612 :                 prefixsel = prefix_selectivity(root, &vardata,
     691             :                                                eqopr, ltopr, geopr,
     692             :                                                collation,
     693             :                                                prefix);
     694             :             else
     695         658 :                 prefixsel = 1.0;
     696        2270 :             heursel = prefixsel * rest_selec;
     697             : 
     698        2270 :             if (selec < 0)       /* fewer than 10 histogram entries? */
     699        1980 :                 selec = heursel;
     700             :             else
     701             :             {
     702             :                 /*
     703             :                  * For histogram sizes from 10 to 100, we combine the
     704             :                  * histogram and heuristic selectivities, putting increasingly
     705             :                  * more trust in the histogram for larger sizes.
     706             :                  */
     707         290 :                 double      hist_weight = hist_size / 100.0;
     708             : 
     709         290 :                 selec = selec * hist_weight + heursel * (1.0 - hist_weight);
     710             :             }
     711             :         }
     712             : 
     713             :         /* In any case, don't believe extremely small or large estimates. */
     714        3486 :         if (selec < 0.0001)
     715        1300 :             selec = 0.0001;
     716        2186 :         else if (selec > 0.9999)
     717         112 :             selec = 0.9999;
     718             : 
     719             :         /*
     720             :          * If we have most-common-values info, add up the fractions of the MCV
     721             :          * entries that satisfy MCV OP PATTERN.  These fractions contribute
     722             :          * directly to the result selectivity.  Also add up the total fraction
     723             :          * represented by MCV entries.
     724             :          */
     725        3486 :         mcv_selec = mcv_selectivity(&vardata, &opproc, collation,
     726             :                                     constval, true,
     727             :                                     &sumcommon);
     728             : 
     729             :         /*
     730             :          * Now merge the results from the MCV and histogram calculations,
     731             :          * realizing that the histogram covers only the non-null values that
     732             :          * are not listed in MCV.
     733             :          */
     734        3486 :         selec *= 1.0 - nullfrac - sumcommon;
     735        3486 :         selec += mcv_selec;
     736        3486 :         result = selec;
     737             :     }
     738             : 
     739             :     /* now adjust if we wanted not-match rather than match */
     740        9230 :     if (negate)
     741        1134 :         result = 1.0 - result - nullfrac;
     742             : 
     743             :     /* result should be in range, but make sure... */
     744        9230 :     CLAMP_PROBABILITY(result);
     745             : 
     746        9230 :     if (prefix)
     747             :     {
     748        8678 :         pfree(DatumGetPointer(prefix->constvalue));
     749        8678 :         pfree(prefix);
     750             :     }
     751             : 
     752        9230 :     ReleaseVariableStats(vardata);
     753             : 
     754        9230 :     return result;
     755             : }
     756             : 
     757             : /*
     758             :  * Fix impedance mismatch between SQL-callable functions and patternsel_common
     759             :  */
     760             : static double
     761        9500 : patternsel(PG_FUNCTION_ARGS, Pattern_Type ptype, bool negate)
     762             : {
     763        9500 :     PlannerInfo *root = (PlannerInfo *) PG_GETARG_POINTER(0);
     764        9500 :     Oid         operator = PG_GETARG_OID(1);
     765        9500 :     List       *args = (List *) PG_GETARG_POINTER(2);
     766        9500 :     int         varRelid = PG_GETARG_INT32(3);
     767        9500 :     Oid         collation = PG_GET_COLLATION();
     768             : 
     769             :     /*
     770             :      * If this is for a NOT LIKE or similar operator, get the corresponding
     771             :      * positive-match operator and work with that.
     772             :      */
     773        9500 :     if (negate)
     774             :     {
     775        1318 :         operator = get_negator(operator);
     776        1318 :         if (!OidIsValid(operator))
     777           0 :             elog(ERROR, "patternsel called for operator without a negator");
     778             :     }
     779             : 
     780        9500 :     return patternsel_common(root,
     781             :                              operator,
     782             :                              InvalidOid,
     783             :                              args,
     784             :                              varRelid,
     785             :                              collation,
     786             :                              ptype,
     787             :                              negate);
     788             : }
     789             : 
     790             : /*
     791             :  *      regexeqsel      - Selectivity of regular-expression pattern match.
     792             :  */
     793             : Datum
     794        6592 : regexeqsel(PG_FUNCTION_ARGS)
     795             : {
     796        6592 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Regex, false));
     797             : }
     798             : 
     799             : /*
     800             :  *      icregexeqsel    - Selectivity of case-insensitive regex match.
     801             :  */
     802             : Datum
     803          48 : icregexeqsel(PG_FUNCTION_ARGS)
     804             : {
     805          48 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Regex_IC, false));
     806             : }
     807             : 
     808             : /*
     809             :  *      likesel         - Selectivity of LIKE pattern match.
     810             :  */
     811             : Datum
     812        1404 : likesel(PG_FUNCTION_ARGS)
     813             : {
     814        1404 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Like, false));
     815             : }
     816             : 
     817             : /*
     818             :  *      prefixsel           - selectivity of prefix operator
     819             :  */
     820             : Datum
     821          54 : prefixsel(PG_FUNCTION_ARGS)
     822             : {
     823          54 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Prefix, false));
     824             : }
     825             : 
     826             : /*
     827             :  *
     828             :  *      iclikesel           - Selectivity of ILIKE pattern match.
     829             :  */
     830             : Datum
     831          84 : iclikesel(PG_FUNCTION_ARGS)
     832             : {
     833          84 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Like_IC, false));
     834             : }
     835             : 
     836             : /*
     837             :  *      regexnesel      - Selectivity of regular-expression pattern non-match.
     838             :  */
     839             : Datum
     840        1164 : regexnesel(PG_FUNCTION_ARGS)
     841             : {
     842        1164 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Regex, true));
     843             : }
     844             : 
     845             : /*
     846             :  *      icregexnesel    - Selectivity of case-insensitive regex non-match.
     847             :  */
     848             : Datum
     849          16 : icregexnesel(PG_FUNCTION_ARGS)
     850             : {
     851          16 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Regex_IC, true));
     852             : }
     853             : 
     854             : /*
     855             :  *      nlikesel        - Selectivity of LIKE pattern non-match.
     856             :  */
     857             : Datum
     858         130 : nlikesel(PG_FUNCTION_ARGS)
     859             : {
     860         130 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Like, true));
     861             : }
     862             : 
     863             : /*
     864             :  *      icnlikesel      - Selectivity of ILIKE pattern non-match.
     865             :  */
     866             : Datum
     867           8 : icnlikesel(PG_FUNCTION_ARGS)
     868             : {
     869           8 :     PG_RETURN_FLOAT8(patternsel(fcinfo, Pattern_Type_Like_IC, true));
     870             : }
     871             : 
     872             : /*
     873             :  * patternjoinsel       - Generic code for pattern-match join selectivity.
     874             :  */
     875             : static double
     876         236 : patternjoinsel(PG_FUNCTION_ARGS, Pattern_Type ptype, bool negate)
     877             : {
     878             :     /* For the moment we just punt. */
     879         236 :     return negate ? (1.0 - DEFAULT_MATCH_SEL) : DEFAULT_MATCH_SEL;
     880             : }
     881             : 
     882             : /*
     883             :  *      regexeqjoinsel  - Join selectivity of regular-expression pattern match.
     884             :  */
     885             : Datum
     886         236 : regexeqjoinsel(PG_FUNCTION_ARGS)
     887             : {
     888         236 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Regex, false));
     889             : }
     890             : 
     891             : /*
     892             :  *      icregexeqjoinsel    - Join selectivity of case-insensitive regex match.
     893             :  */
     894             : Datum
     895           0 : icregexeqjoinsel(PG_FUNCTION_ARGS)
     896             : {
     897           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Regex_IC, false));
     898             : }
     899             : 
     900             : /*
     901             :  *      likejoinsel         - Join selectivity of LIKE pattern match.
     902             :  */
     903             : Datum
     904           0 : likejoinsel(PG_FUNCTION_ARGS)
     905             : {
     906           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Like, false));
     907             : }
     908             : 
     909             : /*
     910             :  *      prefixjoinsel           - Join selectivity of prefix operator
     911             :  */
     912             : Datum
     913           0 : prefixjoinsel(PG_FUNCTION_ARGS)
     914             : {
     915           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Prefix, false));
     916             : }
     917             : 
     918             : /*
     919             :  *      iclikejoinsel           - Join selectivity of ILIKE pattern match.
     920             :  */
     921             : Datum
     922           0 : iclikejoinsel(PG_FUNCTION_ARGS)
     923             : {
     924           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Like_IC, false));
     925             : }
     926             : 
     927             : /*
     928             :  *      regexnejoinsel  - Join selectivity of regex non-match.
     929             :  */
     930             : Datum
     931           0 : regexnejoinsel(PG_FUNCTION_ARGS)
     932             : {
     933           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Regex, true));
     934             : }
     935             : 
     936             : /*
     937             :  *      icregexnejoinsel    - Join selectivity of case-insensitive regex non-match.
     938             :  */
     939             : Datum
     940           0 : icregexnejoinsel(PG_FUNCTION_ARGS)
     941             : {
     942           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Regex_IC, true));
     943             : }
     944             : 
     945             : /*
     946             :  *      nlikejoinsel        - Join selectivity of LIKE pattern non-match.
     947             :  */
     948             : Datum
     949           0 : nlikejoinsel(PG_FUNCTION_ARGS)
     950             : {
     951           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Like, true));
     952             : }
     953             : 
     954             : /*
     955             :  *      icnlikejoinsel      - Join selectivity of ILIKE pattern non-match.
     956             :  */
     957             : Datum
     958           0 : icnlikejoinsel(PG_FUNCTION_ARGS)
     959             : {
     960           0 :     PG_RETURN_FLOAT8(patternjoinsel(fcinfo, Pattern_Type_Like_IC, true));
     961             : }
     962             : 
     963             : 
     964             : /*-------------------------------------------------------------------------
     965             :  *
     966             :  * Pattern analysis functions
     967             :  *
     968             :  * These routines support analysis of LIKE and regular-expression patterns
     969             :  * by the planner/optimizer.  It's important that they agree with the
     970             :  * regular-expression code in backend/regex/ and the LIKE code in
     971             :  * backend/utils/adt/like.c.  Also, the computation of the fixed prefix
     972             :  * must be conservative: if we report a string longer than the true fixed
     973             :  * prefix, the query may produce actually wrong answers, rather than just
     974             :  * getting a bad selectivity estimate!
     975             :  *
     976             :  *-------------------------------------------------------------------------
     977             :  */
     978             : 
     979             : /*
     980             :  * Extract the fixed prefix, if any, for a pattern.
     981             :  *
     982             :  * *prefix is set to a palloc'd prefix string (in the form of a Const node),
     983             :  *  or to NULL if no fixed prefix exists for the pattern.
     984             :  * If rest_selec is not NULL, *rest_selec is set to an estimate of the
     985             :  *  selectivity of the remainder of the pattern (without any fixed prefix).
     986             :  * The prefix Const has the same type (TEXT or BYTEA) as the input pattern.
     987             :  *
     988             :  * The return value distinguishes no fixed prefix, a partial prefix,
     989             :  * or an exact-match-only pattern.
     990             :  */
     991             : 
     992             : static Pattern_Prefix_Status
     993        2622 : like_fixed_prefix(Const *patt_const, bool case_insensitive, Oid collation,
     994             :                   Const **prefix_const, Selectivity *rest_selec)
     995             : {
     996             :     char       *match;
     997             :     char       *patt;
     998             :     int         pattlen;
     999        2622 :     Oid         typeid = patt_const->consttype;
    1000             :     int         pos,
    1001             :                 match_pos;
    1002        2622 :     bool        is_multibyte = (pg_database_encoding_max_length() > 1);
    1003        2622 :     pg_locale_t locale = 0;
    1004        2622 :     bool        locale_is_c = false;
    1005             : 
    1006             :     /* the right-hand const is type text or bytea */
    1007             :     Assert(typeid == BYTEAOID || typeid == TEXTOID);
    1008             : 
    1009        2622 :     if (case_insensitive)
    1010             :     {
    1011         142 :         if (typeid == BYTEAOID)
    1012           0 :             ereport(ERROR,
    1013             :                     (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1014             :                      errmsg("case insensitive matching not supported on type bytea")));
    1015             : 
    1016         142 :         if (!OidIsValid(collation))
    1017             :         {
    1018             :             /*
    1019             :              * This typically means that the parser could not resolve a
    1020             :              * conflict of implicit collations, so report it that way.
    1021             :              */
    1022           0 :             ereport(ERROR,
    1023             :                     (errcode(ERRCODE_INDETERMINATE_COLLATION),
    1024             :                      errmsg("could not determine which collation to use for ILIKE"),
    1025             :                      errhint("Use the COLLATE clause to set the collation explicitly.")));
    1026             :         }
    1027             : 
    1028             :         /* If case-insensitive, we need locale info */
    1029         142 :         if (lc_ctype_is_c(collation))
    1030          98 :             locale_is_c = true;
    1031             :         else
    1032          44 :             locale = pg_newlocale_from_collation(collation);
    1033             :     }
    1034             : 
    1035        2622 :     if (typeid != BYTEAOID)
    1036             :     {
    1037        2610 :         patt = TextDatumGetCString(patt_const->constvalue);
    1038        2610 :         pattlen = strlen(patt);
    1039             :     }
    1040             :     else
    1041             :     {
    1042          12 :         bytea      *bstr = DatumGetByteaPP(patt_const->constvalue);
    1043             : 
    1044          12 :         pattlen = VARSIZE_ANY_EXHDR(bstr);
    1045          12 :         patt = (char *) palloc(pattlen);
    1046          12 :         memcpy(patt, VARDATA_ANY(bstr), pattlen);
    1047             :         Assert((Pointer) bstr == DatumGetPointer(patt_const->constvalue));
    1048             :     }
    1049             : 
    1050        2622 :     match = palloc(pattlen + 1);
    1051        2622 :     match_pos = 0;
    1052       14464 :     for (pos = 0; pos < pattlen; pos++)
    1053             :     {
    1054             :         /* % and _ are wildcard characters in LIKE */
    1055       14392 :         if (patt[pos] == '%' ||
    1056       12902 :             patt[pos] == '_')
    1057             :             break;
    1058             : 
    1059             :         /* Backslash escapes the next character */
    1060       11924 :         if (patt[pos] == '\\')
    1061             :         {
    1062         274 :             pos++;
    1063         274 :             if (pos >= pattlen)
    1064           0 :                 break;
    1065             :         }
    1066             : 
    1067             :         /* Stop if case-varying character (it's sort of a wildcard) */
    1068       12102 :         if (case_insensitive &&
    1069         178 :             pattern_char_isalpha(patt[pos], is_multibyte, locale, locale_is_c))
    1070          82 :             break;
    1071             : 
    1072       11842 :         match[match_pos++] = patt[pos];
    1073             :     }
    1074             : 
    1075        2622 :     match[match_pos] = '\0';
    1076             : 
    1077        2622 :     if (typeid != BYTEAOID)
    1078        2610 :         *prefix_const = string_to_const(match, typeid);
    1079             :     else
    1080          12 :         *prefix_const = string_to_bytea_const(match, match_pos);
    1081             : 
    1082        2622 :     if (rest_selec != NULL)
    1083        1610 :         *rest_selec = like_selectivity(&patt[pos], pattlen - pos,
    1084             :                                        case_insensitive);
    1085             : 
    1086        2622 :     pfree(patt);
    1087        2622 :     pfree(match);
    1088             : 
    1089             :     /* in LIKE, an empty pattern is an exact match! */
    1090        2622 :     if (pos == pattlen)
    1091          72 :         return Pattern_Prefix_Exact;    /* reached end of pattern, so exact */
    1092             : 
    1093        2550 :     if (match_pos > 0)
    1094        2118 :         return Pattern_Prefix_Partial;
    1095             : 
    1096         432 :     return Pattern_Prefix_None;
    1097             : }
    1098             : 
    1099             : static Pattern_Prefix_Status
    1100       13540 : regex_fixed_prefix(Const *patt_const, bool case_insensitive, Oid collation,
    1101             :                    Const **prefix_const, Selectivity *rest_selec)
    1102             : {
    1103       13540 :     Oid         typeid = patt_const->consttype;
    1104             :     char       *prefix;
    1105             :     bool        exact;
    1106             : 
    1107             :     /*
    1108             :      * Should be unnecessary, there are no bytea regex operators defined. As
    1109             :      * such, it should be noted that the rest of this function has *not* been
    1110             :      * made safe for binary (possibly NULL containing) strings.
    1111             :      */
    1112       13540 :     if (typeid == BYTEAOID)
    1113           0 :         ereport(ERROR,
    1114             :                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
    1115             :                  errmsg("regular-expression matching not supported on type bytea")));
    1116             : 
    1117             :     /* Use the regexp machinery to extract the prefix, if any */
    1118       13540 :     prefix = regexp_fixed_prefix(DatumGetTextPP(patt_const->constvalue),
    1119             :                                  case_insensitive, collation,
    1120             :                                  &exact);
    1121             : 
    1122       13532 :     if (prefix == NULL)
    1123             :     {
    1124         672 :         *prefix_const = NULL;
    1125             : 
    1126         672 :         if (rest_selec != NULL)
    1127             :         {
    1128         552 :             char       *patt = TextDatumGetCString(patt_const->constvalue);
    1129             : 
    1130         552 :             *rest_selec = regex_selectivity(patt, strlen(patt),
    1131             :                                             case_insensitive,
    1132             :                                             0);
    1133         552 :             pfree(patt);
    1134             :         }
    1135             : 
    1136         672 :         return Pattern_Prefix_None;
    1137             :     }
    1138             : 
    1139       12860 :     *prefix_const = string_to_const(prefix, typeid);
    1140             : 
    1141       12860 :     if (rest_selec != NULL)
    1142             :     {
    1143        6990 :         if (exact)
    1144             :         {
    1145             :             /* Exact match, so there's no additional selectivity */
    1146        5704 :             *rest_selec = 1.0;
    1147             :         }
    1148             :         else
    1149             :         {
    1150        1286 :             char       *patt = TextDatumGetCString(patt_const->constvalue);
    1151             : 
    1152        2572 :             *rest_selec = regex_selectivity(patt, strlen(patt),
    1153             :                                             case_insensitive,
    1154        1286 :                                             strlen(prefix));
    1155        1286 :             pfree(patt);
    1156             :         }
    1157             :     }
    1158             : 
    1159       12860 :     pfree(prefix);
    1160             : 
    1161       12860 :     if (exact)
    1162       11262 :         return Pattern_Prefix_Exact;    /* pattern specifies exact match */
    1163             :     else
    1164        1598 :         return Pattern_Prefix_Partial;
    1165             : }
    1166             : 
    1167             : static Pattern_Prefix_Status
    1168       16264 : pattern_fixed_prefix(Const *patt, Pattern_Type ptype, Oid collation,
    1169             :                      Const **prefix, Selectivity *rest_selec)
    1170             : {
    1171             :     Pattern_Prefix_Status result;
    1172             : 
    1173       16264 :     switch (ptype)
    1174             :     {
    1175        2480 :         case Pattern_Type_Like:
    1176        2480 :             result = like_fixed_prefix(patt, false, collation,
    1177             :                                        prefix, rest_selec);
    1178        2480 :             break;
    1179         142 :         case Pattern_Type_Like_IC:
    1180         142 :             result = like_fixed_prefix(patt, true, collation,
    1181             :                                        prefix, rest_selec);
    1182         142 :             break;
    1183       13498 :         case Pattern_Type_Regex:
    1184       13498 :             result = regex_fixed_prefix(patt, false, collation,
    1185             :                                         prefix, rest_selec);
    1186       13490 :             break;
    1187          42 :         case Pattern_Type_Regex_IC:
    1188          42 :             result = regex_fixed_prefix(patt, true, collation,
    1189             :                                         prefix, rest_selec);
    1190          42 :             break;
    1191         102 :         case Pattern_Type_Prefix:
    1192             :             /* Prefix type work is trivial.  */
    1193         102 :             result = Pattern_Prefix_Partial;
    1194         102 :             *prefix = makeConst(patt->consttype,
    1195             :                                 patt->consttypmod,
    1196             :                                 patt->constcollid,
    1197             :                                 patt->constlen,
    1198             :                                 datumCopy(patt->constvalue,
    1199         102 :                                           patt->constbyval,
    1200             :                                           patt->constlen),
    1201         102 :                                 patt->constisnull,
    1202         102 :                                 patt->constbyval);
    1203         102 :             if (rest_selec != NULL)
    1204          78 :                 *rest_selec = 1.0;  /* all */
    1205         102 :             break;
    1206           0 :         default:
    1207           0 :             elog(ERROR, "unrecognized ptype: %d", (int) ptype);
    1208             :             result = Pattern_Prefix_None;   /* keep compiler quiet */
    1209             :             break;
    1210             :     }
    1211       16256 :     return result;
    1212             : }
    1213             : 
    1214             : /*
    1215             :  * Estimate the selectivity of a fixed prefix for a pattern match.
    1216             :  *
    1217             :  * A fixed prefix "foo" is estimated as the selectivity of the expression
    1218             :  * "variable >= 'foo' AND variable < 'fop'".
    1219             :  *
    1220             :  * The selectivity estimate is with respect to the portion of the column
    1221             :  * population represented by the histogram --- the caller must fold this
    1222             :  * together with info about MCVs and NULLs.
    1223             :  *
    1224             :  * We use the given comparison operators and collation to do the estimation.
    1225             :  * The given variable and Const must be of the associated datatype(s).
    1226             :  *
    1227             :  * XXX Note: we make use of the upper bound to estimate operator selectivity
    1228             :  * even if the locale is such that we cannot rely on the upper-bound string.
    1229             :  * The selectivity only needs to be approximately right anyway, so it seems
    1230             :  * more useful to use the upper-bound code than not.
    1231             :  */
    1232             : static Selectivity
    1233        1612 : prefix_selectivity(PlannerInfo *root, VariableStatData *vardata,
    1234             :                    Oid eqopr, Oid ltopr, Oid geopr,
    1235             :                    Oid collation,
    1236             :                    Const *prefixcon)
    1237             : {
    1238             :     Selectivity prefixsel;
    1239             :     FmgrInfo    opproc;
    1240             :     Const      *greaterstrcon;
    1241             :     Selectivity eq_sel;
    1242             : 
    1243             :     /* Estimate the selectivity of "x >= prefix" */
    1244        1612 :     fmgr_info(get_opcode(geopr), &opproc);
    1245             : 
    1246        1612 :     prefixsel = ineq_histogram_selectivity(root, vardata,
    1247             :                                            geopr, &opproc, true, true,
    1248             :                                            collation,
    1249             :                                            prefixcon->constvalue,
    1250             :                                            prefixcon->consttype);
    1251             : 
    1252        1612 :     if (prefixsel < 0.0)
    1253             :     {
    1254             :         /* No histogram is present ... return a suitable default estimate */
    1255         514 :         return DEFAULT_MATCH_SEL;
    1256             :     }
    1257             : 
    1258             :     /*
    1259             :      * If we can create a string larger than the prefix, say "x < greaterstr".
    1260             :      */
    1261        1098 :     fmgr_info(get_opcode(ltopr), &opproc);
    1262        1098 :     greaterstrcon = make_greater_string(prefixcon, &opproc, collation);
    1263        1098 :     if (greaterstrcon)
    1264             :     {
    1265             :         Selectivity topsel;
    1266             : 
    1267        1098 :         topsel = ineq_histogram_selectivity(root, vardata,
    1268             :                                             ltopr, &opproc, false, false,
    1269             :                                             collation,
    1270             :                                             greaterstrcon->constvalue,
    1271             :                                             greaterstrcon->consttype);
    1272             : 
    1273             :         /* ineq_histogram_selectivity worked before, it shouldn't fail now */
    1274             :         Assert(topsel >= 0.0);
    1275             : 
    1276             :         /*
    1277             :          * Merge the two selectivities in the same way as for a range query
    1278             :          * (see clauselist_selectivity()).  Note that we don't need to worry
    1279             :          * about double-exclusion of nulls, since ineq_histogram_selectivity
    1280             :          * doesn't count those anyway.
    1281             :          */
    1282        1098 :         prefixsel = topsel + prefixsel - 1.0;
    1283             :     }
    1284             : 
    1285             :     /*
    1286             :      * If the prefix is long then the two bounding values might be too close
    1287             :      * together for the histogram to distinguish them usefully, resulting in a
    1288             :      * zero estimate (plus or minus roundoff error). To avoid returning a
    1289             :      * ridiculously small estimate, compute the estimated selectivity for
    1290             :      * "variable = 'foo'", and clamp to that. (Obviously, the resultant
    1291             :      * estimate should be at least that.)
    1292             :      *
    1293             :      * We apply this even if we couldn't make a greater string.  That case
    1294             :      * suggests that the prefix is near the maximum possible, and thus
    1295             :      * probably off the end of the histogram, and thus we probably got a very
    1296             :      * small estimate from the >= condition; so we still need to clamp.
    1297             :      */
    1298        1098 :     eq_sel = var_eq_const(vardata, eqopr, collation, prefixcon->constvalue,
    1299             :                           false, true, false);
    1300             : 
    1301        1098 :     prefixsel = Max(prefixsel, eq_sel);
    1302             : 
    1303        1098 :     return prefixsel;
    1304             : }
    1305             : 
    1306             : 
    1307             : /*
    1308             :  * Estimate the selectivity of a pattern of the specified type.
    1309             :  * Note that any fixed prefix of the pattern will have been removed already,
    1310             :  * so actually we may be looking at just a fragment of the pattern.
    1311             :  *
    1312             :  * For now, we use a very simplistic approach: fixed characters reduce the
    1313             :  * selectivity a good deal, character ranges reduce it a little,
    1314             :  * wildcards (such as % for LIKE or .* for regex) increase it.
    1315             :  */
    1316             : 
    1317             : #define FIXED_CHAR_SEL  0.20    /* about 1/5 */
    1318             : #define CHAR_RANGE_SEL  0.25
    1319             : #define ANY_CHAR_SEL    0.9     /* not 1, since it won't match end-of-string */
    1320             : #define FULL_WILDCARD_SEL 5.0
    1321             : #define PARTIAL_WILDCARD_SEL 2.0
    1322             : 
    1323             : static Selectivity
    1324        1610 : like_selectivity(const char *patt, int pattlen, bool case_insensitive)
    1325             : {
    1326        1610 :     Selectivity sel = 1.0;
    1327             :     int         pos;
    1328             : 
    1329             :     /* Skip any leading wildcard; it's already factored into initial sel */
    1330        3158 :     for (pos = 0; pos < pattlen; pos++)
    1331             :     {
    1332        2320 :         if (patt[pos] != '%' && patt[pos] != '_')
    1333         772 :             break;
    1334             :     }
    1335             : 
    1336        6042 :     for (; pos < pattlen; pos++)
    1337             :     {
    1338             :         /* % and _ are wildcard characters in LIKE */
    1339        4432 :         if (patt[pos] == '%')
    1340         684 :             sel *= FULL_WILDCARD_SEL;
    1341        3748 :         else if (patt[pos] == '_')
    1342         144 :             sel *= ANY_CHAR_SEL;
    1343        3604 :         else if (patt[pos] == '\\')
    1344             :         {
    1345             :             /* Backslash quotes the next character */
    1346          40 :             pos++;
    1347          40 :             if (pos >= pattlen)
    1348           0 :                 break;
    1349          40 :             sel *= FIXED_CHAR_SEL;
    1350             :         }
    1351             :         else
    1352        3564 :             sel *= FIXED_CHAR_SEL;
    1353             :     }
    1354             :     /* Could get sel > 1 if multiple wildcards */
    1355        1610 :     if (sel > 1.0)
    1356           0 :         sel = 1.0;
    1357        1610 :     return sel;
    1358             : }
    1359             : 
    1360             : static Selectivity
    1361        2146 : regex_selectivity_sub(const char *patt, int pattlen, bool case_insensitive)
    1362             : {
    1363        2146 :     Selectivity sel = 1.0;
    1364        2146 :     int         paren_depth = 0;
    1365        2146 :     int         paren_pos = 0;  /* dummy init to keep compiler quiet */
    1366             :     int         pos;
    1367             : 
    1368             :     /* since this function recurses, it could be driven to stack overflow */
    1369        2146 :     check_stack_depth();
    1370             : 
    1371       22122 :     for (pos = 0; pos < pattlen; pos++)
    1372             :     {
    1373       19994 :         if (patt[pos] == '(')
    1374             :         {
    1375         296 :             if (paren_depth == 0)
    1376         290 :                 paren_pos = pos;    /* remember start of parenthesized item */
    1377         296 :             paren_depth++;
    1378             :         }
    1379       19698 :         else if (patt[pos] == ')' && paren_depth > 0)
    1380             :         {
    1381         296 :             paren_depth--;
    1382         296 :             if (paren_depth == 0)
    1383         290 :                 sel *= regex_selectivity_sub(patt + (paren_pos + 1),
    1384         290 :                                              pos - (paren_pos + 1),
    1385             :                                              case_insensitive);
    1386             :         }
    1387       19402 :         else if (patt[pos] == '|' && paren_depth == 0)
    1388             :         {
    1389             :             /*
    1390             :              * If unquoted | is present at paren level 0 in pattern, we have
    1391             :              * multiple alternatives; sum their probabilities.
    1392             :              */
    1393          36 :             sel += regex_selectivity_sub(patt + (pos + 1),
    1394          18 :                                          pattlen - (pos + 1),
    1395             :                                          case_insensitive);
    1396          18 :             break;              /* rest of pattern is now processed */
    1397             :         }
    1398       19384 :         else if (patt[pos] == '[')
    1399             :         {
    1400          78 :             bool        negclass = false;
    1401             : 
    1402          78 :             if (patt[++pos] == '^')
    1403             :             {
    1404           0 :                 negclass = true;
    1405           0 :                 pos++;
    1406             :             }
    1407          78 :             if (patt[pos] == ']')   /* ']' at start of class is not special */
    1408           0 :                 pos++;
    1409         380 :             while (pos < pattlen && patt[pos] != ']')
    1410         302 :                 pos++;
    1411          78 :             if (paren_depth == 0)
    1412          78 :                 sel *= (negclass ? (1.0 - CHAR_RANGE_SEL) : CHAR_RANGE_SEL);
    1413             :         }
    1414       19306 :         else if (patt[pos] == '.')
    1415             :         {
    1416         690 :             if (paren_depth == 0)
    1417         408 :                 sel *= ANY_CHAR_SEL;
    1418             :         }
    1419       18616 :         else if (patt[pos] == '*' ||
    1420       18006 :                  patt[pos] == '?' ||
    1421       17962 :                  patt[pos] == '+')
    1422             :         {
    1423             :             /* Ought to be smarter about quantifiers... */
    1424         668 :             if (paren_depth == 0)
    1425         380 :                 sel *= PARTIAL_WILDCARD_SEL;
    1426             :         }
    1427       17948 :         else if (patt[pos] == '{')
    1428             :         {
    1429         264 :             while (pos < pattlen && patt[pos] != '}')
    1430         188 :                 pos++;
    1431          76 :             if (paren_depth == 0)
    1432          64 :                 sel *= PARTIAL_WILDCARD_SEL;
    1433             :         }
    1434       17872 :         else if (patt[pos] == '\\')
    1435             :         {
    1436             :             /* backslash quotes the next character */
    1437         200 :             pos++;
    1438         200 :             if (pos >= pattlen)
    1439           0 :                 break;
    1440         200 :             if (paren_depth == 0)
    1441         104 :                 sel *= FIXED_CHAR_SEL;
    1442             :         }
    1443             :         else
    1444             :         {
    1445       17672 :             if (paren_depth == 0)
    1446       15594 :                 sel *= FIXED_CHAR_SEL;
    1447             :         }
    1448             :     }
    1449             :     /* Could get sel > 1 if multiple wildcards */
    1450        2146 :     if (sel > 1.0)
    1451          26 :         sel = 1.0;
    1452        2146 :     return sel;
    1453             : }
    1454             : 
    1455             : static Selectivity
    1456        1838 : regex_selectivity(const char *patt, int pattlen, bool case_insensitive,
    1457             :                   int fixed_prefix_len)
    1458             : {
    1459             :     Selectivity sel;
    1460             : 
    1461             :     /* If patt doesn't end with $, consider it to have a trailing wildcard */
    1462        1838 :     if (pattlen > 0 && patt[pattlen - 1] == '$' &&
    1463         286 :         (pattlen == 1 || patt[pattlen - 2] != '\\'))
    1464             :     {
    1465             :         /* has trailing $ */
    1466         286 :         sel = regex_selectivity_sub(patt, pattlen - 1, case_insensitive);
    1467             :     }
    1468             :     else
    1469             :     {
    1470             :         /* no trailing $ */
    1471        1552 :         sel = regex_selectivity_sub(patt, pattlen, case_insensitive);
    1472        1552 :         sel *= FULL_WILDCARD_SEL;
    1473             :     }
    1474             : 
    1475             :     /*
    1476             :      * If there's a fixed prefix, discount its selectivity.  We have to be
    1477             :      * careful here since a very long prefix could result in pow's result
    1478             :      * underflowing to zero (in which case "sel" probably has as well).
    1479             :      */
    1480        1838 :     if (fixed_prefix_len > 0)
    1481             :     {
    1482        1286 :         double      prefixsel = pow(FIXED_CHAR_SEL, fixed_prefix_len);
    1483             : 
    1484        1286 :         if (prefixsel > 0.0)
    1485        1286 :             sel /= prefixsel;
    1486             :     }
    1487             : 
    1488             :     /* Make sure result stays in range */
    1489        1838 :     CLAMP_PROBABILITY(sel);
    1490        1838 :     return sel;
    1491             : }
    1492             : 
    1493             : /*
    1494             :  * Check whether char is a letter (and, hence, subject to case-folding)
    1495             :  *
    1496             :  * In multibyte character sets or with ICU, we can't use isalpha, and it does
    1497             :  * not seem worth trying to convert to wchar_t to use iswalpha or u_isalpha.
    1498             :  * Instead, just assume any non-ASCII char is potentially case-varying, and
    1499             :  * hard-wire knowledge of which ASCII chars are letters.
    1500             :  */
    1501             : static int
    1502         178 : pattern_char_isalpha(char c, bool is_multibyte,
    1503             :                      pg_locale_t locale, bool locale_is_c)
    1504             : {
    1505         178 :     if (locale_is_c)
    1506         136 :         return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
    1507          42 :     else if (is_multibyte && IS_HIGHBIT_SET(c))
    1508           0 :         return true;
    1509          42 :     else if (locale && locale->provider == COLLPROVIDER_ICU)
    1510          42 :         return IS_HIGHBIT_SET(c) ||
    1511          84 :             (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
    1512           0 :     else if (locale && locale->provider == COLLPROVIDER_LIBC)
    1513           0 :         return isalpha_l((unsigned char) c, locale->info.lt);
    1514             :     else
    1515           0 :         return isalpha((unsigned char) c);
    1516             : }
    1517             : 
    1518             : 
    1519             : /*
    1520             :  * For bytea, the increment function need only increment the current byte
    1521             :  * (there are no multibyte characters to worry about).
    1522             :  */
    1523             : static bool
    1524           0 : byte_increment(unsigned char *ptr, int len)
    1525             : {
    1526           0 :     if (*ptr >= 255)
    1527           0 :         return false;
    1528           0 :     (*ptr)++;
    1529           0 :     return true;
    1530             : }
    1531             : 
    1532             : /*
    1533             :  * Try to generate a string greater than the given string or any
    1534             :  * string it is a prefix of.  If successful, return a palloc'd string
    1535             :  * in the form of a Const node; else return NULL.
    1536             :  *
    1537             :  * The caller must provide the appropriate "less than" comparison function
    1538             :  * for testing the strings, along with the collation to use.
    1539             :  *
    1540             :  * The key requirement here is that given a prefix string, say "foo",
    1541             :  * we must be able to generate another string "fop" that is greater than
    1542             :  * all strings "foobar" starting with "foo".  We can test that we have
    1543             :  * generated a string greater than the prefix string, but in non-C collations
    1544             :  * that is not a bulletproof guarantee that an extension of the string might
    1545             :  * not sort after it; an example is that "foo " is less than "foo!", but it
    1546             :  * is not clear that a "dictionary" sort ordering will consider "foo!" less
    1547             :  * than "foo bar".  CAUTION: Therefore, this function should be used only for
    1548             :  * estimation purposes when working in a non-C collation.
    1549             :  *
    1550             :  * To try to catch most cases where an extended string might otherwise sort
    1551             :  * before the result value, we determine which of the strings "Z", "z", "y",
    1552             :  * and "9" is seen as largest by the collation, and append that to the given
    1553             :  * prefix before trying to find a string that compares as larger.
    1554             :  *
    1555             :  * To search for a greater string, we repeatedly "increment" the rightmost
    1556             :  * character, using an encoding-specific character incrementer function.
    1557             :  * When it's no longer possible to increment the last character, we truncate
    1558             :  * off that character and start incrementing the next-to-rightmost.
    1559             :  * For example, if "z" were the last character in the sort order, then we
    1560             :  * could produce "foo" as a string greater than "fonz".
    1561             :  *
    1562             :  * This could be rather slow in the worst case, but in most cases we
    1563             :  * won't have to try more than one or two strings before succeeding.
    1564             :  *
    1565             :  * Note that it's important for the character incrementer not to be too anal
    1566             :  * about producing every possible character code, since in some cases the only
    1567             :  * way to get a larger string is to increment a previous character position.
    1568             :  * So we don't want to spend too much time trying every possible character
    1569             :  * code at the last position.  A good rule of thumb is to be sure that we
    1570             :  * don't try more than 256*K values for a K-byte character (and definitely
    1571             :  * not 256^K, which is what an exhaustive search would approach).
    1572             :  */
    1573             : static Const *
    1574        2254 : make_greater_string(const Const *str_const, FmgrInfo *ltproc, Oid collation)
    1575             : {
    1576        2254 :     Oid         datatype = str_const->consttype;
    1577             :     char       *workstr;
    1578             :     int         len;
    1579             :     Datum       cmpstr;
    1580        2254 :     char       *cmptxt = NULL;
    1581             :     mbcharacter_incrementer charinc;
    1582             : 
    1583             :     /*
    1584             :      * Get a modifiable copy of the prefix string in C-string format, and set
    1585             :      * up the string we will compare to as a Datum.  In C locale this can just
    1586             :      * be the given prefix string, otherwise we need to add a suffix.  Type
    1587             :      * BYTEA sorts bytewise so it never needs a suffix either.
    1588             :      */
    1589        2254 :     if (datatype == BYTEAOID)
    1590             :     {
    1591           0 :         bytea      *bstr = DatumGetByteaPP(str_const->constvalue);
    1592             : 
    1593           0 :         len = VARSIZE_ANY_EXHDR(bstr);
    1594           0 :         workstr = (char *) palloc(len);
    1595           0 :         memcpy(workstr, VARDATA_ANY(bstr), len);
    1596             :         Assert((Pointer) bstr == DatumGetPointer(str_const->constvalue));
    1597           0 :         cmpstr = str_const->constvalue;
    1598             :     }
    1599             :     else
    1600             :     {
    1601        2254 :         if (datatype == NAMEOID)
    1602           0 :             workstr = DatumGetCString(DirectFunctionCall1(nameout,
    1603             :                                                           str_const->constvalue));
    1604             :         else
    1605        2254 :             workstr = TextDatumGetCString(str_const->constvalue);
    1606        2254 :         len = strlen(workstr);
    1607        2254 :         if (lc_collate_is_c(collation) || len == 0)
    1608        2242 :             cmpstr = str_const->constvalue;
    1609             :         else
    1610             :         {
    1611             :             /* If first time through, determine the suffix to use */
    1612             :             static char suffixchar = 0;
    1613             :             static Oid  suffixcollation = 0;
    1614             : 
    1615          12 :             if (!suffixchar || suffixcollation != collation)
    1616             :             {
    1617             :                 char       *best;
    1618             : 
    1619           2 :                 best = "Z";
    1620           2 :                 if (varstr_cmp(best, 1, "z", 1, collation) < 0)
    1621           0 :                     best = "z";
    1622           2 :                 if (varstr_cmp(best, 1, "y", 1, collation) < 0)
    1623           0 :                     best = "y";
    1624           2 :                 if (varstr_cmp(best, 1, "9", 1, collation) < 0)
    1625           0 :                     best = "9";
    1626           2 :                 suffixchar = *best;
    1627           2 :                 suffixcollation = collation;
    1628             :             }
    1629             : 
    1630             :             /* And build the string to compare to */
    1631          12 :             if (datatype == NAMEOID)
    1632             :             {
    1633           0 :                 cmptxt = palloc(len + 2);
    1634           0 :                 memcpy(cmptxt, workstr, len);
    1635           0 :                 cmptxt[len] = suffixchar;
    1636           0 :                 cmptxt[len + 1] = '\0';
    1637           0 :                 cmpstr = PointerGetDatum(cmptxt);
    1638             :             }
    1639             :             else
    1640             :             {
    1641          12 :                 cmptxt = palloc(VARHDRSZ + len + 1);
    1642          12 :                 SET_VARSIZE(cmptxt, VARHDRSZ + len + 1);
    1643          12 :                 memcpy(VARDATA(cmptxt), workstr, len);
    1644          12 :                 *(VARDATA(cmptxt) + len) = suffixchar;
    1645          12 :                 cmpstr = PointerGetDatum(cmptxt);
    1646             :             }
    1647             :         }
    1648             :     }
    1649             : 
    1650             :     /* Select appropriate character-incrementer function */
    1651        2254 :     if (datatype == BYTEAOID)
    1652           0 :         charinc = byte_increment;
    1653             :     else
    1654        2254 :         charinc = pg_database_encoding_character_incrementer();
    1655             : 
    1656             :     /* And search ... */
    1657        2254 :     while (len > 0)
    1658             :     {
    1659             :         int         charlen;
    1660             :         unsigned char *lastchar;
    1661             : 
    1662             :         /* Identify the last character --- for bytea, just the last byte */
    1663        2254 :         if (datatype == BYTEAOID)
    1664           0 :             charlen = 1;
    1665             :         else
    1666        2254 :             charlen = len - pg_mbcliplen(workstr, len, len - 1);
    1667        2254 :         lastchar = (unsigned char *) (workstr + len - charlen);
    1668             : 
    1669             :         /*
    1670             :          * Try to generate a larger string by incrementing the last character
    1671             :          * (for BYTEA, we treat each byte as a character).
    1672             :          *
    1673             :          * Note: the incrementer function is expected to return true if it's
    1674             :          * generated a valid-per-the-encoding new character, otherwise false.
    1675             :          * The contents of the character on false return are unspecified.
    1676             :          */
    1677        2254 :         while (charinc(lastchar, charlen))
    1678             :         {
    1679             :             Const      *workstr_const;
    1680             : 
    1681        2254 :             if (datatype == BYTEAOID)
    1682           0 :                 workstr_const = string_to_bytea_const(workstr, len);
    1683             :             else
    1684        2254 :                 workstr_const = string_to_const(workstr, datatype);
    1685             : 
    1686        2254 :             if (DatumGetBool(FunctionCall2Coll(ltproc,
    1687             :                                                collation,
    1688             :                                                cmpstr,
    1689             :                                                workstr_const->constvalue)))
    1690             :             {
    1691             :                 /* Successfully made a string larger than cmpstr */
    1692        2254 :                 if (cmptxt)
    1693          12 :                     pfree(cmptxt);
    1694        2254 :                 pfree(workstr);
    1695        2254 :                 return workstr_const;
    1696             :             }
    1697             : 
    1698             :             /* No good, release unusable value and try again */
    1699           0 :             pfree(DatumGetPointer(workstr_const->constvalue));
    1700           0 :             pfree(workstr_const);
    1701             :         }
    1702             : 
    1703             :         /*
    1704             :          * No luck here, so truncate off the last character and try to
    1705             :          * increment the next one.
    1706             :          */
    1707           0 :         len -= charlen;
    1708           0 :         workstr[len] = '\0';
    1709             :     }
    1710             : 
    1711             :     /* Failed... */
    1712           0 :     if (cmptxt)
    1713           0 :         pfree(cmptxt);
    1714           0 :     pfree(workstr);
    1715             : 
    1716           0 :     return NULL;
    1717             : }
    1718             : 
    1719             : /*
    1720             :  * Generate a Datum of the appropriate type from a C string.
    1721             :  * Note that all of the supported types are pass-by-ref, so the
    1722             :  * returned value should be pfree'd if no longer needed.
    1723             :  */
    1724             : static Datum
    1725       17724 : string_to_datum(const char *str, Oid datatype)
    1726             : {
    1727             :     Assert(str != NULL);
    1728             : 
    1729             :     /*
    1730             :      * We cheat a little by assuming that CStringGetTextDatum() will do for
    1731             :      * bpchar and varchar constants too...
    1732             :      */
    1733       17724 :     if (datatype == NAMEOID)
    1734           0 :         return DirectFunctionCall1(namein, CStringGetDatum(str));
    1735       17724 :     else if (datatype == BYTEAOID)
    1736           0 :         return DirectFunctionCall1(byteain, CStringGetDatum(str));
    1737             :     else
    1738       17724 :         return CStringGetTextDatum(str);
    1739             : }
    1740             : 
    1741             : /*
    1742             :  * Generate a Const node of the appropriate type from a C string.
    1743             :  */
    1744             : static Const *
    1745       17724 : string_to_const(const char *str, Oid datatype)
    1746             : {
    1747       17724 :     Datum       conval = string_to_datum(str, datatype);
    1748             :     Oid         collation;
    1749             :     int         constlen;
    1750             : 
    1751             :     /*
    1752             :      * We only need to support a few datatypes here, so hard-wire properties
    1753             :      * instead of incurring the expense of catalog lookups.
    1754             :      */
    1755       17724 :     switch (datatype)
    1756             :     {
    1757       17724 :         case TEXTOID:
    1758             :         case VARCHAROID:
    1759             :         case BPCHAROID:
    1760       17724 :             collation = DEFAULT_COLLATION_OID;
    1761       17724 :             constlen = -1;
    1762       17724 :             break;
    1763             : 
    1764           0 :         case NAMEOID:
    1765           0 :             collation = C_COLLATION_OID;
    1766           0 :             constlen = NAMEDATALEN;
    1767           0 :             break;
    1768             : 
    1769           0 :         case BYTEAOID:
    1770           0 :             collation = InvalidOid;
    1771           0 :             constlen = -1;
    1772           0 :             break;
    1773             : 
    1774           0 :         default:
    1775           0 :             elog(ERROR, "unexpected datatype in string_to_const: %u",
    1776             :                  datatype);
    1777             :             return NULL;
    1778             :     }
    1779             : 
    1780       17724 :     return makeConst(datatype, -1, collation, constlen,
    1781             :                      conval, false, false);
    1782             : }
    1783             : 
    1784             : /*
    1785             :  * Generate a Const node of bytea type from a binary C string and a length.
    1786             :  */
    1787             : static Const *
    1788          12 : string_to_bytea_const(const char *str, size_t str_len)
    1789             : {
    1790          12 :     bytea      *bstr = palloc(VARHDRSZ + str_len);
    1791             :     Datum       conval;
    1792             : 
    1793          12 :     memcpy(VARDATA(bstr), str, str_len);
    1794          12 :     SET_VARSIZE(bstr, VARHDRSZ + str_len);
    1795          12 :     conval = PointerGetDatum(bstr);
    1796             : 
    1797          12 :     return makeConst(BYTEAOID, -1, InvalidOid, -1, conval, false, false);
    1798             : }

Generated by: LCOV version 1.14