LCOV - differential code coverage report
Current view: top level - src/backend/catalog - pg_proc.c (source / functions) Coverage Total Hit UNC UBC GNC CBC DCB
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 87.6 % 410 359 51 3 356 3
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 9 9 2 7
Baseline: 16@8cea358b128 Branches: 68.2 % 381 260 1 120 1 259
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed [..60] days: 100.0 % 2 2 2
(240..) days: 87.5 % 408 357 51 1 356
Function coverage date bins:
(240..) days: 100.0 % 9 9 2 7
Branch coverage date bins:
[..60] days: 50.0 % 2 1 1 1
(240..) days: 68.3 % 379 259 120 259

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_proc.c
                                  4                 :                :  *    routines to support manipulation of the pg_proc relation
                                  5                 :                :  *
                                  6                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                  7                 :                :  * Portions Copyright (c) 1994, Regents of the University of California
                                  8                 :                :  *
                                  9                 :                :  *
                                 10                 :                :  * IDENTIFICATION
                                 11                 :                :  *    src/backend/catalog/pg_proc.c
                                 12                 :                :  *
                                 13                 :                :  *-------------------------------------------------------------------------
                                 14                 :                :  */
                                 15                 :                : #include "postgres.h"
                                 16                 :                : 
                                 17                 :                : #include "access/htup_details.h"
                                 18                 :                : #include "access/table.h"
                                 19                 :                : #include "access/xact.h"
                                 20                 :                : #include "catalog/catalog.h"
                                 21                 :                : #include "catalog/dependency.h"
                                 22                 :                : #include "catalog/indexing.h"
                                 23                 :                : #include "catalog/objectaccess.h"
                                 24                 :                : #include "catalog/pg_language.h"
                                 25                 :                : #include "catalog/pg_namespace.h"
                                 26                 :                : #include "catalog/pg_proc.h"
                                 27                 :                : #include "catalog/pg_transform.h"
                                 28                 :                : #include "catalog/pg_type.h"
                                 29                 :                : #include "commands/defrem.h"
                                 30                 :                : #include "executor/functions.h"
                                 31                 :                : #include "funcapi.h"
                                 32                 :                : #include "mb/pg_wchar.h"
                                 33                 :                : #include "miscadmin.h"
                                 34                 :                : #include "nodes/nodeFuncs.h"
                                 35                 :                : #include "parser/parse_coerce.h"
                                 36                 :                : #include "pgstat.h"
                                 37                 :                : #include "rewrite/rewriteHandler.h"
                                 38                 :                : #include "tcop/pquery.h"
                                 39                 :                : #include "tcop/tcopprot.h"
                                 40                 :                : #include "utils/acl.h"
                                 41                 :                : #include "utils/builtins.h"
                                 42                 :                : #include "utils/lsyscache.h"
                                 43                 :                : #include "utils/regproc.h"
                                 44                 :                : #include "utils/rel.h"
                                 45                 :                : #include "utils/syscache.h"
                                 46                 :                : 
                                 47                 :                : 
                                 48                 :                : typedef struct
                                 49                 :                : {
                                 50                 :                :     char       *proname;
                                 51                 :                :     char       *prosrc;
                                 52                 :                : } parse_error_callback_arg;
                                 53                 :                : 
                                 54                 :                : static void sql_function_parse_error_callback(void *arg);
                                 55                 :                : static int  match_prosrc_to_query(const char *prosrc, const char *queryText,
                                 56                 :                :                                   int cursorpos);
                                 57                 :                : static bool match_prosrc_to_literal(const char *prosrc, const char *literal,
                                 58                 :                :                                     int cursorpos, int *newcursorpos);
                                 59                 :                : 
                                 60                 :                : 
                                 61                 :                : /* ----------------------------------------------------------------
                                 62                 :                :  *      ProcedureCreate
                                 63                 :                :  *
                                 64                 :                :  * Note: allParameterTypes, parameterModes, parameterNames, trftypes, and proconfig
                                 65                 :                :  * are either arrays of the proper types or NULL.  We declare them Datum,
                                 66                 :                :  * not "ArrayType *", to avoid importing array.h into pg_proc.h.
                                 67                 :                :  * ----------------------------------------------------------------
                                 68                 :                :  */
                                 69                 :                : ObjectAddress
 8045 tgl@sss.pgh.pa.us          70                 :CBC       10812 : ProcedureCreate(const char *procedureName,
                                 71                 :                :                 Oid procNamespace,
                                 72                 :                :                 bool replace,
                                 73                 :                :                 bool returnsSet,
                                 74                 :                :                 Oid returnType,
                                 75                 :                :                 Oid proowner,
                                 76                 :                :                 Oid languageObjectId,
                                 77                 :                :                 Oid languageValidator,
                                 78                 :                :                 const char *prosrc,
                                 79                 :                :                 const char *probin,
                                 80                 :                :                 Node *prosqlbody,
                                 81                 :                :                 char prokind,
                                 82                 :                :                 bool security_definer,
                                 83                 :                :                 bool isLeakProof,
                                 84                 :                :                 bool isStrict,
                                 85                 :                :                 char volatility,
                                 86                 :                :                 char parallel,
                                 87                 :                :                 oidvector *parameterTypes,
                                 88                 :                :                 Datum allParameterTypes,
                                 89                 :                :                 Datum parameterModes,
                                 90                 :                :                 Datum parameterNames,
                                 91                 :                :                 List *parameterDefaults,
                                 92                 :                :                 Datum trftypes,
                                 93                 :                :                 Datum proconfig,
                                 94                 :                :                 Oid prosupport,
                                 95                 :                :                 float4 procost,
                                 96                 :                :                 float4 prorows)
                                 97                 :                : {
                                 98                 :                :     Oid         retval;
                                 99                 :                :     int         parameterCount;
                                100                 :                :     int         allParamCount;
                                101                 :                :     Oid        *allParams;
 4529                           102                 :          10812 :     char       *paramModes = NULL;
 5751                           103                 :          10812 :     Oid         variadicType = InvalidOid;
 5305                           104                 :          10812 :     Acl        *proacl = NULL;
                                105                 :                :     Relation    rel;
                                106                 :                :     HeapTuple   tup;
                                107                 :                :     HeapTuple   oldtup;
                                108                 :                :     bool        nulls[Natts_pg_proc];
                                109                 :                :     Datum       values[Natts_pg_proc];
                                110                 :                :     bool        replaces[Natts_pg_proc];
                                111                 :                :     NameData    procname;
                                112                 :                :     TupleDesc   tupDesc;
                                113                 :                :     bool        is_update;
                                114                 :                :     ObjectAddress myself,
                                115                 :                :                 referenced;
                                116                 :                :     char       *detailmsg;
                                117                 :                :     int         i;
                                118                 :                :     Oid         trfid;
                                119                 :                :     ObjectAddresses *addrs;
                                120                 :                : 
                                121                 :                :     /*
                                122                 :                :      * sanity checks
                                123                 :                :      */
 1095                           124         [ -  + ]:          10812 :     Assert(PointerIsValid(prosrc));
                                125                 :                : 
 6954                           126                 :          10812 :     parameterCount = parameterTypes->dim1;
 8039                           127   [ +  -  -  + ]:          10812 :     if (parameterCount < 0 || parameterCount > FUNC_MAX_ARGS)
 7576 tgl@sss.pgh.pa.us         128         [ #  # ]:UBC           0 :         ereport(ERROR,
                                129                 :                :                 (errcode(ERRCODE_TOO_MANY_ARGUMENTS),
                                130                 :                :                  errmsg_plural("functions cannot have more than %d argument",
                                131                 :                :                                "functions cannot have more than %d arguments",
                                132                 :                :                                FUNC_MAX_ARGS,
                                133                 :                :                                FUNC_MAX_ARGS)));
                                134                 :                :     /* note: the above is correct, we do NOT count output arguments */
                                135                 :                : 
                                136                 :                :     /* Deconstruct array inputs */
 6954 tgl@sss.pgh.pa.us         137         [ +  + ]:CBC       10812 :     if (allParameterTypes != PointerGetDatum(NULL))
                                138                 :                :     {
                                139                 :                :         /*
                                140                 :                :          * We expect the array to be a 1-D OID array; verify that. We don't
                                141                 :                :          * need to use deconstruct_array() since the array data is just going
                                142                 :                :          * to look like a C array of OID values.
                                143                 :                :          */
 6718 bruce@momjian.us          144                 :           1162 :         ArrayType  *allParamArray = (ArrayType *) DatumGetPointer(allParameterTypes);
                                145                 :                : 
 6723 tgl@sss.pgh.pa.us         146                 :           1162 :         allParamCount = ARR_DIMS(allParamArray)[0];
                                147   [ +  -  +  - ]:           1162 :         if (ARR_NDIM(allParamArray) != 1 ||
 6954                           148                 :           1162 :             allParamCount <= 0 ||
 6723                           149         [ +  - ]:           1162 :             ARR_HASNULL(allParamArray) ||
                                150         [ -  + ]:           1162 :             ARR_ELEMTYPE(allParamArray) != OIDOID)
 6954 tgl@sss.pgh.pa.us         151         [ #  # ]:UBC           0 :             elog(ERROR, "allParameterTypes is not a 1-D Oid array");
 6723 tgl@sss.pgh.pa.us         152         [ -  + ]:CBC        1162 :         allParams = (Oid *) ARR_DATA_PTR(allParamArray);
 6954                           153         [ -  + ]:           1162 :         Assert(allParamCount >= parameterCount);
                                154                 :                :         /* we assume caller got the contents right */
                                155                 :                :     }
                                156                 :                :     else
                                157                 :                :     {
                                158                 :           9650 :         allParamCount = parameterCount;
                                159                 :           9650 :         allParams = parameterTypes->values;
                                160                 :                :     }
                                161                 :                : 
 4546 heikki.linnakangas@i      162         [ +  + ]:          10812 :     if (parameterModes != PointerGetDatum(NULL))
                                163                 :                :     {
                                164                 :                :         /*
                                165                 :                :          * We expect the array to be a 1-D CHAR array; verify that. We don't
                                166                 :                :          * need to use deconstruct_array() since the array data is just going
                                167                 :                :          * to look like a C array of char values.
                                168                 :                :          */
                                169                 :           1162 :         ArrayType  *modesArray = (ArrayType *) DatumGetPointer(parameterModes);
                                170                 :                : 
                                171         [ +  - ]:           1162 :         if (ARR_NDIM(modesArray) != 1 ||
                                172         [ +  - ]:           1162 :             ARR_DIMS(modesArray)[0] != allParamCount ||
                                173         [ +  - ]:           1162 :             ARR_HASNULL(modesArray) ||
                                174         [ -  + ]:           1162 :             ARR_ELEMTYPE(modesArray) != CHAROID)
 4546 heikki.linnakangas@i      175         [ #  # ]:UBC           0 :             elog(ERROR, "parameterModes is not a 1-D char array");
 4529 tgl@sss.pgh.pa.us         176         [ -  + ]:CBC        1162 :         paramModes = (char *) ARR_DATA_PTR(modesArray);
                                177                 :                :     }
                                178                 :                : 
                                179                 :                :     /*
                                180                 :                :      * Do not allow polymorphic return type unless there is a polymorphic
                                181                 :                :      * input argument that we can use to deduce the actual return type.
                                182                 :                :      */
 1489                           183                 :          10812 :     detailmsg = check_valid_polymorphic_signature(returnType,
                                184                 :          10812 :                                                   parameterTypes->values,
                                185                 :                :                                                   parameterCount);
                                186         [ +  + ]:          10812 :     if (detailmsg)
                                187         [ +  - ]:             39 :         ereport(ERROR,
                                188                 :                :                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                189                 :                :                  errmsg("cannot determine result data type"),
                                190                 :                :                  errdetail_internal("%s", detailmsg)));
                                191                 :                : 
                                192                 :                :     /*
                                193                 :                :      * Also, do not allow return type INTERNAL unless at least one input
                                194                 :                :      * argument is INTERNAL.
                                195                 :                :      */
                                196                 :          10773 :     detailmsg = check_valid_internal_signature(returnType,
                                197                 :          10773 :                                                parameterTypes->values,
                                198                 :                :                                                parameterCount);
                                199         [ -  + ]:          10773 :     if (detailmsg)
 1489 tgl@sss.pgh.pa.us         200         [ #  # ]:UBC           0 :         ereport(ERROR,
                                201                 :                :                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                202                 :                :                  errmsg("unsafe use of pseudo-type \"internal\""),
                                203                 :                :                  errdetail_internal("%s", detailmsg)));
                                204                 :                : 
                                205                 :                :     /*
                                206                 :                :      * Apply the same tests to any OUT arguments.
                                207                 :                :      */
 6921 tgl@sss.pgh.pa.us         208         [ +  + ]:CBC       10773 :     if (allParameterTypes != PointerGetDatum(NULL))
                                209                 :                :     {
                                210         [ +  + ]:           8136 :         for (i = 0; i < allParamCount; i++)
                                211                 :                :         {
 4529                           212         [ +  - ]:           6998 :             if (paramModes == NULL ||
                                213         [ +  + ]:           6998 :                 paramModes[i] == PROARGMODE_IN ||
                                214         [ +  + ]:           5193 :                 paramModes[i] == PROARGMODE_VARIADIC)
                                215                 :           2079 :                 continue;       /* ignore input-only params */
                                216                 :                : 
 1489                           217                 :           4919 :             detailmsg = check_valid_polymorphic_signature(allParams[i],
                                218                 :           4919 :                                                           parameterTypes->values,
                                219                 :                :                                                           parameterCount);
                                220         [ +  + ]:           4919 :             if (detailmsg)
                                221         [ +  - ]:             24 :                 ereport(ERROR,
                                222                 :                :                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                223                 :                :                          errmsg("cannot determine result data type"),
                                224                 :                :                          errdetail_internal("%s", detailmsg)));
                                225                 :           4895 :             detailmsg = check_valid_internal_signature(allParams[i],
                                226                 :           4895 :                                                        parameterTypes->values,
                                227                 :                :                                                        parameterCount);
                                228         [ -  + ]:           4895 :             if (detailmsg)
 1489 tgl@sss.pgh.pa.us         229         [ #  # ]:UBC           0 :                 ereport(ERROR,
                                230                 :                :                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                231                 :                :                          errmsg("unsafe use of pseudo-type \"internal\""),
                                232                 :                :                          errdetail_internal("%s", detailmsg)));
                                233                 :                :         }
                                234                 :                :     }
                                235                 :                : 
                                236                 :                :     /* Identify variadic argument type, if any */
 4529 tgl@sss.pgh.pa.us         237         [ +  + ]:CBC       10749 :     if (paramModes != NULL)
                                238                 :                :     {
                                239                 :                :         /*
                                240                 :                :          * Only the last input parameter can be variadic; if it is, save its
                                241                 :                :          * element type.  Errors here are just elog since caller should have
                                242                 :                :          * checked this already.
                                243                 :                :          */
 5751                           244         [ +  + ]:           8082 :         for (i = 0; i < allParamCount; i++)
                                245                 :                :         {
 4529                           246   [ +  +  +  +  :           6944 :             switch (paramModes[i])
                                                 - ]
                                247                 :                :             {
 5751                           248                 :           1853 :                 case PROARGMODE_IN:
                                249                 :                :                 case PROARGMODE_INOUT:
                                250         [ -  + ]:           1853 :                     if (OidIsValid(variadicType))
 5751 tgl@sss.pgh.pa.us         251         [ #  # ]:UBC           0 :                         elog(ERROR, "variadic parameter must be last");
 5751 tgl@sss.pgh.pa.us         252                 :CBC        1853 :                     break;
                                253                 :           4626 :                 case PROARGMODE_OUT:
 1287 peter@eisentraut.org      254   [ +  +  -  + ]:           4626 :                     if (OidIsValid(variadicType) && prokind == PROKIND_PROCEDURE)
 1287 peter@eisentraut.org      255         [ #  # ]:UBC           0 :                         elog(ERROR, "variadic parameter must be last");
 1287 peter@eisentraut.org      256                 :CBC        4626 :                     break;
 5749 tgl@sss.pgh.pa.us         257                 :            191 :                 case PROARGMODE_TABLE:
                                258                 :                :                     /* okay */
 5751                           259                 :            191 :                     break;
                                260                 :            274 :                 case PROARGMODE_VARIADIC:
                                261         [ -  + ]:            274 :                     if (OidIsValid(variadicType))
 5751 tgl@sss.pgh.pa.us         262         [ #  # ]:UBC           0 :                         elog(ERROR, "variadic parameter must be last");
 5751 tgl@sss.pgh.pa.us         263   [ +  +  +  + ]:CBC         274 :                     switch (allParams[i])
                                264                 :                :                     {
                                265                 :              4 :                         case ANYOID:
                                266                 :              4 :                             variadicType = ANYOID;
                                267                 :              4 :                             break;
                                268                 :             20 :                         case ANYARRAYOID:
                                269                 :             20 :                             variadicType = ANYELEMENTOID;
                                270                 :             20 :                             break;
 1487                           271                 :             11 :                         case ANYCOMPATIBLEARRAYOID:
                                272                 :             11 :                             variadicType = ANYCOMPATIBLEOID;
                                273                 :             11 :                             break;
 5751                           274                 :            239 :                         default:
                                275                 :            239 :                             variadicType = get_element_type(allParams[i]);
                                276         [ -  + ]:            239 :                             if (!OidIsValid(variadicType))
 5751 tgl@sss.pgh.pa.us         277         [ #  # ]:UBC           0 :                                 elog(ERROR, "variadic parameter is not an array");
 5751 tgl@sss.pgh.pa.us         278                 :CBC         239 :                             break;
                                279                 :                :                     }
                                280                 :            274 :                     break;
 5751 tgl@sss.pgh.pa.us         281                 :UBC           0 :                 default:
 4529                           282         [ #  # ]:              0 :                     elog(ERROR, "invalid parameter mode '%c'", paramModes[i]);
                                283                 :                :                     break;
                                284                 :                :             }
                                285                 :                :         }
                                286                 :                :     }
                                287                 :                : 
                                288                 :                :     /*
                                289                 :                :      * All seems OK; prepare the data to be inserted into pg_proc.
                                290                 :                :      */
                                291                 :                : 
 9716 bruce@momjian.us          292         [ +  + ]:CBC      333219 :     for (i = 0; i < Natts_pg_proc; ++i)
                                293                 :                :     {
 5642 tgl@sss.pgh.pa.us         294                 :         322470 :         nulls[i] = false;
 6956                           295                 :         322470 :         values[i] = (Datum) 0;
 5642                           296                 :         322470 :         replaces[i] = true;
                                297                 :                :     }
                                298                 :                : 
 9510 scrappy@hub.org           299                 :          10749 :     namestrcpy(&procname, procedureName);
 6956 tgl@sss.pgh.pa.us         300                 :          10749 :     values[Anum_pg_proc_proname - 1] = NameGetDatum(&procname);
                                301                 :          10749 :     values[Anum_pg_proc_pronamespace - 1] = ObjectIdGetDatum(procNamespace);
 5308                           302                 :          10749 :     values[Anum_pg_proc_proowner - 1] = ObjectIdGetDatum(proowner);
 6956                           303                 :          10749 :     values[Anum_pg_proc_prolang - 1] = ObjectIdGetDatum(languageObjectId);
 6292                           304                 :          10749 :     values[Anum_pg_proc_procost - 1] = Float4GetDatum(procost);
                                305                 :          10749 :     values[Anum_pg_proc_prorows - 1] = Float4GetDatum(prorows);
 5751                           306                 :          10749 :     values[Anum_pg_proc_provariadic - 1] = ObjectIdGetDatum(variadicType);
 1891                           307                 :          10749 :     values[Anum_pg_proc_prosupport - 1] = ObjectIdGetDatum(prosupport);
 2235 peter_e@gmx.net           308                 :          10749 :     values[Anum_pg_proc_prokind - 1] = CharGetDatum(prokind);
 6956 tgl@sss.pgh.pa.us         309                 :          10749 :     values[Anum_pg_proc_prosecdef - 1] = BoolGetDatum(security_definer);
 4444 rhaas@postgresql.org      310                 :          10749 :     values[Anum_pg_proc_proleakproof - 1] = BoolGetDatum(isLeakProof);
 6956 tgl@sss.pgh.pa.us         311                 :          10749 :     values[Anum_pg_proc_proisstrict - 1] = BoolGetDatum(isStrict);
                                312                 :          10749 :     values[Anum_pg_proc_proretset - 1] = BoolGetDatum(returnsSet);
                                313                 :          10749 :     values[Anum_pg_proc_provolatile - 1] = CharGetDatum(volatility);
 3133 rhaas@postgresql.org      314                 :          10749 :     values[Anum_pg_proc_proparallel - 1] = CharGetDatum(parallel);
 6956 tgl@sss.pgh.pa.us         315                 :          10749 :     values[Anum_pg_proc_pronargs - 1] = UInt16GetDatum(parameterCount);
 5610 peter_e@gmx.net           316                 :          10749 :     values[Anum_pg_proc_pronargdefaults - 1] = UInt16GetDatum(list_length(parameterDefaults));
 6956 tgl@sss.pgh.pa.us         317                 :          10749 :     values[Anum_pg_proc_prorettype - 1] = ObjectIdGetDatum(returnType);
 6954                           318                 :          10749 :     values[Anum_pg_proc_proargtypes - 1] = PointerGetDatum(parameterTypes);
                                319         [ +  + ]:          10749 :     if (allParameterTypes != PointerGetDatum(NULL))
                                320                 :           1138 :         values[Anum_pg_proc_proallargtypes - 1] = allParameterTypes;
                                321                 :                :     else
 5642                           322                 :           9611 :         nulls[Anum_pg_proc_proallargtypes - 1] = true;
 6954                           323         [ +  + ]:          10749 :     if (parameterModes != PointerGetDatum(NULL))
                                324                 :           1138 :         values[Anum_pg_proc_proargmodes - 1] = parameterModes;
                                325                 :                :     else
 5642                           326                 :           9611 :         nulls[Anum_pg_proc_proargmodes - 1] = true;
 6954                           327         [ +  + ]:          10749 :     if (parameterNames != PointerGetDatum(NULL))
                                328                 :           3160 :         values[Anum_pg_proc_proargnames - 1] = parameterNames;
                                329                 :                :     else
 5642                           330                 :           7589 :         nulls[Anum_pg_proc_proargnames - 1] = true;
 5596                           331         [ +  + ]:          10749 :     if (parameterDefaults != NIL)
 5610 peter_e@gmx.net           332                 :           1400 :         values[Anum_pg_proc_proargdefaults - 1] = CStringGetTextDatum(nodeToString(parameterDefaults));
                                333                 :                :     else
                                334                 :           9349 :         nulls[Anum_pg_proc_proargdefaults - 1] = true;
 3276                           335         [ +  + ]:          10749 :     if (trftypes != PointerGetDatum(NULL))
                                336                 :             59 :         values[Anum_pg_proc_protrftypes - 1] = trftypes;
                                337                 :                :     else
                                338                 :          10690 :         nulls[Anum_pg_proc_protrftypes - 1] = true;
 1095 tgl@sss.pgh.pa.us         339                 :          10749 :     values[Anum_pg_proc_prosrc - 1] = CStringGetTextDatum(prosrc);
 5751                           340         [ +  + ]:          10749 :     if (probin)
                                341                 :           2348 :         values[Anum_pg_proc_probin - 1] = CStringGetTextDatum(probin);
                                342                 :                :     else
 5642                           343                 :           8401 :         nulls[Anum_pg_proc_probin - 1] = true;
 1103 peter@eisentraut.org      344         [ +  + ]:          10749 :     if (prosqlbody)
                                345                 :           2145 :         values[Anum_pg_proc_prosqlbody - 1] = CStringGetTextDatum(nodeToString(prosqlbody));
                                346                 :                :     else
                                347                 :           8604 :         nulls[Anum_pg_proc_prosqlbody - 1] = true;
 6068 tgl@sss.pgh.pa.us         348         [ +  + ]:          10749 :     if (proconfig != PointerGetDatum(NULL))
                                349                 :             31 :         values[Anum_pg_proc_proconfig - 1] = proconfig;
                                350                 :                :     else
 5642                           351                 :          10718 :         nulls[Anum_pg_proc_proconfig - 1] = true;
                                352                 :                :     /* proacl will be determined later */
                                353                 :                : 
 1910 andres@anarazel.de        354                 :          10749 :     rel = table_open(ProcedureRelationId, RowExclusiveLock);
 7017 neilc@samurai.com         355                 :          10749 :     tupDesc = RelationGetDescr(rel);
                                356                 :                : 
                                357                 :                :     /* Check for pre-existing definition */
 5173 rhaas@postgresql.org      358                 :          10749 :     oldtup = SearchSysCache3(PROCNAMEARGSNSP,
                                359                 :                :                              PointerGetDatum(procedureName),
                                360                 :                :                              PointerGetDatum(parameterTypes),
                                361                 :                :                              ObjectIdGetDatum(procNamespace));
                                362                 :                : 
 8230 tgl@sss.pgh.pa.us         363         [ +  + ]:          10749 :     if (HeapTupleIsValid(oldtup))
                                364                 :                :     {
                                365                 :                :         /* There is one; okay to replace it? */
 8207 bruce@momjian.us          366                 :           3374 :         Form_pg_proc oldproc = (Form_pg_proc) GETSTRUCT(oldtup);
                                367                 :                :         Datum       proargnames;
                                368                 :                :         bool        isnull;
                                369                 :                :         const char *dropcmd;
                                370                 :                : 
 8230 tgl@sss.pgh.pa.us         371         [ -  + ]:           3374 :         if (!replace)
 7576 tgl@sss.pgh.pa.us         372         [ #  # ]:UBC           0 :             ereport(ERROR,
                                373                 :                :                     (errcode(ERRCODE_DUPLICATE_FUNCTION),
                                374                 :                :                      errmsg("function \"%s\" already exists with same argument types",
                                375                 :                :                             procedureName)));
  518 peter@eisentraut.org      376         [ -  + ]:CBC        3374 :         if (!object_ownercheck(ProcedureRelationId, oldproc->oid, proowner))
 2325 peter_e@gmx.net           377                 :UBC           0 :             aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_FUNCTION,
                                378                 :                :                            procedureName);
                                379                 :                : 
                                380                 :                :         /* Not okay to change routine kind */
 2235 peter_e@gmx.net           381         [ +  + ]:CBC        3374 :         if (oldproc->prokind != prokind)
                                382   [ +  -  -  +  :              9 :             ereport(ERROR,
                                     +  -  -  -  -  
                                                 - ]
                                383                 :                :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                                384                 :                :                      errmsg("cannot change routine kind"),
                                385                 :                :                      (oldproc->prokind == PROKIND_AGGREGATE ?
                                386                 :                :                       errdetail("\"%s\" is an aggregate function.", procedureName) :
                                387                 :                :                       oldproc->prokind == PROKIND_FUNCTION ?
                                388                 :                :                       errdetail("\"%s\" is a function.", procedureName) :
                                389                 :                :                       oldproc->prokind == PROKIND_PROCEDURE ?
                                390                 :                :                       errdetail("\"%s\" is a procedure.", procedureName) :
                                391                 :                :                       oldproc->prokind == PROKIND_WINDOW ?
                                392                 :                :                       errdetail("\"%s\" is a window function.", procedureName) :
                                393                 :                :                       0)));
                                394                 :                : 
 1853 rhodiumtoad@postgres      395   [ +  +  +  + ]:           3365 :         dropcmd = (prokind == PROKIND_PROCEDURE ? "DROP PROCEDURE" :
                                396                 :                :                    prokind == PROKIND_AGGREGATE ? "DROP AGGREGATE" :
                                397                 :                :                    "DROP FUNCTION");
                                398                 :                : 
                                399                 :                :         /*
                                400                 :                :          * Not okay to change the return type of the existing proc, since
                                401                 :                :          * existing rules, views, etc may depend on the return type.
                                402                 :                :          *
                                403                 :                :          * In case of a procedure, a changing return type means that whether
                                404                 :                :          * the procedure has output parameters was changed.  Since there is no
                                405                 :                :          * user visible return type, we produce a more specific error message.
                                406                 :                :          */
 8052 tgl@sss.pgh.pa.us         407         [ +  + ]:           3365 :         if (returnType != oldproc->prorettype ||
 8230                           408         [ -  + ]:           3359 :             returnsSet != oldproc->proretset)
 7576                           409   [ +  -  -  + ]:              6 :             ereport(ERROR,
                                410                 :                :                     (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                411                 :                :                      prokind == PROKIND_PROCEDURE
                                412                 :                :                      ? errmsg("cannot change whether a procedure has output parameters")
                                413                 :                :                      : errmsg("cannot change return type of existing function"),
                                414                 :                : 
                                415                 :                :             /*
                                416                 :                :              * translator: first %s is DROP FUNCTION, DROP PROCEDURE, or DROP
                                417                 :                :              * AGGREGATE
                                418                 :                :              */
                                419                 :                :                      errhint("Use %s %s first.",
                                420                 :                :                              dropcmd,
                                421                 :                :                              format_procedure(oldproc->oid))));
                                422                 :                : 
                                423                 :                :         /*
                                424                 :                :          * If it returns RECORD, check for possible change of record type
                                425                 :                :          * implied by OUT parameters
                                426                 :                :          */
 6954                           427         [ +  + ]:           3359 :         if (returnType == RECORDOID)
                                428                 :                :         {
                                429                 :                :             TupleDesc   olddesc;
                                430                 :                :             TupleDesc   newdesc;
                                431                 :                : 
                                432                 :            369 :             olddesc = build_function_result_tupdesc_t(oldtup);
 2223 peter_e@gmx.net           433                 :            369 :             newdesc = build_function_result_tupdesc_d(prokind,
                                434                 :                :                                                       allParameterTypes,
                                435                 :                :                                                       parameterModes,
                                436                 :                :                                                       parameterNames);
 6954 tgl@sss.pgh.pa.us         437   [ +  +  +  - ]:            369 :             if (olddesc == NULL && newdesc == NULL)
                                438                 :                :                  /* ok, both are runtime-defined RECORDs */ ;
                                439   [ +  -  +  - ]:            357 :             else if (olddesc == NULL || newdesc == NULL ||
   28 peter@eisentraut.org      440         [ -  + ]:GNC         357 :                      !equalRowTypes(olddesc, newdesc))
 6756 bruce@momjian.us          441         [ #  # ]:UBC           0 :                 ereport(ERROR,
                                442                 :                :                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                443                 :                :                          errmsg("cannot change return type of existing function"),
                                444                 :                :                          errdetail("Row type defined by OUT parameters is different."),
                                445                 :                :                 /* translator: first %s is DROP FUNCTION or DROP PROCEDURE */
                                446                 :                :                          errhint("Use %s %s first.",
                                447                 :                :                                  dropcmd,
                                448                 :                :                                  format_procedure(oldproc->oid))));
                                449                 :                :         }
                                450                 :                : 
                                451                 :                :         /*
                                452                 :                :          * If there were any named input parameters, check to make sure the
                                453                 :                :          * names have not been changed, as this could break existing calls. We
                                454                 :                :          * allow adding names to formerly unnamed parameters, though.
                                455                 :                :          */
 5302 tgl@sss.pgh.pa.us         456                 :CBC        3359 :         proargnames = SysCacheGetAttr(PROCNAMEARGSNSP, oldtup,
                                457                 :                :                                       Anum_pg_proc_proargnames,
                                458                 :                :                                       &isnull);
                                459         [ +  + ]:           3359 :         if (!isnull)
                                460                 :                :         {
                                461                 :                :             Datum       proargmodes;
                                462                 :                :             char      **old_arg_names;
                                463                 :                :             char      **new_arg_names;
                                464                 :                :             int         n_old_arg_names;
                                465                 :                :             int         n_new_arg_names;
                                466                 :                :             int         j;
                                467                 :                : 
                                468                 :            566 :             proargmodes = SysCacheGetAttr(PROCNAMEARGSNSP, oldtup,
                                469                 :                :                                           Anum_pg_proc_proargmodes,
                                470                 :                :                                           &isnull);
                                471         [ +  + ]:            566 :             if (isnull)
                                472                 :            200 :                 proargmodes = PointerGetDatum(NULL);    /* just to be sure */
                                473                 :                : 
 1039                           474                 :            566 :             n_old_arg_names = get_func_input_arg_names(proargnames,
                                475                 :                :                                                        proargmodes,
                                476                 :                :                                                        &old_arg_names);
                                477                 :            566 :             n_new_arg_names = get_func_input_arg_names(parameterNames,
                                478                 :                :                                                        parameterModes,
                                479                 :                :                                                        &new_arg_names);
 5302                           480         [ +  + ]:           2168 :             for (j = 0; j < n_old_arg_names; j++)
                                481                 :                :             {
                                482         [ +  + ]:           1611 :                 if (old_arg_names[j] == NULL)
                                483                 :              3 :                     continue;
                                484   [ +  -  +  + ]:           1608 :                 if (j >= n_new_arg_names || new_arg_names[j] == NULL ||
                                485         [ +  + ]:           1605 :                     strcmp(old_arg_names[j], new_arg_names[j]) != 0)
                                486         [ +  - ]:              9 :                     ereport(ERROR,
                                487                 :                :                             (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                488                 :                :                              errmsg("cannot change name of input parameter \"%s\"",
                                489                 :                :                                     old_arg_names[j]),
                                490                 :                :                     /* translator: first %s is DROP FUNCTION or DROP PROCEDURE */
                                491                 :                :                              errhint("Use %s %s first.",
                                492                 :                :                                      dropcmd,
                                493                 :                :                                      format_procedure(oldproc->oid))));
                                494                 :                :             }
                                495                 :                :         }
                                496                 :                : 
                                497                 :                :         /*
                                498                 :                :          * If there are existing defaults, check compatibility: redefinition
                                499                 :                :          * must not remove any defaults nor change their types.  (Removing a
                                500                 :                :          * default might cause a function to fail to satisfy an existing call.
                                501                 :                :          * Changing type would only be possible if the associated parameter is
                                502                 :                :          * polymorphic, and in such cases a change of default type might alter
                                503                 :                :          * the resolved output type of existing calls.)
                                504                 :                :          */
 5596                           505         [ +  + ]:           3350 :         if (oldproc->pronargdefaults != 0)
                                506                 :                :         {
                                507                 :                :             Datum       proargdefaults;
                                508                 :                :             List       *oldDefaults;
                                509                 :                :             ListCell   *oldlc;
                                510                 :                :             ListCell   *newlc;
                                511                 :                : 
                                512         [ +  - ]:              3 :             if (list_length(parameterDefaults) < oldproc->pronargdefaults)
                                513         [ +  - ]:              3 :                 ereport(ERROR,
                                514                 :                :                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                515                 :                :                          errmsg("cannot remove parameter defaults from existing function"),
                                516                 :                :                 /* translator: first %s is DROP FUNCTION or DROP PROCEDURE */
                                517                 :                :                          errhint("Use %s %s first.",
                                518                 :                :                                  dropcmd,
                                519                 :                :                                  format_procedure(oldproc->oid))));
                                520                 :                : 
  386 dgustafsson@postgres      521                 :UBC           0 :             proargdefaults = SysCacheGetAttrNotNull(PROCNAMEARGSNSP, oldtup,
                                522                 :                :                                                     Anum_pg_proc_proargdefaults);
 2635 andres@anarazel.de        523                 :              0 :             oldDefaults = castNode(List, stringToNode(TextDatumGetCString(proargdefaults)));
 5596 tgl@sss.pgh.pa.us         524         [ #  # ]:              0 :             Assert(list_length(oldDefaults) == oldproc->pronargdefaults);
                                525                 :                : 
                                526                 :                :             /* new list can have more defaults than old, advance over 'em */
 1735                           527                 :              0 :             newlc = list_nth_cell(parameterDefaults,
                                528                 :              0 :                                   list_length(parameterDefaults) -
                                529                 :              0 :                                   oldproc->pronargdefaults);
                                530                 :                : 
 5596                           531   [ #  #  #  #  :              0 :             foreach(oldlc, oldDefaults)
                                              #  # ]
                                532                 :                :             {
 5421 bruce@momjian.us          533                 :              0 :                 Node       *oldDef = (Node *) lfirst(oldlc);
                                534                 :              0 :                 Node       *newDef = (Node *) lfirst(newlc);
                                535                 :                : 
 5596 tgl@sss.pgh.pa.us         536         [ #  # ]:              0 :                 if (exprType(oldDef) != exprType(newDef))
                                537         [ #  # ]:              0 :                     ereport(ERROR,
                                538                 :                :                             (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                539                 :                :                              errmsg("cannot change data type of existing parameter default value"),
                                540                 :                :                     /* translator: first %s is DROP FUNCTION or DROP PROCEDURE */
                                541                 :                :                              errhint("Use %s %s first.",
                                542                 :                :                                      dropcmd,
                                543                 :                :                                      format_procedure(oldproc->oid))));
 1735                           544                 :              0 :                 newlc = lnext(parameterDefaults, newlc);
                                545                 :                :             }
                                546                 :                :         }
                                547                 :                : 
                                548                 :                :         /*
                                549                 :                :          * Do not change existing oid, ownership or permissions, either.  Note
                                550                 :                :          * dependency-update code below has to agree with this decision.
                                551                 :                :          */
 1972 andres@anarazel.de        552                 :CBC        3347 :         replaces[Anum_pg_proc_oid - 1] = false;
 5642 tgl@sss.pgh.pa.us         553                 :           3347 :         replaces[Anum_pg_proc_proowner - 1] = false;
                                554                 :           3347 :         replaces[Anum_pg_proc_proacl - 1] = false;
                                555                 :                : 
                                556                 :                :         /* Okay, do it... */
                                557                 :           3347 :         tup = heap_modify_tuple(oldtup, tupDesc, values, nulls, replaces);
 2630 alvherre@alvh.no-ip.      558                 :           3347 :         CatalogTupleUpdate(rel, &tup->t_self, tup);
                                559                 :                : 
 8230 tgl@sss.pgh.pa.us         560                 :           3347 :         ReleaseSysCache(oldtup);
 7943                           561                 :           3347 :         is_update = true;
                                562                 :                :     }
                                563                 :                :     else
                                564                 :                :     {
                                565                 :                :         /* Creating a new procedure */
                                566                 :                :         Oid         newOid;
                                567                 :                : 
                                568                 :                :         /* First, get default permissions and set up proacl */
 2377 peter_e@gmx.net           569                 :           7375 :         proacl = get_user_default_acl(OBJECT_FUNCTION, proowner,
                                570                 :                :                                       procNamespace);
 5305 tgl@sss.pgh.pa.us         571         [ +  + ]:           7375 :         if (proacl != NULL)
                                572                 :              9 :             values[Anum_pg_proc_proacl - 1] = PointerGetDatum(proacl);
                                573                 :                :         else
                                574                 :           7366 :             nulls[Anum_pg_proc_proacl - 1] = true;
                                575                 :                : 
 1972 andres@anarazel.de        576                 :           7375 :         newOid = GetNewOidWithIndex(rel, ProcedureOidIndexId,
                                577                 :                :                                     Anum_pg_proc_oid);
                                578                 :           7375 :         values[Anum_pg_proc_oid - 1] = ObjectIdGetDatum(newOid);
 5642 tgl@sss.pgh.pa.us         579                 :           7375 :         tup = heap_form_tuple(tupDesc, values, nulls);
 2630 alvherre@alvh.no-ip.      580                 :           7375 :         CatalogTupleInsert(rel, tup);
 7943 tgl@sss.pgh.pa.us         581                 :           7375 :         is_update = false;
                                582                 :                :     }
                                583                 :                : 
                                584                 :                : 
 1972 andres@anarazel.de        585                 :          10722 :     retval = ((Form_pg_proc) GETSTRUCT(tup))->oid;
                                586                 :                : 
                                587                 :                :     /*
                                588                 :                :      * Create dependencies for the new function.  If we are updating an
                                589                 :                :      * existing function, first delete any existing pg_depend entries.
                                590                 :                :      * (However, since we are not changing ownership or permissions, the
                                591                 :                :      * shared dependencies do *not* need to change, and we leave them alone.)
                                592                 :                :      */
 7943 tgl@sss.pgh.pa.us         593         [ +  + ]:          10722 :     if (is_update)
 4814                           594                 :           3347 :         deleteDependencyRecordsFor(ProcedureRelationId, retval, true);
                                595                 :                : 
 1317 michael@paquier.xyz       596                 :          10722 :     addrs = new_object_addresses();
                                597                 :                : 
 1383                           598                 :          10722 :     ObjectAddressSet(myself, ProcedureRelationId, retval);
                                599                 :                : 
                                600                 :                :     /* dependency on namespace */
                                601                 :          10722 :     ObjectAddressSet(referenced, NamespaceRelationId, procNamespace);
 1317                           602                 :          10722 :     add_exact_object_address(&referenced, addrs);
                                603                 :                : 
                                604                 :                :     /* dependency on implementation language */
 1383                           605                 :          10722 :     ObjectAddressSet(referenced, LanguageRelationId, languageObjectId);
 1317                           606                 :          10722 :     add_exact_object_address(&referenced, addrs);
                                607                 :                : 
                                608                 :                :     /* dependency on return type */
 1383                           609                 :          10722 :     ObjectAddressSet(referenced, TypeRelationId, returnType);
 1317                           610                 :          10722 :     add_exact_object_address(&referenced, addrs);
                                611                 :                : 
                                612                 :                :     /* dependency on transform used by return type, if any */
 3276 peter_e@gmx.net           613         [ +  + ]:          10722 :     if ((trfid = get_transform_oid(returnType, languageObjectId, true)))
                                614                 :                :     {
 1383 michael@paquier.xyz       615                 :            165 :         ObjectAddressSet(referenced, TransformRelationId, trfid);
 1317                           616                 :            165 :         add_exact_object_address(&referenced, addrs);
                                617                 :                :     }
                                618                 :                : 
                                619                 :                :     /* dependency on parameter types */
 6954 tgl@sss.pgh.pa.us         620         [ +  + ]:          33075 :     for (i = 0; i < allParamCount; i++)
                                621                 :                :     {
 1383 michael@paquier.xyz       622                 :          22353 :         ObjectAddressSet(referenced, TypeRelationId, allParams[i]);
 1317                           623                 :          22353 :         add_exact_object_address(&referenced, addrs);
                                624                 :                : 
                                625                 :                :         /* dependency on transform used by parameter type, if any */
 3276 peter_e@gmx.net           626         [ +  + ]:          22353 :         if ((trfid = get_transform_oid(allParams[i], languageObjectId, true)))
                                627                 :                :         {
 1383 michael@paquier.xyz       628                 :            382 :             ObjectAddressSet(referenced, TransformRelationId, trfid);
 1317                           629                 :            382 :             add_exact_object_address(&referenced, addrs);
                                630                 :                :         }
                                631                 :                :     }
                                632                 :                : 
                                633                 :                :     /* dependency on support function, if any */
 1891 tgl@sss.pgh.pa.us         634         [ +  + ]:          10722 :     if (OidIsValid(prosupport))
                                635                 :                :     {
 1383 michael@paquier.xyz       636                 :             43 :         ObjectAddressSet(referenced, ProcedureRelationId, prosupport);
 1317                           637                 :             43 :         add_exact_object_address(&referenced, addrs);
                                638                 :                :     }
                                639                 :                : 
                                640                 :          10722 :     record_object_address_dependencies(&myself, addrs, DEPENDENCY_NORMAL);
                                641                 :          10722 :     free_object_addresses(addrs);
                                642                 :                : 
                                643                 :                :     /* dependency on SQL routine body */
 1103 peter@eisentraut.org      644   [ +  +  +  + ]:          10722 :     if (languageObjectId == SQLlanguageId && prosqlbody)
                                645                 :           2145 :         recordDependencyOnExpr(&myself, prosqlbody, NIL, DEPENDENCY_NORMAL);
                                646                 :                : 
                                647                 :                :     /* dependency on parameter default expressions */
 1317 michael@paquier.xyz       648         [ +  + ]:          10722 :     if (parameterDefaults)
                                649                 :           1394 :         recordDependencyOnExpr(&myself, (Node *) parameterDefaults,
                                650                 :                :                                NIL, DEPENDENCY_NORMAL);
                                651                 :                : 
                                652                 :                :     /* dependency on owner */
 5308 tgl@sss.pgh.pa.us         653         [ +  + ]:          10722 :     if (!is_update)
                                654                 :           7375 :         recordDependencyOnOwner(ProcedureRelationId, retval, proowner);
                                655                 :                : 
                                656                 :                :     /* dependency on any roles mentioned in ACL */
 1983                           657         [ +  + ]:          10722 :     if (!is_update)
                                658                 :           7375 :         recordDependencyOnNewAcl(ProcedureRelationId, retval, 0,
                                659                 :                :                                  proowner, proacl);
                                660                 :                : 
                                661                 :                :     /* dependency on extension */
 4649                           662                 :          10722 :     recordDependencyOnCurrentExtension(&myself, is_update);
                                663                 :                : 
 8705 bruce@momjian.us          664                 :          10721 :     heap_freetuple(tup);
                                665                 :                : 
                                666                 :                :     /* Post creation hook for new function */
 4057 rhaas@postgresql.org      667         [ +  + ]:          10721 :     InvokeObjectPostCreateHook(ProcedureRelationId, retval, 0);
                                668                 :                : 
 1910 andres@anarazel.de        669                 :          10721 :     table_close(rel, RowExclusiveLock);
                                670                 :                : 
                                671                 :                :     /* Verify function body */
 7998 peter_e@gmx.net           672         [ +  + ]:          10721 :     if (OidIsValid(languageValidator))
                                673                 :                :     {
 3876 tgl@sss.pgh.pa.us         674                 :          10367 :         ArrayType  *set_items = NULL;
                                675                 :          10367 :         int         save_nestlevel = 0;
                                676                 :                : 
                                677                 :                :         /* Advance command counter so new tuple can be seen by validator */
 7998 peter_e@gmx.net           678                 :          10367 :         CommandCounterIncrement();
                                679                 :                : 
                                680                 :                :         /*
                                681                 :                :          * Set per-function configuration parameters so that the validation is
                                682                 :                :          * done with the environment the function expects.  However, if
                                683                 :                :          * check_function_bodies is off, we don't do this, because that would
                                684                 :                :          * create dump ordering hazards that pg_dump doesn't know how to deal
                                685                 :                :          * with.  (For example, a SET clause might refer to a not-yet-created
                                686                 :                :          * text search configuration.)  This means that the validator
                                687                 :                :          * shouldn't complain about anything that might depend on a GUC
                                688                 :                :          * parameter when check_function_bodies is off.
                                689                 :                :          */
 3876 tgl@sss.pgh.pa.us         690         [ +  + ]:          10367 :         if (check_function_bodies)
                                691                 :                :         {
                                692                 :           7588 :             set_items = (ArrayType *) DatumGetPointer(proconfig);
                                693         [ +  + ]:           7588 :             if (set_items)      /* Need a new GUC nesting level */
                                694                 :                :             {
                                695                 :             25 :                 save_nestlevel = NewGUCNestLevel();
                                696         [ +  - ]:             25 :                 ProcessGUCArray(set_items,
                                697                 :             25 :                                 (superuser() ? PGC_SUSET : PGC_USERSET),
                                698                 :                :                                 PGC_S_SESSION,
                                699                 :                :                                 GUC_ACTION_SAVE);
                                700                 :                :             }
                                701                 :                :         }
                                702                 :                : 
 7998                           703                 :          10361 :         OidFunctionCall1(languageValidator, ObjectIdGetDatum(retval));
                                704                 :                : 
 5087 itagaki.takahiro@gma      705         [ +  + ]:          10275 :         if (set_items)
                                706                 :             19 :             AtEOXact_GUC(true, save_nestlevel);
                                707                 :                :     }
                                708                 :                : 
                                709                 :                :     /* ensure that stats are dropped if transaction aborts */
  739 andres@anarazel.de        710         [ +  + ]:          10629 :     if (!is_update)
                                711                 :           7283 :         pgstat_create_function(retval);
                                712                 :                : 
 3330 alvherre@alvh.no-ip.      713                 :          10629 :     return myself;
                                714                 :                : }
                                715                 :                : 
                                716                 :                : 
                                717                 :                : 
                                718                 :                : /*
                                719                 :                :  * Validator for internal functions
                                720                 :                :  *
                                721                 :                :  * Check that the given internal function name (the "prosrc" value) is
                                722                 :                :  * a known builtin function.
                                723                 :                :  */
                                724                 :                : Datum
 7998 peter_e@gmx.net           725                 :           1994 : fmgr_internal_validator(PG_FUNCTION_ARGS)
                                726                 :                : {
                                727                 :           1994 :     Oid         funcoid = PG_GETARG_OID(0);
                                728                 :                :     HeapTuple   tuple;
                                729                 :                :     Datum       tmp;
                                730                 :                :     char       *prosrc;
                                731                 :                : 
 3709 noah@leadboat.com         732         [ -  + ]:           1994 :     if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, funcoid))
 3709 noah@leadboat.com         733                 :UBC           0 :         PG_RETURN_VOID();
                                734                 :                : 
                                735                 :                :     /*
                                736                 :                :      * We do not honor check_function_bodies since it's unlikely the function
                                737                 :                :      * name will be found later if it isn't there now.
                                738                 :                :      */
                                739                 :                : 
 5173 rhaas@postgresql.org      740                 :CBC        1994 :     tuple = SearchSysCache1(PROCOID, ObjectIdGetDatum(funcoid));
 7998 peter_e@gmx.net           741         [ -  + ]:           1994 :     if (!HeapTupleIsValid(tuple))
 7576 tgl@sss.pgh.pa.us         742         [ #  # ]:UBC           0 :         elog(ERROR, "cache lookup failed for function %u", funcoid);
                                743                 :                : 
  386 dgustafsson@postgres      744                 :CBC        1994 :     tmp = SysCacheGetAttrNotNull(PROCOID, tuple, Anum_pg_proc_prosrc);
 5864 tgl@sss.pgh.pa.us         745                 :           1994 :     prosrc = TextDatumGetCString(tmp);
                                746                 :                : 
 7998 peter_e@gmx.net           747         [ +  + ]:           1994 :     if (fmgr_internal_function(prosrc) == InvalidOid)
 7576 tgl@sss.pgh.pa.us         748         [ +  - ]:              3 :         ereport(ERROR,
                                749                 :                :                 (errcode(ERRCODE_UNDEFINED_FUNCTION),
                                750                 :                :                  errmsg("there is no built-in function named \"%s\"",
                                751                 :                :                         prosrc)));
                                752                 :                : 
 7998 peter_e@gmx.net           753                 :           1991 :     ReleaseSysCache(tuple);
                                754                 :                : 
 7906 tgl@sss.pgh.pa.us         755                 :           1991 :     PG_RETURN_VOID();
                                756                 :                : }
                                757                 :                : 
                                758                 :                : 
                                759                 :                : 
                                760                 :                : /*
                                761                 :                :  * Validator for C language functions
                                762                 :                :  *
                                763                 :                :  * Make sure that the library file exists, is loadable, and contains
                                764                 :                :  * the specified link symbol. Also check for a valid function
                                765                 :                :  * information record.
                                766                 :                :  */
                                767                 :                : Datum
 7998 peter_e@gmx.net           768                 :           2348 : fmgr_c_validator(PG_FUNCTION_ARGS)
                                769                 :                : {
                                770                 :           2348 :     Oid         funcoid = PG_GETARG_OID(0);
                                771                 :                :     void       *libraryhandle;
                                772                 :                :     HeapTuple   tuple;
                                773                 :                :     Datum       tmp;
                                774                 :                :     char       *prosrc;
                                775                 :                :     char       *probin;
                                776                 :                : 
 3709 noah@leadboat.com         777         [ -  + ]:           2348 :     if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, funcoid))
 3709 noah@leadboat.com         778                 :UBC           0 :         PG_RETURN_VOID();
                                779                 :                : 
                                780                 :                :     /*
                                781                 :                :      * It'd be most consistent to skip the check if !check_function_bodies,
                                782                 :                :      * but the purpose of that switch is to be helpful for pg_dump loading,
                                783                 :                :      * and for pg_dump loading it's much better if we *do* check.
                                784                 :                :      */
                                785                 :                : 
 5173 rhaas@postgresql.org      786                 :CBC        2348 :     tuple = SearchSysCache1(PROCOID, ObjectIdGetDatum(funcoid));
 7998 peter_e@gmx.net           787         [ -  + ]:           2348 :     if (!HeapTupleIsValid(tuple))
 7576 tgl@sss.pgh.pa.us         788         [ #  # ]:UBC           0 :         elog(ERROR, "cache lookup failed for function %u", funcoid);
                                789                 :                : 
  386 dgustafsson@postgres      790                 :CBC        2348 :     tmp = SysCacheGetAttrNotNull(PROCOID, tuple, Anum_pg_proc_prosrc);
 5864 tgl@sss.pgh.pa.us         791                 :           2348 :     prosrc = TextDatumGetCString(tmp);
                                792                 :                : 
  386 dgustafsson@postgres      793                 :           2348 :     tmp = SysCacheGetAttrNotNull(PROCOID, tuple, Anum_pg_proc_probin);
 5864 tgl@sss.pgh.pa.us         794                 :           2348 :     probin = TextDatumGetCString(tmp);
                                795                 :                : 
 7998 peter_e@gmx.net           796                 :           2348 :     (void) load_external_function(probin, prosrc, true, &libraryhandle);
                                797                 :           2342 :     (void) fetch_finfo_record(libraryhandle, prosrc);
                                798                 :                : 
                                799                 :           2342 :     ReleaseSysCache(tuple);
                                800                 :                : 
 7906 tgl@sss.pgh.pa.us         801                 :           2342 :     PG_RETURN_VOID();
                                802                 :                : }
                                803                 :                : 
                                804                 :                : 
                                805                 :                : /*
                                806                 :                :  * Validator for SQL language functions
                                807                 :                :  *
                                808                 :                :  * Parse it here in order to be sure that it contains no syntax errors.
                                809                 :                :  */
                                810                 :                : Datum
 7998 peter_e@gmx.net           811                 :           3416 : fmgr_sql_validator(PG_FUNCTION_ARGS)
                                812                 :                : {
                                813                 :           3416 :     Oid         funcoid = PG_GETARG_OID(0);
                                814                 :                :     HeapTuple   tuple;
                                815                 :                :     Form_pg_proc proc;
                                816                 :                :     List       *raw_parsetree_list;
                                817                 :                :     List       *querytree_list;
                                818                 :                :     ListCell   *lc;
                                819                 :                :     bool        isnull;
                                820                 :                :     Datum       tmp;
                                821                 :                :     char       *prosrc;
                                822                 :                :     parse_error_callback_arg callback_arg;
                                823                 :                :     ErrorContextCallback sqlerrcontext;
                                824                 :                :     bool        haspolyarg;
                                825                 :                :     int         i;
                                826                 :                : 
 3709 noah@leadboat.com         827         [ -  + ]:           3416 :     if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, funcoid))
 3709 noah@leadboat.com         828                 :UBC           0 :         PG_RETURN_VOID();
                                829                 :                : 
 5173 rhaas@postgresql.org      830                 :CBC        3416 :     tuple = SearchSysCache1(PROCOID, ObjectIdGetDatum(funcoid));
 7998 peter_e@gmx.net           831         [ -  + ]:           3416 :     if (!HeapTupleIsValid(tuple))
 7576 tgl@sss.pgh.pa.us         832         [ #  # ]:UBC           0 :         elog(ERROR, "cache lookup failed for function %u", funcoid);
 7998 peter_e@gmx.net           833                 :CBC        3416 :     proc = (Form_pg_proc) GETSTRUCT(tuple);
                                834                 :                : 
                                835                 :                :     /* Disallow pseudotype result */
                                836                 :                :     /* except for RECORD, VOID, or polymorphic */
 2235                           837         [ +  + ]:           3416 :     if (get_typtype(proc->prorettype) == TYPTYPE_PSEUDO &&
 7905 tgl@sss.pgh.pa.us         838         [ +  + ]:            653 :         proc->prorettype != RECORDOID &&
 7593                           839         [ +  + ]:            376 :         proc->prorettype != VOIDOID &&
 6222                           840   [ +  +  +  +  :            182 :         !IsPolymorphicType(proc->prorettype))
                                     +  -  +  -  +  
                                     +  +  +  +  +  
                                     +  +  +  -  +  
                                           +  +  + ]
 7576                           841         [ +  - ]:              3 :         ereport(ERROR,
                                842                 :                :                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                843                 :                :                  errmsg("SQL functions cannot return type %s",
                                844                 :                :                         format_type_be(proc->prorettype))));
                                845                 :                : 
                                846                 :                :     /* Disallow pseudotypes in arguments */
                                847                 :                :     /* except for polymorphic */
 7593                           848                 :           3413 :     haspolyarg = false;
 7906                           849         [ +  + ]:           9344 :     for (i = 0; i < proc->pronargs; i++)
                                850                 :                :     {
 6222                           851         [ +  + ]:           5931 :         if (get_typtype(proc->proargtypes.values[i]) == TYPTYPE_PSEUDO)
                                852                 :                :         {
                                853   [ +  +  +  +  :            460 :             if (IsPolymorphicType(proc->proargtypes.values[i]))
                                     +  -  +  -  +  
                                     +  +  +  +  +  
                                     +  +  +  +  +  
                                           +  +  - ]
 7593                           854                 :            460 :                 haspolyarg = true;
                                855                 :                :             else
 7576 tgl@sss.pgh.pa.us         856         [ #  # ]:UBC           0 :                 ereport(ERROR,
                                857                 :                :                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
                                858                 :                :                          errmsg("SQL functions cannot have arguments of type %s",
                                859                 :                :                                 format_type_be(proc->proargtypes.values[i]))));
                                860                 :                :         }
                                861                 :                :     }
                                862                 :                : 
                                863                 :                :     /* Postpone body checks if !check_function_bodies */
 7499 tgl@sss.pgh.pa.us         864         [ +  + ]:CBC        3413 :     if (check_function_bodies)
                                865                 :                :     {
  386 dgustafsson@postgres      866                 :           3248 :         tmp = SysCacheGetAttrNotNull(PROCOID, tuple, Anum_pg_proc_prosrc);
 1095 tgl@sss.pgh.pa.us         867                 :           3248 :         prosrc = TextDatumGetCString(tmp);
                                868                 :                : 
                                869                 :                :         /*
                                870                 :                :          * Setup error traceback support for ereport().
                                871                 :                :          */
 5140                           872                 :           3248 :         callback_arg.proname = NameStr(proc->proname);
 1095                           873                 :           3248 :         callback_arg.prosrc = prosrc;
                                874                 :                : 
 7336                           875                 :           3248 :         sqlerrcontext.callback = sql_function_parse_error_callback;
 5140                           876                 :           3248 :         sqlerrcontext.arg = (void *) &callback_arg;
 7336                           877                 :           3248 :         sqlerrcontext.previous = error_context_stack;
                                878                 :           3248 :         error_context_stack = &sqlerrcontext;
                                879                 :                : 
                                880                 :                :         /* If we have prosqlbody, pay attention to that not prosrc */
 1095                           881                 :           3248 :         tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_prosqlbody, &isnull);
                                882         [ +  + ]:           3248 :         if (!isnull)
                                883                 :                :         {
                                884                 :                :             Node       *n;
                                885                 :                :             List       *stored_query_list;
                                886                 :                : 
 1103 peter@eisentraut.org      887                 :           2141 :             n = stringToNode(TextDatumGetCString(tmp));
                                888         [ +  + ]:           2141 :             if (IsA(n, List))
  957 tgl@sss.pgh.pa.us         889                 :            301 :                 stored_query_list = linitial(castNode(List, n));
                                890                 :                :             else
                                891                 :           1840 :                 stored_query_list = list_make1(n);
                                892                 :                : 
                                893                 :           2141 :             querytree_list = NIL;
                                894   [ +  +  +  +  :           4282 :             foreach(lc, stored_query_list)
                                              +  + ]
                                895                 :                :             {
                                896                 :           2141 :                 Query      *parsetree = lfirst_node(Query, lc);
                                897                 :                :                 List       *querytree_sublist;
                                898                 :                : 
                                899                 :                :                 /*
                                900                 :                :                  * Typically, we'd have acquired locks already while parsing
                                901                 :                :                  * the body of the CREATE FUNCTION command.  However, a
                                902                 :                :                  * validator function cannot assume that it's only called in
                                903                 :                :                  * that context.
                                904                 :                :                  */
                                905                 :           2141 :                 AcquireRewriteLocks(parsetree, true, false);
                                906                 :           2141 :                 querytree_sublist = pg_rewrite_query(parsetree);
                                907                 :           2141 :                 querytree_list = lappend(querytree_list, querytree_sublist);
                                908                 :                :             }
                                909                 :                :         }
                                910                 :                :         else
                                911                 :                :         {
                                912                 :                :             /*
                                913                 :                :              * We can't do full prechecking of the function definition if
                                914                 :                :              * there are any polymorphic input types, because actual datatypes
                                915                 :                :              * of expression results will be unresolvable.  The check will be
                                916                 :                :              * done at runtime instead.
                                917                 :                :              *
                                918                 :                :              * We can run the text through the raw parser though; this will at
                                919                 :                :              * least catch silly syntactic errors.
                                920                 :                :              */
 1103 peter@eisentraut.org      921                 :           1107 :             raw_parsetree_list = pg_parse_query(prosrc);
 1102 tgl@sss.pgh.pa.us         922                 :           1104 :             querytree_list = NIL;
                                923                 :                : 
 1103 peter@eisentraut.org      924         [ +  + ]:           1104 :             if (!haspolyarg)
                                925                 :                :             {
                                926                 :                :                 /*
                                927                 :                :                  * OK to do full precheck: analyze and rewrite the queries,
                                928                 :                :                  * then verify the result type.
                                929                 :                :                  */
                                930                 :                :                 SQLFunctionParseInfoPtr pinfo;
                                931                 :                : 
                                932                 :                :                 /* But first, set up parameter information */
                                933                 :            816 :                 pinfo = prepare_sql_fn_parse_info(tuple, NULL, InvalidOid);
                                934                 :                : 
                                935   [ +  +  +  +  :           1685 :                 foreach(lc, raw_parsetree_list)
                                              +  + ]
                                936                 :                :                 {
                                937                 :            875 :                     RawStmt    *parsetree = lfirst_node(RawStmt, lc);
                                938                 :                :                     List       *querytree_sublist;
                                939                 :                : 
  772                           940                 :            875 :                     querytree_sublist = pg_analyze_and_rewrite_withcb(parsetree,
                                941                 :                :                                                                       prosrc,
                                942                 :                :                                                                       (ParserSetupHook) sql_fn_parser_setup,
                                943                 :                :                                                                       pinfo,
                                944                 :                :                                                                       NULL);
 1103                           945                 :            869 :                     querytree_list = lappend(querytree_list,
                                946                 :                :                                              querytree_sublist);
                                947                 :                :                 }
                                948                 :                :             }
                                949                 :                :         }
                                950                 :                : 
                                951         [ +  + ]:           3239 :         if (!haspolyarg)
                                952                 :                :         {
                                953                 :                :             Oid         rettype;
                                954                 :                :             TupleDesc   rettupdesc;
                                955                 :                : 
 2223 peter_e@gmx.net           956                 :           2951 :             check_sql_fn_statements(querytree_list);
                                957                 :                : 
 1558 tgl@sss.pgh.pa.us         958                 :           2948 :             (void) get_func_result_type(funcoid, &rettype, &rettupdesc);
                                959                 :                : 
 1558 tgl@sss.pgh.pa.us         960                 :GNC        2948 :             (void) check_sql_fn_retval(querytree_list,
                                961                 :                :                                        rettype, rettupdesc,
   33                           962                 :           2948 :                                        proc->prokind,
                                963                 :                :                                        false, NULL);
                                964                 :                :         }
                                965                 :                : 
 7336 tgl@sss.pgh.pa.us         966                 :CBC        3230 :         error_context_stack = sqlerrcontext.previous;
                                967                 :                :     }
                                968                 :                : 
 7998 peter_e@gmx.net           969                 :           3395 :     ReleaseSysCache(tuple);
                                970                 :                : 
 7906 tgl@sss.pgh.pa.us         971                 :           3395 :     PG_RETURN_VOID();
                                972                 :                : }
                                973                 :                : 
                                974                 :                : /*
                                975                 :                :  * Error context callback for handling errors in SQL function definitions
                                976                 :                :  */
                                977                 :                : static void
 7336                           978                 :             18 : sql_function_parse_error_callback(void *arg)
                                979                 :                : {
 5140                           980                 :             18 :     parse_error_callback_arg *callback_arg = (parse_error_callback_arg *) arg;
                                981                 :                : 
                                982                 :                :     /* See if it's a syntax error; if so, transpose to CREATE FUNCTION */
                                983         [ +  + ]:             18 :     if (!function_parse_error_transpose(callback_arg->prosrc))
                                984                 :                :     {
                                985                 :                :         /* If it's not a syntax error, push info onto context stack */
                                986                 :              9 :         errcontext("SQL function \"%s\"", callback_arg->proname);
                                987                 :                :     }
 7329                           988                 :             18 : }
                                989                 :                : 
                                990                 :                : /*
                                991                 :                :  * Adjust a syntax error occurring inside the function body of a CREATE
                                992                 :                :  * FUNCTION or DO command.  This can be used by any function validator or
                                993                 :                :  * anonymous-block handler, not only for SQL-language functions.
                                994                 :                :  * It is assumed that the syntax error position is initially relative to the
                                995                 :                :  * function body string (as passed in).  If possible, we adjust the position
                                996                 :                :  * to reference the original command text; if we can't manage that, we set
                                997                 :                :  * up an "internal query" syntax error instead.
                                998                 :                :  *
                                999                 :                :  * Returns true if a syntax error was processed, false if not.
                               1000                 :                :  */
                               1001                 :                : bool
                               1002                 :            133 : function_parse_error_transpose(const char *prosrc)
                               1003                 :                : {
                               1004                 :                :     int         origerrposition;
                               1005                 :                :     int         newerrposition;
                               1006                 :                : 
                               1007                 :                :     /*
                               1008                 :                :      * Nothing to do unless we are dealing with a syntax error that has a
                               1009                 :                :      * cursor position.
                               1010                 :                :      *
                               1011                 :                :      * Some PLs may prefer to report the error position as an internal error
                               1012                 :                :      * to begin with, so check that too.
                               1013                 :                :      */
                               1014                 :            133 :     origerrposition = geterrposition();
                               1015         [ +  + ]:            133 :     if (origerrposition <= 0)
                               1016                 :                :     {
                               1017                 :            118 :         origerrposition = getinternalerrposition();
                               1018         [ +  + ]:            118 :         if (origerrposition <= 0)
                               1019                 :             32 :             return false;
                               1020                 :                :     }
                               1021                 :                : 
                               1022                 :                :     /* We can get the original query text from the active portal (hack...) */
  528                          1023   [ +  -  +  - ]:            101 :     if (ActivePortal && ActivePortal->status == PORTAL_ACTIVE)
                               1024                 :            101 :     {
                               1025                 :            101 :         const char *queryText = ActivePortal->sourceText;
                               1026                 :                : 
                               1027                 :                :         /* Try to locate the prosrc in the original text */
                               1028                 :            101 :         newerrposition = match_prosrc_to_query(prosrc, queryText,
                               1029                 :                :                                                origerrposition);
                               1030                 :                :     }
                               1031                 :                :     else
                               1032                 :                :     {
                               1033                 :                :         /*
                               1034                 :                :          * Quietly give up if no ActivePortal.  This is an unusual situation
                               1035                 :                :          * but it can happen in, e.g., logical replication workers.
                               1036                 :                :          */
  528 tgl@sss.pgh.pa.us        1037                 :UBC           0 :         newerrposition = -1;
                               1038                 :                :     }
                               1039                 :                : 
 7329 tgl@sss.pgh.pa.us        1040         [ +  - ]:CBC         101 :     if (newerrposition > 0)
                               1041                 :                :     {
                               1042                 :                :         /* Successful, so fix error position to reference original query */
                               1043                 :            101 :         errposition(newerrposition);
                               1044                 :                :         /* Get rid of any report of the error as an "internal query" */
                               1045                 :            101 :         internalerrposition(0);
                               1046                 :            101 :         internalerrquery(NULL);
                               1047                 :                :     }
                               1048                 :                :     else
                               1049                 :                :     {
                               1050                 :                :         /*
                               1051                 :                :          * If unsuccessful, convert the position to an internal position
                               1052                 :                :          * marker and give the function text as the internal query.
                               1053                 :                :          */
 7329 tgl@sss.pgh.pa.us        1054                 :UBC           0 :         errposition(0);
                               1055                 :              0 :         internalerrposition(origerrposition);
                               1056                 :              0 :         internalerrquery(prosrc);
                               1057                 :                :     }
                               1058                 :                : 
 7329 tgl@sss.pgh.pa.us        1059                 :CBC         101 :     return true;
                               1060                 :                : }
                               1061                 :                : 
                               1062                 :                : /*
                               1063                 :                :  * Try to locate the string literal containing the function body in the
                               1064                 :                :  * given text of the CREATE FUNCTION or DO command.  If successful, return
                               1065                 :                :  * the character (not byte) index within the command corresponding to the
                               1066                 :                :  * given character index within the literal.  If not successful, return 0.
                               1067                 :                :  */
                               1068                 :                : static int
                               1069                 :            101 : match_prosrc_to_query(const char *prosrc, const char *queryText,
                               1070                 :                :                       int cursorpos)
                               1071                 :                : {
                               1072                 :                :     /*
                               1073                 :                :      * Rather than fully parsing the original command, we just scan the
                               1074                 :                :      * command looking for $prosrc$ or 'prosrc'.  This could be fooled (though
                               1075                 :                :      * not in any very probable scenarios), so fail if we find more than one
                               1076                 :                :      * match.
                               1077                 :                :      */
 7168 bruce@momjian.us         1078                 :            101 :     int         prosrclen = strlen(prosrc);
                               1079                 :            101 :     int         querylen = strlen(queryText);
                               1080                 :            101 :     int         matchpos = 0;
                               1081                 :                :     int         curpos;
                               1082                 :                :     int         newcursorpos;
                               1083                 :                : 
                               1084         [ +  + ]:           6983 :     for (curpos = 0; curpos < querylen - prosrclen; curpos++)
                               1085                 :                :     {
 7329 tgl@sss.pgh.pa.us        1086         [ +  + ]:           6882 :         if (queryText[curpos] == '$' &&
 7168 bruce@momjian.us         1087         [ +  + ]:            190 :             strncmp(prosrc, &queryText[curpos + 1], prosrclen) == 0 &&
                               1088         [ +  - ]:             95 :             queryText[curpos + 1 + prosrclen] == '$')
                               1089                 :                :         {
                               1090                 :                :             /*
                               1091                 :                :              * Found a $foo$ match.  Since there are no embedded quoting
                               1092                 :                :              * characters in a dollar-quoted literal, we don't have to do any
                               1093                 :                :              * fancy arithmetic; just offset by the starting position.
                               1094                 :                :              */
 7329 tgl@sss.pgh.pa.us        1095         [ -  + ]:             95 :             if (matchpos)
 7329 tgl@sss.pgh.pa.us        1096                 :UBC           0 :                 return 0;       /* multiple matches, fail */
 7168 bruce@momjian.us         1097                 :CBC          95 :             matchpos = pg_mbstrlen_with_len(queryText, curpos + 1)
                               1098                 :                :                 + cursorpos;
                               1099                 :                :         }
 7329 tgl@sss.pgh.pa.us        1100   [ +  +  +  - ]:           6793 :         else if (queryText[curpos] == '\'' &&
 7168 bruce@momjian.us         1101                 :              6 :                  match_prosrc_to_literal(prosrc, &queryText[curpos + 1],
                               1102                 :                :                                          cursorpos, &newcursorpos))
                               1103                 :                :         {
                               1104                 :                :             /*
                               1105                 :                :              * Found a 'foo' match.  match_prosrc_to_literal() has adjusted
                               1106                 :                :              * for any quotes or backslashes embedded in the literal.
                               1107                 :                :              */
 7329 tgl@sss.pgh.pa.us        1108         [ -  + ]:              6 :             if (matchpos)
 7329 tgl@sss.pgh.pa.us        1109                 :UBC           0 :                 return 0;       /* multiple matches, fail */
 7168 bruce@momjian.us         1110                 :CBC           6 :             matchpos = pg_mbstrlen_with_len(queryText, curpos + 1)
 7329 tgl@sss.pgh.pa.us        1111                 :              6 :                 + newcursorpos;
                               1112                 :                :         }
                               1113                 :                :     }
                               1114                 :                : 
                               1115                 :            101 :     return matchpos;
                               1116                 :                : }
                               1117                 :                : 
                               1118                 :                : /*
                               1119                 :                :  * Try to match the given source text to a single-quoted literal.
                               1120                 :                :  * If successful, adjust newcursorpos to correspond to the character
                               1121                 :                :  * (not byte) index corresponding to cursorpos in the source text.
                               1122                 :                :  *
                               1123                 :                :  * At entry, literal points just past a ' character.  We must check for the
                               1124                 :                :  * trailing quote.
                               1125                 :                :  */
                               1126                 :                : static bool
                               1127                 :              6 : match_prosrc_to_literal(const char *prosrc, const char *literal,
                               1128                 :                :                         int cursorpos, int *newcursorpos)
                               1129                 :                : {
                               1130                 :              6 :     int         newcp = cursorpos;
                               1131                 :                :     int         chlen;
                               1132                 :                : 
                               1133                 :                :     /*
                               1134                 :                :      * This implementation handles backslashes and doubled quotes in the
                               1135                 :                :      * string literal.  It does not handle the SQL syntax for literals
                               1136                 :                :      * continued across line boundaries.
                               1137                 :                :      *
                               1138                 :                :      * We do the comparison a character at a time, not a byte at a time, so
                               1139                 :                :      * that we can do the correct cursorpos math.
                               1140                 :                :      */
                               1141         [ +  + ]:             72 :     while (*prosrc)
                               1142                 :                :     {
                               1143                 :             66 :         cursorpos--;            /* characters left before cursor */
                               1144                 :                : 
                               1145                 :                :         /*
                               1146                 :                :          * Check for backslashes and doubled quotes in the literal; adjust
                               1147                 :                :          * newcp when one is found before the cursor.
                               1148                 :                :          */
                               1149         [ -  + ]:             66 :         if (*literal == '\\')
                               1150                 :                :         {
 7329 tgl@sss.pgh.pa.us        1151                 :UBC           0 :             literal++;
                               1152         [ #  # ]:              0 :             if (cursorpos > 0)
                               1153                 :              0 :                 newcp++;
                               1154                 :                :         }
 7329 tgl@sss.pgh.pa.us        1155         [ -  + ]:CBC          66 :         else if (*literal == '\'')
                               1156                 :                :         {
 7329 tgl@sss.pgh.pa.us        1157         [ #  # ]:UBC           0 :             if (literal[1] != '\'')
 6777                          1158                 :              0 :                 goto fail;
 7329                          1159                 :              0 :             literal++;
                               1160         [ #  # ]:              0 :             if (cursorpos > 0)
                               1161                 :              0 :                 newcp++;
                               1162                 :                :         }
 7329 tgl@sss.pgh.pa.us        1163                 :CBC          66 :         chlen = pg_mblen(prosrc);
                               1164         [ -  + ]:             66 :         if (strncmp(prosrc, literal, chlen) != 0)
 6777 tgl@sss.pgh.pa.us        1165                 :UBC           0 :             goto fail;
 7329 tgl@sss.pgh.pa.us        1166                 :CBC          66 :         prosrc += chlen;
                               1167                 :             66 :         literal += chlen;
                               1168                 :                :     }
                               1169                 :                : 
                               1170   [ +  -  -  + ]:              6 :     if (*literal == '\'' && literal[1] != '\'')
                               1171                 :                :     {
                               1172                 :                :         /* success */
 6777                          1173                 :              6 :         *newcursorpos = newcp;
 7329                          1174                 :              6 :         return true;
                               1175                 :                :     }
                               1176                 :                : 
 6777 tgl@sss.pgh.pa.us        1177                 :UBC           0 : fail:
                               1178                 :                :     /* Must set *newcursorpos to suppress compiler warning */
                               1179                 :              0 :     *newcursorpos = newcp;
 7329                          1180                 :              0 :     return false;
                               1181                 :                : }
                               1182                 :                : 
                               1183                 :                : List *
 3276 peter_e@gmx.net          1184                 :CBC          60 : oid_array_to_list(Datum datum)
                               1185                 :                : {
 3249 bruce@momjian.us         1186                 :             60 :     ArrayType  *array = DatumGetArrayTypeP(datum);
                               1187                 :                :     Datum      *values;
                               1188                 :                :     int         nelems;
                               1189                 :                :     int         i;
                               1190                 :             60 :     List       *result = NIL;
                               1191                 :                : 
  653 peter@eisentraut.org     1192                 :             60 :     deconstruct_array_builtin(array, OIDOID, &values, NULL, &nelems);
 3276 peter_e@gmx.net          1193         [ +  + ]:            122 :     for (i = 0; i < nelems; i++)
                               1194                 :             62 :         result = lappend_oid(result, values[i]);
                               1195                 :             60 :     return result;
                               1196                 :                : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622