PostgreSQL Source Code  git master
dblink.c File Reference
#include "postgres.h"
#include <limits.h>
#include "access/htup_details.h"
#include "access/relation.h"
#include "access/reloptions.h"
#include "access/table.h"
#include "catalog/namespace.h"
#include "catalog/pg_foreign_data_wrapper.h"
#include "catalog/pg_foreign_server.h"
#include "catalog/pg_type.h"
#include "catalog/pg_user_mapping.h"
#include "executor/spi.h"
#include "foreign/foreign.h"
#include "funcapi.h"
#include "lib/stringinfo.h"
#include "libpq-fe.h"
#include "libpq/libpq-be.h"
#include "libpq/libpq-be-fe-helpers.h"
#include "mb/pg_wchar.h"
#include "miscadmin.h"
#include "parser/scansup.h"
#include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
#include "utils/guc.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/varlena.h"
Include dependency graph for dblink.c:

Go to the source code of this file.

Data Structures

struct  remoteConn
 
struct  storeInfo
 
struct  remoteConnHashEnt
 

Macros

#define NUMCONN   16
 
#define DBLINK_NOTIFY_COLS   3
 

Typedefs

typedef struct remoteConn remoteConn
 
typedef struct storeInfo storeInfo
 
typedef struct remoteConnHashEnt remoteConnHashEnt
 

Functions

static Datum dblink_record_internal (FunctionCallInfo fcinfo, bool is_async)
 
static void prepTuplestoreResult (FunctionCallInfo fcinfo)
 
static void materializeResult (FunctionCallInfo fcinfo, PGconn *conn, PGresult *res)
 
static void materializeQueryResult (FunctionCallInfo fcinfo, PGconn *conn, const char *conname, const char *sql, bool fail)
 
static PGresultstoreQueryResult (volatile storeInfo *sinfo, PGconn *conn, const char *sql)
 
static void storeRow (volatile storeInfo *sinfo, PGresult *res, bool first)
 
static remoteConngetConnectionByName (const char *name)
 
static HTABcreateConnHash (void)
 
static void createNewConnection (const char *name, remoteConn *rconn)
 
static void deleteConnection (const char *name)
 
static char ** get_pkey_attnames (Relation rel, int16 *indnkeyatts)
 
static char ** get_text_array_contents (ArrayType *array, int *numitems)
 
static char * get_sql_insert (Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals, char **tgt_pkattvals)
 
static char * get_sql_delete (Relation rel, int *pkattnums, int pknumatts, char **tgt_pkattvals)
 
static char * get_sql_update (Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals, char **tgt_pkattvals)
 
static char * quote_ident_cstr (char *rawstr)
 
static int get_attnum_pk_pos (int *pkattnums, int pknumatts, int key)
 
static HeapTuple get_tuple_of_interest (Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals)
 
static Relation get_rel_from_relname (text *relname_text, LOCKMODE lockmode, AclMode aclmode)
 
static char * generate_relation_name (Relation rel)
 
static void dblink_connstr_check (const char *connstr)
 
static bool dblink_connstr_has_pw (const char *connstr)
 
static void dblink_security_check (PGconn *conn, remoteConn *rconn, const char *connstr)
 
static void dblink_res_error (PGconn *conn, const char *conname, PGresult *res, bool fail, const char *fmt,...) pg_attribute_printf(5
 
static void static char * get_connect_string (const char *servername)
 
static char * escape_param_str (const char *str)
 
static void validate_pkattnums (Relation rel, int2vector *pkattnums_arg, int32 pknumatts_arg, int **pkattnums, int *pknumatts)
 
static bool is_valid_dblink_option (const PQconninfoOption *options, const char *option, Oid context)
 
static int applyRemoteGucs (PGconn *conn)
 
static void restoreLocalGucs (int nestlevel)
 
static char * xpstrdup (const char *in)
 
static void pg_attribute_noreturn () dblink_res_internalerror(PGconn *conn
 
 PQclear (res)
 
 elog (ERROR, "%s: %s", p2, msg)
 
static void dblink_get_conn (char *conname_or_str, PGconn *volatile *conn_p, char **conname_p, volatile bool *freeconn_p)
 
static PGconndblink_get_named_conn (const char *conname)
 
static void dblink_init (void)
 
 PG_FUNCTION_INFO_V1 (dblink_connect)
 
Datum dblink_connect (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_disconnect)
 
Datum dblink_disconnect (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_open)
 
Datum dblink_open (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_close)
 
Datum dblink_close (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_fetch)
 
Datum dblink_fetch (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_record)
 
Datum dblink_record (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_send_query)
 
Datum dblink_send_query (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_get_result)
 
Datum dblink_get_result (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_get_connections)
 
Datum dblink_get_connections (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_is_busy)
 
Datum dblink_is_busy (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_cancel_query)
 
Datum dblink_cancel_query (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_error_message)
 
Datum dblink_error_message (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_exec)
 
Datum dblink_exec (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_get_pkey)
 
Datum dblink_get_pkey (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_build_sql_insert)
 
Datum dblink_build_sql_insert (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_build_sql_delete)
 
Datum dblink_build_sql_delete (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_build_sql_update)
 
Datum dblink_build_sql_update (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_current_query)
 
Datum dblink_current_query (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_get_notify)
 
Datum dblink_get_notify (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (dblink_fdw_validator)
 
Datum dblink_fdw_validator (PG_FUNCTION_ARGS)
 

Variables

 PG_MODULE_MAGIC
 
static remoteConnpconn = NULL
 
static HTABremoteConnHash = NULL
 
static void PGresultres
 
static void PGresult const char * p2
 

Macro Definition Documentation

◆ DBLINK_NOTIFY_COLS

#define DBLINK_NOTIFY_COLS   3

Definition at line 1867 of file dblink.c.

◆ NUMCONN

#define NUMCONN   16

Definition at line 147 of file dblink.c.

Typedef Documentation

◆ remoteConn

typedef struct remoteConn remoteConn

◆ remoteConnHashEnt

◆ storeInfo

typedef struct storeInfo storeInfo

Function Documentation

◆ applyRemoteGucs()

static int applyRemoteGucs ( PGconn conn)
static

Definition at line 3020 of file dblink.c.

3021 {
3022  static const char *const GUCsAffectingIO[] = {
3023  "DateStyle",
3024  "IntervalStyle"
3025  };
3026 
3027  int nestlevel = -1;
3028  int i;
3029 
3030  for (i = 0; i < lengthof(GUCsAffectingIO); i++)
3031  {
3032  const char *gucName = GUCsAffectingIO[i];
3033  const char *remoteVal = PQparameterStatus(conn, gucName);
3034  const char *localVal;
3035 
3036  /*
3037  * If the remote server is pre-8.4, it won't have IntervalStyle, but
3038  * that's okay because its output format won't be ambiguous. So just
3039  * skip the GUC if we don't get a value for it. (We might eventually
3040  * need more complicated logic with remote-version checks here.)
3041  */
3042  if (remoteVal == NULL)
3043  continue;
3044 
3045  /*
3046  * Avoid GUC-setting overhead if the remote and local GUCs already
3047  * have the same value.
3048  */
3049  localVal = GetConfigOption(gucName, false, false);
3050  Assert(localVal != NULL);
3051 
3052  if (strcmp(remoteVal, localVal) == 0)
3053  continue;
3054 
3055  /* Create new GUC nest level if we didn't already */
3056  if (nestlevel < 0)
3057  nestlevel = NewGUCNestLevel();
3058 
3059  /* Apply the option (this will throw error on failure) */
3060  (void) set_config_option(gucName, remoteVal,
3062  GUC_ACTION_SAVE, true, 0, false);
3063  }
3064 
3065  return nestlevel;
3066 }
#define lengthof(array)
Definition: c.h:772
const char * PQparameterStatus(const PGconn *conn, const char *paramName)
Definition: fe-connect.c:7210
int NewGUCNestLevel(void)
Definition: guc.c:2201
const char * GetConfigOption(const char *name, bool missing_ok, bool restrict_privileged)
Definition: guc.c:4200
int set_config_option(const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
Definition: guc.c:3284
@ GUC_ACTION_SAVE
Definition: guc.h:199
@ PGC_S_SESSION
Definition: guc.h:122
@ PGC_USERSET
Definition: guc.h:75
int i
Definition: isn.c:73
Assert(fmt[strlen(fmt) - 1] !='\n')
PGconn * conn
Definition: streamutil.c:54

References Assert(), conn, GetConfigOption(), GUC_ACTION_SAVE, i, lengthof, NewGUCNestLevel(), PGC_S_SESSION, PGC_USERSET, PQparameterStatus(), and set_config_option().

Referenced by materializeResult(), and storeQueryResult().

◆ createConnHash()

static HTAB * createConnHash ( void  )
static

Definition at line 2528 of file dblink.c.

2529 {
2530  HASHCTL ctl;
2531 
2532  ctl.keysize = NAMEDATALEN;
2533  ctl.entrysize = sizeof(remoteConnHashEnt);
2534 
2535  return hash_create("Remote Con hash", NUMCONN, &ctl,
2537 }
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:350
#define HASH_STRINGS
Definition: hsearch.h:96
#define HASH_ELEM
Definition: hsearch.h:95
#define NAMEDATALEN
Size keysize
Definition: hsearch.h:75
Size entrysize
Definition: hsearch.h:76

References HASHCTL::entrysize, hash_create(), HASH_ELEM, HASH_STRINGS, HASHCTL::keysize, NAMEDATALEN, and NUMCONN.

Referenced by createNewConnection(), deleteConnection(), and getConnectionByName().

◆ createNewConnection()

static void createNewConnection ( const char *  name,
remoteConn rconn 
)
static

Definition at line 2540 of file dblink.c.

2541 {
2542  remoteConnHashEnt *hentry;
2543  bool found;
2544  char *key;
2545 
2546  if (!remoteConnHash)
2548 
2549  key = pstrdup(name);
2550  truncate_identifier(key, strlen(key), true);
2552  HASH_ENTER, &found);
2553 
2554  if (found)
2555  {
2556  libpqsrv_disconnect(rconn->conn);
2557  pfree(rconn);
2558 
2559  ereport(ERROR,
2561  errmsg("duplicate connection name")));
2562  }
2563 
2564  hentry->rconn = rconn;
2565  strlcpy(hentry->name, name, sizeof(hentry->name));
2566 }
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:953
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
const char * name
Definition: encode.c:571
@ HASH_ENTER
Definition: hsearch.h:114
static void libpqsrv_disconnect(PGconn *conn)
char * pstrdup(const char *in)
Definition: mcxt.c:1644
void pfree(void *pointer)
Definition: mcxt.c:1456
size_t strlcpy(char *dst, const char *src, size_t siz)
Definition: strlcpy.c:45
void truncate_identifier(char *ident, int len, bool warn)
Definition: scansup.c:93
#define ERRCODE_DUPLICATE_OBJECT
Definition: streamutil.c:32
char name[NAMEDATALEN]
Definition: dblink.c:142
remoteConn * rconn
Definition: dblink.c:143
PGconn * conn
Definition: dblink.c:69

References remoteConn::conn, createConnHash(), ereport, errcode(), ERRCODE_DUPLICATE_OBJECT, errmsg(), ERROR, HASH_ENTER, hash_search(), sort-test::key, libpqsrv_disconnect(), remoteConnHashEnt::name, name, pfree(), pstrdup(), remoteConnHashEnt::rconn, remoteConnHash, strlcpy(), and truncate_identifier().

Referenced by dblink_connect().

◆ dblink_build_sql_delete()

Datum dblink_build_sql_delete ( PG_FUNCTION_ARGS  )

Definition at line 1698 of file dblink.c.

1699 {
1700  text *relname_text = PG_GETARG_TEXT_PP(0);
1701  int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
1702  int32 pknumatts_arg = PG_GETARG_INT32(2);
1703  ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
1704  Relation rel;
1705  int *pkattnums;
1706  int pknumatts;
1707  char **tgt_pkattvals;
1708  int tgt_nitems;
1709  char *sql;
1710 
1711  /*
1712  * Open target relation.
1713  */
1714  rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
1715 
1716  /*
1717  * Process pkattnums argument.
1718  */
1719  validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
1720  &pkattnums, &pknumatts);
1721 
1722  /*
1723  * Target array is made up of key values that will be used to build the
1724  * SQL string for use on the remote system.
1725  */
1726  tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
1727 
1728  /*
1729  * There should be one target array key value for each key attnum
1730  */
1731  if (tgt_nitems != pknumatts)
1732  ereport(ERROR,
1733  (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
1734  errmsg("target key array length must match number of key attributes")));
1735 
1736  /*
1737  * Prep work is finally done. Go get the SQL string.
1738  */
1739  sql = get_sql_delete(rel, pkattnums, pknumatts, tgt_pkattvals);
1740 
1741  /*
1742  * Now we can close the relation.
1743  */
1745 
1746  /*
1747  * And send it
1748  */
1750 }
#define PG_GETARG_ARRAYTYPE_P(n)
Definition: array.h:256
signed int int32
Definition: c.h:478
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_RETURN_TEXT_P(x)
Definition: fmgr.h:372
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269
#define AccessShareLock
Definition: lockdefs.h:36
#define ACL_SELECT
Definition: parsenodes.h:84
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:206
Definition: c.h:699
Definition: c.h:671
text * cstring_to_text(const char *s)
Definition: varlena.c:182

References AccessShareLock, ACL_SELECT, cstring_to_text(), ereport, errcode(), errmsg(), ERROR, get_rel_from_relname(), get_sql_delete(), get_text_array_contents(), PG_GETARG_ARRAYTYPE_P, PG_GETARG_INT32, PG_GETARG_POINTER, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, relation_close(), and validate_pkattnums().

◆ dblink_build_sql_insert()

Datum dblink_build_sql_insert ( PG_FUNCTION_ARGS  )

Definition at line 1609 of file dblink.c.

1610 {
1611  text *relname_text = PG_GETARG_TEXT_PP(0);
1612  int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
1613  int32 pknumatts_arg = PG_GETARG_INT32(2);
1614  ArrayType *src_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
1615  ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(4);
1616  Relation rel;
1617  int *pkattnums;
1618  int pknumatts;
1619  char **src_pkattvals;
1620  char **tgt_pkattvals;
1621  int src_nitems;
1622  int tgt_nitems;
1623  char *sql;
1624 
1625  /*
1626  * Open target relation.
1627  */
1628  rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
1629 
1630  /*
1631  * Process pkattnums argument.
1632  */
1633  validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
1634  &pkattnums, &pknumatts);
1635 
1636  /*
1637  * Source array is made up of key values that will be used to locate the
1638  * tuple of interest from the local system.
1639  */
1640  src_pkattvals = get_text_array_contents(src_pkattvals_arry, &src_nitems);
1641 
1642  /*
1643  * There should be one source array key value for each key attnum
1644  */
1645  if (src_nitems != pknumatts)
1646  ereport(ERROR,
1647  (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
1648  errmsg("source key array length must match number of key attributes")));
1649 
1650  /*
1651  * Target array is made up of key values that will be used to build the
1652  * SQL string for use on the remote system.
1653  */
1654  tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
1655 
1656  /*
1657  * There should be one target array key value for each key attnum
1658  */
1659  if (tgt_nitems != pknumatts)
1660  ereport(ERROR,
1661  (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
1662  errmsg("target key array length must match number of key attributes")));
1663 
1664  /*
1665  * Prep work is finally done. Go get the SQL string.
1666  */
1667  sql = get_sql_insert(rel, pkattnums, pknumatts, src_pkattvals, tgt_pkattvals);
1668 
1669  /*
1670  * Now we can close the relation.
1671  */
1673 
1674  /*
1675  * And send it
1676  */
1678 }

References AccessShareLock, ACL_SELECT, cstring_to_text(), ereport, errcode(), errmsg(), ERROR, get_rel_from_relname(), get_sql_insert(), get_text_array_contents(), PG_GETARG_ARRAYTYPE_P, PG_GETARG_INT32, PG_GETARG_POINTER, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, relation_close(), and validate_pkattnums().

◆ dblink_build_sql_update()

Datum dblink_build_sql_update ( PG_FUNCTION_ARGS  )

Definition at line 1774 of file dblink.c.

1775 {
1776  text *relname_text = PG_GETARG_TEXT_PP(0);
1777  int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
1778  int32 pknumatts_arg = PG_GETARG_INT32(2);
1779  ArrayType *src_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
1780  ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(4);
1781  Relation rel;
1782  int *pkattnums;
1783  int pknumatts;
1784  char **src_pkattvals;
1785  char **tgt_pkattvals;
1786  int src_nitems;
1787  int tgt_nitems;
1788  char *sql;
1789 
1790  /*
1791  * Open target relation.
1792  */
1793  rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
1794 
1795  /*
1796  * Process pkattnums argument.
1797  */
1798  validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
1799  &pkattnums, &pknumatts);
1800 
1801  /*
1802  * Source array is made up of key values that will be used to locate the
1803  * tuple of interest from the local system.
1804  */
1805  src_pkattvals = get_text_array_contents(src_pkattvals_arry, &src_nitems);
1806 
1807  /*
1808  * There should be one source array key value for each key attnum
1809  */
1810  if (src_nitems != pknumatts)
1811  ereport(ERROR,
1812  (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
1813  errmsg("source key array length must match number of key attributes")));
1814 
1815  /*
1816  * Target array is made up of key values that will be used to build the
1817  * SQL string for use on the remote system.
1818  */
1819  tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
1820 
1821  /*
1822  * There should be one target array key value for each key attnum
1823  */
1824  if (tgt_nitems != pknumatts)
1825  ereport(ERROR,
1826  (errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
1827  errmsg("target key array length must match number of key attributes")));
1828 
1829  /*
1830  * Prep work is finally done. Go get the SQL string.
1831  */
1832  sql = get_sql_update(rel, pkattnums, pknumatts, src_pkattvals, tgt_pkattvals);
1833 
1834  /*
1835  * Now we can close the relation.
1836  */
1838 
1839  /*
1840  * And send it
1841  */
1843 }

References AccessShareLock, ACL_SELECT, cstring_to_text(), ereport, errcode(), errmsg(), ERROR, get_rel_from_relname(), get_sql_update(), get_text_array_contents(), PG_GETARG_ARRAYTYPE_P, PG_GETARG_INT32, PG_GETARG_POINTER, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, relation_close(), and validate_pkattnums().

◆ dblink_cancel_query()

Datum dblink_cancel_query ( PG_FUNCTION_ARGS  )

Definition at line 1329 of file dblink.c.

1330 {
1331  int res;
1332  PGconn *conn;
1333  PGcancel *cancel;
1334  char errbuf[256];
1335 
1336  dblink_init();
1338  cancel = PQgetCancel(conn);
1339 
1340  res = PQcancel(cancel, errbuf, 256);
1341  PQfreeCancel(cancel);
1342 
1343  if (res == 1)
1345  else
1347 }
PGcancel * PQgetCancel(PGconn *conn)
Definition: fe-connect.c:4704
int PQcancel(PGcancel *cancel, char *errbuf, int errbufsize)
Definition: fe-connect.c:4818
void PQfreeCancel(PGcancel *cancel)
Definition: fe-connect.c:4772
char * text_to_cstring(const text *t)
Definition: varlena.c:215

References conn, cstring_to_text(), dblink_get_named_conn(), dblink_init(), PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, PQcancel(), PQfreeCancel(), PQgetCancel(), res, and text_to_cstring().

◆ dblink_close()

Datum dblink_close ( PG_FUNCTION_ARGS  )

Definition at line 469 of file dblink.c.

470 {
471  PGconn *conn;
472  PGresult *res = NULL;
473  char *curname = NULL;
474  char *conname = NULL;
476  remoteConn *rconn = NULL;
477  bool fail = true; /* default to backward compatible behavior */
478 
479  dblink_init();
481 
482  if (PG_NARGS() == 1)
483  {
484  /* text */
485  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
486  rconn = pconn;
487  }
488  else if (PG_NARGS() == 2)
489  {
490  /* might be text,text or text,bool */
491  if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
492  {
493  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
494  fail = PG_GETARG_BOOL(1);
495  rconn = pconn;
496  }
497  else
498  {
499  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
500  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
501  rconn = getConnectionByName(conname);
502  }
503  }
504  if (PG_NARGS() == 3)
505  {
506  /* text,text,bool */
507  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
508  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
509  fail = PG_GETARG_BOOL(2);
510  rconn = getConnectionByName(conname);
511  }
512 
513  if (!rconn || !rconn->conn)
514  dblink_conn_not_avail(conname);
515 
516  conn = rconn->conn;
517 
518  appendStringInfo(&buf, "CLOSE %s", curname);
519 
520  /* close the cursor */
521  res = PQexec(conn, buf.data);
523  {
524  dblink_res_error(conn, conname, res, fail,
525  "while closing cursor \"%s\"", curname);
527  }
528 
529  PQclear(res);
530 
531  /* if we started a transaction, decrement cursor count */
532  if (rconn->newXactForCursor)
533  {
534  (rconn->openCursorCount)--;
535 
536  /* if count is zero, commit the transaction */
537  if (rconn->openCursorCount == 0)
538  {
539  rconn->newXactForCursor = false;
540 
541  res = PQexec(conn, "COMMIT");
543  dblink_res_internalerror(conn, res, "commit error");
544  PQclear(res);
545  }
546  }
547 
549 }
ExecStatusType PQresultStatus(const PGresult *res)
Definition: fe-exec.c:3244
PGresult * PQexec(PGconn *conn, const char *query)
Definition: fe-exec.c:2228
Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum)
Definition: fmgr.c:1881
#define PG_NARGS()
Definition: fmgr.h:203
#define PG_GETARG_BOOL(n)
Definition: fmgr.h:274
@ PGRES_COMMAND_OK
Definition: libpq-fe.h:97
static char * buf
Definition: pg_test_fsync.c:67
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition: stringinfo.c:91
void initStringInfo(StringInfo str)
Definition: stringinfo.c:59
bool newXactForCursor
Definition: dblink.c:71
int openCursorCount
Definition: dblink.c:70

References appendStringInfo(), buf, remoteConn::conn, conn, cstring_to_text(), dblink_init(), dblink_res_error(), get_fn_expr_argtype(), getConnectionByName(), initStringInfo(), remoteConn::newXactForCursor, remoteConn::openCursorCount, pconn, PG_GETARG_BOOL, PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_TEXT_P, PGRES_COMMAND_OK, PQclear(), PQexec(), PQresultStatus(), res, and text_to_cstring().

◆ dblink_connect()

Datum dblink_connect ( PG_FUNCTION_ARGS  )

Definition at line 259 of file dblink.c.

260 {
261  char *conname_or_str = NULL;
262  char *connstr = NULL;
263  char *connname = NULL;
264  char *msg;
265  PGconn *conn = NULL;
266  remoteConn *rconn = NULL;
267 
268  dblink_init();
269 
270  if (PG_NARGS() == 2)
271  {
272  conname_or_str = text_to_cstring(PG_GETARG_TEXT_PP(1));
273  connname = text_to_cstring(PG_GETARG_TEXT_PP(0));
274  }
275  else if (PG_NARGS() == 1)
276  conname_or_str = text_to_cstring(PG_GETARG_TEXT_PP(0));
277 
278  if (connname)
279  {
281  sizeof(remoteConn));
282  rconn->conn = NULL;
283  rconn->openCursorCount = 0;
284  rconn->newXactForCursor = false;
285  }
286 
287  /* first check for valid foreign data server */
288  connstr = get_connect_string(conname_or_str);
289  if (connstr == NULL)
290  connstr = conname_or_str;
291 
292  /* check password in connection string if not superuser */
294 
295  /* OK to make connection */
297 
298  if (PQstatus(conn) == CONNECTION_BAD)
299  {
300  msg = pchomp(PQerrorMessage(conn));
302  if (rconn)
303  pfree(rconn);
304 
305  ereport(ERROR,
306  (errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION),
307  errmsg("could not establish connection"),
308  errdetail_internal("%s", msg)));
309  }
310 
311  /* check password actually used if not superuser */
313 
314  /* attempt to set client encoding to match server encoding, if needed */
317 
318  if (connname)
319  {
320  rconn->conn = conn;
321  createNewConnection(connname, rconn);
322  }
323  else
324  {
325  if (pconn->conn)
327  pconn->conn = conn;
328  }
329 
331 }
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1229
char * PQerrorMessage(const PGconn *conn)
Definition: fe-connect.c:7245
ConnStatusType PQstatus(const PGconn *conn)
Definition: fe-connect.c:7192
int PQclientEncoding(const PGconn *conn)
Definition: fe-connect.c:7333
int PQsetClientEncoding(PGconn *conn, const char *encoding)
Definition: fe-connect.c:7341
static PGconn * libpqsrv_connect(const char *conninfo, uint32 wait_event_info)
@ CONNECTION_BAD
Definition: libpq-fe.h:61
int GetDatabaseEncoding(void)
Definition: mbutils.c:1268
const char * GetDatabaseEncodingName(void)
Definition: mbutils.c:1274
char * pchomp(const char *in)
Definition: mcxt.c:1672
MemoryContext TopMemoryContext
Definition: mcxt.c:141
void * MemoryContextAlloc(MemoryContext context, Size size)
Definition: mcxt.c:1021
static char * connstr
Definition: pg_dumpall.c:88
#define PG_WAIT_EXTENSION
Definition: wait_event.h:23

References remoteConn::conn, conn, CONNECTION_BAD, connstr, createNewConnection(), cstring_to_text(), dblink_connstr_check(), dblink_init(), dblink_security_check(), ereport, errcode(), errdetail_internal(), errmsg(), ERROR, get_connect_string(), GetDatabaseEncoding(), GetDatabaseEncodingName(), libpqsrv_connect(), libpqsrv_disconnect(), MemoryContextAlloc(), remoteConn::newXactForCursor, remoteConn::openCursorCount, pchomp(), pconn, pfree(), PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_TEXT_P, PG_WAIT_EXTENSION, PQclientEncoding(), PQerrorMessage(), PQsetClientEncoding(), PQstatus(), text_to_cstring(), and TopMemoryContext.

◆ dblink_connstr_check()

static void dblink_connstr_check ( const char *  connstr)
static

Definition at line 2665 of file dblink.c.

2666 {
2667  if (superuser())
2668  return;
2669 
2671  return;
2672 
2673 #ifdef ENABLE_GSS
2675  return;
2676 #endif
2677 
2678  ereport(ERROR,
2679  (errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
2680  errmsg("password or GSSAPI delegated credentials required"),
2681  errdetail("Non-superusers must provide a password in the connection string or send delegated GSSAPI credentials.")));
2682 }
bool be_gssapi_get_delegation(Port *port)
int errdetail(const char *fmt,...)
Definition: elog.c:1202
struct Port * MyProcPort
Definition: globals.c:47
bool superuser(void)
Definition: superuser.c:46

References be_gssapi_get_delegation(), connstr, dblink_connstr_has_pw(), ereport, errcode(), errdetail(), errmsg(), ERROR, MyProcPort, and superuser().

Referenced by dblink_connect(), and dblink_get_conn().

◆ dblink_connstr_has_pw()

static bool dblink_connstr_has_pw ( const char *  connstr)
static

Definition at line 2630 of file dblink.c.

2631 {
2634  bool connstr_gives_password = false;
2635 
2636  options = PQconninfoParse(connstr, NULL);
2637  if (options)
2638  {
2639  for (option = options; option->keyword != NULL; option++)
2640  {
2641  if (strcmp(option->keyword, "password") == 0)
2642  {
2643  if (option->val != NULL && option->val[0] != '\0')
2644  {
2645  connstr_gives_password = true;
2646  break;
2647  }
2648  }
2649  }
2651  }
2652 
2653  return connstr_gives_password;
2654 }
PQconninfoOption * PQconninfoParse(const char *conninfo, char **errmsg)
Definition: fe-connect.c:5826
void PQconninfoFree(PQconninfoOption *connOptions)
Definition: fe-connect.c:7078
static char ** options
int val
Definition: getopt_long.h:21

References connstr, options, PQconninfoFree(), PQconninfoParse(), and option::val.

Referenced by dblink_connstr_check(), and dblink_security_check().

◆ dblink_current_query()

Datum dblink_current_query ( PG_FUNCTION_ARGS  )

Definition at line 1853 of file dblink.c.

1854 {
1855  /* This is now just an alias for the built-in function current_query() */
1856  PG_RETURN_DATUM(current_query(fcinfo));
1857 }
Datum current_query(PG_FUNCTION_ARGS)
Definition: misc.c:212
#define PG_RETURN_DATUM(x)
Definition: fmgr.h:353

References current_query(), and PG_RETURN_DATUM.

◆ dblink_disconnect()

Datum dblink_disconnect ( PG_FUNCTION_ARGS  )

Definition at line 338 of file dblink.c.

339 {
340  char *conname = NULL;
341  remoteConn *rconn = NULL;
342  PGconn *conn = NULL;
343 
344  dblink_init();
345 
346  if (PG_NARGS() == 1)
347  {
348  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
349  rconn = getConnectionByName(conname);
350  if (rconn)
351  conn = rconn->conn;
352  }
353  else
354  conn = pconn->conn;
355 
356  if (!conn)
357  dblink_conn_not_avail(conname);
358 
360  if (rconn)
361  {
362  deleteConnection(conname);
363  pfree(rconn);
364  }
365  else
366  pconn->conn = NULL;
367 
369 }

References remoteConn::conn, conn, cstring_to_text(), dblink_init(), deleteConnection(), getConnectionByName(), libpqsrv_disconnect(), pconn, pfree(), PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_TEXT_P, and text_to_cstring().

◆ dblink_error_message()

Datum dblink_error_message ( PG_FUNCTION_ARGS  )

Definition at line 1362 of file dblink.c.

1363 {
1364  char *msg;
1365  PGconn *conn;
1366 
1367  dblink_init();
1369 
1370  msg = PQerrorMessage(conn);
1371  if (msg == NULL || msg[0] == '\0')
1373  else
1375 }

References conn, cstring_to_text(), dblink_get_named_conn(), dblink_init(), pchomp(), PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, PQerrorMessage(), and text_to_cstring().

◆ dblink_exec()

Datum dblink_exec ( PG_FUNCTION_ARGS  )

Definition at line 1382 of file dblink.c.

1383 {
1384  text *volatile sql_cmd_status = NULL;
1385  PGconn *volatile conn = NULL;
1386  volatile bool freeconn = false;
1387 
1388  dblink_init();
1389 
1390  PG_TRY();
1391  {
1392  PGresult *res = NULL;
1393  char *sql = NULL;
1394  char *conname = NULL;
1395  bool fail = true; /* default to backward compatible behavior */
1396 
1397  if (PG_NARGS() == 3)
1398  {
1399  /* must be text,text,bool */
1400  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
1402  fail = PG_GETARG_BOOL(2);
1403  dblink_get_conn(conname, &conn, &conname, &freeconn);
1404  }
1405  else if (PG_NARGS() == 2)
1406  {
1407  /* might be text,text or text,bool */
1408  if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
1409  {
1411  fail = PG_GETARG_BOOL(1);
1412  conn = pconn->conn;
1413  }
1414  else
1415  {
1416  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
1418  dblink_get_conn(conname, &conn, &conname, &freeconn);
1419  }
1420  }
1421  else if (PG_NARGS() == 1)
1422  {
1423  /* must be single text argument */
1424  conn = pconn->conn;
1426  }
1427  else
1428  /* shouldn't happen */
1429  elog(ERROR, "wrong number of arguments");
1430 
1431  if (!conn)
1432  dblink_conn_not_avail(conname);
1433 
1434  res = PQexec(conn, sql);
1435  if (!res ||
1438  {
1439  dblink_res_error(conn, conname, res, fail,
1440  "while executing command");
1441 
1442  /*
1443  * and save a copy of the command status string to return as our
1444  * result tuple
1445  */
1446  sql_cmd_status = cstring_to_text("ERROR");
1447  }
1448  else if (PQresultStatus(res) == PGRES_COMMAND_OK)
1449  {
1450  /*
1451  * and save a copy of the command status string to return as our
1452  * result tuple
1453  */
1454  sql_cmd_status = cstring_to_text(PQcmdStatus(res));
1455  PQclear(res);
1456  }
1457  else
1458  {
1459  PQclear(res);
1460  ereport(ERROR,
1461  (errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
1462  errmsg("statement returning results not allowed")));
1463  }
1464  }
1465  PG_FINALLY();
1466  {
1467  /* if needed, close the connection to the database */
1468  if (freeconn)
1470  }
1471  PG_END_TRY();
1472 
1473  PG_RETURN_TEXT_P(sql_cmd_status);
1474 }
#define PG_TRY(...)
Definition: elog.h:370
#define PG_END_TRY(...)
Definition: elog.h:395
#define PG_FINALLY(...)
Definition: elog.h:387
char * PQcmdStatus(PGresult *res)
Definition: fe-exec.c:3585
@ PGRES_TUPLES_OK
Definition: libpq-fe.h:100

References remoteConn::conn, conn, cstring_to_text(), dblink_get_conn(), dblink_init(), dblink_res_error(), elog(), ereport, errcode(), errmsg(), ERROR, get_fn_expr_argtype(), libpqsrv_disconnect(), pconn, PG_END_TRY, PG_FINALLY, PG_GETARG_BOOL, PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_TEXT_P, PG_TRY, PGRES_COMMAND_OK, PGRES_TUPLES_OK, PQclear(), PQcmdStatus(), PQexec(), PQresultStatus(), res, and text_to_cstring().

◆ dblink_fdw_validator()

Datum dblink_fdw_validator ( PG_FUNCTION_ARGS  )

Definition at line 1924 of file dblink.c.

1925 {
1926  List *options_list = untransformRelOptions(PG_GETARG_DATUM(0));
1927  Oid context = PG_GETARG_OID(1);
1928  ListCell *cell;
1929 
1930  static const PQconninfoOption *options = NULL;
1931 
1932  /*
1933  * Get list of valid libpq options.
1934  *
1935  * To avoid unnecessary work, we get the list once and use it throughout
1936  * the lifetime of this backend process. We don't need to care about
1937  * memory context issues, because PQconndefaults allocates with malloc.
1938  */
1939  if (!options)
1940  {
1941  options = PQconndefaults();
1942  if (!options) /* assume reason for failure is OOM */
1943  ereport(ERROR,
1944  (errcode(ERRCODE_FDW_OUT_OF_MEMORY),
1945  errmsg("out of memory"),
1946  errdetail("Could not get libpq's default connection options.")));
1947  }
1948 
1949  /* Validate each supplied option. */
1950  foreach(cell, options_list)
1951  {
1952  DefElem *def = (DefElem *) lfirst(cell);
1953 
1954  if (!is_valid_dblink_option(options, def->defname, context))
1955  {
1956  /*
1957  * Unknown option, or invalid option for the context specified, so
1958  * complain about it. Provide a hint with a valid option that
1959  * looks similar, if there is one.
1960  */
1961  const PQconninfoOption *opt;
1962  const char *closest_match;
1964  bool has_valid_options = false;
1965 
1967  for (opt = options; opt->keyword; opt++)
1968  {
1969  if (is_valid_dblink_option(options, opt->keyword, context))
1970  {
1971  has_valid_options = true;
1973  }
1974  }
1975 
1976  closest_match = getClosestMatch(&match_state);
1977  ereport(ERROR,
1978  (errcode(ERRCODE_FDW_OPTION_NAME_NOT_FOUND),
1979  errmsg("invalid option \"%s\"", def->defname),
1980  has_valid_options ? closest_match ?
1981  errhint("Perhaps you meant the option \"%s\".",
1982  closest_match) : 0 :
1983  errhint("There are no valid options in this context.")));
1984  }
1985  }
1986 
1987  PG_RETURN_VOID();
1988 }
int errhint(const char *fmt,...)
Definition: elog.c:1316
PQconninfoOption * PQconndefaults(void)
Definition: fe-connect.c:1780
#define PG_RETURN_VOID()
Definition: fmgr.h:349
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268
struct parser_state match_state[5]
#define lfirst(lc)
Definition: pg_list.h:172
unsigned int Oid
Definition: postgres_ext.h:31
List * untransformRelOptions(Datum options)
Definition: reloptions.c:1333
char * defname
Definition: parsenodes.h:810
Definition: pg_list.h:54
const char * getClosestMatch(ClosestMatchState *state)
Definition: varlena.c:6167
void initClosestMatch(ClosestMatchState *state, const char *source, int max_d)
Definition: varlena.c:6112
void updateClosestMatch(ClosestMatchState *state, const char *candidate)
Definition: varlena.c:6132

References DefElem::defname, ereport, errcode(), errdetail(), errhint(), errmsg(), ERROR, getClosestMatch(), initClosestMatch(), is_valid_dblink_option(), _PQconninfoOption::keyword, lfirst, match_state, PG_GETARG_DATUM, PG_GETARG_OID, PG_RETURN_VOID, PQconndefaults(), untransformRelOptions(), and updateClosestMatch().

◆ dblink_fetch()

Datum dblink_fetch ( PG_FUNCTION_ARGS  )

Definition at line 556 of file dblink.c.

557 {
558  PGresult *res = NULL;
559  char *conname = NULL;
560  remoteConn *rconn = NULL;
561  PGconn *conn = NULL;
563  char *curname = NULL;
564  int howmany = 0;
565  bool fail = true; /* default to backward compatible */
566 
567  prepTuplestoreResult(fcinfo);
568 
569  dblink_init();
570 
571  if (PG_NARGS() == 4)
572  {
573  /* text,text,int,bool */
574  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
575  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
576  howmany = PG_GETARG_INT32(2);
577  fail = PG_GETARG_BOOL(3);
578 
579  rconn = getConnectionByName(conname);
580  if (rconn)
581  conn = rconn->conn;
582  }
583  else if (PG_NARGS() == 3)
584  {
585  /* text,text,int or text,int,bool */
586  if (get_fn_expr_argtype(fcinfo->flinfo, 2) == BOOLOID)
587  {
588  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
589  howmany = PG_GETARG_INT32(1);
590  fail = PG_GETARG_BOOL(2);
591  conn = pconn->conn;
592  }
593  else
594  {
595  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
596  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
597  howmany = PG_GETARG_INT32(2);
598 
599  rconn = getConnectionByName(conname);
600  if (rconn)
601  conn = rconn->conn;
602  }
603  }
604  else if (PG_NARGS() == 2)
605  {
606  /* text,int */
607  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
608  howmany = PG_GETARG_INT32(1);
609  conn = pconn->conn;
610  }
611 
612  if (!conn)
613  dblink_conn_not_avail(conname);
614 
616  appendStringInfo(&buf, "FETCH %d FROM %s", howmany, curname);
617 
618  /*
619  * Try to execute the query. Note that since libpq uses malloc, the
620  * PGresult will be long-lived even though we are still in a short-lived
621  * memory context.
622  */
623  res = PQexec(conn, buf.data);
624  if (!res ||
627  {
628  dblink_res_error(conn, conname, res, fail,
629  "while fetching from cursor \"%s\"", curname);
630  return (Datum) 0;
631  }
632  else if (PQresultStatus(res) == PGRES_COMMAND_OK)
633  {
634  /* cursor does not exist - closed already or bad name */
635  PQclear(res);
636  ereport(ERROR,
637  (errcode(ERRCODE_INVALID_CURSOR_NAME),
638  errmsg("cursor \"%s\" does not exist", curname)));
639  }
640 
641  materializeResult(fcinfo, conn, res);
642  return (Datum) 0;
643 }
uintptr_t Datum
Definition: postgres.h:64

References appendStringInfo(), buf, remoteConn::conn, conn, dblink_init(), dblink_res_error(), ereport, errcode(), errmsg(), ERROR, get_fn_expr_argtype(), getConnectionByName(), initStringInfo(), materializeResult(), pconn, PG_GETARG_BOOL, PG_GETARG_INT32, PG_GETARG_TEXT_PP, PG_NARGS, PGRES_COMMAND_OK, PGRES_TUPLES_OK, PQclear(), PQexec(), PQresultStatus(), prepTuplestoreResult(), res, and text_to_cstring().

◆ dblink_get_conn()

static void dblink_get_conn ( char *  conname_or_str,
PGconn *volatile *  conn_p,
char **  conname_p,
volatile bool freeconn_p 
)
static

Definition at line 182 of file dblink.c.

184 {
185  remoteConn *rconn = getConnectionByName(conname_or_str);
186  PGconn *conn;
187  char *conname;
188  bool freeconn;
189 
190  if (rconn)
191  {
192  conn = rconn->conn;
193  conname = conname_or_str;
194  freeconn = false;
195  }
196  else
197  {
198  const char *connstr;
199 
200  connstr = get_connect_string(conname_or_str);
201  if (connstr == NULL)
202  connstr = conname_or_str;
204 
205  /* OK to make connection */
207 
208  if (PQstatus(conn) == CONNECTION_BAD)
209  {
210  char *msg = pchomp(PQerrorMessage(conn));
211 
213  ereport(ERROR,
214  (errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION),
215  errmsg("could not establish connection"),
216  errdetail_internal("%s", msg)));
217  }
221  freeconn = true;
222  conname = NULL;
223  }
224 
225  *conn_p = conn;
226  *conname_p = conname;
227  *freeconn_p = freeconn;
228 }

References remoteConn::conn, conn, CONNECTION_BAD, connstr, dblink_connstr_check(), dblink_security_check(), ereport, errcode(), errdetail_internal(), errmsg(), ERROR, get_connect_string(), getConnectionByName(), GetDatabaseEncoding(), GetDatabaseEncodingName(), libpqsrv_connect(), libpqsrv_disconnect(), pchomp(), PG_WAIT_EXTENSION, PQclientEncoding(), PQerrorMessage(), PQsetClientEncoding(), and PQstatus().

Referenced by dblink_exec(), and dblink_record_internal().

◆ dblink_get_connections()

Datum dblink_get_connections ( PG_FUNCTION_ARGS  )

Definition at line 1270 of file dblink.c.

1271 {
1272  HASH_SEQ_STATUS status;
1273  remoteConnHashEnt *hentry;
1274  ArrayBuildState *astate = NULL;
1275 
1276  if (remoteConnHash)
1277  {
1278  hash_seq_init(&status, remoteConnHash);
1279  while ((hentry = (remoteConnHashEnt *) hash_seq_search(&status)) != NULL)
1280  {
1281  /* stash away current value */
1282  astate = accumArrayResult(astate,
1283  CStringGetTextDatum(hentry->name),
1284  false, TEXTOID, CurrentMemoryContext);
1285  }
1286  }
1287 
1288  if (astate)
1291  else
1292  PG_RETURN_NULL();
1293 }
ArrayBuildState * accumArrayResult(ArrayBuildState *astate, Datum dvalue, bool disnull, Oid element_type, MemoryContext rcontext)
Definition: arrayfuncs.c:5318
Datum makeArrayResult(ArrayBuildState *astate, MemoryContext rcontext)
Definition: arrayfuncs.c:5382
#define CStringGetTextDatum(s)
Definition: builtins.h:94
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition: dynahash.c:1431
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition: dynahash.c:1421
#define PG_RETURN_NULL()
Definition: fmgr.h:345
MemoryContext CurrentMemoryContext
Definition: mcxt.c:135

References accumArrayResult(), CStringGetTextDatum, CurrentMemoryContext, hash_seq_init(), hash_seq_search(), makeArrayResult(), remoteConnHashEnt::name, PG_RETURN_DATUM, PG_RETURN_NULL, and remoteConnHash.

◆ dblink_get_named_conn()

static PGconn* dblink_get_named_conn ( const char *  conname)
static

Definition at line 231 of file dblink.c.

232 {
233  remoteConn *rconn = getConnectionByName(conname);
234 
235  if (rconn)
236  return rconn->conn;
237 
238  dblink_conn_not_avail(conname);
239  return NULL; /* keep compiler quiet */
240 }

References remoteConn::conn, and getConnectionByName().

Referenced by dblink_cancel_query(), dblink_error_message(), dblink_get_notify(), dblink_is_busy(), dblink_record_internal(), and dblink_send_query().

◆ dblink_get_notify()

Datum dblink_get_notify ( PG_FUNCTION_ARGS  )

Definition at line 1871 of file dblink.c.

1872 {
1873  PGconn *conn;
1874  PGnotify *notify;
1875  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
1876 
1877  dblink_init();
1878  if (PG_NARGS() == 1)
1880  else
1881  conn = pconn->conn;
1882 
1883  InitMaterializedSRF(fcinfo, 0);
1884 
1886  while ((notify = PQnotifies(conn)) != NULL)
1887  {
1889  bool nulls[DBLINK_NOTIFY_COLS];
1890 
1891  memset(values, 0, sizeof(values));
1892  memset(nulls, 0, sizeof(nulls));
1893 
1894  if (notify->relname != NULL)
1895  values[0] = CStringGetTextDatum(notify->relname);
1896  else
1897  nulls[0] = true;
1898 
1899  values[1] = Int32GetDatum(notify->be_pid);
1900 
1901  if (notify->extra != NULL)
1902  values[2] = CStringGetTextDatum(notify->extra);
1903  else
1904  nulls[2] = true;
1905 
1906  tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc, values, nulls);
1907 
1908  PQfreemem(notify);
1910  }
1911 
1912  return (Datum) 0;
1913 }
static Datum values[MAXATTR]
Definition: bootstrap.c:156
void PQfreemem(void *ptr)
Definition: fe-exec.c:3869
PGnotify * PQnotifies(PGconn *conn)
Definition: fe-exec.c:2551
int PQconsumeInput(PGconn *conn)
Definition: fe-exec.c:1957
void InitMaterializedSRF(FunctionCallInfo fcinfo, bits32 flags)
Definition: funcapi.c:76
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212
TupleDesc setDesc
Definition: execnodes.h:334
Tuplestorestate * setResult
Definition: execnodes.h:333
int be_pid
Definition: libpq-fe.h:190
char * relname
Definition: libpq-fe.h:189
char * extra
Definition: libpq-fe.h:191
void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc, Datum *values, bool *isnull)
Definition: tuplestore.c:750

References pgNotify::be_pid, remoteConn::conn, conn, CStringGetTextDatum, dblink_get_named_conn(), dblink_init(), DBLINK_NOTIFY_COLS, pgNotify::extra, InitMaterializedSRF(), Int32GetDatum(), pconn, PG_GETARG_TEXT_PP, PG_NARGS, PQconsumeInput(), PQfreemem(), PQnotifies(), pgNotify::relname, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, text_to_cstring(), tuplestore_putvalues(), and values.

◆ dblink_get_pkey()

Datum dblink_get_pkey ( PG_FUNCTION_ARGS  )

Definition at line 1485 of file dblink.c.

1486 {
1487  int16 indnkeyatts;
1488  char **results;
1489  FuncCallContext *funcctx;
1490  int32 call_cntr;
1491  int32 max_calls;
1492  AttInMetadata *attinmeta;
1493  MemoryContext oldcontext;
1494 
1495  /* stuff done only on the first call of the function */
1496  if (SRF_IS_FIRSTCALL())
1497  {
1498  Relation rel;
1499  TupleDesc tupdesc;
1500 
1501  /* create a function context for cross-call persistence */
1502  funcctx = SRF_FIRSTCALL_INIT();
1503 
1504  /*
1505  * switch to memory context appropriate for multiple function calls
1506  */
1507  oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
1508 
1509  /* open target relation */
1511 
1512  /* get the array of attnums */
1513  results = get_pkey_attnames(rel, &indnkeyatts);
1514 
1516 
1517  /*
1518  * need a tuple descriptor representing one INT and one TEXT column
1519  */
1520  tupdesc = CreateTemplateTupleDesc(2);
1521  TupleDescInitEntry(tupdesc, (AttrNumber) 1, "position",
1522  INT4OID, -1, 0);
1523  TupleDescInitEntry(tupdesc, (AttrNumber) 2, "colname",
1524  TEXTOID, -1, 0);
1525 
1526  /*
1527  * Generate attribute metadata needed later to produce tuples from raw
1528  * C strings
1529  */
1530  attinmeta = TupleDescGetAttInMetadata(tupdesc);
1531  funcctx->attinmeta = attinmeta;
1532 
1533  if ((results != NULL) && (indnkeyatts > 0))
1534  {
1535  funcctx->max_calls = indnkeyatts;
1536 
1537  /* got results, keep track of them */
1538  funcctx->user_fctx = results;
1539  }
1540  else
1541  {
1542  /* fast track when no results */
1543  MemoryContextSwitchTo(oldcontext);
1544  SRF_RETURN_DONE(funcctx);
1545  }
1546 
1547  MemoryContextSwitchTo(oldcontext);
1548  }
1549 
1550  /* stuff done on every call of the function */
1551  funcctx = SRF_PERCALL_SETUP();
1552 
1553  /*
1554  * initialize per-call variables
1555  */
1556  call_cntr = funcctx->call_cntr;
1557  max_calls = funcctx->max_calls;
1558 
1559  results = (char **) funcctx->user_fctx;
1560  attinmeta = funcctx->attinmeta;
1561 
1562  if (call_cntr < max_calls) /* do when there is more left to send */
1563  {
1564  char **values;
1565  HeapTuple tuple;
1566  Datum result;
1567 
1568  values = palloc_array(char *, 2);
1569  values[0] = psprintf("%d", call_cntr + 1);
1570  values[1] = results[call_cntr];
1571 
1572  /* build the tuple */
1573  tuple = BuildTupleFromCStrings(attinmeta, values);
1574 
1575  /* make the tuple into a datum */
1576  result = HeapTupleGetDatum(tuple);
1577 
1578  SRF_RETURN_NEXT(funcctx, result);
1579  }
1580  else
1581  {
1582  /* do when there is no more left */
1583  SRF_RETURN_DONE(funcctx);
1584  }
1585 }
int16 AttrNumber
Definition: attnum.h:21
signed short int16
Definition: c.h:477
HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values)
Definition: execTuples.c:2136
AttInMetadata * TupleDescGetAttInMetadata(TupleDesc tupdesc)
Definition: execTuples.c:2087
#define palloc_array(type, count)
Definition: fe_memutils.h:64
#define SRF_IS_FIRSTCALL()
Definition: funcapi.h:304
#define SRF_PERCALL_SETUP()
Definition: funcapi.h:308
#define SRF_RETURN_NEXT(_funcctx, _result)
Definition: funcapi.h:310
#define SRF_FIRSTCALL_INIT()
Definition: funcapi.h:306
static Datum HeapTupleGetDatum(const HeapTupleData *tuple)
Definition: funcapi.h:230
#define SRF_RETURN_DONE(_funcctx)
Definition: funcapi.h:328
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
void * user_fctx
Definition: funcapi.h:82
uint64 max_calls
Definition: funcapi.h:74
uint64 call_cntr
Definition: funcapi.h:65
AttInMetadata * attinmeta
Definition: funcapi.h:91
MemoryContext multi_call_memory_ctx
Definition: funcapi.h:101
TupleDesc CreateTemplateTupleDesc(int natts)
Definition: tupdesc.c:45
void TupleDescInitEntry(TupleDesc desc, AttrNumber attributeNumber, const char *attributeName, Oid oidtypeid, int32 typmod, int attdim)
Definition: tupdesc.c:583

References AccessShareLock, ACL_SELECT, FuncCallContext::attinmeta, BuildTupleFromCStrings(), FuncCallContext::call_cntr, CreateTemplateTupleDesc(), get_pkey_attnames(), get_rel_from_relname(), HeapTupleGetDatum(), if(), FuncCallContext::max_calls, MemoryContextSwitchTo(), FuncCallContext::multi_call_memory_ctx, palloc_array, PG_GETARG_TEXT_PP, psprintf(), relation_close(), SRF_FIRSTCALL_INIT, SRF_IS_FIRSTCALL, SRF_PERCALL_SETUP, SRF_RETURN_DONE, SRF_RETURN_NEXT, TupleDescGetAttInMetadata(), TupleDescInitEntry(), FuncCallContext::user_fctx, and values.

◆ dblink_get_result()

Datum dblink_get_result ( PG_FUNCTION_ARGS  )

Definition at line 682 of file dblink.c.

683 {
684  return dblink_record_internal(fcinfo, true);
685 }

References dblink_record_internal().

◆ dblink_init()

◆ dblink_is_busy()

Datum dblink_is_busy ( PG_FUNCTION_ARGS  )

Definition at line 1305 of file dblink.c.

1306 {
1307  PGconn *conn;
1308 
1309  dblink_init();
1311 
1314 }
int PQisBusy(PGconn *conn)
Definition: fe-exec.c:2004
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354

References conn, dblink_get_named_conn(), dblink_init(), PG_GETARG_TEXT_PP, PG_RETURN_INT32, PQconsumeInput(), PQisBusy(), and text_to_cstring().

◆ dblink_open()

Datum dblink_open ( PG_FUNCTION_ARGS  )

Definition at line 376 of file dblink.c.

377 {
378  PGresult *res = NULL;
379  PGconn *conn;
380  char *curname = NULL;
381  char *sql = NULL;
382  char *conname = NULL;
384  remoteConn *rconn = NULL;
385  bool fail = true; /* default to backward compatible behavior */
386 
387  dblink_init();
389 
390  if (PG_NARGS() == 2)
391  {
392  /* text,text */
393  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
395  rconn = pconn;
396  }
397  else if (PG_NARGS() == 3)
398  {
399  /* might be text,text,text or text,text,bool */
400  if (get_fn_expr_argtype(fcinfo->flinfo, 2) == BOOLOID)
401  {
402  curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
404  fail = PG_GETARG_BOOL(2);
405  rconn = pconn;
406  }
407  else
408  {
409  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
410  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
412  rconn = getConnectionByName(conname);
413  }
414  }
415  else if (PG_NARGS() == 4)
416  {
417  /* text,text,text,bool */
418  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
419  curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
421  fail = PG_GETARG_BOOL(3);
422  rconn = getConnectionByName(conname);
423  }
424 
425  if (!rconn || !rconn->conn)
426  dblink_conn_not_avail(conname);
427 
428  conn = rconn->conn;
429 
430  /* If we are not in a transaction, start one */
432  {
433  res = PQexec(conn, "BEGIN");
435  dblink_res_internalerror(conn, res, "begin error");
436  PQclear(res);
437  rconn->newXactForCursor = true;
438 
439  /*
440  * Since transaction state was IDLE, we force cursor count to
441  * initially be 0. This is needed as a previous ABORT might have wiped
442  * out our transaction without maintaining the cursor count for us.
443  */
444  rconn->openCursorCount = 0;
445  }
446 
447  /* if we started a transaction, increment cursor count */
448  if (rconn->newXactForCursor)
449  (rconn->openCursorCount)++;
450 
451  appendStringInfo(&buf, "DECLARE %s CURSOR FOR %s", curname, sql);
452  res = PQexec(conn, buf.data);
454  {
455  dblink_res_error(conn, conname, res, fail,
456  "while opening cursor \"%s\"", curname);
458  }
459 
460  PQclear(res);
462 }
PGTransactionStatusType PQtransactionStatus(const PGconn *conn)
Definition: fe-connect.c:7200
@ PQTRANS_IDLE
Definition: libpq-fe.h:118

References appendStringInfo(), buf, remoteConn::conn, conn, cstring_to_text(), dblink_init(), dblink_res_error(), get_fn_expr_argtype(), getConnectionByName(), initStringInfo(), remoteConn::newXactForCursor, remoteConn::openCursorCount, pconn, PG_GETARG_BOOL, PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_TEXT_P, PGRES_COMMAND_OK, PQclear(), PQexec(), PQresultStatus(), PQTRANS_IDLE, PQtransactionStatus(), res, and text_to_cstring().

◆ dblink_record()

Datum dblink_record ( PG_FUNCTION_ARGS  )

Definition at line 650 of file dblink.c.

651 {
652  return dblink_record_internal(fcinfo, false);
653 }

References dblink_record_internal().

◆ dblink_record_internal()

static Datum dblink_record_internal ( FunctionCallInfo  fcinfo,
bool  is_async 
)
static

Definition at line 688 of file dblink.c.

689 {
690  PGconn *volatile conn = NULL;
691  volatile bool freeconn = false;
692 
693  prepTuplestoreResult(fcinfo);
694 
695  dblink_init();
696 
697  PG_TRY();
698  {
699  char *sql = NULL;
700  char *conname = NULL;
701  bool fail = true; /* default to backward compatible */
702 
703  if (!is_async)
704  {
705  if (PG_NARGS() == 3)
706  {
707  /* text,text,bool */
708  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
710  fail = PG_GETARG_BOOL(2);
711  dblink_get_conn(conname, &conn, &conname, &freeconn);
712  }
713  else if (PG_NARGS() == 2)
714  {
715  /* text,text or text,bool */
716  if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
717  {
719  fail = PG_GETARG_BOOL(1);
720  conn = pconn->conn;
721  }
722  else
723  {
724  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
726  dblink_get_conn(conname, &conn, &conname, &freeconn);
727  }
728  }
729  else if (PG_NARGS() == 1)
730  {
731  /* text */
732  conn = pconn->conn;
734  }
735  else
736  /* shouldn't happen */
737  elog(ERROR, "wrong number of arguments");
738  }
739  else /* is_async */
740  {
741  /* get async result */
742  conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
743 
744  if (PG_NARGS() == 2)
745  {
746  /* text,bool */
747  fail = PG_GETARG_BOOL(1);
748  conn = dblink_get_named_conn(conname);
749  }
750  else if (PG_NARGS() == 1)
751  {
752  /* text */
753  conn = dblink_get_named_conn(conname);
754  }
755  else
756  /* shouldn't happen */
757  elog(ERROR, "wrong number of arguments");
758  }
759 
760  if (!conn)
761  dblink_conn_not_avail(conname);
762 
763  if (!is_async)
764  {
765  /* synchronous query, use efficient tuple collection method */
766  materializeQueryResult(fcinfo, conn, conname, sql, fail);
767  }
768  else
769  {
770  /* async result retrieval, do it the old way */
772 
773  /* NULL means we're all done with the async results */
774  if (res)
775  {
778  {
779  dblink_res_error(conn, conname, res, fail,
780  "while executing query");
781  /* if fail isn't set, we'll return an empty query result */
782  }
783  else
784  {
785  materializeResult(fcinfo, conn, res);
786  }
787  }
788  }
789  }
790  PG_FINALLY();
791  {
792  /* if needed, close the connection to the database */
793  if (freeconn)
795  }
796  PG_END_TRY();
797 
798  return (Datum) 0;
799 }
PGresult * PQgetResult(PGconn *conn)
Definition: fe-exec.c:2035
FmgrInfo * flinfo
Definition: fmgr.h:87

References remoteConn::conn, conn, dblink_get_conn(), dblink_get_named_conn(), dblink_init(), dblink_res_error(), elog(), ERROR, FunctionCallInfoBaseData::flinfo, get_fn_expr_argtype(), libpqsrv_disconnect(), materializeQueryResult(), materializeResult(), pconn, PG_END_TRY, PG_FINALLY, PG_GETARG_BOOL, PG_GETARG_TEXT_PP, PG_NARGS, PG_TRY, PGRES_COMMAND_OK, PGRES_TUPLES_OK, PQgetResult(), PQresultStatus(), prepTuplestoreResult(), res, and text_to_cstring().

Referenced by dblink_get_result(), and dblink_record().

◆ dblink_res_error()

static void dblink_res_error ( PGconn conn,
const char *  conname,
PGresult res,
bool  fail,
const char *  fmt,
  ... 
)
static

Definition at line 2693 of file dblink.c.

2695 {
2696  int level;
2697  char *pg_diag_sqlstate = PQresultErrorField(res, PG_DIAG_SQLSTATE);
2698  char *pg_diag_message_primary = PQresultErrorField(res, PG_DIAG_MESSAGE_PRIMARY);
2699  char *pg_diag_message_detail = PQresultErrorField(res, PG_DIAG_MESSAGE_DETAIL);
2700  char *pg_diag_message_hint = PQresultErrorField(res, PG_DIAG_MESSAGE_HINT);
2701  char *pg_diag_context = PQresultErrorField(res, PG_DIAG_CONTEXT);
2702  int sqlstate;
2703  char *message_primary;
2704  char *message_detail;
2705  char *message_hint;
2706  char *message_context;
2707  va_list ap;
2708  char dblink_context_msg[512];
2709 
2710  if (fail)
2711  level = ERROR;
2712  else
2713  level = NOTICE;
2714 
2715  if (pg_diag_sqlstate)
2716  sqlstate = MAKE_SQLSTATE(pg_diag_sqlstate[0],
2717  pg_diag_sqlstate[1],
2718  pg_diag_sqlstate[2],
2719  pg_diag_sqlstate[3],
2720  pg_diag_sqlstate[4]);
2721  else
2722  sqlstate = ERRCODE_CONNECTION_FAILURE;
2723 
2724  message_primary = xpstrdup(pg_diag_message_primary);
2725  message_detail = xpstrdup(pg_diag_message_detail);
2726  message_hint = xpstrdup(pg_diag_message_hint);
2727  message_context = xpstrdup(pg_diag_context);
2728 
2729  /*
2730  * If we don't get a message from the PGresult, try the PGconn. This is
2731  * needed because for connection-level failures, PQexec may just return
2732  * NULL, not a PGresult at all.
2733  */
2734  if (message_primary == NULL)
2735  message_primary = pchomp(PQerrorMessage(conn));
2736 
2737  /*
2738  * Now that we've copied all the data we need out of the PGresult, it's
2739  * safe to free it. We must do this to avoid PGresult leakage. We're
2740  * leaking all the strings too, but those are in palloc'd memory that will
2741  * get cleaned up eventually.
2742  */
2743  PQclear(res);
2744 
2745  /*
2746  * Format the basic errcontext string. Below, we'll add on something
2747  * about the connection name. That's a violation of the translatability
2748  * guidelines about constructing error messages out of parts, but since
2749  * there's no translation support for dblink, there's no need to worry
2750  * about that (yet).
2751  */
2752  va_start(ap, fmt);
2753  vsnprintf(dblink_context_msg, sizeof(dblink_context_msg), fmt, ap);
2754  va_end(ap);
2755 
2756  ereport(level,
2757  (errcode(sqlstate),
2758  (message_primary != NULL && message_primary[0] != '\0') ?
2759  errmsg_internal("%s", message_primary) :
2760  errmsg("could not obtain message string for remote error"),
2761  message_detail ? errdetail_internal("%s", message_detail) : 0,
2762  message_hint ? errhint("%s", message_hint) : 0,
2763  message_context ? (errcontext("%s", message_context)) : 0,
2764  conname ?
2765  (errcontext("%s on dblink connection named \"%s\"",
2766  dblink_context_msg, conname)) :
2767  (errcontext("%s on unnamed dblink connection",
2768  dblink_context_msg))));
2769 }
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1156
#define errcontext
Definition: elog.h:196
#define MAKE_SQLSTATE(ch1, ch2, ch3, ch4, ch5)
Definition: elog.h:56
#define NOTICE
Definition: elog.h:35
char * PQresultErrorField(const PGresult *res, int fieldcode)
Definition: fe-exec.c:3299
static void const char * fmt
va_end(args)
va_start(args, fmt)
#define vsnprintf
Definition: port.h:237
#define PG_DIAG_MESSAGE_HINT
Definition: postgres_ext.h:59
#define PG_DIAG_SQLSTATE
Definition: postgres_ext.h:56
#define PG_DIAG_MESSAGE_PRIMARY
Definition: postgres_ext.h:57
#define PG_DIAG_MESSAGE_DETAIL
Definition: postgres_ext.h:58
#define PG_DIAG_CONTEXT
Definition: postgres_ext.h:63

References conn, ereport, errcode(), errcontext, errdetail_internal(), errhint(), errmsg(), errmsg_internal(), ERROR, fmt, MAKE_SQLSTATE, NOTICE, pchomp(), PG_DIAG_CONTEXT, PG_DIAG_MESSAGE_DETAIL, PG_DIAG_MESSAGE_HINT, PG_DIAG_MESSAGE_PRIMARY, PG_DIAG_SQLSTATE, PQclear(), PQerrorMessage(), PQresultErrorField(), res, va_end(), va_start(), vsnprintf, and xpstrdup().

Referenced by dblink_close(), dblink_exec(), dblink_fetch(), dblink_open(), and dblink_record_internal().

◆ dblink_security_check()

static void dblink_security_check ( PGconn conn,
remoteConn rconn,
const char *  connstr 
)
static

Definition at line 2595 of file dblink.c.

2596 {
2597  /* Superuser bypasses security check */
2598  if (superuser())
2599  return;
2600 
2601  /* If password was used to connect, make sure it was one provided */
2603  return;
2604 
2605 #ifdef ENABLE_GSS
2606  /* If GSSAPI creds used to connect, make sure it was one delegated */
2608  return;
2609 #endif
2610 
2611  /* Otherwise, fail out */
2613  if (rconn)
2614  pfree(rconn);
2615 
2616  ereport(ERROR,
2617  (errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
2618  errmsg("password or GSSAPI delegated credentials required"),
2619  errdetail("Non-superusers may only connect using credentials they provide, eg: password in connection string or delegated GSSAPI credentials"),
2620  errhint("Ensure provided credentials match target server's authentication method.")));
2621 }
int PQconnectionUsedPassword(const PGconn *conn)
Definition: fe-connect.c:7311
int PQconnectionUsedGSSAPI(const PGconn *conn)
Definition: fe-connect.c:7322

References be_gssapi_get_delegation(), conn, connstr, dblink_connstr_has_pw(), ereport, errcode(), errdetail(), errhint(), errmsg(), ERROR, libpqsrv_disconnect(), MyProcPort, pfree(), PQconnectionUsedGSSAPI(), PQconnectionUsedPassword(), and superuser().

Referenced by dblink_connect(), and dblink_get_conn().

◆ dblink_send_query()

Datum dblink_send_query ( PG_FUNCTION_ARGS  )

Definition at line 657 of file dblink.c.

658 {
659  PGconn *conn;
660  char *sql;
661  int retval;
662 
663  if (PG_NARGS() == 2)
664  {
667  }
668  else
669  /* shouldn't happen */
670  elog(ERROR, "wrong number of arguments");
671 
672  /* async query send */
673  retval = PQsendQuery(conn, sql);
674  if (retval != 1)
675  elog(NOTICE, "could not send query: %s", pchomp(PQerrorMessage(conn)));
676 
677  PG_RETURN_INT32(retval);
678 }
int PQsendQuery(PGconn *conn, const char *query)
Definition: fe-exec.c:1422

References conn, dblink_get_named_conn(), elog(), ERROR, NOTICE, pchomp(), PG_GETARG_TEXT_PP, PG_NARGS, PG_RETURN_INT32, PQerrorMessage(), PQsendQuery(), and text_to_cstring().

◆ deleteConnection()

static void deleteConnection ( const char *  name)
static

Definition at line 2569 of file dblink.c.

2570 {
2571  remoteConnHashEnt *hentry;
2572  bool found;
2573  char *key;
2574 
2575  if (!remoteConnHash)
2577 
2578  key = pstrdup(name);
2579  truncate_identifier(key, strlen(key), false);
2581  key, HASH_REMOVE, &found);
2582 
2583  if (!hentry)
2584  ereport(ERROR,
2585  (errcode(ERRCODE_UNDEFINED_OBJECT),
2586  errmsg("undefined connection name")));
2587 }
@ HASH_REMOVE
Definition: hsearch.h:115

References createConnHash(), ereport, errcode(), errmsg(), ERROR, HASH_REMOVE, hash_search(), sort-test::key, name, pstrdup(), remoteConnHash, and truncate_identifier().

Referenced by dblink_disconnect().

◆ elog()

elog ( ERROR  ,
"%s: %s"  ,
p2  ,
msg   
)

Referenced by _bt_allequalimage(), _bt_buildadd(), _bt_check_rowcompare(), _bt_check_third_page(), _bt_check_unique(), _bt_compare_scankey_args(), _bt_dedup_finish_pending(), _bt_dedup_pass(), _bt_delitems_delete(), _bt_delitems_vacuum(), _bt_endpoint(), _bt_find_extreme_element(), _bt_findsplitloc(), _bt_finish_split(), _bt_first(), _bt_get_endpoint(), _bt_getbuf(), _bt_getroot(), _bt_gettrueroot(), _bt_insert_parent(), _bt_insertonpg(), _bt_mark_page_halfdead(), _bt_mark_scankey_required(), _bt_moveright(), _bt_newroot(), _bt_preprocess_array_keys(), _bt_preprocess_keys(), _bt_restore_page(), _bt_sort_array_elements(), _bt_sortaddtup(), _bt_split(), _bt_start_vacuum(), _bt_stepright(), _bt_swap_posting(), _bt_unlink_halfdead_page(), _bt_walk_left(), _copyA_Const(), _equalList(), _hash_datum2hashkey_type(), _hash_firstfreebit(), _hash_freeovflpage(), _hash_getbuf(), _hash_getbuf_with_condlock_cleanup(), _hash_getbuf_with_strategy(), _hash_getinitbuf(), _hash_getnewbuf(), _hash_init(), _hash_pgaddmultitup(), _hash_pgaddtup(), _jumbleA_Const(), _jumbleList(), _jumbleNode(), _jumbleRangeTblEntry(), _ltree_consistent(), _mdfd_getseg(), _metaphone(), _outA_Expr(), _outConstraint(), _outList(), _outRangeTblEntry(), _PG_init(), _readA_Const(), _readA_Expr(), _readBitmapset(), _readBoolExpr(), _readConstraint(), _readExtensibleNode(), _readRangeTblEntry(), _SPI_cursor_operation(), _SPI_pquery(), _tarWriteHeader(), AbortSubTransaction(), AbortTransaction(), aclcheck_error(), aclcheck_error_col(), acldefault(), acldefault_sql(), aclmask(), aclmask_direct(), AcquireRewriteLocks(), add_base_rels_to_query(), add_cast_to(), add_function_cost(), add_function_defaults(), add_nullingrels_if_needed(), add_row_identity_var(), add_vars_to_targetlist(), AddFileToBackupManifest(), addFkRecurseReferenced(), addLeafTuple(), addNode(), addOrReplaceTuple(), addRangeTableEntryForENR(), AddRoleMems(), AddSubscriptionRelState(), addTargetToSortList(), AddWaitEventToSet(), adjust_appendrel_attrs_multilevel(), adjust_appendrel_attrs_mutator(), adjust_child_relids_multilevel(), adjust_inherited_attnums(), adjust_inherited_attnums_multilevel(), adjust_partition_colnos_using_map(), adjust_view_column_set(), AdjustIntervalForTypmod(), advance_windowaggregate_base(), AdvanceXLInsertBuffer(), AfterTriggerExecute(), afterTriggerInvokeEvents(), AfterTriggerSaveEvent(), agg_args_support_sendreceive(), AggregateCreate(), AggRegisterCallback(), AlignedAllocFree(), allocacl(), allocate_reloption(), AllocateDir(), AllocateFile(), AllocateVfd(), AllocSetFree(), AllocSetRealloc(), AlterCollation(), AlterDatabaseRefreshColl(), AlterDomainAddConstraint(), AlterDomainDefault(), AlterDomainDropConstraint(), AlterDomainNotNull(), AlterDomainValidateConstraint(), AlterEnum(), AlterExtensionNamespace(), AlterFunction(), AlterObjectNamespace_internal(), AlterObjectOwner_internal(), AlterObjectRename_internal(), AlterOperator(), AlterOpFamilyAdd(), AlterOpFamilyDrop(), AlterRelationNamespaceInternal(), AlterRole(), AlterSchemaOwner_oid(), AlterSequence(), AlterStatistics(), AlterSubscription(), AlterSystemSetConfigFile(), AlterTableGetLockLevel(), AlterTSDictionary(), AlterTypeNamespaceInternal(), AlterTypeOwner_oid(), AlterTypeOwnerInternal(), AlterTypeRecurse(), AlterUserMapping(), amvalidate(), analyzeCTE(), AnonymousShmemDetach(), appendFunctionName(), appendOrderByClause(), appendOrderBySuffix(), AppendStringToManifest(), apply_handle_delete_internal(), apply_handle_stream_abort(), apply_handle_stream_commit(), apply_handle_stream_prepare(), apply_handle_stream_start(), apply_handle_stream_stop(), apply_handle_tuple_routing(), apply_handle_update_internal(), apply_map_update(), apply_pathtarget_labeling_to_tlist(), apply_spooled_messages(), ApplyExtensionUpdates(), ApplyRetrieveRule(), ApplyWorkerMain(), array_agg_array_combine(), array_agg_array_transfn(), array_agg_combine(), array_agg_deserialize(), array_agg_transfn(), array_create_iterator(), array_exec_setup(), array_fill(), array_fill_with_lower_bounds(), array_typanalyze(), ASN1_STRING_to_text(), assign_client_encoding(), assign_collations_walker(), assignOperTypes(), AssignPostmasterChildSlot(), assignProcTypes(), AssignTransactionId(), Async_Listen(), Async_Notify(), Async_Unlisten(), Async_UnlistenAll(), ATAddForeignKeyConstraint(), AtCleanup_Portals(), AtCommit_Notify(), ATDetachCheckNoForeignKeyRefs(), AtEOSubXact_cleanup(), AtEOSubXact_HashTables(), AtEOSubXact_Namespace(), AtEOSubXact_Parallel(), AtEOXact_cleanup(), AtEOXact_HashTables(), AtEOXact_Namespace(), AtEOXact_Parallel(), AtEOXact_Snapshot(), ATExecAddColumn(), ATExecAddConstraint(), ATExecAddIndexConstraint(), ATExecAddOf(), ATExecAlterColumnType(), ATExecChangeOwner(), ATExecCmd(), ATExecDetachPartition(), ATExecDropColumn(), ATExecDropConstraint(), ATExecDropExpression(), ATExecDropNotNull(), ATExecDropOf(), ATExecForceNoForceRowSecurity(), ATExecReplicaIdentity(), ATExecSetIdentity(), ATExecSetRelOptions(), ATExecSetRowSecurity(), ATParseTransformCmd(), ATPostAlterTypeCleanup(), ATPostAlterTypeParse(), ATPrepCmd(), ATRewriteTable(), ATSimplePermissions(), AtStart_GUC(), AtSubCleanup_Portals(), AttachSession(), attnumAttName(), attnumCollationId(), attnumTypeId(), AttrDefaultFetch(), autoinc(), AutoVacuumUpdateCostLimit(), AutoVacWorkerMain(), AuxiliaryProcessMain(), BackgroundWorkerStateChange(), basic_archive_file_internal(), be_gssapi_write(), be_lo_close(), be_lo_open(), before_stmt_triggers_fired(), begin_remote_xact(), BeginInternalSubTransaction(), BeginTransactionBlock(), BgBufferSync(), binary_decode(), binary_encode(), binary_upgrade_create_empty_extension(), binaryheap_add(), binaryheap_add_unordered(), BipartiteMatch(), bitmap_subplan_mark_shared(), BitmapAdjustPrefetchIterator(), BitmapHeapNext(), bitposition(), blbuild(), blinsert(), bloom_init(), bloomBuildCallback(), blvalidate(), bms_add_member(), bms_add_range(), bms_del_member(), bms_is_member(), bms_make_singleton(), bms_overlap_list(), bms_singleton_member(), BogusFree(), BogusGetChunkContext(), BogusGetChunkSpace(), BogusRealloc(), bool_accum_inv(), booltestsel(), boot_get_type_io_data(), boot_openrel(), BootstrapModeMain(), BootstrapToastTable(), bqarr_in(), brin_bloom_consistent(), brin_doinsert(), brin_doupdate(), brin_inclusion_consistent(), brin_metapage_info(), brin_minmax_consistent(), brin_minmax_multi_consistent(), brin_page_items(), brin_redo(), brin_xlog_insert_update(), brin_xlog_samepage_update(), brinbuild(), brincostestimate(), brinvalidate(), bt_check_every_level(), bt_check_level_from_leftmost(), bt_downlink_missing_check(), bt_metap(), bt_multi_page_stats(), bt_page_items_bytea(), bt_page_items_internal(), bt_page_print_tuples(), bt_page_stats_internal(), bt_target_page_check(), btbuild(), btcostestimate(), btree_redo(), btree_xlog_dedup(), btree_xlog_insert(), btree_xlog_mark_page_halfdead(), btree_xlog_split(), btree_xlog_unlink_page(), btree_xlog_updates(), btvalidate(), BufFileAppend(), BufFileDeleteFileSet(), BufFileSeek(), BufTableDelete(), build_coercion_expression(), build_column_default(), build_concat_foutcache(), build_datatype(), build_EvalXFuncInt(), build_expression_pathkey(), build_function_result_tupdesc_d(), build_index_tlist(), build_joinrel_tlist(), build_mss(), build_pgstattuple_type(), build_physical_tlist(), build_regexp_split_result(), build_replindex_scan_key(), build_row_from_vars(), build_server_final_message(), build_simple_rel(), build_subplan(), BuildDummyIndexInfo(), BuildIndexInfo(), buildMergedJoinVar(), BuildRelationExtStatistics(), BuildSpeculativeIndexInfo(), byteaout(), cache_locale_time(), cache_reduce_memory(), CachedPlanSetParentContext(), CacheInvalidateRelcacheByRelid(), CacheRegisterRelcacheCallback(), CacheRegisterSyscacheCallback(), calc_hist_selectivity(), calc_joinrel_size_estimate(), calc_multirangesel(), calc_rangesel(), call_pltcl_start_proc(), CallerFInfoFunctionCall1(), CallerFInfoFunctionCall2(), CallStmtResultDesc(), CallSyscacheCallbacks(), cancel_before_shmem_exit(), cannotCastJsonbValue(), CatalogCacheComputeHashValue(), CatalogCacheComputeTupleHashValue(), CatalogCacheInitializeCache(), char2wchar(), check_amop_signature(), check_amproc_signature(), check_default_text_search_config(), check_domain_for_new_field(), check_encoding_conversion_args(), check_exclusion_or_unique_constraint(), check_float8_array(), check_foreign_key(), check_hash_func_signature(), check_hostname(), check_locale(), check_object_ownership(), check_on_shmem_exit_lists_are_empty(), check_primary_key(), check_role_grantor(), check_with_filler(), CheckArchiveTimeout(), CheckBufferIsPinnedOnce(), CheckConstraintFetch(), CheckDateTokenTable(), CheckFunctionValidatorAccess(), CheckIndexCompatible(), CheckMyDatabase(), CheckPointLogicalRewriteHeap(), CheckPointReplicationSlots(), CheckPointSnapBuild(), CheckRecoveryConsistency(), CheckRelationLockedByMe(), CheckSASLAuth(), checkSplitConditions(), checkTargetlistEntrySQL92(), CheckValidResultRel(), CheckVarSlotCompatibility(), checkWellFormedRecursion(), checkWellFormedRecursionWalker(), checkWellFormedSelectStmt(), ChoosePortalStrategy(), cipher_free_callback(), ClassifyUtilityCommandAsReadOnly(), clause_selectivity_ext(), CleanupBackupHistory(), CleanUpLock(), CleanupProcSignalState(), CleanupSubTransaction(), CleanupTempFiles(), CleanupTransaction(), clear_subscription_skip_lsn(), clog_redo(), CloneFkReferenced(), CloneFkReferencing(), CloneRowTriggersToPartition(), ClosePipeStream(), closerel(), CloseTransientFile(), coerce_type(), CollationIsVisible(), collectMatchesForHeapRow(), CommandCounterIncrement(), CommandIsReadOnly(), commit_ts_redo(), CommitSubTransaction(), CommitTransaction(), CommitTransactionCommand(), CommuteOpExpr(), compare_tlist_datatypes(), compare_values_of_enum(), compareDatetime(), CompareIndexInfo(), compareItems(), compareJsonbContainers(), compareJsonbScalarValue(), comparison_shim(), compile_plperl_function(), compile_pltcl_function(), compute_array_stats(), compute_function_attributes(), compute_new_xmax_infomask(), compute_tsvector_stats(), computeDelta(), computeDistance(), ComputeIndexAttrs(), computeLeafRecompressWALData(), config_enum_lookup_by_value(), connectby(), ConstraintSetParentConstraint(), construct_array_builtin(), ConstructTupleDescriptor(), ConversionCreate(), ConversionIsVisible(), convert_aclright_to_string(), convert_subquery_pathkeys(), convert_testexpr_mutator(), convertJsonbScalar(), convertJsonbValue(), copy_plpgsql_datums(), copy_replication_slot(), copy_table_data(), CopyArrayEls(), CopyCachedPlan(), CopyConversionError(), copyObjectImpl(), CopyXLogRecordToWAL(), cost_bitmap_tree_node(), cost_qual_eval_walker(), count_usable_fds(), create_and_test_bloom(), create_append_plan(), create_bitmap_subplan(), create_ctescan_plan(), create_foreign_join_path(), create_foreign_modify(), create_gather_merge_plan(), create_hash_bounds(), create_indexscan_plan(), create_internal(), create_join_plan(), create_list_bounds(), create_merge_append_plan(), create_mergejoin_plan(), create_plan(), create_plan_recurse(), create_range_bounds(), create_scan_plan(), create_toast_table(), create_unique_plan(), create_worktablescan_plan(), CreateAnonymousSegment(), CreateCast(), CreateCheckPoint(), CreateCommandTag(), createdb(), CreateDecodingContext(), CreateEndOfRecoveryRecord(), CreateExtension(), createForeignKeyActionTriggers(), CreateInitDecodingContext(), CreateLockFile(), CreateOverwriteContrecordRecord(), CreatePartitionPruneState(), createPostingTree(), CreateRole(), CreateSchemaCommand(), CreateSharedMemoryAndSemaphores(), CreateSubscription(), CreateTableSpace(), CreateTransform(), CreateTriggerFiringOn(), CreateWaitEventSet(), crosstab(), cryptohash_internal(), currtid_for_view(), currtid_internal(), dataBeginPlaceToPageLeaf(), datum_image_eq(), datum_image_hash(), datum_to_jsonb(), datum_write(), datumGetSize(), dbase_redo(), dblink_exec(), dblink_record_internal(), dblink_send_query(), DCH_cache_getnew(), DeadLockCheck(), DeadLockCheckRecurse(), DecodeDateTime(), DecodeTextArrayToBitmapset(), DecodingContextFindStartpoint(), decompile_conbin(), deconstruct_array_builtin(), deconstruct_distribute(), deconstruct_recurse(), DeconstructFkConstraintRow(), defGetString(), defGetStringList(), defGetTypeLength(), DefineAttr(), DefineCollation(), DefineDomain(), DefineIndex(), DefineOpClass(), DefineRelation(), DefineSavepoint(), DefineTSConfiguration(), DefineView(), Delete(), DeleteRelationTuple(), DeleteSequenceTuple(), DelRoleMems(), deparseAnalyzeSql(), deparseExpr(), deparseOpExpr(), deparseScalarArrayOpExpr(), dependency_degree(), deregister_seq_scan(), deserialize_deflist(), DetachPartitionFinalize(), detoast_attr_slice(), digest_block_size(), digest_finish(), digest_free_callback(), digest_reset(), digest_result_size(), digest_update(), DirectFunctionCall1Coll(), DirectFunctionCall2Coll(), DirectFunctionCall3Coll(), DirectFunctionCall4Coll(), DirectFunctionCall5Coll(), DirectFunctionCall6Coll(), DirectFunctionCall7Coll(), DirectFunctionCall8Coll(), DirectFunctionCall9Coll(), DirectInputFunctionCallSafe(), DisableSubscription(), DiscardCommand(), disconnect_cached_connections(), distribute_qual_to_rels(), distribute_restrictinfo_to_rels(), do_analyze_rel(), do_autovacuum(), do_compile(), do_serialize(), do_serialize_binary(), do_setval(), doDeletion(), does_not_exist_skipping(), domain_check_input(), doPickSplit(), DoPortalRunFetch(), drain(), dropdb(), DropObjectById(), DropRelationAllLocalBuffers(), DropRelationLocalBuffers(), DropRole(), dsa_allocate_extended(), dsa_pin(), dsa_unpin(), dsm_attach(), dsm_cleanup_for_mmap(), dsm_cleanup_using_control_segment(), dsm_impl_op(), dsm_impl_sysv(), dsm_pin_segment(), dsm_postmaster_shutdown(), dsm_postmaster_startup(), dsm_unpin_segment(), dump_stmt(), dumptuples(), edge_failure(), enable_timeouts(), EncodeSpecialDate(), EncodeSpecialTimestamp(), encrypt_password(), EndTransactionBlock(), enlargeStringInfo(), ensure_active_superblock(), ensure_last_message(), EnsurePortalSnapshotExists(), entryExecPlaceToPage(), entryLoadMoreItems(), entrySplitPage(), eqjoinsel(), equal(), equalsJsonbScalarValue(), err_generic_string(), errdatatype(), errdetail_relkind_not_supported(), estimate_multivariate_ndistinct(), eval_const_expressions_mutator(), eval_windowaggregates(), EvalPlanQualFetchRowMark(), EventTriggerCommonSetup(), EventTriggerInvoke(), examine_attribute(), examine_expression(), examine_simple_variable(), examine_variable(), exec_assign_value(), exec_check_assignable(), exec_dynquery_with_params(), exec_eval_datum(), Exec_ListenPreCommit(), exec_move_row_from_fields(), exec_object_restorecon(), exec_prepare_plan(), exec_replication_command(), exec_run_select(), exec_save_simple_expr(), exec_stmt_block(), exec_stmt_call(), exec_stmt_dynexecute(), exec_stmt_execsql(), exec_stmt_forc(), exec_stmt_getdiag(), exec_stmt_open(), exec_stmt_raise(), exec_stmt_return(), exec_stmt_return_next(), exec_stmt_return_query(), exec_stmts(), Exec_UnlistenAllCommit(), Exec_UnlistenCommit(), ExecAlterDefaultPrivilegesStmt(), ExecAlterExtensionContentsStmt(), ExecAlterExtensionStmt(), ExecAlterObjectSchemaStmt(), ExecAlterOwnerStmt(), ExecAsyncConfigureWait(), ExecAsyncNotify(), ExecAsyncRequest(), ExecAsyncResponse(), ExecBitmapAnd(), ExecBitmapIndexScan(), ExecBitmapOr(), ExecBuildAuxRowMark(), ExecBuildUpdateProjection(), ExecCheckIndexConstraints(), ExecCheckPermissionsModified(), ExecCheckTIDVisible(), ExecCreateTableAs(), ExecCrossPartitionUpdate(), execCurrentOf(), ExecDelete(), ExecEndNode(), ExecEvalFieldSelect(), ExecEvalFieldStoreDeForm(), ExecEvalJsonConstructor(), ExecEvalNextValueExpr(), ExecEvalSysVar(), ExecEvalXmlExpr(), ExecFindRowMark(), ExecGetAncestorResultRels(), ExecGetResultRelCheckAsUser(), ExecGrant_Attribute(), ExecGrant_common(), ExecGrant_Largeobject(), ExecGrant_Parameter(), ExecGrant_Relation(), ExecGrantStmt_oids(), ExecHash(), ExecHashJoinImpl(), ExecHashSubPlan(), ExecHashTableCreate(), ExecIndexBuildScanKeys(), ExecIndexMarkPos(), ExecIndexOnlyMarkPos(), ExecIndexOnlyRestrPos(), ExecIndexRestrPos(), ExecInitAgg(), ExecInitCoerceToDomain(), ExecInitExprRec(), ExecInitForeignScan(), ExecInitFunctionResultSet(), ExecInitFunctionScan(), ExecInitHashJoin(), ExecInitMemoize(), ExecInitMerge(), ExecInitMergeJoin(), ExecInitModifyTable(), ExecInitNamedTuplestoreScan(), ExecInitNestLoop(), ExecInitNode(), ExecInitParallelPlan(), ExecInitPartitionInfo(), ExecInitStoredGenerated(), ExecInitSubPlan(), ExecInitWindowAgg(), ExecLimit(), ExecLockRows(), ExecLookupResultRelByOid(), ExecMarkPos(), ExecMemoize(), ExecMergeJoin(), ExecMergeMatched(), ExecMergeNotMatched(), ExecModifyTable(), ExecOnConflictUpdate(), ExecParallelHashJoinNewBatch(), ExecParallelReportInstrumentation(), ExecParallelRetrieveInstrumentation(), ExecPushExprSetupSteps(), ExecRefreshMatView(), ExecReindex(), ExecRelCheck(), ExecRenameStmt(), ExecReScan(), ExecReScanModifyTable(), ExecReScanSetParamPlan(), ExecRestrPos(), ExecResultMarkPos(), ExecResultRestrPos(), ExecScanReScan(), ExecSetParamPlan(), ExecSetVariableStmt(), ExecStoreBufferHeapTuple(), ExecStoreHeapTuple(), ExecStoreMinimalTuple(), ExecStorePinnedBufferHeapTuple(), ExecSubPlan(), execTuplesHashPrepare(), ExecUpdate(), execute_extension_script(), execute_foreign_modify(), execute_jsp_gin_node(), executeBoolItem(), ExecuteCallStmt(), executeDateTimeMethod(), ExecuteDoStmt(), ExecuteGrantStmt(), executeItemOptUnwrapTarget(), executeItemUnwrapTargetArray(), ExecuteQuery(), ExecWindowAgg(), ExecWithCheckOptions(), expand_all_col_privileges(), expand_col_privileges(), expand_function_arguments(), expand_indexqual_rowcompare(), expand_insert_targetlist(), expand_partitioned_rtentry(), expand_vacuum_rel(), expanded_record_set_field_internal(), expandRecordVariable(), expandRTE(), expandTableLikeClause(), explain_get_index_name(), ExplainExecuteQuery(), ExplainOneUtility(), exprCollation(), expression_tree_mutator_impl(), expression_tree_walker_impl(), exprSetCollation(), exprType(), exprTypmod(), extension_config_remove(), extract_jsp_bool_expr(), FastPathGetRelationLockEntry(), fetch_att(), fetch_finfo_record(), fetch_fp_info(), fetch_remote_table_info(), fetch_statentries_for_relation(), FileAccess(), FileClose(), FileFallocate(), fileGetOptions(), FilePrefetch(), FileRead(), FileSize(), FileSync(), FileTruncate(), FileWrite(), FileWriteback(), FileZero(), fill_seq_fork_with_data(), FillPortalStore(), fillRelOptions(), fillTypeDesc(), finalize_plan(), find_appinfos_by_relids(), find_base_rel(), find_base_rel_ignore_join(), find_coercion_pathway(), find_expr_references_walker(), find_in_dynamic_libpath(), find_indexpath_quals(), find_inheritance_children_extended(), find_join_domain(), find_join_input_rel(), find_jointree_node_for_rel(), find_nonnullable_rels_walker(), find_nonnullable_vars_walker(), find_or_make_matching_shared_tupledesc(), find_param_referent(), find_placeholder_info(), find_placeholders_recurse(), find_recursive_union(), find_window_functions_walker(), findDependentObjects(), findFkeyCast(), findoprnd(), findoprnd_recurse(), finish_heap_swap(), FinishSortSupportFunction(), fireASTriggers(), fireBSTriggers(), fix_indexqual_clause(), fix_indexqual_operand(), fix_join_expr_mutator(), fix_param_node(), fix_upper_expr_mutator(), fix_windowagg_condition_expr_mutator(), fixup_inherited_columns(), fixup_whole_row_references(), flatten_reloptions(), flatten_set_variable_args(), flattenJsonPathParseItem(), fmgr_c_validator(), fmgr_info_C_lang(), fmgr_info_cxt_security(), fmgr_info_other_lang(), fmgr_internal_validator(), fmgr_security_definer(), fmgr_sql(), fmgr_sql_validator(), fmgr_symbol(), foreign_join_ok(), forget_invalid_pages(), forget_invalid_pages_db(), ForgetPortalSnapshots(), format_operator_parts(), format_procedure_parts(), format_type_extended(), FormIndexDatum(), FormPartitionKeyDatum(), ForwardSyncRequest(), free_stmt(), FreeDesc(), FreeDir(), FreeFile(), FreePageManagerPutInternal(), FreeVfd(), fsm_search_avail(), fsm_space_needed_to_cat(), func_get_detail(), func_parallel(), func_strict(), func_volatile(), FuncnameGetCandidates(), function_inlinable(), function_selectivity(), FunctionCall0Coll(), FunctionCall1Coll(), FunctionCall2Coll(), FunctionCall3Coll(), FunctionCall4Coll(), FunctionCall5Coll(), FunctionCall6Coll(), FunctionCall7Coll(), FunctionCall8Coll(), FunctionCall9Coll(), FunctionIsVisible(), g_cube_distance(), g_int_compress(), g_int_picksplit(), gbt_num_distance(), gc_qtexts(), gen_prune_steps_from_opexps(), generate_collation_name(), generate_function_name(), generate_nonunion_paths(), generate_operator_clause(), generate_operator_name(), generate_partition_qual(), generate_qualified_relation_name(), generate_qualified_type_name(), generate_recursion_path(), generate_relation_name(), generateClonedExtStatsStmt(), generateClonedIndexStmt(), GenerationFree(), GenerationRealloc(), GenericXLogRegisterBuffer(), geqo(), get_actual_variable_endpoint(), get_agg_combine_expr(), get_altertable_subcmdinfo(), get_am_type_string(), get_attgenerated(), get_attname(), get_attoptions(), get_attstatsslot(), get_attstattarget(), get_atttypetypmodcoll(), get_collation(), get_collation_isdeterministic(), get_columns_length(), get_config_unit_name(), get_controlfile(), get_crosstab_tuplestore(), get_eclass_for_sort_expr(), get_explain_guc_options(), get_from_clause_item(), get_func_arg_info(), get_func_input_arg_names(), get_func_leakproof(), get_func_nargs(), get_func_prokind(), get_func_result_name(), get_func_retset(), get_func_rettype(), get_func_signature(), get_func_trftypes(), get_func_variadictype(), get_function_rows(), get_index_isclustered(), get_index_isvalid(), get_indexpath_pages(), get_insert_query_def(), get_join_variables(), get_jointype_name(), get_json_agg_constructor(), get_json_constructor(), get_language_name(), get_last_relevant_decnum(), get_matching_list_bounds(), get_matching_location(), get_matching_partitions(), get_matching_range_bounds(), get_merged_range_bounds(), get_multirange_io_data(), get_mxact_status_for_lock(), get_name_for_var_field(), get_object_address(), get_object_address_opcf(), get_object_address_opf_member(), get_object_address_relobject(), get_object_address_unqualified(), get_object_namespace(), get_op_opfamily_properties(), get_opclass(), get_opclass_family(), get_opclass_input_type(), get_opclass_name(), get_partition_for_tuple(), get_partition_operator(), get_partition_parent(), get_perl_array_ref(), get_policies_for_relation(), get_primary_key_attnos(), get_publication_name(), get_qual_for_range(), get_query_def(), get_range_io_data(), get_range_key_properties(), get_range_nulltest(), get_rel_persistence(), get_relation_by_qualified_name(), get_relation_column_alias_ids(), get_relation_constraint_attnos(), get_relation_name(), get_relation_statistics(), get_relids_for_join(), get_relids_in_jointree(), get_remote_estimate(), get_ri_constraint_root(), get_rolespec_oid(), get_rolespec_tuple(), get_rte_attribute_is_dropped(), get_rte_attribute_name(), get_rule_expr(), get_segment_by_index(), get_select_query_def(), get_setop_query(), get_sortgroupref_clause(), get_sortgroupref_tle(), get_sublink_expr(), get_subscription_name(), get_sync_bit(), get_ts_parser_func(), get_ts_template_func(), get_tuple_of_interest(), get_typdefault(), get_type_category_preferred(), get_type_io_data(), get_typlenbyval(), get_typlenbyvalalign(), get_utility_query_def(), get_val(), get_variable(), get_view_query(), get_windowfunc_expr_helper(), GetAccessStrategy(), GetAttributeByName(), GetAttributeByNum(), getBaseTypeAndTypmod(), GetBTPageStatistics(), GetCachedPlan(), GetCCHashEqFuncs(), GetCommandLogLevel(), GetCompressionMethodName(), GetConnection(), getConstraintTypeDescription(), GetCTEForRTE(), GetEpochTime(), GetFdwRoutine(), GetFdwRoutineByServerId(), GetForeignColumnOptions(), GetForeignDataWrapperExtended(), GetForeignKeyActionTriggers(), GetForeignKeyCheckTriggers(), GetForeignServerExtended(), GetForeignServerIdByRelId(), GetForeignTable(), getIdentitySequence(), GetIndexAmRoutine(), GetIndexAmRoutineByAmId(), GetIndexInputType(), getInsertSelectQuery(), getIthJsonbValueFromContainer(), getJsonEncodingConst(), getJsonPathItem(), GetLatestSnapshot(), getlen(), GetLocalVictimBuffer(), GetLockConflicts(), GetNamedLWLockTranche(), GetNewMultiXactId(), GetNewObjectId(), GetNewRelFileNumber(), GetNewTransactionId(), getNextFlagFromString(), GetNSItemByRangeTablePosn(), getObjectClass(), getObjectDescription(), getObjectIdentityParts(), getOpFamilyDescription(), getOpFamilyIdentity(), getProcedureTypeDescription(), GetPublication(), getPublicationSchemaInfo(), getQuadrant(), getRelationDescription(), getRelationIdentity(), getRelationTypeDescription(), getRTEPermissionInfo(), GetSerializableTransactionSnapshotInt(), GetSharedMemName(), GetSubscription(), GetSysCacheHashValue(), GetTableAmRoutine(), gettoken_tsvector(), getTokenTypes(), GetTransactionSnapshot(), GetTSConfigTuple(), getTSCurrentConfig(), GetTsmRoutine(), GetTupleForTrigger(), gettype(), getTypeBinaryInputInfo(), getTypeBinaryOutputInfo(), getTypeInputInfo(), getTypeOutputInfo(), GetXLogBuffer(), ghstore_consistent(), gimme_gene(), gin_btree_compare_prefix(), gin_btree_extract_query(), gin_consistent_hstore(), gin_consistent_jsonb(), gin_consistent_jsonb_path(), gin_extract_hstore_query(), gin_extract_jsonb_path(), gin_extract_jsonb_query(), gin_extract_jsonb_query_path(), gin_extract_query_trgm(), gin_extract_trgm(), gin_extract_tsquery_5args(), gin_extract_tsvector_2args(), gin_leafpage_items(), gin_metapage_info(), gin_page_opaque_info(), gin_redo(), gin_trgm_consistent(), gin_trgm_triconsistent(), gin_triconsistent_jsonb(), gin_triconsistent_jsonb_path(), gin_tsquery_consistent_6args(), ginarrayconsistent(), ginarrayextract_2args(), ginarraytriconsistent(), ginbuild(), gincost_pattern(), gincostestimate(), ginEntryFillRoot(), ginFindParents(), ginFinishSplit(), ginHeapTupleFastCollect(), ginHeapTupleFastInsert(), ginint4_consistent(), ginint4_queryextract(), ginPlaceToPage(), ginqueryarrayextract(), ginReadTuple(), ginRedoInsertEntry(), ginRedoInsertListPage(), ginRedoRecompress(), ginRedoSplit(), ginRedoUpdateMetapage(), ginRedoVacuumPage(), ginStepRight(), ginVacuumEntryPage(), ginVacuumPostingTreeLeaf(), ginvalidate(), gist_bbox_distance(), gist_box_leaf_consistent(), gist_indexsortbuild_flush_ready_pages(), gist_indexsortbuild_levelstate_flush(), gist_page_items(), gist_page_items_bytea(), gist_page_opaque_info(), gist_point_consistent(), gist_point_consistent_internal(), gist_point_distance(), gist_redo(), gistBufferingFindCorrectParent(), gistbufferinginserttuples(), gistbuild(), gistEmptyAllBuffers(), gistfillbuffer(), gistFindPath(), gistGetParent(), gistgettuple(), gistindex_keytest(), gistInitBuffering(), gistplacetopage(), gistRedoPageUpdateRecord(), gistrescan(), gistvalidate(), grow_memtuples(), gtrgm_consistent(), gtrgm_distance(), handle_streamed_transaction(), HandleParallelApplyMessage(), HandleParallelMessage(), has_dangerous_join_using(), has_row_triggers(), has_subclass(), hash_bitmap_info(), hash_corrupted(), hash_create(), hash_freeze(), hash_metapage_info(), hash_ok_operator(), hash_page_items(), hash_page_stats(), hash_redo(), hash_search_with_hash_value(), hash_update_hash_key(), hash_xlog_insert(), hash_xlog_move_page_contents(), hash_xlog_split_page(), hash_xlog_squeeze_page(), hashbpchar(), hashbpcharextended(), hashbuild(), hashtext(), hashtextextended(), hashvalidate(), heap2_decode(), heap2_redo(), heap_abort_speculative(), heap_attisnull(), heap_create_with_catalog(), heap_decode(), heap_drop_with_catalog(), heap_fetch_toast_slice(), heap_finish_speculative(), heap_getnext(), heap_getsysattr(), heap_inplace_update(), heap_lock_tuple(), heap_lock_updated_tuple_rec(), heap_modify_tuple_by_cols(), heap_page_is_all_visible(), heap_page_items(), heap_prune_chain(), heap_redo(), heap_tuple_infomask_flags(), heap_xlog_confirm(), heap_xlog_delete(), heap_xlog_inplace(), heap_xlog_insert(), heap_xlog_lock(), heap_xlog_lock_updated(), heap_xlog_multi_insert(), heap_xlog_update(), heapam_index_build_range_scan(), heapam_relation_copy_for_cluster(), heapam_scan_analyze_next_tuple(), HeapCheckForSerializableConflictOut(), hexval(), hide_coercion_node(), HoldPinnedPortals(), hstoreUpgrade(), hypothetical_check_argtypes(), hypothetical_dense_rank_final(), hypothetical_rank_common(), identify_join_columns(), identify_opfamily_groups(), if(), ImportForeignSchema(), ImportSnapshot(), inclusion_get_strategy_procinfo(), IncrementVarSublevelsUp_walker(), index_build(), index_check_primary_key(), index_concurrently_create_copy(), index_concurrently_swap(), index_constraint_create(), index_create(), index_drop(), index_get_partition(), index_getprocinfo(), index_other_operands_eval_cost(), index_set_state_flags(), index_store_float8_orderby_distances(), index_strategy_get_limit(), index_update_stats(), IndexGetRelation(), IndexNextWithReorder(), IndexOnlyNext(), IndexOnlyRecheck(), IndexSetParentIndex(), IndexSupportInitialize(), IndexSupportsBackwardScan(), inet_gist_consistent(), inet_opr_codenum(), inet_to_cidr(), infix(), init_custom_variable(), init_locale(), init_MultiFuncCall(), init_params(), init_sql_fcache(), init_toast_snapshot(), InitAuxiliaryProcess(), initBloomState(), InitCatalogCache(), initGinState(), initGISTstate(), initHyperLogLog(), initial_cost_mergejoin(), initialize_peragg(), initialize_worker_spi(), InitializeBackupManifest(), InitializeLatchSupport(), InitializeMaxBackends(), InitializeOneGUCOption(), InitLatch(), InitLocalBuffers(), InitMaterializedSRF(), InitPlan(), InitPostgres(), InitPostmasterChild(), InitProcess(), InitSharedLatch(), InitStandaloneProcess(), inittapes(), inline_set_returning_function(), InputFunctionCall(), InputFunctionCallSafe(), Insert(), insert_timeout(), insert_username(), InsertOneNull(), InsertOneTuple(), InsertOneValue(), InstrEndLoop(), InstrStartNode(), InstrStopNode(), int2_accum_inv(), int2_avg_accum(), int2_avg_accum_inv(), int2int4_sum(), int4_accum_inv(), int4_avg_accum(), int4_avg_accum_inv(), int4_avg_combine(), int8_accum_inv(), int8_avg(), int8_avg_accum_inv(), int8_avg_combine(), int8_avg_deserialize(), int8_avg_serialize(), int_query_opr_selec(), internal_get_result_type(), InternalIpcMemoryCreate(), interpret_func_volatility(), interval_accum(), interval_accum_inv(), interval_avg(), interval_combine(), interval_in(), intervaltypmodleastfield(), intervaltypmodout(), intset_add_member(), intset_update_upper(), inv_getsize(), inv_read(), inv_truncate(), inv_write(), InvalidateAttoptCacheCallback(), InvalidateBuffer(), InvalidateOprCacheCallBack(), InvalidateShippableCacheCallback(), InvalidateTableSpaceCacheCallback(), IOContextForStrategy(), IpcMemoryDelete(), IpcMemoryDetach(), IpcSemaphoreKill(), irbt_combine(), is_simple_subquery(), is_simple_union_all(), is_simple_union_all_recurse(), isCurrentGroup(), issue_xlog_fsync(), iteratorFromContainer(), join_search_one_level(), join_selectivity(), jointree_contains_lateral_outer_refs(), json_agg_transfn_worker(), json_errdetail(), json_errsave_error(), json_object_agg_transfn_worker(), json_typeof(), jsonb_agg_transfn_worker(), jsonb_get_element(), jsonb_hash(), jsonb_hash_extended(), jsonb_in_scalar(), jsonb_object_agg_transfn_worker(), jsonb_put_escaped_value(), jsonb_recv(), Jsonb_to_SV(), JsonbContainerTypeName(), JsonbDeepContains(), JsonbHashScalarValue(), JsonbHashScalarValueExtended(), JsonbIteratorNext(), JsonbToCStringWorker(), JsonbType(), JsonbTypeName(), JsonbValue_to_SV(), JsonbValueAsText(), JsonEncodeDateTime(), jsonpath_recv(), jspInitByBuffer(), jspOperationName(), KnownAssignedXidsAdd(), KnownAssignedXidsDisplay(), KnownAssignedXidsRemove(), KnownAssignedXidsRemovePreceding(), lazy_scan_heap(), lazy_scan_noprune(), lazy_scan_prune(), lc_collate_is_c(), leader_takeover_tapes(), llvm_build_inline_plan(), llvm_compile_module(), llvm_create_types(), llvm_execute_inline_plan(), llvm_get_function(), llvm_load_summary(), llvm_pg_func(), llvm_pg_var_type(), llvm_resolve_symbol(), llvm_session_initialize(), lo_manage(), load_categories_hash(), load_critical_index(), load_domaintype_info(), load_module(), load_multirangetype_info(), load_rangetype_info(), load_relcache_init_file(), load_return_type(), load_typcache_tupdesc(), LoadOutputPlugin(), LocalBufferAlloc(), LocalExecuteInvalidationMessage(), LocalToUtf(), lock_twophase_postcommit(), lock_twophase_recover(), lock_twophase_standby_recover(), LockAcquireExtended(), LockBuffer(), LockBufferForCleanup(), LockCheckConflicts(), LockHasWaiters(), LockRefindAndRelease(), LockRelease(), LockReleaseAll(), LockReleaseSession(), LockWaiterCount(), log_invalid_page(), LogCurrentRunningXacts(), logical_heap_rewrite_flush_mappings(), LogicalConfirmReceivedLocation(), LogicalIncreaseRestartDecodingForSlot(), LogicalIncreaseXminForSlot(), logicalmsg_decode(), logicalmsg_redo(), LogicalOutputWrite(), LogicalParallelApplyLoop(), logicalrep_message_type(), logicalrep_read_begin(), logicalrep_read_begin_prepare(), logicalrep_read_commit(), logicalrep_read_commit_prepared(), logicalrep_read_delete(), logicalrep_read_insert(), logicalrep_read_prepare_common(), logicalrep_read_rollback_prepared(), logicalrep_read_stream_commit(), logicalrep_read_tuple(), logicalrep_read_update(), logicalrep_rel_open(), logicalrep_worker_launch(), logicalrep_write_namespace(), logicalrep_write_tuple(), logicalrep_write_typ(), LogicalRepSyncTableStart(), LogicalTapeBackspace(), LogicalTapeCreate(), LogicalTapeSeek(), LogicalTapeWrite(), lookup_am_handler_func(), lookup_collation_cache(), lookup_ts_config_cache(), lookup_ts_dictionary_cache(), lookup_ts_parser_cache(), LookupBackgroundWorkerFunction(), LookupOpclassInfo(), LookupParallelWorkerFunction(), LookupTypeNameExtended(), lquery_recv(), LruDelete(), LruInsert(), ltree_consistent(), ltree_recv(), ltxtq_recv(), LWLockAcquire(), LWLockAcquireOrWait(), LWLockConditionalAcquire(), LWLockQueueSelf(), LWLockRelease(), lz4_compress_datum(), macaddr_abbrev_abort(), MaintainOldSnapshotTimeMapping(), make_absolute_path(), make_callstmt_target(), make_canonical_pathkey(), make_const(), make_inh_translation_list(), make_inner_pathkeys_for_merge(), make_new_connection(), make_new_heap(), make_one_partition_rbound(), make_pathkey_from_sortinfo(), make_pathkey_from_sortop(), make_range(), make_rel_from_joinlist(), make_result_opt_error(), make_ruledef(), make_scalar_key(), make_sort_from_groupcols(), make_tsvector(), make_tuple_from_result_row(), make_unique_from_pathkeys(), makeBoolAggState(), makeNumericAggState(), makepol(), makeStringAggState(), MakeTidOpExpr(), MakeTransitionCaptureState(), map_sql_table_to_xmlschema(), map_sql_type_to_xml_name(), map_variable_attnos_mutator(), mark_index_clustered(), MarkBufferDirty(), MarkBufferDirtyHint(), markQueryForLocking(), markRelsAsNulledBy(), markRTEForSelectPriv(), markTargetListOrigin(), mask_unused_space(), match_clause_to_partition_key(), match_index_to_operand(), match_network_subset(), match_unsorted_outer(), materializeResult(), max_parallel_hazard_test(), maybe_reread_subscription(), mbms_add_member(), mbms_is_member(), mcelem_array_selec(), mcv_get_match_bitmap(), mcv_match_expression(), mdnblocks(), MemoryContextAlloc(), MemoryContextAllocExtended(), MemoryContextAllocHuge(), MemoryContextAllocZero(), MemoryContextAllocZeroAligned(), MergeAttributes(), mergeruns(), MergeWithExistingConstraint(), minmax_get_strategy_procinfo(), minmax_multi_get_strategy_procinfo(), MJExamineQuals(), mock_scram_secret(), moddatetime(), ModifyWaitEvent(), movedb(), moveLeafs(), mq_putmessage_noblock(), MultiExecBitmapAnd(), MultiExecBitmapOr(), MultiExecProcNode(), multirange_agg_transfn(), multirange_cmp(), multirange_constructor0(), multirange_constructor1(), multirange_constructor2(), multirange_eq_internal(), multirange_get_typcache(), multirange_in(), multirange_intersect_agg_transfn(), multixact_redo(), MultiXactIdCreateFromMembers(), mxstatus_to_string(), NameListToString(), NamespaceCreate(), ndistinct_for_combination(), negate_clause(), network_abbrev_abort(), networkjoinsel(), nextval_internal(), nodeRead(), NotifyMyFrontEnd(), nulltestsel(), NUM_cache_getnew(), NUM_numpart_from_char(), NUM_numpart_to_char(), NUM_processor(), numeric_abbrev_abort(), numeric_accum_inv(), numeric_avg_combine(), numeric_avg_deserialize(), numeric_avg_serialize(), numeric_combine(), numeric_deserialize(), numeric_poly_combine(), numeric_poly_deserialize(), numeric_poly_serialize(), numeric_serialize(), objectNamesToOids(), ObjectsInPublicationToOids(), objectsInSchemaToOids(), oidparse(), op_input_types(), op_strict(), op_volatile(), OpClassCacheLookup(), OpclassIsVisible(), OpenPipeStream(), OpenTemporaryFileInTablespace(), OpenTransientFilePerm(), operator_predicate_proof(), OperatorCreate(), OperatorIsVisible(), OpFamilyCacheLookup(), OpfamilyIsVisible(), ordered_set_startup(), outNode(), OutputPluginPrepareWrite(), OutputPluginWrite(), OwnLatch(), pa_allocate_worker(), pa_decr_and_wait_stream_block(), pa_free_worker(), pa_start_subtrans(), pa_stream_abort(), page_header(), PageAddItemExtended(), PageIndexMultiDelete(), PageIndexTupleDelete(), PageIndexTupleDeleteNoCompact(), PageIndexTupleOverwrite(), palloc(), palloc0(), palloc_extended(), parallel_vacuum_main(), parallel_vacuum_process_all_indexes(), parallel_vacuum_process_one_index(), parse_affentry(), parse_format(), parse_func_options(), parse_hstore(), parse_jsonb_index_flags(), parse_lquery(), parse_ltree(), parse_one_reloption(), parse_ooaffentry(), parse_output_parameters(), parse_policy_command(), parse_tsquery(), parseCreateReplSlotOptions(), ParseFuncOrColumn(), parseNodeString(), PartitionHasPendingDetach(), PathNameOpenFilePerm(), pattern_fixed_prefix(), patternsel(), percentile_cont_final_common(), percentile_cont_multi_final_common(), percentile_disc_final(), percentile_disc_multi_final(), perform_pruning_base_step(), perform_pruning_combine_step(), perform_work_item(), PerformCursorOpen(), PerformMembersTruncation(), PerformWalRecovery(), PersistHoldablePortal(), pg_aclmask(), pg_armor(), pg_backup_stop(), pg_buffercache_pages(), pg_buffercache_summary(), pg_column_compression(), pg_column_size(), pg_control_checkpoint(), pg_control_init(), pg_control_recovery(), pg_control_system(), pg_crc32c_armv8_available(), pg_create_logical_replication_slot(), pg_create_physical_replication_slot(), pg_current_logfile(), pg_current_snapshot(), pg_do_encoding_conversion(), pg_event_trigger_ddl_commands(), pg_extension_config_dump(), pg_get_catalog_foreign_keys(), pg_get_constraintdef_worker(), pg_get_functiondef(), pg_get_indexdef_worker(), pg_get_keywords(), pg_get_multixact_members(), pg_get_object_address(), pg_get_partkeydef_worker(), pg_get_ruledef_worker(), pg_get_statisticsobj_worker(), pg_get_triggerdef_worker(), pg_get_viewdef_worker(), pg_get_wal_record_info(), pg_GSS_error_int(), pg_identify_object(), pg_identify_object_as_address(), pg_import_system_collations(), pg_input_error_info(), pg_isolation_test_session_is_blocked(), pg_last_committed_xact(), pg_logical_replication_slot_advance(), pg_logical_slot_get_changes_guts(), pg_newlocale_from_collation(), pg_old_snapshot_time_mapping(), pg_parse_query(), pg_partition_tree(), pg_perm_setlocale(), pg_plan_query(), pg_relation_filepath(), pg_replication_origin_create(), pg_replication_slot_advance(), pg_rewrite_query(), pg_sequence_parameters(), pg_split_walfile_name(), pg_stat_get_wal_receiver(), pg_stat_statements_info(), pg_stat_statements_internal(), pg_strcoll(), pg_strcoll_libc(), pg_strncoll(), pg_strnxfrm(), pg_strnxfrm_prefix(), pg_strxfrm(), pg_strxfrm_enabled(), pg_strxfrm_libc(), pg_strxfrm_prefix(), pg_strxfrm_prefix_enabled(), pg_timezone_abbrevs(), pg_type_aclmask(), pg_tzset(), pg_visibility_map_summary(), pg_xact_commit_timestamp_origin(), pgfdw_inval_callback(), pgfdw_reset_xact_state(), pgfdw_subxact_callback(), pgfdw_xact_callback(), PGLC_localeconv(), pgoutput_change(), pgoutput_commit_txn(), pgoutput_row_filter(), pgoutput_row_filter_exec_expr(), pgp_armor_decode(), pgp_armor_encode(), pgp_armor_headers(), pgp_extract_armor_headers(), PGReserveSemaphores(), PGSemaphoreCreate(), PGSemaphoreLock(), PGSemaphoreReset(), PGSemaphoreTryLock(), PGSemaphoreUnlock(), PGSharedMemoryCreate(), PGSharedMemoryDetach(), PGSharedMemoryIsInUse(), PGSharedMemoryReAttach(), pgstat_discard_stats(), pgstat_drop_entry_internal(), pgstat_get_io_context_name(), pgstat_get_io_object_name(), pgstat_get_io_op_index(), pgstat_get_io_time_index(), pgstat_read_statsfile(), pgstat_release_entry_ref(), pgstat_replslot_to_serialized_name_cb(), pgstat_write_statsfile(), pgstatginindex_internal(), pgstathashindex(), pgstatindex_impl(), pgstattuple_approx_internal(), pgwin32_ReserveSharedMemoryRegion(), pgwin32_select(), pgxml_result_to_text(), PinPortal(), plperl_event_trigger_handler(), plperl_fini(), plperl_func_handler(), plperl_init_interp(), plperl_inline_handler(), plperl_return_next_internal(), plperl_spi_exec_prepared(), plperl_spi_freeplan(), plperl_spi_prepare(), plperl_spi_query(), plperl_spi_query_prepared(), plperl_trigger_handler(), plperl_util_elog(), plperl_validator(), plpgsql_build_datatype(), plpgsql_build_variable(), plpgsql_call_handler(), plpgsql_compile(), plpgsql_compile_inline(), plpgsql_exec_function(), plpgsql_exec_get_datum_type(), plpgsql_exec_get_datum_type_info(), plpgsql_exec_trigger(), plpgsql_free_function_memory(), plpgsql_fulfill_promise(), plpgsql_HashTableDelete(), plpgsql_HashTableInsert(), plpgsql_inline_handler(), plpgsql_parse_cwordtype(), plpgsql_parse_word(), plpgsql_validator(), plpython3_call_handler(), plpython3_inline_handler(), plpython3_validator(), plsample_func_handler(), plsample_trigger_handler(), pltcl_build_tuple_result(), pltcl_event_trigger_handler(), pltcl_func_handler(), pltcl_init_interp(), pltcl_returnnext(), pltcl_SPI_prepare(), pltcl_trigger_handler(), PLy_current_execution_context(), PLy_cursor_init_type(), PLy_cursor_plan(), PLy_cursor_query(), PLy_exception_set_with_details(), PLy_exec_function(), PLy_exec_trigger(), PLy_modify_tuple(), PLy_plan_init_type(), PLy_pop_execution_context(), PLy_procedure_compile(), PLy_procedure_create(), PLy_procedure_get(), PLy_procedure_munge_source(), PLy_result_init_type(), PLy_spi_exception_set(), PLy_spi_prepare(), PLy_subtransaction_init_type(), PLy_traceback(), PLy_trigger_build_args(), PLyObject_AsString(), PLyObject_FromJsonbContainer(), PLyObject_FromJsonbValue(), PopOverrideSearchPath(), PopTransaction(), populate_joinrel_with_paths(), populate_record_field(), populate_scalar(), PortalRun(), PortalRunFetch(), PosixSemaphoreCreate(), PosixSemaphoreKill(), postgresAnalyzeForeignTable(), postgresBeginForeignInsert(), postgresGetAnalyzeInfoForForeignTable(), postgresGetForeignJoinPaths(), postgresGetForeignUpperPaths(), postgresPlanDirectModify(), postgresPlanForeignModify(), PostmasterDeathSignalInit(), PostmasterIsAliveInternal(), PostPrepare_Locks(), postprocess_setop_tlist(), pq_getmsgint(), pq_init(), pq_parse_errornotice(), pq_sendint(), PreCommit_Notify(), PreCommit_Portals(), predicate_implied_by_recurse(), predicate_refuted_by_recurse(), prepare_column_cache(), prepare_sort_from_pathkeys(), PrepareInvalidationState(), preparePresortedCols(), PrepareRedoAdd(), PrepareRedoRemove(), PrepareSortSupportFromGistIndexRel(), PrepareSortSupportFromIndexRel(), PrepareSortSupportFromOrderingOp(), PrepareTransaction(), preprocess_aggref(), preprocess_minmax_aggregates(), preprocess_qual_conditions(), preprocess_targetlist(), PreventInTransactionBlock(), print_function_arguments(), PrintBufferLeakWarning(), PrintCatCacheLeakWarning(), PrintCatCacheListLeakWarning(), PrintCryptoHashLeakWarning(), PrintDSMLeakWarning(), PrintFileLeakWarning(), PrintHMACLeakWarning(), printJsonPathItem(), PrintPlanCacheLeakWarning(), PrintRelCacheLeakWarning(), printsimple(), PrintSnapshotLeakWarning(), PrintTupleDescLeakWarning(), privilege_to_string(), proc_exit(), proc_exit_prepare(), ProcArrayApplyRecoveryInfo(), ProcArraySetReplicationSlotXmin(), ProcedureCreate(), process_equivalence(), process_matched_tle(), process_subquery_nestloop_params(), ProcessCatchupInterrupt(), ProcessCommittedInvalidationMessages(), ProcessIncomingNotify(), processIndirection(), ProcessStandbyHSFeedbackMessage(), ProcessStandbyReplyMessage(), ProcessSyncRequests(), ProcessUtilitySlow(), ProcessWalSndrMessage(), ProcSendSignal(), ProcSignalInit(), provider_init(), prs_setup_firstcall(), prune_element_hashtable(), prune_lexemes_hashtable(), pull_up_sublinks_jointree_recurse(), pull_up_subqueries_recurse(), pull_up_union_leaf_queries(), pull_var_clause_walker(), pullup_replace_vars_callback(), push_back_token(), pushJsonbValueScalar(), pushOpStack(), pvsnprintf(), QTNodeCompare(), query_planner(), query_to_oid_list(), query_to_xml_and_xmlschema(), query_to_xmlschema(), querytree(), radius_add_attribute(), random_init_pool(), range_adjacent_internal(), range_after_internal(), range_agg_finalfn(), range_agg_transfn(), range_before_internal(), range_cmp(), range_contains_internal(), range_eq_internal(), range_get_typcache(), range_gist_consistent_int_element(), range_gist_consistent_int_multirange(), range_gist_consistent_int_range(), range_gist_consistent_leaf_element(), range_gist_consistent_leaf_multirange(), range_gist_consistent_leaf_range(), range_gist_penalty(), range_intersect(), range_intersect_agg_transfn(), range_minus(), range_minus_internal(), range_overlaps_internal(), range_overleft_internal(), range_overright_internal(), range_union_internal(), RangeVarCallbackForAlterRelation(), RangeVarCallbackForTruncate(), RangeVarCallbackOwnsRelation(), raw_expression_tree_walker_impl(), raw_heap_insert(), rbt_begin_iterate(), rbt_populate(), read_client_final_message(), read_gucstate(), read_gucstate_binary(), read_seq_tuple(), readDatum(), ReadTempFileBlock(), ReceiveFunctionCall(), ReceiveSharedInvalidMessages(), recheck_cast_function_args(), recomputeNamespacePath(), record_image_cmp(), recordExtObjInitPriv(), RecordKnownAssignedTransactionIds(), RecordTransactionAbort(), RecordTransactionAbortPrepared(), RecordTransactionCommit(), recovery_create_dbdir(), recoveryApplyDelay(), RecoveryConflictInterrupt(), RecoveryRestartPoint(), recurse_push_qual(), recurse_pushdown_safe(), recurse_set_operations(), recv_password_packet(), reduce_outer_joins(), reduce_outer_joins_pass1(), reduce_outer_joins_pass2(), refresh_by_match_merge(), refresh_matview_datafill(), regclassin(), regcollationin(), regconfigin(), regdictionaryin(), register_seq_scan(), RegisterExtensibleNodeEntry(), regnamespacein(), regoperatorin(), regoperin(), regprocedurein(), regprocin(), REGRESS_object_access_hook_str(), regress_setenv(), regrolein(), regtypein(), RehashCatCache(), reindex_index(), reindex_relation(), ReindexRelationConcurrently(), relation_mark_replica_identity(), relation_needs_vacanalyze(), relation_open(), RelationAddBlocks(), RelationBuildDesc(), RelationBuildLocalRelation(), RelationBuildPartitionDesc(), RelationBuildPartitionKey(), RelationBuildPublicationDesc(), RelationBuildRowSecurity(), RelationBuildTriggers(), RelationBuildTupleDesc(), RelationCacheInitializePhase3(), RelationClearMissing(), RelationClearRelation(), RelationCreateStorage(), RelationFindReplTupleByIndex(), RelationFindReplTupleSeq(), RelationForgetRelation(), RelationGetBufferForTuple(), RelationGetExclusionInfo(), RelationGetIdentityKeyBitmap(), RelationGetIndexAttrBitmap(), relationHasPrimaryKey(), RelationInitIndexAccessInfo(), RelationInitPhysicalAddr(), RelationInitTableAccessMethod(), RelationIsVisible(), RelationMapRemoveMapping(), RelationMapUpdateMap(), RelationPutHeapTuple(), RelationReloadIndexInfo(), RelationSetNewRelfilenumber(), ReleaseBuffer(), ReleaseCurrentSubTransaction(), ReleaseLockIfHeld(), ReleaseLruFile(), ReleaseSavepoint(), RelfilenumberMapInvalidateCallback(), RelidByRelfilenumber(), relmap_redo(), RememberClusterOnForRebuilding(), RememberReplicaIdentityForRebuilding(), remove_rel_from_joinlist(), remove_timeout_index(), remove_useless_joins(), remove_useless_results_recurse(), RemoveAttrDefault(), RemoveAttrDefaultById(), RemoveAttributeById(), RemoveConstraintById(), removeExtObjInitPriv(), RemoveFunctionById(), RemoveGXact(), RemoveInheritance(), RemoveLocalLock(), RemoveNonParentXlogFiles(), RemoveOldXlogFiles(), RemoveOperatorById(), RemovePartitionKeyByRelId(), RemovePolicyById(), RemovePublicationById(), RemovePublicationRelById(), RemovePublicationSchemaById(), RemoveReindexPending(), RemoveRelations(), RemoveRewriteRuleById(), RemoveRoleFromObjectACL(), RemoveRoleFromObjectPolicy(), RemoveStatisticsById(), RemoveTempXlogFiles(), RemoveTriggerById(), RemoveTSConfigurationById(), RemoveTypeById(), RemoveUserMapping(), rename_constraint_internal(), RenameConstraint(), RenameConstraintById(), RenameDatabase(), RenameRelationInternal(), RenameRole(), RenameTableSpace(), RenameType(), RenameTypeInternal(), reorder_function_arguments(), ReorderBufferAbortOld(), ReorderBufferIterTXNNext(), ReorderBufferProcessTXN(), ReorderBufferSerializeTXN(), ReorderBufferToastAppendChunk(), ReorderBufferToastReplace(), repalloc(), repalloc0(), repalloc_extended(), replace_rte_variables(), replace_vars_in_jointree(), ReplaceVarsFromTargetList_callback(), replorigin_drop_by_name(), replorigin_redo(), replorigin_session_setup(), report_invalid_page(), report_name_conflict(), report_namespace_conflict(), ReportSlotConnectionError(), RequestAddinShmemSpace(), RequestCheckpoint(), RequestNamedLWLockTranche(), ResetRelRewrite(), ResetSequence(), ResetUnloggedRelations(), ResetUnloggedRelationsInDbspaceDir(), resolve_anyarray_from_others(), resolve_anyelement_from_others(), resolve_anymultirange_from_others(), resolve_anyrange_from_others(), resolve_column_ref(), resolve_special_varno(), ResourceOwnerForgetBuffer(), ResourceOwnerForgetBufferIO(), ResourceOwnerForgetCatCacheListRef(), ResourceOwnerForgetCatCacheRef(), ResourceOwnerForgetCryptoHash(), ResourceOwnerForgetDSM(), ResourceOwnerForgetFile(), ResourceOwnerForgetHMAC(), ResourceOwnerForgetJIT(), ResourceOwnerForgetLock(), ResourceOwnerForgetPlanCacheRef(), ResourceOwnerForgetRelationRef(), ResourceOwnerForgetSnapshot(), ResourceOwnerForgetTupleDesc(), ResourceOwnerReleaseInternal(), RestoreComboCIDState(), RestoreRelationMap(), RestoreSlotFromDisk(), restrict_and_check_grant(), restriction_selectivity(), revmap_get_buffer(), RewriteQuery(), rewriteTargetListIU(), rewriteTargetView(), rewriteValuesRTE(), ri_Check_Pk_Match(), ri_FetchConstraintInfo(), RI_FKey_cascade_del(), RI_FKey_cascade_upd(), RI_FKey_check(), ri_GenerateQualCollation(), ri_HashCompareOp(), RI_Initial_Check(), ri_LoadConstraintInfo(), RI_PartitionRemove_Check(), ri_PerformCheck(), ri_PlanCheck(), ri_restrict(), ri_set(), roles_is_member_of(), RollbackAndReleaseCurrentSubTransaction(), RollbackToSavepoint(), RS_compile(), RS_execute(), RS_isRegis(), rtree_internal_consistent(), s_check_valid(), s_lock_free_sema(), s_lock_stuck(), SaveCachedPlan(), ScanPgRelation(), ScanSourceDatabasePgClassTuple(), schedule_alarm(), scram_build_secret(), scram_exchange(), scram_verify_plain_password(), search_indexed_tlist_for_phv(), search_indexed_tlist_for_var(), SearchSysCacheList(), seg_cmp(), select_rowmark_type(), send_feedback(), SendBackupManifest(), sendDir(), sendFile(), sendFileWithContent(), sepgsql_attribute_post_create(), sepgsql_database_post_create(), sepgsql_fmgr_hook(), sepgsql_object_access(), sepgsql_proc_post_create(), sepgsql_proc_setattr(), sepgsql_relation_post_create(), sepgsql_relation_setattr(), sepgsql_relation_setattr_extra(), sepgsql_schema_post_create(), seq_redo(), sequence_options(), SerializeComboCIDState(), set_baserel_partition_key_exprs(), set_cheapest(), set_config_option_ext(), set_cte_pathlist(), set_join_references(), set_joinrel_partition_key_exprs(), set_max_safe_fds(), set_output_count(), set_plan_refs(), set_rel_pathlist(), set_rel_size(), set_using_names(), set_worktable_pathlist(), SetAttrMissing(), SetDatabaseEncoding(), SetDefaultACL(), SetMatViewPopulatedState(), SetNextObjectId(), setPath(), SetReindexPending(), SetReindexProcessing(), SetRelationHasSubclass(), SetRelationNumChecks(), SetRelationRuleStatus(), SetRelationTableSpace(), Setup_AF_UNIX(), setup_firstcall(), setup_simple_rel_arrays(), SetupLockInTable(), SharedInvalBackendInit(), SharedRecordTypmodRegistryInit(), shdepChangeDep(), shdepDropOwned(), shdepLockAndCheckObject(), shdepReassignOwned(), shell_archive_file(), shell_archive_shutdown(), shm_toc_lookup(), shmem_exit(), show_grouping_set_keys(), show_sort_group_keys(), show_sortorder_options(), SICleanupQueue(), signal_child(), SignalBackends(), simple_heap_delete(), simple_heap_update(), simple_table_tuple_delete(), simple_table_tuple_update(), simplify_function(), SlabAlloc(), SlabContextCreate(), SlabFree(), SlabRealloc(), slot_compile_deform(), slot_getsomeattrs_int(), SlruReportIOError(), SlruScanDirectory(), smgr_redo(), smgrclose(), SnapBuildAddCommittedTxn(), SnapBuildClearExportedSnapshot(), SnapBuildCommitTxn(), SnapBuildDistributeNewCatalogSnapshot(), SnapBuildExportSnapshot(), SnapBuildFreeSnapshot(), SnapBuildInitialSnapshot(), SnapBuildProcessNewCid(), SnapBuildProcessRunningXacts(), SnapBuildPurgeOlderTxn(), SnapBuildSerialize(), SnapBuildSnapDecRefcount(), SnapBuildWaitSnapshot(), spg_box_quad_get_scankey_bbox(), spg_box_quad_inner_consistent(), spg_box_quad_leaf_consistent(), spg_kd_choose(), spg_kd_inner_consistent(), spg_quad_inner_consistent(), spg_quad_leaf_consistent(), spg_range_quad_inner_consistent(), spg_range_quad_leaf_consistent(), spg_redo(), spg_text_inner_consistent(), spg_text_leaf_consistent(), spgAddNodeAction(), spgbuild(), spgdoinsert(), spgExtractNodeLabels(), spgFormInnerTuple(), spgGetCache(), spggettuple(), spgInnerTest(), spgist_name_inner_consistent(), spgist_name_leaf_consistent(), SpGistGetBuffer(), SpGistPageAddNewItem(), spgMatchNodeAction(), spgPageIndexMultiDelete(), spgprocesspending(), spgRedoAddLeaf(), spgRedoAddNode(), spgRedoSplitTuple(), spgSplitNodeAction(), spgTestLeafTuple(), spgUpdateNodeLink(), spgvalidate(), spgWalk(), SPI_connect_ext(), SPI_cursor_close(), SPI_cursor_open_internal(), SPI_cursor_open_with_args(), SPI_cursor_parse_open(), SPI_datumTransfer(), spi_dest_startup(), SPI_freetuptable(), SPI_palloc(), spi_printtup(), ss_get_location(), SS_process_ctes(), ss_report_location(), ssl_extension_info(), standard_ExecutorRun(), standard_ExecutorStart(), standard_join_search(), standby_decode(), standby_redo(), StandbyAcquireAccessExclusiveLock(), StandbyReleaseAllLocks(), StandbyReleaseXidEntryLocks(), StartBackgroundWorker(), StartSubTransaction(), StartTransactionCommand(), StartupReplicationOrigin(), StartupReplicationSlots(), statapprox_heap(), statext_dependencies_deserialize(), statext_dependencies_load(), statext_expressions_load(), statext_is_kind_built(), statext_mcv_deserialize(), statext_mcv_load(), statext_ndistinct_deserialize(), statext_ndistinct_load(), StatisticsGetRelation(), StatisticsObjIsVisible(), store_att_byval(), StoreAttrDefault(), StoreConstraints(), storeObjectDescription(), StorePartitionBound(), storeQueryResult(), storeRow(), StrategyGetBuffer(), stream_open_file(), string_agg_combine(), string_to_const(), stringify_adefprivs_objtype(), stringify_grant_objtype(), sts_initialize(), substitute_actual_parameters_mutator(), substitute_actual_srf_parameters_mutator(), SubTransGetTopmostTransaction(), summarize_range(), swap_relation_files(), SyncRepReleaseWaiters(), SysCacheGetAttr(), SysCacheGetAttrNotNull(), SysCacheInvalidate(), SysLoggerMain(), systable_beginscan(), systable_beginscan_ordered(), systable_getnext(), systable_getnext_ordered(), SystemAttributeDefinition(), table_index_fetch_tuple(), table_scan_bitmap_next_block(), table_scan_bitmap_next_tuple(), table_scan_getnextslot(), table_scan_sample_next_block(), table_scan_sample_next_tuple(), table_tuple_fetch_row_version(), table_tuple_get_latest_tid(), tblspc_redo(), tbm_add_tuples(), tbm_intersect(), test_atomic_uint32(), test_atomic_uint64(), test_bloomfilter(), test_empty(), test_enc_conversion(), test_fdw_handler(), test_huge_distances(), test_itemptr_pair(), test_lfind32(), test_lfind8_internal(), test_lfind8_le_internal(), test_pattern(), test_predtest(), test_rb_tree(), test_shm_mq_main(), test_single_value(), test_single_value_and_filler(), test_slru_page_delete(), test_slru_page_sync(), test_slru_scan_cb(), test_spinlock(), testcustomrmgrs_redo(), testdelete(), testfind(), testfindltgt(), testleftmost(), testleftright(), testrightleft(), text_format(), text_substring(), thesaurus_lexize(), thesaurusRead(), TidExprListCreate(), timestamp_in(), timestamptz_in(), tliOfPointInHistory(), toast_compress_datum(), toast_decompress_datum(), toast_decompress_datum_slice(), toast_fetch_datum(), toast_fetch_datum_slice(), toast_open_indexes(), TransactionBlockStatusCode(), TransactionIdDidAbort(), TransactionIdDidCommit(), transformAExprBetween(), transformAlterTableStmt(), transformBooleanTest(), transformBoolExpr(), transformCallStmt(), transformColumnDefinition(), transformConstraintAttrs(), transformCreateSchemaStmtElements(), transformCreateStmt(), transformDeclareCursorStmt(), transformExprRecurse(), transformFkeyCheckAttrs(), transformFkeyGetPrimaryKey(), transformFromClauseItem(), transformGenericOptions(), transformInsertStmt(), transformLockingClause(), transformMergeStmt(), transformMultiAssignRef(), transformPartitionBound(), transformPartitionBoundValue(), transformPartitionCmd(), transformPLAssignStmt(), transformRangeSubselect(), transformRuleStmt(), transformSubLink(), transformTableConstraint(), transformUpdateTargetList(), transformWindowDefinitions(), translate_col_privs_multilevel(), trigger_return_old(), triggered_change_notification(), TriggerSetParentTrigger(), TruncateMultiXact(), try_partitionwise_join(), try_relation_open(), tryAttachPartitionForeignKey(), TryReuseForeignKey(), TS_execute_locations_recurse(), TS_execute_recurse(), TS_phrase_execute(), ts_setup_firstcall(), ts_stat_sql(), TSConfigIsVisible(), TSDictionaryIsVisible(), TSParserIsVisible(), tsquery_opr_selec(), tsquery_requires_match(), tsquery_rewrite_query(), tsqueryrecv(), tsquerysend(), TSTemplateIsVisible(), tsvector_setweight(), tsvector_setweight_by_filter(), tsvector_unnest(), tsvector_update_trigger(), tsvectorin(), tsvectorrecv(), tt_setup_firstcall(), ttdummy(), tts_virtual_getsomeattrs(), TupleDescInitBuiltinEntry(), TupleDescInitEntry(), tuplesort_begin_batch(), tuplesort_begin_cluster(), tuplesort_begin_common(), tuplesort_begin_datum(), tuplesort_begin_heap(), tuplesort_begin_index_btree(), tuplesort_begin_index_gist(), tuplesort_begin_index_hash(), tuplesort_free(), tuplesort_gettuple_common(), tuplesort_markpos(), tuplesort_performsort(), tuplesort_puttuple_common(), tuplesort_rescan(), tuplesort_restorepos(), tuplesort_skiptuples(), tuplestore_alloc_read_pointer(), tuplestore_copy_read_pointer(), tuplestore_gettuple(), tuplestore_puttuple_common(), tuplestore_rescan(), tuplestore_select_read_pointer(), tuplestore_set_eflags(), TwoPhaseGetGXact(), TypeCreate(), TypeGetTupleDesc(), typeidType(), typeidTypeRelid(), typeIsOfTypedTable(), TypeIsVisible(), typeOrDomainTypeRelid(), typeTypeId(), unify_hypothetical_args(), UnpinPortal(), update_default_partition_oid(), update_frameheadpos(), update_frametailpos(), update_relispartition(), UpdateActiveSnapshotCommandId(), UpdateDecodingStats(), UpdateLogicalMappings(), UpdateMinRecoveryPoint(), UpdateSharedMemoryConfig(), UpdateSubscriptionRelState(), UpdateTwoPhaseState(), UserAbortTransactionBlock(), UtfToLocal(), uuid_abbrev_abort(), uuid_generate_internal(), vac_update_datfrozenxid(), vac_update_relstats(), vacuumLeafPage(), vacuumLeafRoot(), VacuumUpdateCosts(), validate_index(), validatePartitionedIndex(), varstr_abbrev_abort(), verify_client_proof(), verify_dictoptions(), verify_hash_page(), verifyBackupPageConsistency(), view_has_instead_trigger(), visibilitymap_clear(), visibilitymap_get_status(), visibilitymap_prepare_truncate(), visibilitymap_set(), wait_pid(), WaitForProcSignalBarrier(), WaitForWALToBecomeAvailable(), WaitXLogInsertionsToFinish(), WalRcvWaitForStartPosition(), WalReceiverMain(), WalSndKeepalive(), wchar2char(), window_gettupleslot(), WinGetFuncArgInFrame(), WinGetFuncArgInPartition(), WinRowsArePeers(), WinSetMarkPosition(), worker_spi_main(), write_item(), write_relcache_init_file(), write_relmap_file(), writeListPage(), WriteTempFileBlock(), X509_NAME_to_cstring(), xact_decode(), xact_redo(), XidCacheRemoveRunningXids(), xlog_decode(), xlog_redo(), XLogBackgroundFlush(), XLogBeginInsert(), XLogCheckInvalidPages(), XLogCompressBackupBlock(), XLogEnsureRecordSpace(), XLogFileCopy(), XLogFileInitInternal(), XLogFileRead(), XLogFileReadAnyTLI(), XLogFlush(), XLogInsert(), XLogInsertRecord(), XLogPrefetcherIsFiltered(), XLogPrefetcherNextBlock(), XLogReadBufferForRedoExtended(), XLogReadDetermineTimeline(), XLogRecGetBlockTag(), XLogRecordAssemble(), xlogrecovery_redo(), XLogRegisterBlock(), XLogRegisterBufData(), XLogRegisterBuffer(), XLogSendLogical(), XLogSendPhysical(), XLogWalRcvSendHSFeedback(), XLogWalRcvSendReply(), XLogWrite(), XmlTableGetValue(), and xpath_table().

◆ escape_param_str()

static char * escape_param_str ( const char *  str)
static

Definition at line 2865 of file dblink.c.

2866 {
2867  const char *cp;
2869 
2870  initStringInfo(&buf);
2871 
2872  for (cp = str; *cp; cp++)
2873  {
2874  if (*cp == '\\' || *cp == '\'')
2875  appendStringInfoChar(&buf, '\\');
2876  appendStringInfoChar(&buf, *cp);
2877  }
2878 
2879  return buf.data;
2880 }
void appendStringInfoChar(StringInfo str, char ch)
Definition: stringinfo.c:188

References appendStringInfoChar(), buf, initStringInfo(), and generate_unaccent_rules::str.

Referenced by get_connect_string().

◆ generate_relation_name()

static char * generate_relation_name ( Relation  rel)
static

Definition at line 2490 of file dblink.c.

2491 {
2492  char *nspname;
2493  char *result;
2494 
2495  /* Qualify the name if not visible in search path */
2497  nspname = NULL;
2498  else
2499  nspname = get_namespace_name(rel->rd_rel->relnamespace);
2500 
2501  result = quote_qualified_identifier(nspname, RelationGetRelationName(rel));
2502 
2503  return result;
2504 }
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3324
bool RelationIsVisible(Oid relid)
Definition: namespace.c:711
#define RelationGetRelid(relation)
Definition: rel.h:504
#define RelationGetRelationName(relation)
Definition: rel.h:538
char * quote_qualified_identifier(const char *qualifier, const char *ident)
Definition: ruleutils.c:12014
Form_pg_class rd_rel
Definition: rel.h:111

References get_namespace_name(), quote_qualified_identifier(), RelationData::rd_rel, RelationGetRelationName, RelationGetRelid, and RelationIsVisible().

Referenced by get_sql_delete(), get_sql_insert(), get_sql_update(), and get_tuple_of_interest().

◆ get_attnum_pk_pos()

static int get_attnum_pk_pos ( int *  pkattnums,
int  pknumatts,
int  key 
)
static

Definition at line 2337 of file dblink.c.

2338 {
2339  int i;
2340 
2341  /*
2342  * Not likely a long list anyway, so just scan for the value
2343  */
2344  for (i = 0; i < pknumatts; i++)
2345  if (key == pkattnums[i])
2346  return i;
2347 
2348  return -1;
2349 }

References i, and sort-test::key.

Referenced by get_sql_insert(), and get_sql_update().

◆ get_connect_string()

static char * get_connect_string ( const char *  servername)
static

Definition at line 2775 of file dblink.c.

2776 {
2777  ForeignServer *foreign_server = NULL;
2778  UserMapping *user_mapping;
2779  ListCell *cell;
2781  ForeignDataWrapper *fdw;
2782  AclResult aclresult;
2783  char *srvname;
2784 
2785  static const PQconninfoOption *options = NULL;
2786 
2787  initStringInfo(&buf);
2788 
2789  /*
2790  * Get list of valid libpq options.
2791  *
2792  * To avoid unnecessary work, we get the list once and use it throughout
2793  * the lifetime of this backend process. We don't need to care about
2794  * memory context issues, because PQconndefaults allocates with malloc.
2795  */
2796  if (!options)
2797  {
2798  options = PQconndefaults();
2799  if (!options) /* assume reason for failure is OOM */
2800  ereport(ERROR,
2801  (errcode(ERRCODE_FDW_OUT_OF_MEMORY),
2802  errmsg("out of memory"),
2803  errdetail("Could not get libpq's default connection options.")));
2804  }
2805 
2806  /* first gather the server connstr options */
2807  srvname = pstrdup(servername);
2808  truncate_identifier(srvname, strlen(srvname), false);
2809  foreign_server = GetForeignServerByName(srvname, true);
2810 
2811  if (foreign_server)
2812  {
2813  Oid serverid = foreign_server->serverid;
2814  Oid fdwid = foreign_server->fdwid;
2815  Oid userid = GetUserId();
2816 
2817  user_mapping = GetUserMapping(userid, serverid);
2818  fdw = GetForeignDataWrapper(fdwid);
2819 
2820  /* Check permissions, user must have usage on the server. */
2821  aclresult = object_aclcheck(ForeignServerRelationId, serverid, userid, ACL_USAGE);
2822  if (aclresult != ACLCHECK_OK)
2823  aclcheck_error(aclresult, OBJECT_FOREIGN_SERVER, foreign_server->servername);
2824 
2825  foreach(cell, fdw->options)
2826  {
2827  DefElem *def = lfirst(cell);
2828 
2829  if (is_valid_dblink_option(options, def->defname, ForeignDataWrapperRelationId))
2830  appendStringInfo(&buf, "%s='%s' ", def->defname,
2831  escape_param_str(strVal(def->arg)));
2832  }
2833 
2834  foreach(cell, foreign_server->options)
2835  {
2836  DefElem *def = lfirst(cell);
2837 
2838  if (is_valid_dblink_option(options, def->defname, ForeignServerRelationId))
2839  appendStringInfo(&buf, "%s='%s' ", def->defname,
2840  escape_param_str(strVal(def->arg)));
2841  }
2842 
2843  foreach(cell, user_mapping->options)
2844  {
2845 
2846  DefElem *def = lfirst(cell);
2847 
2848  if (is_valid_dblink_option(options, def->defname, UserMappingRelationId))
2849  appendStringInfo(&buf, "%s='%s' ", def->defname,
2850  escape_param_str(strVal(def->arg)));
2851  }
2852 
2853  return buf.data;
2854  }
2855  else
2856  return NULL;
2857 }
AclResult
Definition: acl.h:182
@ ACLCHECK_OK
Definition: acl.h:183
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
Definition: aclchk.c:2673
AclResult object_aclcheck(Oid classid, Oid objectid, Oid roleid, AclMode mode)
Definition: aclchk.c:3775
ForeignDataWrapper * GetForeignDataWrapper(Oid fdwid)
Definition: foreign.c:37
UserMapping * GetUserMapping(Oid userid, Oid serverid)
Definition: foreign.c:200
ForeignServer * GetForeignServerByName(const char *srvname, bool missing_ok)
Definition: foreign.c:182
Oid GetUserId(void)
Definition: miscinit.c:510
#define ACL_USAGE
Definition: parsenodes.h:91
@ OBJECT_FOREIGN_SERVER
Definition: parsenodes.h:2099
Node * arg
Definition: parsenodes.h:811
List * options
Definition: foreign.h:31
List * options
Definition: foreign.h:42
char * servername
Definition: foreign.h:39
Oid serverid
Definition: foreign.h:36
List * options
Definition: foreign.h:50
#define strVal(v)
Definition: value.h:82

References ACL_USAGE, aclcheck_error(), ACLCHECK_OK, appendStringInfo(), DefElem::arg, buf, DefElem::defname, ereport, errcode(), errdetail(), errmsg(), ERROR, escape_param_str(), ForeignServer::fdwid, GetForeignDataWrapper(), GetForeignServerByName(), GetUserId(), GetUserMapping(), initStringInfo(), is_valid_dblink_option(), lfirst, object_aclcheck(), OBJECT_FOREIGN_SERVER, ForeignDataWrapper::options, ForeignServer::options, UserMapping::options, PQconndefaults(), pstrdup(), ForeignServer::serverid, ForeignServer::servername, strVal, and truncate_identifier().

Referenced by dblink_connect(), and dblink_get_conn().

◆ get_pkey_attnames()

static char ** get_pkey_attnames ( Relation  rel,
int16 indnkeyatts 
)
static

Definition at line 2003 of file dblink.c.

2004 {
2005  Relation indexRelation;
2006  ScanKeyData skey;
2007  SysScanDesc scan;
2008  HeapTuple indexTuple;
2009  int i;
2010  char **result = NULL;
2011  TupleDesc tupdesc;
2012 
2013  /* initialize indnkeyatts to 0 in case no primary key exists */
2014  *indnkeyatts = 0;
2015 
2016  tupdesc = rel->rd_att;
2017 
2018  /* Prepare to scan pg_index for entries having indrelid = this rel. */
2019  indexRelation = table_open(IndexRelationId, AccessShareLock);
2020  ScanKeyInit(&skey,
2021  Anum_pg_index_indrelid,
2022  BTEqualStrategyNumber, F_OIDEQ,
2024 
2025  scan = systable_beginscan(indexRelation, IndexIndrelidIndexId, true,
2026  NULL, 1, &skey);
2027 
2028  while (HeapTupleIsValid(indexTuple = systable_getnext(scan)))
2029  {
2030  Form_pg_index index = (Form_pg_index) GETSTRUCT(indexTuple);
2031 
2032  /* we're only interested if it is the primary key */
2033  if (index->indisprimary)
2034  {
2035  *indnkeyatts = index->indnkeyatts;
2036  if (*indnkeyatts > 0)
2037  {
2038  result = palloc_array(char *, *indnkeyatts);
2039 
2040  for (i = 0; i < *indnkeyatts; i++)
2041  result[i] = SPI_fname(tupdesc, index->indkey.values[i]);
2042  }
2043  break;
2044  }
2045  }
2046 
2047  systable_endscan(scan);
2048  table_close(indexRelation, AccessShareLock);
2049 
2050  return result;
2051 }
void systable_endscan(SysScanDesc sysscan)
Definition: genam.c:599
HeapTuple systable_getnext(SysScanDesc sysscan)
Definition: genam.c:506
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
Definition: genam.c:387
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
FormData_pg_index * Form_pg_index
Definition: pg_index.h:70
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
Definition: scankey.c:76
char * SPI_fname(TupleDesc tupdesc, int fnumber)
Definition: spi.c:1196
#define BTEqualStrategyNumber
Definition: stratnum.h:31
TupleDesc rd_att
Definition: rel.h:112
Definition: type.h:95
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40

References AccessShareLock, BTEqualStrategyNumber, GETSTRUCT, HeapTupleIsValid, i, ObjectIdGetDatum(), palloc_array, RelationData::rd_att, RelationGetRelid, ScanKeyInit(), SPI_fname(), systable_beginscan(), systable_endscan(), systable_getnext(), table_close(), and table_open().

Referenced by dblink_get_pkey().

◆ get_rel_from_relname()

static Relation get_rel_from_relname ( text relname_text,
LOCKMODE  lockmode,
AclMode  aclmode 
)
static

Definition at line 2465 of file dblink.c.

2466 {
2467  RangeVar *relvar;
2468  Relation rel;
2469  AclResult aclresult;
2470 
2471  relvar = makeRangeVarFromNameList(textToQualifiedNameList(relname_text));
2472  rel = table_openrv(relvar, lockmode);
2473 
2474  aclresult = pg_class_aclcheck(RelationGetRelid(rel), GetUserId(),
2475  aclmode);
2476  if (aclresult != ACLCHECK_OK)
2477  aclcheck_error(aclresult, get_relkind_objtype(rel->rd_rel->relkind),
2479 
2480  return rel;
2481 }
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
Definition: aclchk.c:3923
RangeVar * makeRangeVarFromNameList(List *names)
Definition: namespace.c:3105
ObjectType get_relkind_objtype(char relkind)
Relation table_openrv(const RangeVar *relation, LOCKMODE lockmode)
Definition: table.c:83
List * textToQualifiedNameList(text *textval)
Definition: varlena.c:3396

References aclcheck_error(), ACLCHECK_OK, get_relkind_objtype(), GetUserId(), makeRangeVarFromNameList(), pg_class_aclcheck(), RelationData::rd_rel, RelationGetRelationName, RelationGetRelid, table_openrv(), and textToQualifiedNameList().

Referenced by dblink_build_sql_delete(), dblink_build_sql_insert(), dblink_build_sql_update(), and dblink_get_pkey().

◆ get_sql_delete()

static char * get_sql_delete ( Relation  rel,
int *  pkattnums,
int  pknumatts,
char **  tgt_pkattvals 
)
static

Definition at line 2194 of file dblink.c.

2195 {
2196  char *relname;
2197  TupleDesc tupdesc;
2199  int i;
2200 
2201  initStringInfo(&buf);
2202 
2203  /* get relation name including any needed schema prefix and quoting */
2205 
2206  tupdesc = rel->rd_att;
2207 
2208  appendStringInfo(&buf, "DELETE FROM %s WHERE ", relname);
2209  for (i = 0; i < pknumatts; i++)
2210  {
2211  int pkattnum = pkattnums[i];
2212  Form_pg_attribute attr = TupleDescAttr(tupdesc, pkattnum);
2213 
2214  if (i > 0)
2215  appendStringInfoString(&buf, " AND ");
2216 
2218  quote_ident_cstr(NameStr(attr->attname)));
2219 
2220  if (tgt_pkattvals[i] != NULL)
2221  appendStringInfo(&buf, " = %s",
2222  quote_literal_cstr(tgt_pkattvals[i]));
2223  else
2224  appendStringInfoString(&buf, " IS NULL");
2225  }
2226 
2227  return buf.data;
2228 }
#define NameStr(name)
Definition: c.h:730
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
NameData relname
Definition: pg_class.h:38
char * quote_literal_cstr(const char *rawstr)
Definition: quote.c:103
void appendStringInfoString(StringInfo str, const char *s)
Definition: stringinfo.c:176
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92

References appendStringInfo(), appendStringInfoString(), buf, generate_relation_name(), i, initStringInfo(), NameStr, quote_ident_cstr(), quote_literal_cstr(), RelationData::rd_att, relname, and TupleDescAttr.

Referenced by dblink_build_sql_delete().

◆ get_sql_insert()

static char * get_sql_insert ( Relation  rel,
int *  pkattnums,
int  pknumatts,
char **  src_pkattvals,
char **  tgt_pkattvals 
)
static

Definition at line 2114 of file dblink.c.

2115 {
2116  char *relname;
2117  HeapTuple tuple;
2118  TupleDesc tupdesc;
2119  int natts;
2121  char *val;
2122  int key;
2123  int i;
2124  bool needComma;
2125 
2126  initStringInfo(&buf);
2127 
2128  /* get relation name including any needed schema prefix and quoting */
2130 
2131  tupdesc = rel->rd_att;
2132  natts = tupdesc->natts;
2133 
2134  tuple = get_tuple_of_interest(rel, pkattnums, pknumatts, src_pkattvals);
2135  if (!tuple)
2136  ereport(ERROR,
2137  (errcode(ERRCODE_CARDINALITY_VIOLATION),
2138  errmsg("source row not found")));
2139 
2140  appendStringInfo(&buf, "INSERT INTO %s(", relname);
2141 
2142  needComma = false;
2143  for (i = 0; i < natts; i++)
2144  {
2145  Form_pg_attribute att = TupleDescAttr(tupdesc, i);
2146 
2147  if (att->attisdropped)
2148  continue;
2149 
2150  if (needComma)
2151  appendStringInfoChar(&buf, ',');
2152 
2154  quote_ident_cstr(NameStr(att->attname)));
2155  needComma = true;
2156  }
2157 
2158  appendStringInfoString(&buf, ") VALUES(");
2159 
2160  /*
2161  * Note: i is physical column number (counting from 0).
2162  */
2163  needComma = false;
2164  for (i = 0; i < natts; i++)
2165  {
2166  if (TupleDescAttr(tupdesc, i)->attisdropped)
2167  continue;
2168 
2169  if (needComma)
2170  appendStringInfoChar(&buf, ',');
2171 
2172  key = get_attnum_pk_pos(pkattnums, pknumatts, i);
2173 
2174  if (key >= 0)
2175  val = tgt_pkattvals[key] ? pstrdup(tgt_pkattvals[key]) : NULL;
2176  else
2177  val = SPI_getvalue(tuple, tupdesc, i + 1);
2178 
2179  if (val != NULL)
2180  {
2182  pfree(val);
2183  }
2184  else
2185  appendStringInfoString(&buf, "NULL");
2186  needComma = true;
2187  }
2188  appendStringInfoChar(&buf, ')');
2189 
2190  return buf.data;
2191 }
long val
Definition: informix.c:664
char * SPI_getvalue(HeapTuple tuple, TupleDesc tupdesc, int fnumber)
Definition: spi.c:1218

References appendStringInfo(), appendStringInfoChar(), appendStringInfoString(), buf, ereport, errcode(), errmsg(), ERROR, generate_relation_name(), get_attnum_pk_pos(), get_tuple_of_interest(), i, initStringInfo(), sort-test::key, NameStr, TupleDescData::natts, pfree(), pstrdup(), quote_ident_cstr(), quote_literal_cstr(), RelationData::rd_att, relname, SPI_getvalue(), TupleDescAttr, and val.

Referenced by dblink_build_sql_insert().

◆ get_sql_update()

static char * get_sql_update ( Relation  rel,
int *  pkattnums,
int  pknumatts,
char **  src_pkattvals,
char **  tgt_pkattvals 
)
static

Definition at line 2231 of file dblink.c.

2232 {
2233  char *relname;
2234  HeapTuple tuple;
2235  TupleDesc tupdesc;
2236  int natts;
2238  char *val;
2239  int key;
2240  int i;
2241  bool needComma;
2242 
2243  initStringInfo(&buf);
2244 
2245  /* get relation name including any needed schema prefix and quoting */
2247 
2248  tupdesc = rel->rd_att;
2249  natts = tupdesc->natts;
2250 
2251  tuple = get_tuple_of_interest(rel, pkattnums, pknumatts, src_pkattvals);
2252  if (!tuple)
2253  ereport(ERROR,
2254  (errcode(ERRCODE_CARDINALITY_VIOLATION),
2255  errmsg("source row not found")));
2256 
2257  appendStringInfo(&buf, "UPDATE %s SET ", relname);
2258 
2259  /*
2260  * Note: i is physical column number (counting from 0).
2261  */
2262  needComma = false;
2263  for (i = 0; i < natts; i++)
2264  {
2265  Form_pg_attribute attr = TupleDescAttr(tupdesc, i);
2266 
2267  if (attr->attisdropped)
2268  continue;
2269 
2270  if (needComma)
2271  appendStringInfoString(&buf, ", ");
2272 
2273  appendStringInfo(&buf, "%s = ",
2274  quote_ident_cstr(NameStr(attr->attname)));
2275 
2276  key = get_attnum_pk_pos(pkattnums, pknumatts, i);
2277 
2278  if (key >= 0)
2279  val = tgt_pkattvals[key] ? pstrdup(tgt_pkattvals[key]) : NULL;
2280  else
2281  val = SPI_getvalue(tuple, tupdesc, i + 1);
2282 
2283  if (val != NULL)
2284  {
2286  pfree(val);
2287  }
2288  else
2289  appendStringInfoString(&buf, "NULL");
2290  needComma = true;
2291  }
2292 
2293  appendStringInfoString(&buf, " WHERE ");
2294 
2295  for (i = 0; i < pknumatts; i++)
2296  {
2297  int pkattnum = pkattnums[i];
2298  Form_pg_attribute attr = TupleDescAttr(tupdesc, pkattnum);
2299 
2300  if (i > 0)
2301  appendStringInfoString(&buf, " AND ");
2302 
2304  quote_ident_cstr(NameStr(attr->attname)));
2305 
2306  val = tgt_pkattvals[i];
2307 
2308  if (val != NULL)
2310  else
2311  appendStringInfoString(&buf, " IS NULL");
2312  }
2313 
2314  return buf.data;
2315 }

References appendStringInfo(), appendStringInfoString(), buf, ereport, errcode(), errmsg(), ERROR, generate_relation_name(), get_attnum_pk_pos(), get_tuple_of_interest(), i, initStringInfo(), sort-test::key, NameStr, TupleDescData::natts, pfree(), pstrdup(), quote_ident_cstr(), quote_literal_cstr(), RelationData::rd_att, relname, SPI_getvalue(), TupleDescAttr, and val.

Referenced by dblink_build_sql_update().

◆ get_text_array_contents()

static char ** get_text_array_contents ( ArrayType array,
int *  numitems 
)
static

Definition at line 2058 of file dblink.c.

2059 {
2060  int ndim = ARR_NDIM(array);
2061  int *dims = ARR_DIMS(array);
2062  int nitems;
2063  int16 typlen;
2064  bool typbyval;
2065  char typalign;
2066  char **values;
2067  char *ptr;
2068  bits8 *bitmap;
2069  int bitmask;
2070  int i;
2071 
2072  Assert(ARR_ELEMTYPE(array) == TEXTOID);
2073 
2074  *numitems = nitems = ArrayGetNItems(ndim, dims);
2075 
2077  &typlen, &typbyval, &typalign);
2078 
2079  values = palloc_array(char *, nitems);
2080 
2081  ptr = ARR_DATA_PTR(array);
2082  bitmap = ARR_NULLBITMAP(array);
2083  bitmask = 1;
2084 
2085  for (i = 0; i < nitems; i++)
2086  {
2087  if (bitmap && (*bitmap & bitmask) == 0)
2088  {
2089  values[i] = NULL;
2090  }
2091  else
2092  {
2094  ptr = att_addlength_pointer(ptr, typlen, ptr);
2095  ptr = (char *) att_align_nominal(ptr, typalign);
2096  }
2097 
2098  /* advance bitmap pointer if any */
2099  if (bitmap)
2100  {
2101  bitmask <<= 1;
2102  if (bitmask == 0x100)
2103  {
2104  bitmap++;
2105  bitmask = 1;
2106  }
2107  }
2108  }
2109 
2110  return values;
2111 }
#define ARR_NDIM(a)
Definition: array.h:283
#define ARR_DATA_PTR(a)
Definition: array.h:315
#define ARR_NULLBITMAP(a)
Definition: array.h:293
#define ARR_ELEMTYPE(a)
Definition: array.h:285
#define ARR_DIMS(a)
Definition: array.h:287
int ArrayGetNItems(int ndim, const int *dims)
Definition: arrayutils.c:76
#define TextDatumGetCString(d)
Definition: builtins.h:95
uint8 bits8
Definition: c.h:497
#define nitems(x)
Definition: indent.h:31
void get_typlenbyvalalign(Oid typid, int16 *typlen, bool *typbyval, char *typalign)
Definition: lsyscache.c:2229
char typalign
Definition: pg_type.h:176
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
#define att_align_nominal(cur_offset, attalign)
Definition: tupmacs.h:129
#define att_addlength_pointer(cur_offset, attlen, attptr)
Definition: tupmacs.h:157

References ARR_DATA_PTR, ARR_DIMS, ARR_ELEMTYPE, ARR_NDIM, ARR_NULLBITMAP, ArrayGetNItems(), Assert(), att_addlength_pointer, att_align_nominal, get_typlenbyvalalign(), i, nitems, palloc_array, PointerGetDatum(), TextDatumGetCString, typalign, and values.

Referenced by dblink_build_sql_delete(), dblink_build_sql_insert(), and dblink_build_sql_update().

◆ get_tuple_of_interest()

static HeapTuple get_tuple_of_interest ( Relation  rel,
int *  pkattnums,
int  pknumatts,
char **  src_pkattvals 
)
static

Definition at line 2352 of file dblink.c.

2353 {
2354  char *relname;
2355  TupleDesc tupdesc;
2356  int natts;
2358  int ret;
2359  HeapTuple tuple;
2360  int i;
2361 
2362  /*
2363  * Connect to SPI manager
2364  */
2365  if ((ret = SPI_connect()) < 0)
2366  /* internal error */
2367  elog(ERROR, "SPI connect failure - returned %d", ret);
2368 
2369  initStringInfo(&buf);
2370 
2371  /* get relation name including any needed schema prefix and quoting */
2373 
2374  tupdesc = rel->rd_att;
2375  natts = tupdesc->natts;
2376 
2377  /*
2378  * Build sql statement to look up tuple of interest, ie, the one matching
2379  * src_pkattvals. We used to use "SELECT *" here, but it's simpler to
2380  * generate a result tuple that matches the table's physical structure,
2381  * with NULLs for any dropped columns. Otherwise we have to deal with two
2382  * different tupdescs and everything's very confusing.
2383  */
2384  appendStringInfoString(&buf, "SELECT ");
2385 
2386  for (i = 0; i < natts; i++)
2387  {
2388  Form_pg_attribute attr = TupleDescAttr(tupdesc, i);
2389 
2390  if (i > 0)
2391  appendStringInfoString(&buf, ", ");
2392 
2393  if (attr->attisdropped)
2394  appendStringInfoString(&buf, "NULL");
2395  else
2397  quote_ident_cstr(NameStr(attr->attname)));
2398  }
2399 
2400  appendStringInfo(&buf, " FROM %s WHERE ", relname);
2401 
2402  for (i = 0; i < pknumatts; i++)
2403  {
2404  int pkattnum = pkattnums[i];
2405  Form_pg_attribute attr = TupleDescAttr(tupdesc, pkattnum);
2406 
2407  if (i > 0)
2408  appendStringInfoString(&buf, " AND ");
2409 
2411  quote_ident_cstr(NameStr(attr->attname)));
2412 
2413  if (src_pkattvals[i] != NULL)
2414  appendStringInfo(&buf, " = %s",
2415  quote_literal_cstr(src_pkattvals[i]));
2416  else
2417  appendStringInfoString(&buf, " IS NULL");
2418  }
2419 
2420  /*
2421  * Retrieve the desired tuple
2422  */
2423  ret = SPI_exec(buf.data, 0);
2424  pfree(buf.data);
2425 
2426  /*
2427  * Only allow one qualifying tuple
2428  */
2429  if ((ret == SPI_OK_SELECT) && (SPI_processed > 1))
2430  ereport(ERROR,
2431  (errcode(ERRCODE_CARDINALITY_VIOLATION),
2432  errmsg("source criteria matched more than one record")));
2433 
2434  else if (ret == SPI_OK_SELECT && SPI_processed == 1)
2435  {
2436  SPITupleTable *tuptable = SPI_tuptable;
2437 
2438  tuple = SPI_copytuple(tuptable->vals[0]);
2439  SPI_finish();
2440 
2441  return tuple;
2442  }
2443  else
2444  {
2445  /*
2446  * no qualifying tuples
2447  */
2448  SPI_finish();
2449 
2450  return NULL;
2451  }
2452 
2453  /*
2454  * never reached, but keep compiler quiet
2455  */
2456  return NULL;
2457 }
uint64 SPI_processed
Definition: spi.c:45
SPITupleTable * SPI_tuptable
Definition: spi.c:46
int SPI_connect(void)
Definition: spi.c:95
int SPI_finish(void)
Definition: spi.c:183
int SPI_exec(const char *src, long tcount)
Definition: spi.c:628
HeapTuple SPI_copytuple(HeapTuple tuple)
Definition: spi.c:1045
#define SPI_OK_SELECT
Definition: spi.h:86
HeapTuple * vals
Definition: spi.h:26

References appendStringInfo(), appendStringInfoString(), buf, elog(), ereport, errcode(), errmsg(), ERROR, generate_relation_name(), i, initStringInfo(), NameStr, TupleDescData::natts, pfree(), quote_ident_cstr(), quote_literal_cstr(), RelationData::rd_att, relname, SPI_connect(), SPI_copytuple(), SPI_exec(), SPI_finish(), SPI_OK_SELECT, SPI_processed, SPI_tuptable, TupleDescAttr, and SPITupleTable::vals.

Referenced by get_sql_insert(), and get_sql_update().

◆ getConnectionByName()

static remoteConn * getConnectionByName ( const char *  name)
static

Definition at line 2508 of file dblink.c.

2509 {
2510  remoteConnHashEnt *hentry;
2511  char *key;
2512 
2513  if (!remoteConnHash)
2515 
2516  key = pstrdup(name);
2517  truncate_identifier(key, strlen(key), false);
2519  key, HASH_FIND, NULL);
2520 
2521  if (hentry)
2522  return hentry->rconn;
2523 
2524  return NULL;
2525 }
@ HASH_FIND
Definition: hsearch.h:113

References createConnHash(), HASH_FIND, hash_search(), sort-test::key, name, pstrdup(), remoteConnHashEnt::rconn, remoteConnHash, and truncate_identifier().

Referenced by dblink_close(), dblink_disconnect(), dblink_fetch(), dblink_get_conn(), dblink_get_named_conn(), and dblink_open().

◆ is_valid_dblink_option()

static bool is_valid_dblink_option ( const PQconninfoOption options,
const char *  option,
Oid  context 
)
static

Definition at line 2969 of file dblink.c.

2971 {
2972  const PQconninfoOption *opt;
2973 
2974  /* Look up the option in libpq result */
2975  for (opt = options; opt->keyword; opt++)
2976  {
2977  if (strcmp(opt->keyword, option) == 0)
2978  break;
2979  }
2980  if (opt->keyword == NULL)
2981  return false;
2982 
2983  /* Disallow debug options (particularly "replication") */
2984  if (strchr(opt->dispchar, 'D'))
2985  return false;
2986 
2987  /* Disallow "client_encoding" */
2988  if (strcmp(opt->keyword, "client_encoding") == 0)
2989  return false;
2990 
2991  /*
2992  * If the option is "user" or marked secure, it should be specified only
2993  * in USER MAPPING. Others should be specified only in SERVER.
2994  */
2995  if (strcmp(opt->keyword, "user") == 0 || strchr(opt->dispchar, '*'))
2996  {
2997  if (context != UserMappingRelationId)
2998  return false;
2999  }
3000  else
3001  {
3002  if (context != ForeignServerRelationId)
3003  return false;
3004  }
3005 
3006  return true;
3007 }

References _PQconninfoOption::dispchar, and _PQconninfoOption::keyword.

Referenced by dblink_fdw_validator(), and get_connect_string().

◆ materializeQueryResult()

static void materializeQueryResult ( FunctionCallInfo  fcinfo,
PGconn conn,
const char *  conname,
const char *  sql,
bool  fail 
)
static

Definition at line 975 of file dblink.c.

980 {
981  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
982  PGresult *volatile res = NULL;
983  volatile storeInfo sinfo = {0};
984 
985  /* prepTuplestoreResult must have been called previously */
986  Assert(rsinfo->returnMode == SFRM_Materialize);
987 
988  sinfo.fcinfo = fcinfo;
989 
990  PG_TRY();
991  {
992  /* Create short-lived memory context for data conversions */
993  sinfo.tmpcontext = AllocSetContextCreate(CurrentMemoryContext,
994  "dblink temporary context",
996 
997  /* execute query, collecting any tuples into the tuplestore */
998  res = storeQueryResult(&sinfo, conn, sql);
999 
1000  if (!res ||
1003  {
1004  /*
1005  * dblink_res_error will clear the passed PGresult, so we need
1006  * this ugly dance to avoid doing so twice during error exit
1007  */
1008  PGresult *res1 = res;
1009 
1010  res = NULL;
1011  dblink_res_error(conn, conname, res1, fail,
1012  "while executing query");
1013  /* if fail isn't set, we'll return an empty query result */
1014  }
1015  else if (PQresultStatus(res) == PGRES_COMMAND_OK)
1016  {
1017  /*
1018  * storeRow didn't get called, so we need to convert the command
1019  * status string to a tuple manually
1020  */
1021  TupleDesc tupdesc;
1022  AttInMetadata *attinmeta;
1023  Tuplestorestate *tupstore;
1024  HeapTuple tuple;
1025  char *values[1];
1026  MemoryContext oldcontext;
1027 
1028  /*
1029  * need a tuple descriptor representing one TEXT column to return
1030  * the command status string as our result tuple
1031  */
1032  tupdesc = CreateTemplateTupleDesc(1);
1033  TupleDescInitEntry(tupdesc, (AttrNumber) 1, "status",
1034  TEXTOID, -1, 0);
1035  attinmeta = TupleDescGetAttInMetadata(tupdesc);
1036 
1037  oldcontext = MemoryContextSwitchTo(rsinfo->econtext->ecxt_per_query_memory);
1038  tupstore = tuplestore_begin_heap(true, false, work_mem);
1039  rsinfo->setResult = tupstore;
1040  rsinfo->setDesc = tupdesc;
1041  MemoryContextSwitchTo(oldcontext);
1042 
1043  values[0] = PQcmdStatus(res);
1044 
1045  /* build the tuple and put it into the tuplestore. */
1046  tuple = BuildTupleFromCStrings(attinmeta, values);
1047  tuplestore_puttuple(tupstore, tuple);
1048 
1049  PQclear(res);
1050  res = NULL;
1051  }
1052  else
1053  {
1055  /* storeRow should have created a tuplestore */
1056  Assert(rsinfo->setResult != NULL);
1057 
1058  PQclear(res);
1059  res = NULL;
1060  }
1061 
1062  /* clean up data conversion short-lived memory context */
1063  if (sinfo.tmpcontext != NULL)
1064  MemoryContextDelete(sinfo.tmpcontext);
1065  sinfo.tmpcontext = NULL;
1066 
1067  PQclear(sinfo.last_res);
1068  sinfo.last_res = NULL;
1069  PQclear(sinfo.cur_res);
1070  sinfo.cur_res = NULL;
1071  }
1072  PG_CATCH();
1073  {
1074  /* be sure to release any libpq result we collected */
1075  PQclear(res);
1076  PQclear(sinfo.last_res);
1077  PQclear(sinfo.cur_res);
1078  /* and clear out any pending data in libpq */
1079  while ((res = PQgetResult(conn)) != NULL)
1080  PQclear(res);
1081  PG_RE_THROW();
1082  }
1083  PG_END_TRY();
1084 }
#define PG_RE_THROW()
Definition: elog.h:411
#define PG_CATCH(...)
Definition: elog.h:380
@ SFRM_Materialize
Definition: execnodes.h:311
int work_mem
Definition: globals.c:125
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:403
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
fmNodePtr resultinfo
Definition: fmgr.h:89
Tuplestorestate * tuplestore_begin_heap(bool randomAccess, bool interXact, int maxKBytes)
Definition: tuplestore.c:318
void tuplestore_puttuple(Tuplestorestate *state, HeapTuple tuple)
Definition: tuplestore.c:730

References res, and FunctionCallInfoBaseData::resultinfo.

Referenced by dblink_record_internal().

◆ materializeResult()

static void materializeResult ( FunctionCallInfo  fcinfo,
PGconn conn,
PGresult res 
)
static

Definition at line 836 of file dblink.c.

837 {
838  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
839 
840  /* prepTuplestoreResult must have been called previously */
841  Assert(rsinfo->returnMode == SFRM_Materialize);
842 
843  PG_TRY();
844  {
845  TupleDesc tupdesc;
846  bool is_sql_cmd;
847  int ntuples;
848  int nfields;
849 
851  {
852  is_sql_cmd = true;
853 
854  /*
855  * need a tuple descriptor representing one TEXT column to return
856  * the command status string as our result tuple
857  */
858  tupdesc = CreateTemplateTupleDesc(1);
859  TupleDescInitEntry(tupdesc, (AttrNumber) 1, "status",
860  TEXTOID, -1, 0);
861  ntuples = 1;
862  nfields = 1;
863  }
864  else
865  {
867 
868  is_sql_cmd = false;
869 
870  /* get a tuple descriptor for our result type */
871  switch (get_call_result_type(fcinfo, NULL, &tupdesc))
872  {
873  case TYPEFUNC_COMPOSITE:
874  /* success */
875  break;
876  case TYPEFUNC_RECORD:
877  /* failed to determine actual type of RECORD */
878  ereport(ERROR,
879  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
880  errmsg("function returning record called in context "
881  "that cannot accept type record")));
882  break;
883  default:
884  /* result type isn't composite */
885  elog(ERROR, "return type must be a row type");
886  break;
887  }
888 
889  /* make sure we have a persistent copy of the tupdesc */
890  tupdesc = CreateTupleDescCopy(tupdesc);
891  ntuples = PQntuples(res);
892  nfields = PQnfields(res);
893  }
894 
895  /*
896  * check result and tuple descriptor have the same number of columns
897  */
898  if (nfields != tupdesc->natts)
899  ereport(ERROR,
900  (errcode(ERRCODE_DATATYPE_MISMATCH),
901  errmsg("remote query result rowtype does not match "
902  "the specified FROM clause rowtype")));
903 
904  if (ntuples > 0)
905  {
906  AttInMetadata *attinmeta;
907  int nestlevel = -1;
908  Tuplestorestate *tupstore;
909  MemoryContext oldcontext;
910  int row;
911  char **values;
912 
913  attinmeta = TupleDescGetAttInMetadata(tupdesc);
914 
915  /* Set GUCs to ensure we read GUC-sensitive data types correctly */
916  if (!is_sql_cmd)
917  nestlevel = applyRemoteGucs(conn);
918 
920  tupstore = tuplestore_begin_heap(true, false, work_mem);
921  rsinfo->setResult = tupstore;
922  rsinfo->setDesc = tupdesc;
923  MemoryContextSwitchTo(oldcontext);
924 
925  values = palloc_array(char *, nfields);
926 
927  /* put all tuples into the tuplestore */
928  for (row = 0; row < ntuples; row++)
929  {
930  HeapTuple tuple;
931 
932  if (!is_sql_cmd)
933  {
934  int i;
935 
936  for (i = 0; i < nfields; i++)
937  {
938  if (PQgetisnull(res, row, i))
939  values[i] = NULL;
940  else
941  values[i] = PQgetvalue(res, row, i);
942  }
943  }
944  else
945  {
946  values[0] = PQcmdStatus(res);
947  }
948 
949  /* build the tuple and put it into the tuplestore. */
950  tuple = BuildTupleFromCStrings(attinmeta, values);
951  tuplestore_puttuple(tupstore, tuple);
952  }
953 
954  /* clean up GUC settings, if we changed any */
955  restoreLocalGucs(nestlevel);
956  }
957  }
958  PG_FINALLY();
959  {
960  /* be sure to release the libpq result */
961  PQclear(res);
962  }
963  PG_END_TRY();
964 }
int PQntuples(const PGresult *res)
Definition: fe-exec.c:3314
char * PQgetvalue(const PGresult *res, int tup_num, int field_num)
Definition: fe-exec.c:3709
int PQgetisnull(const PGresult *res, int tup_num, int field_num)
Definition: fe-exec.c:3734
int PQnfields(const PGresult *res)
Definition: fe-exec.c:3322
TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo, Oid *resultTypeId, TupleDesc *resultTupleDesc)
Definition: funcapi.c:276
@ TYPEFUNC_COMPOSITE
Definition: funcapi.h:149
@ TYPEFUNC_RECORD
Definition: funcapi.h:151
MemoryContext ecxt_per_query_memory
Definition: execnodes.h:256
SetFunctionReturnMode returnMode
Definition: execnodes.h:330
ExprContext * econtext
Definition: execnodes.h:326
TupleDesc CreateTupleDescCopy(TupleDesc tupdesc)
Definition: tupdesc.c:111

References applyRemoteGucs(), Assert(), BuildTupleFromCStrings(), conn, CreateTemplateTupleDesc(), CreateTupleDescCopy(), ReturnSetInfo::econtext, ExprContext::ecxt_per_query_memory, elog(), ereport, errcode(), errmsg(), ERROR, get_call_result_type(), i, MemoryContextSwitchTo(), TupleDescData::natts, palloc_array, PG_END_TRY, PG_FINALLY, PG_TRY, PGRES_COMMAND_OK, PGRES_TUPLES_OK, PQclear(), PQcmdStatus(), PQgetisnull(), PQgetvalue(), PQnfields(), PQntuples(), PQresultStatus(), res, restoreLocalGucs(), FunctionCallInfoBaseData::resultinfo, ReturnSetInfo::returnMode, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, SFRM_Materialize, TupleDescGetAttInMetadata(), TupleDescInitEntry(), tuplestore_begin_heap(), tuplestore_puttuple(), TYPEFUNC_COMPOSITE, TYPEFUNC_RECORD, values, and work_mem.

Referenced by dblink_fetch(), and dblink_record_internal().

◆ pg_attribute_noreturn()

static void pg_attribute_noreturn ( )
static

Definition at line 168 of file dblink.c.

170 {
171  if (conname)
172  ereport(ERROR,
173  (errcode(ERRCODE_CONNECTION_DOES_NOT_EXIST),
174  errmsg("connection \"%s\" not available", conname)));
175  else
176  ereport(ERROR,
177  (errcode(ERRCODE_CONNECTION_DOES_NOT_EXIST),
178  errmsg("connection not available")));
179 }

References ereport, errcode(), errmsg(), and ERROR.

◆ PG_FUNCTION_INFO_V1() [1/20]

PG_FUNCTION_INFO_V1 ( dblink_build_sql_delete  )

◆ PG_FUNCTION_INFO_V1() [2/20]

PG_FUNCTION_INFO_V1 ( dblink_build_sql_insert  )

◆ PG_FUNCTION_INFO_V1() [3/20]

PG_FUNCTION_INFO_V1 ( dblink_build_sql_update  )

◆ PG_FUNCTION_INFO_V1() [4/20]

PG_FUNCTION_INFO_V1 ( dblink_cancel_query  )

◆ PG_FUNCTION_INFO_V1() [5/20]

PG_FUNCTION_INFO_V1 ( dblink_close  )

◆ PG_FUNCTION_INFO_V1() [6/20]

PG_FUNCTION_INFO_V1 ( dblink_connect  )

◆ PG_FUNCTION_INFO_V1() [7/20]

PG_FUNCTION_INFO_V1 ( dblink_current_query  )

◆ PG_FUNCTION_INFO_V1() [8/20]

PG_FUNCTION_INFO_V1 ( dblink_disconnect  )

◆ PG_FUNCTION_INFO_V1() [9/20]

PG_FUNCTION_INFO_V1 ( dblink_error_message  )

◆ PG_FUNCTION_INFO_V1() [10/20]

PG_FUNCTION_INFO_V1 ( dblink_exec  )

◆ PG_FUNCTION_INFO_V1() [11/20]

PG_FUNCTION_INFO_V1 ( dblink_fdw_validator  )

◆ PG_FUNCTION_INFO_V1() [12/20]

PG_FUNCTION_INFO_V1 ( dblink_fetch  )

◆ PG_FUNCTION_INFO_V1() [13/20]

PG_FUNCTION_INFO_V1 ( dblink_get_connections  )

◆ PG_FUNCTION_INFO_V1() [14/20]

PG_FUNCTION_INFO_V1 ( dblink_get_notify  )

◆ PG_FUNCTION_INFO_V1() [15/20]

PG_FUNCTION_INFO_V1 ( dblink_get_pkey  )

◆ PG_FUNCTION_INFO_V1() [16/20]

PG_FUNCTION_INFO_V1 ( dblink_get_result  )

◆ PG_FUNCTION_INFO_V1() [17/20]

PG_FUNCTION_INFO_V1 ( dblink_is_busy  )

◆ PG_FUNCTION_INFO_V1() [18/20]

PG_FUNCTION_INFO_V1 ( dblink_open  )

◆ PG_FUNCTION_INFO_V1() [19/20]

PG_FUNCTION_INFO_V1 ( dblink_record  )

◆ PG_FUNCTION_INFO_V1() [20/20]

PG_FUNCTION_INFO_V1 ( dblink_send_query  )

◆ PQclear()

PQclear ( res  )

Referenced by _check_database_version(), _doSetSessionAuth(), _selectOutputSchema(), _selectTableAccessMethod(), _selectTablespace(), add_tablespace_footer(), addFooterToPublicationDesc(), advanceConnectionState(), append_depends_on_extension(), appendQualifiedRelation(), BaseBackup(), binary_upgrade_set_pg_class_oids(), binary_upgrade_set_type_oids_by_type_oid(), buildMatViewRefreshDependencies(), buildShSecLabels(), check_for_data_types_usage(), check_for_incompatible_polymorphics(), check_for_isn_and_int8_passing_mismatch(), check_for_pg_role_prefix(), check_for_prepared_transactions(), check_for_tables_with_oids(), check_for_user_defined_encoding_conversions(), check_for_user_defined_postfix_ops(), check_is_install_user(), check_loadable_libraries(), check_prepare_conn(), check_proper_datallowconn(), ClearOrSaveResult(), close_cursor(), cluster_all_databases(), collectComments(), collectRoleNames(), collectSecLabels(), compile_database_list(), compile_relation_list_one_db(), ConnectDatabase(), connectDatabase(), connectToServer(), convertTSFunction(), create_cursor(), CreateReplicationSlot(), createViewAsClause(), dblink_close(), dblink_exec(), dblink_fetch(), dblink_open(), dblink_res_error(), deallocate_one(), deallocate_query(), describeAccessMethods(), describeAggregates(), describeConfigurationParameters(), describeFunctions(), describeOneTableDetails(), describeOneTSConfig(), describeOneTSParser(), describeOperators(), describePublications(), DescribeQuery(), describeRoles(), describeSubscriptions(), describeTableDetails(), describeTablespaces(), describeTypes(), descriptor_free(), discardUntilSync(), do_lo_import(), do_sql_command_end(), dropDBs(), DropReplicationSlot(), dropRoles(), dropTablespaces(), dumpAgg(), dumpBaseType(), dumpCollation(), dumpCompositeType(), dumpConversion(), dumpDatabase(), dumpDatabaseConfig(), dumpDatabases(), dumpDomain(), dumpEnumType(), dumpForeignServer(), dumpFunc(), dumpLOs(), dumpOpclass(), dumpOpfamily(), dumpOpr(), dumpRangeType(), dumpRoleGUCPrivs(), dumpRoleMembership(), dumpRoles(), dumpRule(), dumpSearchPath(), dumpSequence(), dumpSequenceData(), dumpStatisticsExt(), dumpTable(), dumpTableAttach(), dumpTableData_copy(), dumpTableData_insert(), dumpTableSchema(), dumpTablespaces(), dumpTSConfig(), dumpTSDictionary(), dumpUserConfig(), dumpUserMappings(), ecpg_autostart_transaction(), ecpg_check_PQresult(), ecpg_process_output(), ECPGdescribe(), ECPGsetcommit(), ECPGtrans(), EndDBCopyMode(), exec_command_password(), ExecQueryUsingCursor(), execute_foreign_modify(), executeCommand(), executeMaintenanceCommand(), executeQueryOrDie(), ExecuteSqlCommand(), ExecuteSqlStatement(), executeStatement(), expand_dbname_patterns(), expand_extension_name_patterns(), expand_foreign_server_name_patterns(), expand_schema_name_patterns(), expand_table_name_patterns(), fail_lo_xact(), fetch_more_data(), finish_lo_xact(), get_create_object_cmd(), get_db_infos(), get_language_name(), get_loadable_libraries(), get_next_possible_free_pg_type_oid(), get_parallel_object_list(), get_rel_infos(), get_remote_estimate(), get_returning_data(), get_synchronized_snapshot(), get_tablespace_paths(), get_template0_info(), getAccessMethods(), getAdditionalACLs(), getAggregates(), getCasts(), getCollations(), GetConnection(), getConstraints(), getConversions(), getCopyStart(), getDefaultACLs(), getDependencies(), getDomainConstraints(), getEventTriggers(), getExtendedStatistics(), getExtensionMembership(), getExtensions(), getForeignDataWrappers(), getForeignServers(), getFormattedTypeName(), getFuncs(), getIndexes(), getInherits(), getLOs(), getNamespaces(), getOpclasses(), getOperators(), getOpfamilies(), getParamDescriptions(), getPartitioningInfo(), getPolicies(), getProcLangs(), getPublicationNamespaces(), getPublications(), getPublicationTables(), getRowDescriptions(), getRules(), GetSlotInformation(), getSubscriptions(), getTableAttrs(), GetTableInfo(), getTables(), getTransforms(), getTriggers(), getTSConfigurations(), getTSDictionaries(), getTSParsers(), getTSTemplates(), getTypes(), handleCopyIn(), HandleCopyResult(), HandleEndOfCopyStream(), init_libpq_conn(), initGenerateDataClientSide(), libpq_fetch_file(), libpq_traverse_files(), libpqrcv_connect(), libpqrcv_create_slot(), libpqrcv_endstreaming(), libpqrcv_exec(), libpqrcv_identify_system(), libpqrcv_PQexec(), libpqrcv_readtimelinehistoryfile(), libpqrcv_receive(), libpqrcv_startstreaming(), listAllDbs(), listCasts(), listCollations(), listConversions(), listDbRoleSettings(), listDefaultACLs(), listDomains(), listEventTriggers(), listExtendedStats(), listExtensionContents(), listExtensions(), listForeignDataWrappers(), listForeignServers(), listForeignTables(), listLanguages(), listLargeObjects(), listOneExtensionContents(), listOperatorClasses(), listOperatorFamilies(), listOpFamilyFunctions(), listOpFamilyOperators(), listPartitionedTables(), listPublications(), listSchemas(), listTables(), listTSConfigs(), listTSConfigsVerbose(), listTSDictionaries(), listTSParsers(), listTSParsersVerbose(), listTSTemplates(), listUserMappings(), lo_close(), lo_creat(), lo_create(), lo_initialize(), lo_lseek(), lo_lseek64(), lo_open(), lo_read(), lo_tell(), lo_tell64(), lo_truncate(), lo_truncate64(), lo_unlink(), lo_write(), lockTableForWorker(), lookup_object_oid(), main(), materializeResult(), objectDescription(), old_9_6_invalidate_hash_indexes(), permissionsList(), pgfdw_cancel_query_end(), pgfdw_exec_cleanup_query_end(), pgfdw_finish_pre_commit_cleanup(), pgfdw_get_cleanup_result(), pgfdw_get_result(), pgfdw_report_error(), pgfdw_xact_callback(), postgresAcquireSampleRowsFunc(), postgresAnalyzeForeignTable(), postgresEndDirectModify(), postgresGetAnalyzeInfoForForeignTable(), postgresImportForeignSchema(), postgresReScanForeignScan(), PQconnectPoll(), PQencryptPasswordConn(), pqEndcopy3(), pqGetErrorNotice3(), PQsetClientEncoding(), prepare_common(), prepare_foreign_modify(), prepareCommand(), process_queued_fetch_requests(), process_result(), processExtensionTables(), processQueryResult(), readCommandResponse(), ReceiveCopyData(), ReceiveXlogStream(), reindex_all_databases(), report_extension_updates(), RetrieveDataDirCreatePerm(), RetrieveWalSegSize(), run_permutation(), run_simple_command(), run_simple_query(), RunIdentifySystem(), SendQuery(), set_frozenxids(), set_locale_and_encoding(), setup_connection(), sql_conn(), sql_exec(), start_lo_xact(), store_returning_result(), storeQueryResult(), StreamLogicalLog(), TableCommandResultHandler(), test_multi_pipelines(), test_nosync(), test_pipeline_abort(), test_pipeline_idle(), test_pipelined_insert(), test_prepared(), test_simple_pipeline(), test_singlerowmode(), test_transaction(), try_complete_step(), tryExecuteStatement(), vacuum_all_databases(), vacuum_one_database(), and vacuumlo().

◆ prepTuplestoreResult()

static void prepTuplestoreResult ( FunctionCallInfo  fcinfo)
static

Definition at line 808 of file dblink.c.

809 {
810  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
811 
812  /* check to see if query supports us returning a tuplestore */
813  if (rsinfo == NULL || !IsA(rsinfo, ReturnSetInfo))
814  ereport(ERROR,
815  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
816  errmsg("set-valued function called in context that cannot accept a set")));
817  if (!(rsinfo->allowedModes & SFRM_Materialize))
818  ereport(ERROR,
819  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
820  errmsg("materialize mode required, but it is not allowed in this context")));
821 
822  /* let the executor know we're sending back a tuplestore */
823  rsinfo->returnMode = SFRM_Materialize;
824 
825  /* caller must fill these to return a non-empty result */
826  rsinfo->setResult = NULL;
827  rsinfo->setDesc = NULL;
828 }
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
int allowedModes
Definition: execnodes.h:328

References ReturnSetInfo::allowedModes, ereport, errcode(), errmsg(), ERROR, if(), IsA, FunctionCallInfoBaseData::resultinfo, ReturnSetInfo::returnMode, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, and SFRM_Materialize.

Referenced by dblink_fetch(), and dblink_record_internal().

◆ quote_ident_cstr()

static char * quote_ident_cstr ( char *  rawstr)
static

Definition at line 2322 of file dblink.c.

2323 {
2324  text *rawstr_text;
2325  text *result_text;
2326  char *result;
2327 
2328  rawstr_text = cstring_to_text(rawstr);
2330  PointerGetDatum(rawstr_text)));
2331  result = text_to_cstring(result_text);
2332 
2333  return result;
2334 }
#define DatumGetTextPP(X)
Definition: fmgr.h:292
#define DirectFunctionCall1(func, arg1)
Definition: fmgr.h:642
Datum quote_ident(PG_FUNCTION_ARGS)
Definition: quote.c:25

References cstring_to_text(), DatumGetTextPP, DirectFunctionCall1, PointerGetDatum(), quote_ident(), and text_to_cstring().

Referenced by get_sql_delete(), get_sql_insert(), get_sql_update(), and get_tuple_of_interest().

◆ restoreLocalGucs()

static void restoreLocalGucs ( int  nestlevel)
static

Definition at line 3072 of file dblink.c.

3073 {
3074  /* Do nothing if no new nestlevel was created */
3075  if (nestlevel > 0)
3076  AtEOXact_GUC(true, nestlevel);
3077 }
void AtEOXact_GUC(bool isCommit, int nestLevel)
Definition: guc.c:2215

References AtEOXact_GUC().

Referenced by materializeResult(), and storeQueryResult().

◆ storeQueryResult()

static PGresult * storeQueryResult ( volatile storeInfo sinfo,
PGconn conn,
const char *  sql 
)
static

Definition at line 1090 of file dblink.c.

1091 {
1092  bool first = true;
1093  int nestlevel = -1;
1094  PGresult *res;
1095 
1096  if (!PQsendQuery(conn, sql))
1097  elog(ERROR, "could not send query: %s", pchomp(PQerrorMessage(conn)));
1098 
1099  if (!PQsetSingleRowMode(conn)) /* shouldn't fail */
1100  elog(ERROR, "failed to set single-row mode for dblink query");
1101 
1102  for (;;)
1103  {
1105 
1106  sinfo->cur_res = PQgetResult(conn);
1107  if (!sinfo->cur_res)
1108  break;
1109 
1110  if (PQresultStatus(sinfo->cur_res) == PGRES_SINGLE_TUPLE)
1111  {
1112  /* got one row from possibly-bigger resultset */
1113 
1114  /*
1115  * Set GUCs to ensure we read GUC-sensitive data types correctly.
1116  * We shouldn't do this until we have a row in hand, to ensure
1117  * libpq has seen any earlier ParameterStatus protocol messages.
1118  */
1119  if (first && nestlevel < 0)
1120  nestlevel = applyRemoteGucs(conn);
1121 
1122  storeRow(sinfo, sinfo->cur_res, first);
1123 
1124  PQclear(sinfo->cur_res);
1125  sinfo->cur_res = NULL;
1126  first = false;
1127  }
1128  else
1129  {
1130  /* if empty resultset, fill tuplestore header */
1131  if (first && PQresultStatus(sinfo->cur_res) == PGRES_TUPLES_OK)
1132  storeRow(sinfo, sinfo->cur_res, first);
1133 
1134  /* store completed result at last_res */
1135  PQclear(sinfo->last_res);
1136  sinfo->last_res = sinfo->cur_res;
1137  sinfo->cur_res = NULL;
1138  first = true;
1139  }
1140  }
1141 
1142  /* clean up GUC settings, if we changed any */
1143  restoreLocalGucs(nestlevel);
1144 
1145  /* return last_res */
1146  res = sinfo->last_res;
1147  sinfo->last_res = NULL;
1148  return res;
1149 }
int PQsetSingleRowMode(PGconn *conn)
Definition: fe-exec.c:1929
@ PGRES_SINGLE_TUPLE
Definition: libpq-fe.h:110
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:121

References applyRemoteGucs(), CHECK_FOR_INTERRUPTS, conn, storeInfo::cur_res, elog(), ERROR, storeInfo::last_res, pchomp(), PGRES_SINGLE_TUPLE, PGRES_TUPLES_OK, PQclear(), PQerrorMessage(), PQgetResult(), PQresultStatus(), PQsendQuery(), PQsetSingleRowMode(), res, restoreLocalGucs(), and storeRow().

◆ storeRow()

static void storeRow ( volatile storeInfo sinfo,
PGresult res,
bool  first 
)
static

Definition at line 1158 of file dblink.c.

1159 {
1160  int nfields = PQnfields(res);
1161  HeapTuple tuple;
1162  int i;
1163  MemoryContext oldcontext;
1164 
1165  if (first)
1166  {
1167  /* Prepare for new result set */
1168  ReturnSetInfo *rsinfo = (ReturnSetInfo *) sinfo->fcinfo->resultinfo;
1169  TupleDesc tupdesc;
1170 
1171  /*
1172  * It's possible to get more than one result set if the query string
1173  * contained multiple SQL commands. In that case, we follow PQexec's
1174  * traditional behavior of throwing away all but the last result.
1175  */
1176  if (sinfo->tuplestore)
1177  tuplestore_end(sinfo->tuplestore);
1178  sinfo->tuplestore = NULL;
1179 
1180  /* get a tuple descriptor for our result type */
1181  switch (get_call_result_type(sinfo->fcinfo, NULL, &tupdesc))
1182  {
1183  case TYPEFUNC_COMPOSITE:
1184  /* success */
1185  break;
1186  case TYPEFUNC_RECORD:
1187  /* failed to determine actual type of RECORD */
1188  ereport(ERROR,
1189  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1190  errmsg("function returning record called in context "
1191  "that cannot accept type record")));
1192  break;
1193  default:
1194  /* result type isn't composite */
1195  elog(ERROR, "return type must be a row type");
1196  break;
1197  }
1198 
1199  /* make sure we have a persistent copy of the tupdesc */
1200  tupdesc = CreateTupleDescCopy(tupdesc);
1201 
1202  /* check result and tuple descriptor have the same number of columns */
1203  if (nfields != tupdesc->natts)
1204  ereport(ERROR,
1205  (errcode(ERRCODE_DATATYPE_MISMATCH),
1206  errmsg("remote query result rowtype does not match "
1207  "the specified FROM clause rowtype")));
1208 
1209  /* Prepare attinmeta for later data conversions */
1210  sinfo->attinmeta = TupleDescGetAttInMetadata(tupdesc);
1211 
1212  /* Create a new, empty tuplestore */
1213  oldcontext = MemoryContextSwitchTo(rsinfo->econtext->ecxt_per_query_memory);
1214  sinfo->tuplestore = tuplestore_begin_heap(true, false, work_mem);
1215  rsinfo->setResult = sinfo->tuplestore;
1216  rsinfo->setDesc = tupdesc;
1217  MemoryContextSwitchTo(oldcontext);
1218 
1219  /* Done if empty resultset */
1220  if (PQntuples(res) == 0)
1221  return;
1222 
1223  /*
1224  * Set up sufficiently-wide string pointers array; this won't change
1225  * in size so it's easy to preallocate.
1226  */
1227  if (sinfo->cstrs)
1228  pfree(sinfo->cstrs);
1229  sinfo->cstrs = palloc_array(char *, nfields);
1230  }
1231 
1232  /* Should have a single-row result if we get here */
1233  Assert(PQntuples(res) == 1);
1234 
1235  /*
1236  * Do the following work in a temp context that we reset after each tuple.
1237  * This cleans up not only the data we have direct access to, but any
1238  * cruft the I/O functions might leak.
1239  */
1240  oldcontext = MemoryContextSwitchTo(sinfo->tmpcontext);
1241 
1242  /*
1243  * Fill cstrs with null-terminated strings of column values.
1244  */
1245  for (i = 0; i < nfields; i++)
1246  {
1247  if (PQgetisnull(res, 0, i))
1248  sinfo->cstrs[i] = NULL;
1249  else
1250  sinfo->cstrs[i] = PQgetvalue(res, 0, i);
1251  }
1252 
1253  /* Convert row to a tuple, and add it to the tuplestore */
1254  tuple = BuildTupleFromCStrings(sinfo->attinmeta, sinfo->cstrs);
1255 
1256  tuplestore_puttuple(sinfo->tuplestore, tuple);
1257 
1258  /* Clean up */
1259  MemoryContextSwitchTo(oldcontext);
1260  MemoryContextReset(sinfo->tmpcontext);
1261 }
void MemoryContextReset(MemoryContext context)
Definition: mcxt.c:330
void tuplestore_end(Tuplestorestate *state)
Definition: tuplestore.c:453

References Assert(), storeInfo::attinmeta, BuildTupleFromCStrings(), CreateTupleDescCopy(), storeInfo::cstrs, ReturnSetInfo::econtext, ExprContext::ecxt_per_query_memory, elog(), ereport, errcode(), errmsg(), ERROR, storeInfo::fcinfo, get_call_result_type(), i, if(), MemoryContextReset(), MemoryContextSwitchTo(), TupleDescData::natts, palloc_array, pfree(), PQgetisnull(), PQgetvalue(), PQnfields(), PQntuples(), res, FunctionCallInfoBaseData::resultinfo, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, storeInfo::tmpcontext, TupleDescGetAttInMetadata(), storeInfo::tuplestore, tuplestore_begin_heap(), tuplestore_end(), tuplestore_puttuple(), TYPEFUNC_COMPOSITE, TYPEFUNC_RECORD, and work_mem.

Referenced by storeQueryResult().

◆ validate_pkattnums()

static void validate_pkattnums ( Relation  rel,
int2vector pkattnums_arg,
int32  pknumatts_arg,
int **  pkattnums,
int *  pknumatts 
)
static

Definition at line 2898 of file dblink.c.

2901 {
2902  TupleDesc tupdesc = rel->rd_att;
2903  int natts = tupdesc->natts;
2904  int i;
2905 
2906  /* Don't take more array elements than there are */
2907  pknumatts_arg = Min(pknumatts_arg, pkattnums_arg->dim1);
2908 
2909  /* Must have at least one pk attnum selected */
2910  if (pknumatts_arg <= 0)
2911  ereport(ERROR,
2912  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
2913  errmsg("number of key attributes must be > 0")));
2914 
2915  /* Allocate output array */
2916  *pkattnums = palloc_array(int, pknumatts_arg);
2917  *pknumatts = pknumatts_arg;
2918 
2919  /* Validate attnums and convert to internal form */
2920  for (i = 0; i < pknumatts_arg; i++)
2921  {
2922  int pkattnum = pkattnums_arg->values[i];
2923  int lnum;
2924  int j;
2925 
2926  /* Can throw error immediately if out of range */
2927  if (pkattnum <= 0 || pkattnum > natts)
2928  ereport(ERROR,
2929  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
2930  errmsg("invalid attribute number %d", pkattnum)));
2931 
2932  /* Identify which physical column has this logical number */
2933  lnum = 0;
2934  for (j = 0; j < natts; j++)
2935  {
2936  /* dropped columns don't count */
2937  if (TupleDescAttr(tupdesc, j)->attisdropped)
2938  continue;
2939 
2940  if (++lnum == pkattnum)
2941  break;
2942  }
2943 
2944  if (j < natts)
2945  (*pkattnums)[i] = j;
2946  else
2947  ereport(ERROR,
2948  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
2949  errmsg("invalid attribute number %d", pkattnum)));
2950  }
2951 }
#define Min(x, y)
Definition: c.h:988
int j
Definition: isn.c:74
int dim1
Definition: c.h:704
int16 values[FLEXIBLE_ARRAY_MEMBER]
Definition: c.h:706

References int2vector::dim1, ereport, errcode(), errmsg(), ERROR, i, j, Min, TupleDescData::natts, palloc_array, RelationData::rd_att, TupleDescAttr, and int2vector::values.

Referenced by dblink_build_sql_delete(), dblink_build_sql_insert(), and dblink_build_sql_update().

◆ xpstrdup()

static char* xpstrdup ( const char *  in)
static

Definition at line 150 of file dblink.c.

151 {
152  if (in == NULL)
153  return NULL;
154  return pstrdup(in);
155 }

References pstrdup().

Referenced by dblink_res_error().

Variable Documentation

◆ p2

◆ pconn

◆ PG_MODULE_MAGIC

PG_MODULE_MAGIC

Definition at line 65 of file dblink.c.

◆ remoteConnHash

HTAB* remoteConnHash = NULL
static

◆ res

void PGresult* res

Definition at line 159 of file dblink.c.

Referenced by _bt_binsrch_posting(), _check_database_version(), _doSetSessionAuth(), _int_contains(), _intbig_alloc(), _lca(), _lt_q_regex(), _ltq_regex(), _ltree_consistent(), _ltree_isparent(), _ltree_risparent(), _ltxtq_exec(), _pgp_read_public_key(), _ReadByte(), _selectOutputSchema(), _selectTableAccessMethod(), _selectTablespace(), _SPI_execute_plan(), _SPI_pquery(), _tarAddFile(), _tarReadRaw(), _tocEntryRequired(), addFooterToPublicationDesc(), addItemPointersToLeafTuple(), advance_windowaggregate(), advance_windowaggregate_base(), advanceConnectionState(), analyze_row_processor(), anybit_typmodout(), anychar_typmodout(), append_depends_on_extension(), appendBoolResult(), appendQualifiedRelation(), appendReloptionsArrayAH(), BaseBackup(), bf_check_supported_key_len(), binary_decode(), binary_encode(), binary_upgrade_set_type_oids_by_type_oid(), blgetbitmap(), BloomFormTuple(), bn_to_mpi(), btgettuple(), btproperty(), buildFreshLeafTuple(), buildMatViewRefreshDependencies(), buildShSecLabels(), byteaSetBit(), byteaSetByte(), calc_key_id(), calc_rank(), calc_rank_and(), calc_rank_or(), cfb_process(), check_field_number(), check_for_data_types_usage(), check_for_incompatible_polymorphics(), check_for_isn_and_int8_passing_mismatch(), check_for_pg_role_prefix(), check_for_prepared_transactions(), check_for_tables_with_oids(), check_for_user_defined_encoding_conversions(), check_for_user_defined_postfix_ops(), check_is_install_user(), check_key_cksum(), check_key_sha1(), check_loadable_libraries(), check_locale(), check_locale_name(), check_param_number(), check_prepare_conn(), check_publications(), check_publications_origin(), check_tuple_field_number(), checkcondition_str(), CheckForBufferLeaks(), clean_NOT_intree(), clean_stopword_intree(), close_cursor(), cmp_list_len_contents_asc(), cmpEntries(), cmpTheLexeme(), cnt_sml(), coerceJsonFuncExpr(), collectComments(), collectMatchesForHeapRow(), collectRoleNames(), collectSecLabels(), combo_decrypt(), combo_encrypt(), compareItems(), compareJsonbContainers(), comparePairs(), CompareTSQ(), compareWORD(), compile_database_list(), compile_relation_list_one_db(), ConditionalLockRelation(), ConditionalLockRelationOid(), contain_context_dependent_node_walker(), convert_charset(), convert_network_to_scalar(), convertToJsonb(), convertTSFunction(), copy_crlf(), copy_messages(), copy_table(), copyTSLexeme(), cpstrdup(), create_cursor(), create_secmsg(), createPQExpBuffer(), CreateReplicationSlot(), createViewAsClause(), crlf_process(), cube_cmp(), cube_contained(), cube_contains(), cube_eq(), cube_ge(), cube_gt(), cube_le(), cube_lt(), cube_ne(), cube_overlap(), cube_union(), datetime_to_char_body(), datumCopy(), datumIsEqual(), dblink_cancel_query(), dblink_close(), dblink_exec(), dblink_fetch(), dblink_open(), dblink_record_internal(), dblink_res_error(), deallocate_query(), decompose_code(), decrypt_elgamal(), decrypt_internal(), decrypt_key(), decrypt_read(), decrypt_rsa(), defaultNoticeReceiver(), describeAccessMethods(), describeAggregates(), describeConfigurationParameters(), describeFunctions(), describeOneTableDetails(), describeOneTSConfig(), describeOneTSParser(), describeOperators(), describePublications(), describeRoles(), describeSubscriptions(), describeTableDetails(), describeTablespaces(), describeTypes(), DetermineTimeZoneOffsetInternal(), dintdict_lexize(), discardUntilSync(), dispell_lexize(), do_field(), do_header(), do_lo_import(), do_sql_command_end(), do_watch(), downcase_convert(), dropDBs(), DropReplicationSlot(), dropRoles(), dropTablespaces(),