89 Oid *prorettype_p,
bool *returnsSet_p)
101 if (languageOid == SQLlanguageId)
103 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
104 errmsg(
"SQL function cannot return shell type %s",
108 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
109 errmsg(
"return type %s is only a shell",
128 if (languageOid != INTERNALlanguageId &&
129 languageOid != ClanguageId)
131 (
errcode(ERRCODE_UNDEFINED_OBJECT),
132 errmsg(
"type \"%s\" does not exist", typnam)));
137 (
errcode(ERRCODE_SYNTAX_ERROR),
138 errmsg(
"type modifier cannot be specified for shell type \"%s\"",
143 (
errcode(ERRCODE_UNDEFINED_OBJECT),
144 errmsg(
"type \"%s\" is not yet defined", typnam),
145 errdetail(
"Creating a shell type definition.")));
162 *prorettype_p = rettype;
163 *returnsSet_p = returnType->
setof;
188 List **parameterTypes_list,
192 List **inParameterNames_list,
193 List **parameterDefaults,
194 Oid *variadicArgType,
195 Oid *requiredResultType)
205 bool have_names =
false;
206 bool have_defaults =
false;
217 *parameterDefaults =
NIL;
221 foreach(
x, parameters)
226 bool isinput =
false;
241 if (languageOid == SQLlanguageId)
243 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
244 errmsg(
"SQL function cannot accept shell type %s",
250 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
251 errmsg(
"aggregate cannot accept shell type %s",
256 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
257 errmsg(
"argument type %s is only a shell",
267 (
errcode(ERRCODE_UNDEFINED_OBJECT),
268 errmsg(
"type %s does not exist",
282 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
283 errmsg(
"aggregates cannot accept set arguments"),
287 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
288 errmsg(
"procedures cannot accept set arguments"),
292 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
293 errmsg(
"functions cannot accept set arguments"),
303 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
304 errmsg(
"VARIADIC parameter must be the last input parameter"),
306 inTypes[inCount++] = toid;
308 if (parameterTypes_list)
309 *parameterTypes_list =
lappend_oid(*parameterTypes_list, toid);
324 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
325 errmsg(
"VARIADIC parameter must be the last parameter"),
328 *requiredResultType = RECORDOID;
330 else if (outCount == 0)
331 *requiredResultType = toid;
337 *variadicArgType = toid;
343 case ANYCOMPATIBLEARRAYOID:
350 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
351 errmsg(
"VARIADIC parameter must be an array"),
371 foreach(
px, parameters)
379 prevfpmode = prevfp->
mode;
393 if (prevfp->
name && prevfp->
name[0] &&
394 strcmp(prevfp->
name, fp->
name) == 0)
396 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
397 errmsg(
"parameter name \"%s\" used more than once",
406 if (inParameterNames_list)
415 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
416 errmsg(
"only input parameters can have default values"),
431 (
errcode(ERRCODE_INVALID_COLUMN_REFERENCE),
432 errmsg(
"cannot use table references in parameter default value"),
449 *parameterDefaults =
lappend(*parameterDefaults, def);
450 have_defaults =
true;
454 if (isinput && have_defaults)
456 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
457 errmsg(
"input parameters after one with a default value must also have defaults"),
467 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
468 errmsg(
"procedure OUT parameters cannot appear after one with a default value"),
478 if (outCount > 0 || varCount > 0)
483 *requiredResultType = RECORDOID;
488 *allParameterTypes = NULL;
489 *parameterModes = NULL;
494 for (
i = 0;
i < parameterCount;
i++)
502 *parameterNames = NULL;
528 if (strcmp(defel->
defname,
"volatility") == 0)
531 goto procedure_error;
532 if (*volatility_item)
535 *volatility_item = defel;
537 else if (strcmp(defel->
defname,
"strict") == 0)
540 goto procedure_error;
544 *strict_item = defel;
546 else if (strcmp(defel->
defname,
"security") == 0)
551 *security_item = defel;
553 else if (strcmp(defel->
defname,
"leakproof") == 0)
556 goto procedure_error;
560 *leakproof_item = defel;
562 else if (strcmp(defel->
defname,
"set") == 0)
566 else if (strcmp(defel->
defname,
"cost") == 0)
569 goto procedure_error;
575 else if (strcmp(defel->
defname,
"rows") == 0)
578 goto procedure_error;
584 else if (strcmp(defel->
defname,
"support") == 0)
587 goto procedure_error;
591 *support_item = defel;
593 else if (strcmp(defel->
defname,
"parallel") == 0)
596 goto procedure_error;
600 *parallel_item = defel;
610 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
611 errmsg(
"invalid attribute in procedure definition"),
621 if (strcmp(
str,
"immutable") == 0)
622 return PROVOLATILE_IMMUTABLE;
623 else if (strcmp(
str,
"stable") == 0)
624 return PROVOLATILE_STABLE;
625 else if (strcmp(
str,
"volatile") == 0)
626 return PROVOLATILE_VOLATILE;
639 if (strcmp(
str,
"safe") == 0)
640 return PROPARALLEL_SAFE;
641 else if (strcmp(
str,
"unsafe") == 0)
642 return PROPARALLEL_UNSAFE;
643 else if (strcmp(
str,
"restricted") == 0)
644 return PROPARALLEL_RESTRICTED;
648 (
errcode(ERRCODE_SYNTAX_ERROR),
649 errmsg(
"parameter \"parallel\" must be SAFE, RESTRICTED, or UNSAFE")));
650 return PROPARALLEL_UNSAFE;
664 foreach(l, set_items)
695 argList[0] = INTERNALOID;
700 (
errcode(ERRCODE_UNDEFINED_FUNCTION),
701 errmsg(
"function %s does not exist",
706 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
707 errmsg(
"support function %s must return type %s",
717 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
718 errmsg(
"must be superuser to specify a support function")));
738 bool *security_definer,
749 DefElem *transform_item = NULL;
750 DefElem *windowfunc_item = NULL;
751 DefElem *volatility_item = NULL;
754 DefElem *leakproof_item = NULL;
765 if (strcmp(defel->
defname,
"as") == 0)
771 else if (strcmp(defel->
defname,
"language") == 0)
775 language_item = defel;
777 else if (strcmp(defel->
defname,
"transform") == 0)
781 transform_item = defel;
783 else if (strcmp(defel->
defname,
"window") == 0)
789 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
790 errmsg(
"invalid attribute in procedure definition"),
792 windowfunc_item = defel;
811 elog(
ERROR,
"option \"%s\" not recognized",
820 *transform = transform_item->
arg;
822 *windowfunc_p =
boolVal(windowfunc_item->
arg);
828 *security_definer =
boolVal(security_item->
arg);
838 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
839 errmsg(
"COST must be positive")));
846 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
847 errmsg(
"ROWS must be positive")));
868 List *parameterTypes,
List *inParameterNames,
869 char **prosrc_str_p,
char **probin_str_p,
871 const char *queryString)
873 if (!sql_body_in && !as)
875 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
876 errmsg(
"no function body specified")));
878 if (sql_body_in && as)
880 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
881 errmsg(
"duplicate function body specified")));
883 if (sql_body_in && languageOid != SQLlanguageId)
885 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
886 errmsg(
"inline SQL function body only valid for language SQL")));
888 *sql_body_out = NULL;
890 if (languageOid == ClanguageId)
906 if (strcmp(*prosrc_str_p,
"-") == 0)
910 else if (sql_body_in)
925 if (IsPolymorphicType(pinfo->
argtypes[
i]))
927 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
928 errmsg(
"SQL function with unquoted function body cannot have polymorphic arguments")));
953 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
954 errmsg(
"%s is not yet supported in unquoted SQL function body",
956 transformed_stmts =
lappend(transformed_stmts, q);
972 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
973 errmsg(
"%s is not yet supported in unquoted SQL function body",
977 *sql_body_out = (
Node *) q;
990 *probin_str_p = NULL;
996 *probin_str_p = NULL;
1000 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
1001 errmsg(
"only one AS item needed for language \"%s\"",
1004 if (languageOid == INTERNALlanguageId)
1014 if (strlen(*prosrc_str_p) == 0)
1035 Oid languageValidator;
1036 Node *transformDefElem = NULL;
1041 List *parameterTypes_list =
NIL;
1045 List *inParameterNames_list =
NIL;
1046 List *parameterDefaults;
1047 Oid variadicArgType;
1050 Oid requiredResultType;
1078 isWindowFunc =
false;
1081 isLeakProof =
false;
1082 volatility = PROVOLATILE_VOLATILE;
1087 parallel = PROPARALLEL_UNSAFE;
1093 &as_clause, &language, &transformDefElem,
1094 &isWindowFunc, &volatility,
1095 &isStrict, &security, &isLeakProof,
1096 &proconfig, &procost, &prorows,
1097 &prosupport, ¶llel);
1105 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
1106 errmsg(
"no language specified")));
1113 (
errcode(ERRCODE_UNDEFINED_OBJECT),
1114 errmsg(
"language \"%s\" does not exist", language),
1116 errhint(
"Use CREATE EXTENSION to load the language into the database.") : 0)));
1119 languageOid = languageStruct->oid;
1121 if (languageStruct->lanpltrusted)
1127 NameStr(languageStruct->lanname));
1134 NameStr(languageStruct->lanname));
1137 languageValidator = languageStruct->lanvalidator;
1148 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
1149 errmsg(
"only superuser can define a leakproof function")));
1151 if (transformDefElem)
1161 typeid = elt ? elt :
typeid;
1164 trftypes_list =
lappend_oid(trftypes_list,
typeid);
1177 ¶meterTypes_list,
1181 &inParameterNames_list,
1184 &requiredResultType);
1186 if (
stmt->is_procedure)
1189 prorettype = requiredResultType ? requiredResultType : VOIDOID;
1192 else if (
stmt->returnType)
1196 &prorettype, &returnsSet);
1197 if (
OidIsValid(requiredResultType) && prorettype != requiredResultType)
1199 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
1200 errmsg(
"function result type must be %s because of OUT parameters",
1206 prorettype = requiredResultType;
1212 (
errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
1213 errmsg(
"function result type must be specified")));
1215 prorettype = VOIDOID;
1219 if (trftypes_list !=
NIL)
1227 foreach(lc, trftypes_list)
1238 parameterTypes_list, inParameterNames_list,
1239 &prosrc_str, &probin_str, &prosqlbody,
1250 if (languageOid == INTERNALlanguageId ||
1251 languageOid == ClanguageId)
1263 else if (!returnsSet)
1265 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1266 errmsg(
"ROWS is not applicable when function does not return a set")));
1283 stmt->is_procedure ? PROKIND_PROCEDURE : (isWindowFunc ? PROKIND_WINDOW : PROKIND_FUNCTION),
1321 elog(
ERROR,
"cache lookup failed for function %u", funcOid);
1336 if (prokind == PROKIND_AGGREGATE)
1342 elog(
ERROR,
"cache lookup failed for pg_aggregate tuple for function %u", funcOid);
1366 DefElem *volatility_item = NULL;
1368 DefElem *security_def_item = NULL;
1369 DefElem *leakproof_item = NULL;
1374 DefElem *parallel_item = NULL;
1385 elog(
ERROR,
"cache lookup failed for function %u", funcOid);
1394 if (procForm->prokind == PROKIND_AGGREGATE)
1396 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1397 errmsg(
"\"%s\" is an aggregate function",
1400 is_procedure = (procForm->prokind == PROKIND_PROCEDURE);
1403 foreach(l,
stmt->actions)
1418 ¶llel_item) ==
false)
1422 if (volatility_item)
1425 procForm->proisstrict =
boolVal(strict_item->
arg);
1426 if (security_def_item)
1427 procForm->prosecdef =
boolVal(security_def_item->
arg);
1430 procForm->proleakproof =
boolVal(leakproof_item->
arg);
1431 if (procForm->proleakproof && !
superuser())
1433 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
1434 errmsg(
"only superuser can define a leakproof function")));
1439 if (procForm->procost <= 0)
1441 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1442 errmsg(
"COST must be positive")));
1447 if (procForm->prorows <= 0)
1449 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1450 errmsg(
"ROWS must be positive")));
1451 if (!procForm->proretset)
1453 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1454 errmsg(
"ROWS is not applicable when function does not return a set")));
1465 ProcedureRelationId, procForm->prosupport,
1467 elog(
ERROR,
"could not change support dependency for function %s",
1474 referenced.
classId = ProcedureRelationId;
1480 procForm->prosupport = newsupport;
1489 Datum repl_val[Natts_pg_proc];
1490 bool repl_null[Natts_pg_proc];
1491 bool repl_repl[Natts_pg_proc];
1494 datum =
SysCacheGetAttr(PROCOID, tup, Anum_pg_proc_proconfig, &isnull);
1501 memset(repl_repl,
false,
sizeof(repl_repl));
1502 repl_repl[Anum_pg_proc_proconfig - 1] =
true;
1506 repl_val[Anum_pg_proc_proconfig - 1] = (
Datum) 0;
1507 repl_null[Anum_pg_proc_proconfig - 1] =
true;
1512 repl_null[Anum_pg_proc_proconfig - 1] =
false;
1516 repl_val, repl_null, repl_repl);
1558 if (sourcetyptype == TYPTYPE_PSEUDO)
1560 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1561 errmsg(
"source data type %s is a pseudo-type",
1564 if (targettyptype == TYPTYPE_PSEUDO)
1566 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1567 errmsg(
"target data type %s is a pseudo-type",
1574 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
1575 errmsg(
"must be owner of type %s or type %s",
1588 if (sourcetyptype == TYPTYPE_DOMAIN)
1590 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1591 errmsg(
"cast will be ignored because the source data type is a domain")));
1593 else if (targettyptype == TYPTYPE_DOMAIN)
1595 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1596 errmsg(
"cast will be ignored because the target data type is a domain")));
1599 if (
stmt->func != NULL)
1600 castmethod = COERCION_METHOD_FUNCTION;
1601 else if (
stmt->inout)
1602 castmethod = COERCION_METHOD_INOUT;
1604 castmethod = COERCION_METHOD_BINARY;
1606 if (castmethod == COERCION_METHOD_FUNCTION)
1614 elog(
ERROR,
"cache lookup failed for function %u", funcid);
1617 nargs = procstruct->pronargs;
1618 if (nargs < 1 || nargs > 3)
1620 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1621 errmsg(
"cast function must take one to three arguments")));
1623 procstruct->proargtypes.values[0],
1626 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1627 errmsg(
"argument of cast function must match or be binary-coercible from source data type")));
1628 if (nargs > 1 && procstruct->proargtypes.values[1] != INT4OID)
1630 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1631 errmsg(
"second argument of cast function must be type %s",
1633 if (nargs > 2 && procstruct->proargtypes.values[2] != BOOLOID)
1635 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1636 errmsg(
"third argument of cast function must be type %s",
1642 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1643 errmsg(
"return data type of cast function must match or be binary-coercible to target data type")));
1651 if (procstruct->provolatile == PROVOLATILE_VOLATILE)
1653 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1654 errmsg(
"cast function must not be volatile")));
1656 if (procstruct->prokind != PROKIND_FUNCTION)
1658 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1659 errmsg(
"cast function must be a normal function")));
1660 if (procstruct->proretset)
1662 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1663 errmsg(
"cast function must not return a set")));
1673 if (castmethod == COERCION_METHOD_BINARY)
1688 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
1689 errmsg(
"must be superuser to create a cast WITHOUT FUNCTION")));
1699 if (typ1len != typ2len ||
1700 typ1byval != typ2byval ||
1701 typ1align != typ2align)
1703 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1704 errmsg(
"source and target data types are not physically compatible")));
1720 if (sourcetyptype == TYPTYPE_COMPOSITE ||
1721 targettyptype == TYPTYPE_COMPOSITE)
1723 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1724 errmsg(
"composite data types are not binary-compatible")));
1729 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1730 errmsg(
"array data types are not binary-compatible")));
1732 if (sourcetyptype == TYPTYPE_RANGE ||
1733 targettyptype == TYPTYPE_RANGE ||
1734 sourcetyptype == TYPTYPE_MULTIRANGE ||
1735 targettyptype == TYPTYPE_MULTIRANGE)
1737 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1738 errmsg(
"range data types are not binary-compatible")));
1740 if (sourcetyptype == TYPTYPE_ENUM ||
1741 targettyptype == TYPTYPE_ENUM)
1743 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1744 errmsg(
"enum data types are not binary-compatible")));
1757 if (sourcetyptype == TYPTYPE_DOMAIN ||
1758 targettyptype == TYPTYPE_DOMAIN)
1760 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1761 errmsg(
"domain data types must not be marked binary-compatible")));
1768 if (sourcetypeid == targettypeid && nargs < 2)
1770 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1771 errmsg(
"source data type and target data type are the same")));
1774 switch (
stmt->context)
1777 castcontext = COERCION_CODE_IMPLICIT;
1780 castcontext = COERCION_CODE_ASSIGNMENT;
1784 castcontext = COERCION_CODE_EXPLICIT;
1787 elog(
ERROR,
"unrecognized CoercionContext: %d",
stmt->context);
1792 myself =
CastCreate(sourcetypeid, targettypeid, funcid, incastid, outcastid,
1801 if (procstruct->provolatile == PROVOLATILE_VOLATILE)
1803 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1804 errmsg(
"transform function must not be volatile")));
1805 if (procstruct->prokind != PROKIND_FUNCTION)
1807 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1808 errmsg(
"transform function must be a normal function")));
1809 if (procstruct->proretset)
1811 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1812 errmsg(
"transform function must not return a set")));
1813 if (procstruct->pronargs != 1)
1815 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1816 errmsg(
"transform function must take one argument")));
1817 if (procstruct->proargtypes.values[0] != INTERNALOID)
1819 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1820 errmsg(
"first argument of transform function must be type %s",
1839 bool nulls[Natts_pg_transform] = {0};
1840 bool replaces[Natts_pg_transform] = {0};
1856 if (typtype == TYPTYPE_PSEUDO)
1858 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1859 errmsg(
"data type %s is a pseudo-type",
1862 if (typtype == TYPTYPE_DOMAIN)
1864 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1865 errmsg(
"data type %s is a domain",
1900 elog(
ERROR,
"cache lookup failed for function %u", fromsqlfuncid);
1902 if (procstruct->prorettype != INTERNALOID)
1904 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1905 errmsg(
"return data type of FROM SQL function must be %s",
1926 elog(
ERROR,
"cache lookup failed for function %u", tosqlfuncid);
1928 if (procstruct->prorettype !=
typeid)
1930 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1931 errmsg(
"return data type of TO SQL function must be the transform data type")));
1958 errmsg(
"transform for type %s language \"%s\" already exists",
1962 replaces[Anum_pg_transform_trffromsql - 1] =
true;
1963 replaces[Anum_pg_transform_trftosql - 1] =
true;
1968 transformid = form->oid;
1975 Anum_pg_transform_oid);
2043 (
errcode(ERRCODE_UNDEFINED_OBJECT),
2044 errmsg(
"transform for type %s language \"%s\" does not exist",
2067 (
errcode(ERRCODE_DUPLICATE_FUNCTION),
2068 errmsg(
"function %s already exists in schema \"%s\"",
2086 DefElem *language_item = NULL;
2097 if (strcmp(defel->
defname,
"as") == 0)
2103 else if (strcmp(defel->
defname,
"language") == 0)
2107 language_item = defel;
2110 elog(
ERROR,
"option \"%s\" not recognized",
2118 (
errcode(ERRCODE_SYNTAX_ERROR),
2119 errmsg(
"no inline code specified")));
2125 language =
"plpgsql";
2131 (
errcode(ERRCODE_UNDEFINED_OBJECT),
2132 errmsg(
"language \"%s\" does not exist", language),
2134 errhint(
"Use CREATE EXTENSION to load the language into the database.") : 0)));
2137 codeblock->
langOid = languageStruct->oid;
2139 codeblock->
atomic = atomic;
2141 if (languageStruct->lanpltrusted)
2150 NameStr(languageStruct->lanname));
2157 NameStr(languageStruct->lanname));
2161 laninline = languageStruct->laninline;
2164 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2165 errmsg(
"language \"%s\" does not support inline code execution",
2166 NameStr(languageStruct->lanname))));
2219 fexpr =
stmt->funcexpr;
2229 callcontext->
atomic = atomic;
2242 callcontext->
atomic =
true;
2251 callcontext->
atomic =
true;
2259 (
errcode(ERRCODE_TOO_MANY_ARGUMENTS),
2260 errmsg_plural(
"cannot pass more than %d argument to a procedure",
2261 "cannot pass more than %d arguments to a procedure",
2270 (
Node *) callcontext, NULL);
2291 foreach(lc, fexpr->
args)
2301 fcinfo->args[
i].value =
val;
2302 fcinfo->args[
i].isnull = isnull;
2317 if (fexpr->funcresulttype == VOIDOID)
2321 else if (fexpr->funcresulttype == RECORDOID)
2333 elog(
ERROR,
"procedure returned null record");
2370 elog(
ERROR,
"unexpected result type for procedure: %u",
2371 fexpr->funcresulttype);
2386 fexpr =
stmt->funcexpr;
2409 for (
int i = 0;
i < tupdesc->
natts;
i++)
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
AclResult object_aclcheck(Oid classid, Oid objectid, Oid roleid, AclMode mode)
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
void aclcheck_error_type(AclResult aclerr, Oid typeOid)
#define DatumGetArrayTypeP(X)
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
static Datum values[MAXATTR]
#define CStringGetTextDatum(s)
#define Assert(condition)
#define OidIsValid(objectId)
Oid GetNewOidWithIndex(Relation relation, Oid indexId, AttrNumber oidcolumn)
const char * GetCommandTagName(CommandTag commandTag)
List * defGetQualifiedName(DefElem *def)
void errorConflictingDefElem(DefElem *defel, ParseState *pstate)
double defGetNumeric(DefElem *def)
void record_object_address_dependencies(const ObjectAddress *depender, ObjectAddresses *referenced, DependencyType behavior)
ObjectAddresses * new_object_addresses(void)
void add_exact_object_address(const ObjectAddress *object, ObjectAddresses *addrs)
void free_object_addresses(ObjectAddresses *addrs)
int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
int errdetail(const char *fmt,...)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
ExprState * ExecPrepareExpr(Expr *node, EState *estate)
void end_tup_output(TupOutputState *tstate)
TupleTableSlot * ExecStoreHeapTuple(HeapTuple tuple, TupleTableSlot *slot, bool shouldFree)
const TupleTableSlotOps TTSOpsHeapTuple
TupOutputState * begin_tup_output_tupdesc(DestReceiver *dest, TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
EState * CreateExecutorState(void)
ExprContext * CreateExprContext(EState *estate)
void FreeExecutorState(EState *estate)
static Datum ExecEvalExprSwitchContext(ExprState *state, ExprContext *econtext, bool *isNull)
bool extension_file_exists(const char *extensionName)
void fmgr_info(Oid functionId, FmgrInfo *finfo)
#define OidFunctionCall1(functionId, arg1)
#define DatumGetHeapTupleHeader(X)
#define InitFunctionCallInfoData(Fcinfo, Flinfo, Nargs, Collation, Context, Resultinfo)
#define LOCAL_FCINFO(name, nargs)
#define FunctionCallInvoke(fcinfo)
#define fmgr_info_set_expr(expr, finfo)
TupleDesc build_function_result_tupdesc_t(HeapTuple procTuple)
void ExecuteCallStmt(CallStmt *stmt, ParamListInfo params, bool atomic, DestReceiver *dest)
ObjectAddress CreateCast(CreateCastStmt *stmt)
static ArrayType * update_proconfig_value(ArrayType *a, List *set_items)
static void compute_return_type(TypeName *returnType, Oid languageOid, Oid *prorettype_p, bool *returnsSet_p)
static Oid interpret_func_support(DefElem *defel)
static void compute_function_attributes(ParseState *pstate, bool is_procedure, List *options, List **as, char **language, Node **transform, bool *windowfunc_p, char *volatility_p, bool *strict_p, bool *security_definer, bool *leakproof_p, ArrayType **proconfig, float4 *procost, float4 *prorows, Oid *prosupport, char *parallel_p)
void interpret_function_parameter_list(ParseState *pstate, List *parameters, Oid languageOid, ObjectType objtype, oidvector **parameterTypes, List **parameterTypes_list, ArrayType **allParameterTypes, ArrayType **parameterModes, ArrayType **parameterNames, List **inParameterNames_list, List **parameterDefaults, Oid *variadicArgType, Oid *requiredResultType)
static bool compute_common_attribute(ParseState *pstate, bool is_procedure, DefElem *defel, DefElem **volatility_item, DefElem **strict_item, DefElem **security_item, DefElem **leakproof_item, List **set_items, DefElem **cost_item, DefElem **rows_item, DefElem **support_item, DefElem **parallel_item)
static char interpret_func_volatility(DefElem *defel)
ObjectAddress CreateFunction(ParseState *pstate, CreateFunctionStmt *stmt)
void IsThereFunctionInNamespace(const char *proname, int pronargs, oidvector *proargtypes, Oid nspOid)
ObjectAddress AlterFunction(ParseState *pstate, AlterFunctionStmt *stmt)
TupleDesc CallStmtResultDesc(CallStmt *stmt)
static void interpret_AS_clause(Oid languageOid, const char *languageName, char *funcname, List *as, Node *sql_body_in, List *parameterTypes, List *inParameterNames, char **prosrc_str_p, char **probin_str_p, Node **sql_body_out, const char *queryString)
Oid get_transform_oid(Oid type_id, Oid lang_id, bool missing_ok)
void ExecuteDoStmt(ParseState *pstate, DoStmt *stmt, bool atomic)
static void check_transform_function(Form_pg_proc procstruct)
ObjectAddress CreateTransform(CreateTransformStmt *stmt)
void RemoveFunctionById(Oid funcOid)
static char interpret_func_parallel(DefElem *defel)
void sql_fn_parser_setup(struct ParseState *pstate, SQLFunctionParseInfoPtr pinfo)
SQLFunctionParseInfo * SQLFunctionParseInfoPtr
void px(PlannerInfo *root, Gene *tour1, Gene *tour2, Gene *offspring, int num_gene, City *city_table)
ArrayType * GUCArrayAdd(ArrayType *array, const char *name, const char *value)
ArrayType * GUCArrayDelete(ArrayType *array, const char *name)
char * ExtractSetVariableArgs(VariableSetStmt *stmt)
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
bool heap_attisnull(HeapTuple tup, int attnum, TupleDesc tupleDesc)
void heap_freetuple(HeapTuple htup)
#define HeapTupleIsValid(tuple)
#define HeapTupleHeaderGetTypMod(tup)
#define HeapTupleHeaderGetTypeId(tup)
#define HeapTupleHeaderGetDatumLength(tup)
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
void CatalogTupleInsert(Relation heapRel, HeapTuple tup)
void CatalogTupleDelete(Relation heapRel, ItemPointer tid)
if(TABLE==NULL||TABLE_index==NULL)
static void ItemPointerSetInvalid(ItemPointerData *pointer)
List * lappend(List *list, void *datum)
List * lappend_oid(List *list, Oid datum)
char * get_language_name(Oid langoid, bool missing_ok)
Oid get_element_type(Oid typid)
char * get_namespace_name(Oid nspid)
void get_typlenbyvalalign(Oid typid, int16 *typlen, bool *typbyval, char *typalign)
char * get_func_name(Oid funcid)
char get_typtype(Oid typid)
Oid get_base_element_type(Oid typid)
Oid get_func_rettype(Oid funcid)
char * pstrdup(const char *in)
void * palloc0(Size size)
Oid QualifiedNameGetCreationNamespace(const List *names, char **objname_p)
char * NameListToString(const List *names)
Oid exprType(const Node *expr)
#define IsA(nodeptr, _type_)
#define castNode(_type_, nodeptr)
#define InvokeObjectPostCreateHook(classId, objectId, subId)
#define InvokeObjectPostAlterHook(classId, objectId, subId)
#define InvokeFunctionExecuteHook(objectId)
#define ObjectAddressSet(addr, class_id, object_id)
oidvector * buildoidvector(const Oid *oids, int n)
Node * coerce_to_specific_type(ParseState *pstate, Node *node, Oid targetTypeId, const char *constructName)
bool IsBinaryCoercibleWithCast(Oid srctype, Oid targettype, Oid *castoid)
void assign_expr_collations(ParseState *pstate, Node *expr)
Node * transformExpr(ParseState *pstate, Node *expr, ParseExprKind exprKind)
const char * func_signature_string(List *funcname, int nargs, List *argnames, const Oid *argtypes)
Oid LookupFuncWithArgs(ObjectType objtype, ObjectWithArgs *func, bool missing_ok)
const char * funcname_signature_string(const char *funcname, int nargs, List *argnames, const Oid *argtypes)
Oid LookupFuncName(List *funcname, int nargs, const Oid *argtypes, bool missing_ok)
void free_parsestate(ParseState *pstate)
int parser_errposition(ParseState *pstate, int location)
ParseState * make_parsestate(ParseState *parentParseState)
@ EXPR_KIND_FUNCTION_DEFAULT
Type LookupTypeName(ParseState *pstate, const TypeName *typeName, int32 *typmod_p, bool missing_ok)
char * TypeNameToString(const TypeName *typeName)
Oid typenameTypeId(ParseState *pstate, const TypeName *typeName)
Query * transformStmt(ParseState *pstate, Node *parseTree)
FormData_pg_attribute * Form_pg_attribute
ObjectAddress CastCreate(Oid sourcetypeid, Oid targettypeid, Oid funcid, Oid incastid, Oid outcastid, char castcontext, char castmethod, DependencyType behavior)
void recordDependencyOn(const ObjectAddress *depender, const ObjectAddress *referenced, DependencyType behavior)
long changeDependencyFor(Oid classId, Oid objectId, Oid refClassId, Oid oldRefObjectId, Oid newRefObjectId)
long deleteDependencyRecordsFor(Oid classId, Oid objectId, bool skipExtensionDeps)
void recordDependencyOnCurrentExtension(const ObjectAddress *object, bool isReplace)
FormData_pg_language * Form_pg_language
#define lfirst_node(type, lc)
static int list_length(const List *l)
#define linitial_node(type, l)
static Oid list_nth_oid(const List *list, int n)
static void * list_nth(const List *list, int n)
ObjectAddress ProcedureCreate(const char *procedureName, Oid procNamespace, bool replace, bool returnsSet, Oid returnType, Oid proowner, Oid languageObjectId, Oid languageValidator, const char *prosrc, const char *probin, Node *prosqlbody, char prokind, bool security_definer, bool isLeakProof, bool isStrict, char volatility, char parallel, oidvector *parameterTypes, Datum allParameterTypes, Datum parameterModes, Datum parameterNames, List *parameterDefaults, Datum trftypes, Datum proconfig, Oid prosupport, float4 procost, float4 prorows)
FormData_pg_proc * Form_pg_proc
ObjectAddress TypeShellMake(const char *typeName, Oid typeNamespace, Oid ownerId)
FormData_pg_type * Form_pg_type
void pgstat_drop_function(Oid proid)
void pgstat_init_function_usage(FunctionCallInfo fcinfo, PgStat_FunctionCallUsage *fcu)
void pgstat_end_function_usage(PgStat_FunctionCallUsage *fcu, bool finalize)
static Datum PointerGetDatum(const void *X)
static Datum ObjectIdGetDatum(Oid X)
static Datum CStringGetDatum(const char *X)
static Datum CharGetDatum(char X)
void EnsurePortalSnapshotExists(void)
Oid get_language_oid(const char *langname, bool missing_ok)
#define RelationGetDescr(relation)
Snapshot GetTransactionSnapshot(void)
void PushActiveSnapshot(Snapshot snapshot)
void PopActiveSnapshot(void)
#define ERRCODE_DUPLICATE_OBJECT
ParamListInfo es_param_list_info
FunctionParameterMode mode
const char * p_sourcetext
bool(* receiveSlot)(TupleTableSlot *slot, DestReceiver *self)
Oid values[FLEXIBLE_ARRAY_MEMBER]
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Datum SysCacheGetAttr(int cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
HeapTuple SearchSysCache2(int cacheId, Datum key1, Datum key2)
#define SearchSysCacheCopy1(cacheId, key1)
#define SearchSysCacheExists3(cacheId, key1, key2, key3)
#define GetSysCacheOid2(cacheId, oidcol, key1, key2)
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
void TupleDescInitEntry(TupleDesc desc, AttrNumber attributeNumber, const char *attributeName, Oid oidtypeid, int32 typmod, int attdim)
#define ReleaseTupleDesc(tupdesc)
#define TupleDescAttr(tupdesc, i)
TupleDesc lookup_rowtype_tupdesc(Oid type_id, int32 typmod)
CommandTag CreateCommandTag(Node *parsetree)
String * makeString(char *str)
bool contain_var_clause(Node *node)