2001-06-14 20:49:03 +04:00
|
|
|
/*
|
|
|
|
* dblink.c
|
|
|
|
*
|
|
|
|
* Functions returning results from a remote database
|
|
|
|
*
|
2002-09-02 10:13:31 +04:00
|
|
|
* Joe Conway <mail@joeconway.com>
|
2003-06-25 05:10:15 +04:00
|
|
|
* And contributors:
|
|
|
|
* Darko Prenosil <Darko.Prenosil@finteh.hr>
|
|
|
|
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
|
2002-09-02 10:13:31 +04:00
|
|
|
*
|
2010-09-21 00:08:53 +04:00
|
|
|
* contrib/dblink/dblink.c
|
2012-01-02 03:01:58 +04:00
|
|
|
* Copyright (c) 2001-2012, PostgreSQL Global Development Group
|
2002-04-24 06:28:28 +04:00
|
|
|
* ALL RIGHTS RESERVED;
|
2001-10-25 09:50:21 +04:00
|
|
|
*
|
2001-06-14 20:49:03 +04:00
|
|
|
* Permission to use, copy, modify, and distribute this software and its
|
|
|
|
* documentation for any purpose, without fee, and without a written agreement
|
|
|
|
* is hereby granted, provided that the above copyright notice and this
|
|
|
|
* paragraph and the following two paragraphs appear in all copies.
|
2001-10-25 09:50:21 +04:00
|
|
|
*
|
2001-06-14 20:49:03 +04:00
|
|
|
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
|
|
|
|
* LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
|
|
|
|
* DOCUMENTATION, EVEN IF THE AUTHOR OR DISTRIBUTORS HAVE BEEN ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2001-10-25 09:50:21 +04:00
|
|
|
*
|
2001-06-14 20:49:03 +04:00
|
|
|
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIMS ANY WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAS NO OBLIGATIONS TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
*/
|
2002-09-02 10:13:31 +04:00
|
|
|
#include "postgres.h"
|
2003-07-24 21:52:50 +04:00
|
|
|
|
2006-03-11 04:19:22 +03:00
|
|
|
#include <limits.h>
|
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
#include "libpq-fe.h"
|
|
|
|
#include "funcapi.h"
|
2008-01-14 05:49:47 +03:00
|
|
|
#include "catalog/indexing.h"
|
2002-09-02 10:13:31 +04:00
|
|
|
#include "catalog/namespace.h"
|
|
|
|
#include "catalog/pg_type.h"
|
|
|
|
#include "executor/spi.h"
|
2009-06-07 01:27:56 +04:00
|
|
|
#include "foreign/foreign.h"
|
2009-06-09 20:35:36 +04:00
|
|
|
#include "mb/pg_wchar.h"
|
2008-03-27 00:10:39 +03:00
|
|
|
#include "miscadmin.h"
|
2010-06-03 13:38:33 +04:00
|
|
|
#include "parser/scansup.h"
|
2007-08-27 05:24:50 +04:00
|
|
|
#include "utils/acl.h"
|
2002-09-02 10:13:31 +04:00
|
|
|
#include "utils/builtins.h"
|
|
|
|
#include "utils/fmgroids.h"
|
|
|
|
#include "utils/lsyscache.h"
|
2003-06-25 05:10:15 +04:00
|
|
|
#include "utils/memutils.h"
|
2011-02-23 20:18:09 +03:00
|
|
|
#include "utils/rel.h"
|
2008-03-27 00:10:39 +03:00
|
|
|
#include "utils/tqual.h"
|
2001-06-14 20:49:03 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
#include "dblink.h"
|
2002-05-28 01:59:12 +04:00
|
|
|
|
2006-05-31 02:12:16 +04:00
|
|
|
PG_MODULE_MAGIC;
|
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
typedef struct remoteConn
|
|
|
|
{
|
2005-11-22 21:17:34 +03:00
|
|
|
PGconn *conn; /* Hold the remote connection */
|
2005-10-18 06:55:49 +04:00
|
|
|
int openCursorCount; /* The number of open cursors */
|
2005-11-22 21:17:34 +03:00
|
|
|
bool newXactForCursor; /* Opened a transaction for a cursor */
|
2009-06-11 18:49:15 +04:00
|
|
|
} remoteConn;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2002-05-28 01:59:12 +04:00
|
|
|
/*
|
|
|
|
* Internal declarations
|
|
|
|
*/
|
2009-06-02 07:21:56 +04:00
|
|
|
static Datum dblink_record_internal(FunctionCallInfo fcinfo, bool is_async);
|
2012-04-04 04:43:15 +04:00
|
|
|
static void prepTuplestoreResult(FunctionCallInfo fcinfo);
|
2010-01-25 01:19:38 +03:00
|
|
|
static void materializeResult(FunctionCallInfo fcinfo, PGresult *res);
|
2003-06-25 05:10:15 +04:00
|
|
|
static remoteConn *getConnectionByName(const char *name);
|
|
|
|
static HTAB *createConnHash(void);
|
2009-06-11 18:49:15 +04:00
|
|
|
static void createNewConnection(const char *name, remoteConn *rconn);
|
2003-06-25 05:10:15 +04:00
|
|
|
static void deleteConnection(const char *name);
|
2010-06-15 00:49:33 +04:00
|
|
|
static char **get_pkey_attnames(Relation rel, int16 *numatts);
|
2005-11-18 05:38:24 +03:00
|
|
|
static char **get_text_array_contents(ArrayType *array, int *numitems);
|
2010-06-15 20:22:19 +04:00
|
|
|
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);
|
2002-05-28 01:59:12 +04:00
|
|
|
static char *quote_ident_cstr(char *rawstr);
|
2010-06-15 20:22:19 +04:00
|
|
|
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);
|
2010-06-15 00:49:33 +04:00
|
|
|
static Relation get_rel_from_relname(text *relname_text, LOCKMODE lockmode, AclMode aclmode);
|
|
|
|
static char *generate_relation_name(Relation rel);
|
2008-09-22 17:55:14 +04:00
|
|
|
static void dblink_connstr_check(const char *connstr);
|
2008-01-04 00:27:59 +03:00
|
|
|
static void dblink_security_check(PGconn *conn, remoteConn *rconn);
|
2008-07-03 07:56:57 +04:00
|
|
|
static void dblink_res_error(const char *conname, PGresult *res, const char *dblink_context_msg, bool fail);
|
2009-06-07 01:27:56 +04:00
|
|
|
static char *get_connect_string(const char *servername);
|
|
|
|
static char *escape_param_str(const char *from);
|
2010-06-15 20:22:19 +04:00
|
|
|
static void validate_pkattnums(Relation rel,
|
|
|
|
int2vector *pkattnums_arg, int32 pknumatts_arg,
|
|
|
|
int **pkattnums, int *pknumatts);
|
2002-05-28 01:59:12 +04:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/* Global */
|
2005-11-22 21:17:34 +03:00
|
|
|
static remoteConn *pconn = NULL;
|
|
|
|
static HTAB *remoteConnHash = NULL;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
/*
|
2005-10-08 16:18:48 +04:00
|
|
|
* Following is list that holds multiple remote connections.
|
|
|
|
* Calling convention of each dblink function changes to accept
|
|
|
|
* connection name as the first parameter. The connection list is
|
|
|
|
* much like ecpg e.g. a mapping between a name and a PGconn object.
|
|
|
|
*/
|
2003-06-25 05:10:15 +04:00
|
|
|
|
|
|
|
typedef struct remoteConnHashEnt
|
|
|
|
{
|
|
|
|
char name[NAMEDATALEN];
|
2005-10-08 16:12:29 +04:00
|
|
|
remoteConn *rconn;
|
2009-06-11 18:49:15 +04:00
|
|
|
} remoteConnHashEnt;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
|
|
|
/* initial number of connection hashes */
|
|
|
|
#define NUMCONN 16
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
/* general utility */
|
2002-09-02 10:13:31 +04:00
|
|
|
#define xpfree(var_) \
|
|
|
|
do { \
|
|
|
|
if (var_ != NULL) \
|
|
|
|
{ \
|
|
|
|
pfree(var_); \
|
|
|
|
var_ = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2005-10-08 15:33:45 +04:00
|
|
|
|
2008-07-03 07:56:57 +04:00
|
|
|
#define xpstrdup(var_c, var_) \
|
2003-06-25 05:10:15 +04:00
|
|
|
do { \
|
2008-07-03 07:56:57 +04:00
|
|
|
if (var_ != NULL) \
|
|
|
|
var_c = pstrdup(var_); \
|
|
|
|
else \
|
|
|
|
var_c = NULL; \
|
2003-06-25 05:10:15 +04:00
|
|
|
} while (0)
|
2005-10-08 15:33:45 +04:00
|
|
|
|
2008-07-03 07:56:57 +04:00
|
|
|
#define DBLINK_RES_INTERNALERROR(p2) \
|
2004-03-07 05:27:00 +03:00
|
|
|
do { \
|
|
|
|
msg = pstrdup(PQerrorMessage(conn)); \
|
|
|
|
if (res) \
|
|
|
|
PQclear(res); \
|
2008-07-03 07:56:57 +04:00
|
|
|
elog(ERROR, "%s: %s", p2, msg); \
|
2004-03-07 05:27:00 +03:00
|
|
|
} while (0)
|
2005-10-08 15:33:45 +04:00
|
|
|
|
2003-07-24 21:52:50 +04:00
|
|
|
#define DBLINK_CONN_NOT_AVAIL \
|
2003-06-25 05:10:15 +04:00
|
|
|
do { \
|
|
|
|
if(conname) \
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR, \
|
|
|
|
(errcode(ERRCODE_CONNECTION_DOES_NOT_EXIST), \
|
|
|
|
errmsg("connection \"%s\" not available", conname))); \
|
2003-06-25 05:10:15 +04:00
|
|
|
else \
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR, \
|
|
|
|
(errcode(ERRCODE_CONNECTION_DOES_NOT_EXIST), \
|
|
|
|
errmsg("connection not available"))); \
|
2003-06-25 05:10:15 +04:00
|
|
|
} while (0)
|
2005-10-08 15:33:45 +04:00
|
|
|
|
2003-07-24 21:52:50 +04:00
|
|
|
#define DBLINK_GET_CONN \
|
2003-06-25 05:10:15 +04:00
|
|
|
do { \
|
2008-03-26 01:42:46 +03:00
|
|
|
char *conname_or_str = text_to_cstring(PG_GETARG_TEXT_PP(0)); \
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname_or_str); \
|
2012-03-30 01:52:28 +04:00
|
|
|
if (rconn) \
|
2003-06-25 05:10:15 +04:00
|
|
|
{ \
|
2005-10-08 16:12:29 +04:00
|
|
|
conn = rconn->conn; \
|
2012-03-30 01:52:28 +04:00
|
|
|
conname = conname_or_str; \
|
2003-06-25 05:10:15 +04:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2009-06-07 01:27:56 +04:00
|
|
|
connstr = get_connect_string(conname_or_str); \
|
|
|
|
if (connstr == NULL) \
|
|
|
|
{ \
|
|
|
|
connstr = conname_or_str; \
|
|
|
|
} \
|
2008-09-22 17:55:14 +04:00
|
|
|
dblink_connstr_check(connstr); \
|
2003-06-25 05:10:15 +04:00
|
|
|
conn = PQconnectdb(connstr); \
|
|
|
|
if (PQstatus(conn) == CONNECTION_BAD) \
|
|
|
|
{ \
|
|
|
|
msg = pstrdup(PQerrorMessage(conn)); \
|
|
|
|
PQfinish(conn); \
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR, \
|
|
|
|
(errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION), \
|
|
|
|
errmsg("could not establish connection"), \
|
2011-07-16 22:21:12 +04:00
|
|
|
errdetail_internal("%s", msg))); \
|
2003-06-25 05:10:15 +04:00
|
|
|
} \
|
2008-01-04 00:27:59 +03:00
|
|
|
dblink_security_check(conn, rconn); \
|
2009-06-09 20:35:36 +04:00
|
|
|
PQsetClientEncoding(conn, GetDatabaseEncodingName()); \
|
2004-03-07 05:27:00 +03:00
|
|
|
freeconn = true; \
|
2003-06-25 05:10:15 +04:00
|
|
|
} \
|
|
|
|
} while (0)
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2008-01-04 00:27:59 +03:00
|
|
|
#define DBLINK_GET_NAMED_CONN \
|
|
|
|
do { \
|
2012-03-30 01:52:28 +04:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0)); \
|
2008-01-04 00:27:59 +03:00
|
|
|
rconn = getConnectionByName(conname); \
|
2012-03-30 01:52:28 +04:00
|
|
|
if (rconn) \
|
2008-01-04 00:27:59 +03:00
|
|
|
conn = rconn->conn; \
|
|
|
|
else \
|
|
|
|
DBLINK_CONN_NOT_AVAIL; \
|
|
|
|
} while (0)
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
#define DBLINK_INIT \
|
|
|
|
do { \
|
|
|
|
if (!pconn) \
|
|
|
|
{ \
|
|
|
|
pconn = (remoteConn *) MemoryContextAlloc(TopMemoryContext, sizeof(remoteConn)); \
|
|
|
|
pconn->conn = NULL; \
|
|
|
|
pconn->openCursorCount = 0; \
|
|
|
|
pconn->newXactForCursor = FALSE; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a persistent connection to another database
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_connect);
|
|
|
|
Datum
|
|
|
|
dblink_connect(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2009-06-07 01:27:56 +04:00
|
|
|
char *conname_or_str = NULL;
|
2003-06-25 05:10:15 +04:00
|
|
|
char *connstr = NULL;
|
|
|
|
char *connname = NULL;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *msg;
|
2003-06-25 05:10:15 +04:00
|
|
|
PGconn *conn = NULL;
|
2005-10-08 16:12:29 +04:00
|
|
|
remoteConn *rconn = NULL;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (PG_NARGS() == 2)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2009-06-07 01:27:56 +04:00
|
|
|
conname_or_str = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2008-03-26 01:42:46 +03:00
|
|
|
connname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2003-08-04 04:43:34 +04:00
|
|
|
else if (PG_NARGS() == 1)
|
2009-06-07 01:27:56 +04:00
|
|
|
conname_or_str = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (connname)
|
2008-12-01 02:23:52 +03:00
|
|
|
rconn = (remoteConn *) MemoryContextAlloc(TopMemoryContext,
|
|
|
|
sizeof(remoteConn));
|
2008-09-22 17:55:14 +04:00
|
|
|
|
2009-06-07 01:27:56 +04:00
|
|
|
/* first check for valid foreign data server */
|
|
|
|
connstr = get_connect_string(conname_or_str);
|
|
|
|
if (connstr == NULL)
|
|
|
|
connstr = conname_or_str;
|
|
|
|
|
2008-09-22 17:55:14 +04:00
|
|
|
/* check password in connection string if not superuser */
|
|
|
|
dblink_connstr_check(connstr);
|
2003-06-25 05:10:15 +04:00
|
|
|
conn = PQconnectdb(connstr);
|
|
|
|
|
|
|
|
if (PQstatus(conn) == CONNECTION_BAD)
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2003-06-25 05:10:15 +04:00
|
|
|
msg = pstrdup(PQerrorMessage(conn));
|
|
|
|
PQfinish(conn);
|
2005-10-08 16:12:29 +04:00
|
|
|
if (rconn)
|
|
|
|
pfree(rconn);
|
2003-07-24 21:52:50 +04:00
|
|
|
|
|
|
|
ereport(ERROR,
|
2005-10-15 06:49:52 +04:00
|
|
|
(errcode(ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION),
|
|
|
|
errmsg("could not establish connection"),
|
2011-07-16 22:21:12 +04:00
|
|
|
errdetail_internal("%s", msg)));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
2008-09-22 17:55:14 +04:00
|
|
|
/* check password actually used if not superuser */
|
2008-01-04 00:27:59 +03:00
|
|
|
dblink_security_check(conn, rconn);
|
2007-07-08 21:12:38 +04:00
|
|
|
|
2009-06-09 20:35:36 +04:00
|
|
|
/* attempt to set client encoding to match server encoding */
|
|
|
|
PQsetClientEncoding(conn, GetDatabaseEncodingName());
|
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (connname)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn->conn = conn;
|
|
|
|
createNewConnection(connname, rconn);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
else
|
2005-10-18 06:55:49 +04:00
|
|
|
pconn->conn = conn;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear a persistent connection to another database
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_disconnect);
|
|
|
|
Datum
|
|
|
|
dblink_disconnect(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2003-07-24 21:52:50 +04:00
|
|
|
char *conname = NULL;
|
2005-10-08 16:12:29 +04:00
|
|
|
remoteConn *rconn = NULL;
|
2003-06-25 05:10:15 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (PG_NARGS() == 1)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
|
|
|
if (rconn)
|
|
|
|
conn = rconn->conn;
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
else
|
2005-10-18 06:55:49 +04:00
|
|
|
conn = pconn->conn;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
if (!conn)
|
2003-07-24 21:52:50 +04:00
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
PQfinish(conn);
|
2005-10-08 16:12:29 +04:00
|
|
|
if (rconn)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2003-07-24 21:52:50 +04:00
|
|
|
deleteConnection(conname);
|
2005-10-08 16:12:29 +04:00
|
|
|
pfree(rconn);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2003-11-28 08:03:02 +03:00
|
|
|
else
|
2005-10-18 06:55:49 +04:00
|
|
|
pconn->conn = NULL;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* opens a cursor using a persistent connection
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_open);
|
|
|
|
Datum
|
|
|
|
dblink_open(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
char *msg;
|
|
|
|
PGresult *res = NULL;
|
|
|
|
PGconn *conn = NULL;
|
2003-06-25 05:10:15 +04:00
|
|
|
char *curname = NULL;
|
|
|
|
char *sql = NULL;
|
|
|
|
char *conname = NULL;
|
2006-03-01 09:51:01 +03:00
|
|
|
StringInfoData buf;
|
2005-10-08 16:12:29 +04:00
|
|
|
remoteConn *rconn = NULL;
|
2004-03-07 05:27:00 +03:00
|
|
|
bool fail = true; /* default to backward compatible behavior */
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
2005-10-18 06:55:49 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (PG_NARGS() == 2)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2004-03-07 05:27:00 +03:00
|
|
|
/* text,text */
|
2008-03-26 01:42:46 +03:00
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2005-10-18 06:55:49 +04:00
|
|
|
rconn = pconn;
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2003-08-04 04:43:34 +04:00
|
|
|
else if (PG_NARGS() == 3)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2004-03-07 05:27:00 +03:00
|
|
|
/* might be text,text,text or text,text,bool */
|
|
|
|
if (get_fn_expr_argtype(fcinfo->flinfo, 2) == BOOLOID)
|
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2004-03-07 05:27:00 +03:00
|
|
|
fail = PG_GETARG_BOOL(2);
|
2005-10-18 06:55:49 +04:00
|
|
|
rconn = pconn;
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(2));
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (PG_NARGS() == 4)
|
|
|
|
{
|
|
|
|
/* text,text,text,bool */
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(2));
|
2004-03-07 05:27:00 +03:00
|
|
|
fail = PG_GETARG_BOOL(3);
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
if (!rconn || !rconn->conn)
|
2003-07-24 21:52:50 +04:00
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
2005-10-18 06:55:49 +04:00
|
|
|
else
|
|
|
|
conn = rconn->conn;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-11-22 21:17:34 +03:00
|
|
|
/* If we are not in a transaction, start one */
|
2005-10-18 06:55:49 +04:00
|
|
|
if (PQtransactionStatus(conn) == PQTRANS_IDLE)
|
|
|
|
{
|
|
|
|
res = PQexec(conn, "BEGIN");
|
|
|
|
if (PQresultStatus(res) != PGRES_COMMAND_OK)
|
|
|
|
DBLINK_RES_INTERNALERROR("begin error");
|
|
|
|
PQclear(res);
|
|
|
|
rconn->newXactForCursor = TRUE;
|
2006-10-04 04:30:14 +04:00
|
|
|
|
2006-06-21 20:43:11 +04:00
|
|
|
/*
|
|
|
|
* Since transaction state was IDLE, we force cursor count to
|
2006-10-04 04:30:14 +04:00
|
|
|
* initially be 0. This is needed as a previous ABORT might have wiped
|
|
|
|
* out our transaction without maintaining the cursor count for us.
|
2006-06-21 20:43:11 +04:00
|
|
|
*/
|
|
|
|
rconn->openCursorCount = 0;
|
2005-10-18 06:55:49 +04:00
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
/* if we started a transaction, increment cursor count */
|
|
|
|
if (rconn->newXactForCursor)
|
|
|
|
(rconn->openCursorCount)++;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "DECLARE %s CURSOR FOR %s", curname, sql);
|
|
|
|
res = PQexec(conn, buf.data);
|
2004-03-07 05:27:00 +03:00
|
|
|
if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
|
|
|
|
{
|
2008-07-03 07:56:57 +04:00
|
|
|
dblink_res_error(conname, res, "could not open cursor", fail);
|
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("ERROR"));
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
PQclear(res);
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/*
|
|
|
|
* closes a cursor
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_close);
|
|
|
|
Datum
|
|
|
|
dblink_close(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
PGresult *res = NULL;
|
2003-06-25 05:10:15 +04:00
|
|
|
char *curname = NULL;
|
|
|
|
char *conname = NULL;
|
2006-03-01 09:51:01 +03:00
|
|
|
StringInfoData buf;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *msg;
|
2005-10-08 16:12:29 +04:00
|
|
|
remoteConn *rconn = NULL;
|
2004-03-07 05:27:00 +03:00
|
|
|
bool fail = true; /* default to backward compatible behavior */
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
2005-10-18 06:55:49 +04:00
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
if (PG_NARGS() == 1)
|
|
|
|
{
|
2004-03-07 05:27:00 +03:00
|
|
|
/* text */
|
2008-03-26 01:42:46 +03:00
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2005-10-18 06:55:49 +04:00
|
|
|
rconn = pconn;
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2003-08-04 04:43:34 +04:00
|
|
|
else if (PG_NARGS() == 2)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2004-03-07 05:27:00 +03:00
|
|
|
/* might be text,text or text,bool */
|
|
|
|
if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
|
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2004-03-07 05:27:00 +03:00
|
|
|
fail = PG_GETARG_BOOL(1);
|
2005-10-18 06:55:49 +04:00
|
|
|
rconn = pconn;
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (PG_NARGS() == 3)
|
|
|
|
{
|
|
|
|
/* text,text,bool */
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2004-03-07 05:27:00 +03:00
|
|
|
fail = PG_GETARG_BOOL(2);
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
if (!rconn || !rconn->conn)
|
2003-07-24 21:52:50 +04:00
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
2005-10-18 06:55:49 +04:00
|
|
|
else
|
|
|
|
conn = rconn->conn;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "CLOSE %s", curname);
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
/* close the cursor */
|
2006-03-01 09:51:01 +03:00
|
|
|
res = PQexec(conn, buf.data);
|
2002-09-05 00:31:48 +04:00
|
|
|
if (!res || PQresultStatus(res) != PGRES_COMMAND_OK)
|
2004-03-07 05:27:00 +03:00
|
|
|
{
|
2008-07-03 07:56:57 +04:00
|
|
|
dblink_res_error(conname, res, "could not close cursor", fail);
|
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("ERROR"));
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
PQclear(res);
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
/* if we started a transaction, decrement cursor count */
|
|
|
|
if (rconn->newXactForCursor)
|
|
|
|
{
|
|
|
|
(rconn->openCursorCount)--;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
/* if count is zero, commit the transaction */
|
|
|
|
if (rconn->openCursorCount == 0)
|
|
|
|
{
|
|
|
|
rconn->newXactForCursor = FALSE;
|
|
|
|
|
|
|
|
res = PQexec(conn, "COMMIT");
|
|
|
|
if (PQresultStatus(res) != PGRES_COMMAND_OK)
|
|
|
|
DBLINK_RES_INTERNALERROR("commit error");
|
|
|
|
PQclear(res);
|
|
|
|
}
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fetch results from an open cursor
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_fetch);
|
|
|
|
Datum
|
|
|
|
dblink_fetch(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2010-02-26 05:01:40 +03:00
|
|
|
PGresult *res = NULL;
|
|
|
|
char *conname = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
PGconn *conn = NULL;
|
|
|
|
StringInfoData buf;
|
|
|
|
char *curname = NULL;
|
|
|
|
int howmany = 0;
|
|
|
|
bool fail = true; /* default to backward compatible */
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
prepTuplestoreResult(fcinfo);
|
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
if (PG_NARGS() == 4)
|
2002-09-05 00:31:48 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* text,text,int,bool */
|
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
howmany = PG_GETARG_INT32(2);
|
|
|
|
fail = PG_GETARG_BOOL(3);
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
rconn = getConnectionByName(conname);
|
|
|
|
if (rconn)
|
|
|
|
conn = rconn->conn;
|
|
|
|
}
|
|
|
|
else if (PG_NARGS() == 3)
|
|
|
|
{
|
|
|
|
/* text,text,int or text,int,bool */
|
|
|
|
if (get_fn_expr_argtype(fcinfo->flinfo, 2) == BOOLOID)
|
|
|
|
{
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
howmany = PG_GETARG_INT32(1);
|
|
|
|
fail = PG_GETARG_BOOL(2);
|
|
|
|
conn = pconn->conn;
|
|
|
|
}
|
|
|
|
else
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
conname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2003-06-25 05:10:15 +04:00
|
|
|
howmany = PG_GETARG_INT32(2);
|
|
|
|
|
2005-10-08 16:12:29 +04:00
|
|
|
rconn = getConnectionByName(conname);
|
|
|
|
if (rconn)
|
|
|
|
conn = rconn->conn;
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
}
|
|
|
|
else if (PG_NARGS() == 2)
|
|
|
|
{
|
|
|
|
/* text,int */
|
|
|
|
curname = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
howmany = PG_GETARG_INT32(1);
|
|
|
|
conn = pconn->conn;
|
|
|
|
}
|
2008-12-01 02:23:52 +03:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
if (!conn)
|
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
2008-12-01 02:23:52 +03:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
initStringInfo(&buf);
|
|
|
|
appendStringInfo(&buf, "FETCH %d FROM %s", howmany, curname);
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
/*
|
2010-01-25 01:19:38 +03:00
|
|
|
* Try to execute the query. Note that since libpq uses malloc, the
|
2010-02-26 05:01:40 +03:00
|
|
|
* PGresult will be long-lived even though we are still in a short-lived
|
|
|
|
* memory context.
|
2002-09-02 10:13:31 +04:00
|
|
|
*/
|
2010-01-25 01:19:38 +03:00
|
|
|
res = PQexec(conn, buf.data);
|
|
|
|
if (!res ||
|
|
|
|
(PQresultStatus(res) != PGRES_COMMAND_OK &&
|
|
|
|
PQresultStatus(res) != PGRES_TUPLES_OK))
|
2002-09-05 00:31:48 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
dblink_res_error(conname, res, "could not fetch from cursor", fail);
|
|
|
|
return (Datum) 0;
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else if (PQresultStatus(res) == PGRES_COMMAND_OK)
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* cursor does not exist - closed already or bad name */
|
2002-09-02 10:13:31 +04:00
|
|
|
PQclear(res);
|
2010-01-25 01:19:38 +03:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_INVALID_CURSOR_NAME),
|
|
|
|
errmsg("cursor \"%s\" does not exist", curname)));
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
|
|
|
|
materializeResult(fcinfo, res);
|
|
|
|
return (Datum) 0;
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: this is the new preferred version of dblink
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_record);
|
|
|
|
Datum
|
|
|
|
dblink_record(PG_FUNCTION_ARGS)
|
2006-09-03 01:11:15 +04:00
|
|
|
{
|
2009-06-02 07:21:56 +04:00
|
|
|
return dblink_record_internal(fcinfo, false);
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_send_query);
|
|
|
|
Datum
|
|
|
|
dblink_send_query(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2012-03-30 01:52:28 +04:00
|
|
|
char *conname = NULL;
|
2009-06-02 07:21:56 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
char *sql = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (PG_NARGS() == 2)
|
|
|
|
{
|
2011-06-26 02:58:07 +04:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2009-06-02 07:21:56 +04:00
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* shouldn't happen */
|
|
|
|
elog(ERROR, "wrong number of arguments");
|
|
|
|
|
|
|
|
/* async query send */
|
|
|
|
retval = PQsendQuery(conn, sql);
|
|
|
|
if (retval != 1)
|
|
|
|
elog(NOTICE, "%s", PQerrorMessage(conn));
|
|
|
|
|
|
|
|
PG_RETURN_INT32(retval);
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_get_result);
|
|
|
|
Datum
|
|
|
|
dblink_get_result(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2009-06-02 07:21:56 +04:00
|
|
|
return dblink_record_internal(fcinfo, true);
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static Datum
|
2009-06-02 07:21:56 +04:00
|
|
|
dblink_record_internal(FunctionCallInfo fcinfo, bool is_async)
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2010-02-26 05:01:40 +03:00
|
|
|
char *msg;
|
|
|
|
PGresult *res = NULL;
|
|
|
|
PGconn *conn = NULL;
|
|
|
|
char *connstr = NULL;
|
|
|
|
char *sql = NULL;
|
|
|
|
char *conname = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
bool fail = true; /* default to backward compatible */
|
|
|
|
bool freeconn = false;
|
2010-01-25 01:19:38 +03:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
prepTuplestoreResult(fcinfo);
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
if (!is_async)
|
2002-09-05 00:31:48 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
if (PG_NARGS() == 3)
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* text,text,bool */
|
|
|
|
DBLINK_GET_CONN;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
fail = PG_GETARG_BOOL(2);
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else if (PG_NARGS() == 2)
|
2006-09-03 01:11:15 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* text,text or text,bool */
|
|
|
|
if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
|
2004-03-07 05:27:00 +03:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
conn = pconn->conn;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2009-06-02 07:21:56 +04:00
|
|
|
fail = PG_GETARG_BOOL(1);
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else
|
2006-09-03 01:11:15 +04:00
|
|
|
{
|
|
|
|
DBLINK_GET_CONN;
|
2010-01-25 01:19:38 +03:00
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else if (PG_NARGS() == 1)
|
|
|
|
{
|
|
|
|
/* text */
|
|
|
|
conn = pconn->conn;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
}
|
2009-06-11 18:49:15 +04:00
|
|
|
else
|
2010-01-25 01:19:38 +03:00
|
|
|
/* shouldn't happen */
|
|
|
|
elog(ERROR, "wrong number of arguments");
|
|
|
|
}
|
|
|
|
else /* is_async */
|
|
|
|
{
|
|
|
|
/* get async result */
|
|
|
|
if (PG_NARGS() == 2)
|
2009-06-11 18:49:15 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* text,bool */
|
2011-06-26 02:58:07 +04:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2010-01-25 01:19:38 +03:00
|
|
|
fail = PG_GETARG_BOOL(1);
|
2009-06-11 18:49:15 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else if (PG_NARGS() == 1)
|
2009-06-11 18:49:15 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* text */
|
2011-06-26 02:58:07 +04:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2009-06-11 18:49:15 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
else
|
|
|
|
/* shouldn't happen */
|
|
|
|
elog(ERROR, "wrong number of arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!conn)
|
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
|
|
|
|
|
|
|
/* synchronous query, or async result retrieval */
|
|
|
|
if (!is_async)
|
|
|
|
res = PQexec(conn, sql);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = PQgetResult(conn);
|
|
|
|
/* NULL means we're all done with the async results */
|
|
|
|
if (!res)
|
|
|
|
return (Datum) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if needed, close the connection to the database and cleanup */
|
|
|
|
if (freeconn)
|
|
|
|
PQfinish(conn);
|
|
|
|
|
|
|
|
if (!res ||
|
|
|
|
(PQresultStatus(res) != PGRES_COMMAND_OK &&
|
|
|
|
PQresultStatus(res) != PGRES_TUPLES_OK))
|
|
|
|
{
|
|
|
|
dblink_res_error(conname, res, "could not execute query", fail);
|
|
|
|
return (Datum) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
materializeResult(fcinfo, res);
|
|
|
|
return (Datum) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-04-04 04:43:15 +04:00
|
|
|
* Verify function caller can handle a tuplestore result, and set up for that.
|
|
|
|
*
|
|
|
|
* Note: if the caller returns without actually creating a tuplestore, the
|
|
|
|
* executor will treat the function result as an empty set.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
prepTuplestoreResult(FunctionCallInfo fcinfo)
|
|
|
|
{
|
|
|
|
ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
|
|
|
|
|
|
|
|
/* check to see if query supports us returning a tuplestore */
|
|
|
|
if (rsinfo == NULL || !IsA(rsinfo, ReturnSetInfo))
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
|
|
|
errmsg("set-valued function called in context that cannot accept a set")));
|
|
|
|
if (!(rsinfo->allowedModes & SFRM_Materialize))
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
|
|
|
errmsg("materialize mode required, but it is not allowed in this context")));
|
|
|
|
|
|
|
|
/* let the executor know we're sending back a tuplestore */
|
|
|
|
rsinfo->returnMode = SFRM_Materialize;
|
|
|
|
|
|
|
|
/* caller must fill these to return a non-empty result */
|
|
|
|
rsinfo->setResult = NULL;
|
|
|
|
rsinfo->setDesc = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy the contents of the PGresult into a tuplestore to be returned
|
|
|
|
* as the result of the current function.
|
|
|
|
* The PGresult will be released in this function.
|
2010-01-25 01:19:38 +03:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
materializeResult(FunctionCallInfo fcinfo, PGresult *res)
|
|
|
|
{
|
2010-02-26 05:01:40 +03:00
|
|
|
ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
|
2010-01-25 01:19:38 +03:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
/* prepTuplestoreResult must have been called previously */
|
2010-01-25 01:19:38 +03:00
|
|
|
Assert(rsinfo->returnMode == SFRM_Materialize);
|
|
|
|
|
|
|
|
PG_TRY();
|
|
|
|
{
|
|
|
|
TupleDesc tupdesc;
|
|
|
|
bool is_sql_cmd = false;
|
|
|
|
int ntuples;
|
|
|
|
int nfields;
|
2006-10-04 04:30:14 +04:00
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
if (PQresultStatus(res) == PGRES_COMMAND_OK)
|
|
|
|
{
|
|
|
|
is_sql_cmd = true;
|
2006-10-04 04:30:14 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
/*
|
2010-02-26 05:01:40 +03:00
|
|
|
* need a tuple descriptor representing one TEXT column to return
|
|
|
|
* the command status string as our result tuple
|
2010-01-25 01:19:38 +03:00
|
|
|
*/
|
2009-06-11 18:49:15 +04:00
|
|
|
tupdesc = CreateTemplateTupleDesc(1, false);
|
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 1, "status",
|
|
|
|
TEXTOID, -1, 0);
|
2010-01-25 01:19:38 +03:00
|
|
|
ntuples = 1;
|
|
|
|
nfields = 1;
|
2009-06-11 18:49:15 +04:00
|
|
|
}
|
|
|
|
else
|
2010-01-25 01:19:38 +03:00
|
|
|
{
|
|
|
|
Assert(PQresultStatus(res) == PGRES_TUPLES_OK);
|
2009-06-11 18:49:15 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
is_sql_cmd = false;
|
2009-06-11 18:49:15 +04:00
|
|
|
|
|
|
|
/* get a tuple descriptor for our result type */
|
|
|
|
switch (get_call_result_type(fcinfo, NULL, &tupdesc))
|
2006-09-03 01:11:15 +04:00
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
case TYPEFUNC_COMPOSITE:
|
|
|
|
/* success */
|
|
|
|
break;
|
|
|
|
case TYPEFUNC_RECORD:
|
|
|
|
/* failed to determine actual type of RECORD */
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
|
|
|
errmsg("function returning record called in context "
|
|
|
|
"that cannot accept type record")));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* result type isn't composite */
|
|
|
|
elog(ERROR, "return type must be a row type");
|
|
|
|
break;
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
2006-10-04 04:30:14 +04:00
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
/* make sure we have a persistent copy of the tupdesc */
|
|
|
|
tupdesc = CreateTupleDescCopy(tupdesc);
|
2010-01-25 01:19:38 +03:00
|
|
|
ntuples = PQntuples(res);
|
|
|
|
nfields = PQnfields(res);
|
2009-06-11 18:49:15 +04:00
|
|
|
}
|
2006-10-04 04:30:14 +04:00
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
/*
|
|
|
|
* check result and tuple descriptor have the same number of columns
|
|
|
|
*/
|
2010-01-25 01:19:38 +03:00
|
|
|
if (nfields != tupdesc->natts)
|
2009-06-11 18:49:15 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_DATATYPE_MISMATCH),
|
|
|
|
errmsg("remote query result rowtype does not match "
|
|
|
|
"the specified FROM clause rowtype")));
|
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
if (ntuples > 0)
|
2009-06-11 18:49:15 +04:00
|
|
|
{
|
2010-02-26 05:01:40 +03:00
|
|
|
AttInMetadata *attinmeta;
|
|
|
|
Tuplestorestate *tupstore;
|
|
|
|
MemoryContext oldcontext;
|
|
|
|
int row;
|
|
|
|
char **values;
|
2010-01-25 01:19:38 +03:00
|
|
|
|
|
|
|
attinmeta = TupleDescGetAttInMetadata(tupdesc);
|
|
|
|
|
|
|
|
oldcontext = MemoryContextSwitchTo(
|
2010-02-26 05:01:40 +03:00
|
|
|
rsinfo->econtext->ecxt_per_query_memory);
|
2010-01-25 01:19:38 +03:00
|
|
|
tupstore = tuplestore_begin_heap(true, false, work_mem);
|
|
|
|
rsinfo->setResult = tupstore;
|
|
|
|
rsinfo->setDesc = tupdesc;
|
2006-09-03 01:11:15 +04:00
|
|
|
MemoryContextSwitchTo(oldcontext);
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
values = (char **) palloc(nfields * sizeof(char *));
|
2010-01-25 01:19:38 +03:00
|
|
|
|
|
|
|
/* put all tuples into the tuplestore */
|
|
|
|
for (row = 0; row < ntuples; row++)
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
HeapTuple tuple;
|
|
|
|
|
|
|
|
if (!is_sql_cmd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < nfields; i++)
|
|
|
|
{
|
|
|
|
if (PQgetisnull(res, row, i))
|
|
|
|
values[i] = NULL;
|
|
|
|
else
|
|
|
|
values[i] = PQgetvalue(res, row, i);
|
|
|
|
}
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
else
|
2010-01-25 01:19:38 +03:00
|
|
|
{
|
|
|
|
values[0] = PQcmdStatus(res);
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
/* build the tuple and put it into the tuplestore. */
|
|
|
|
tuple = BuildTupleFromCStrings(attinmeta, values);
|
|
|
|
tuplestore_puttuple(tupstore, tuple);
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
/* clean up and return the tuplestore */
|
|
|
|
tuplestore_donestoring(tupstore);
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2010-01-25 01:19:38 +03:00
|
|
|
PQclear(res);
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
PG_CATCH();
|
2002-09-02 10:13:31 +04:00
|
|
|
{
|
2010-01-25 01:19:38 +03:00
|
|
|
/* be sure to release the libpq result */
|
2002-09-02 10:13:31 +04:00
|
|
|
PQclear(res);
|
2010-01-25 01:19:38 +03:00
|
|
|
PG_RE_THROW();
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2010-01-25 01:19:38 +03:00
|
|
|
PG_END_TRY();
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
2006-09-03 01:11:15 +04:00
|
|
|
/*
|
|
|
|
* List all open dblink connections by name.
|
|
|
|
* Returns an array of all connection names.
|
|
|
|
* Takes no params
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_get_connections);
|
|
|
|
Datum
|
|
|
|
dblink_get_connections(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2006-10-04 04:30:14 +04:00
|
|
|
HASH_SEQ_STATUS status;
|
|
|
|
remoteConnHashEnt *hentry;
|
|
|
|
ArrayBuildState *astate = NULL;
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
if (remoteConnHash)
|
|
|
|
{
|
|
|
|
hash_seq_init(&status, remoteConnHash);
|
|
|
|
while ((hentry = (remoteConnHashEnt *) hash_seq_search(&status)) != NULL)
|
|
|
|
{
|
|
|
|
/* stash away current value */
|
|
|
|
astate = accumArrayResult(astate,
|
2008-03-26 01:42:46 +03:00
|
|
|
CStringGetTextDatum(hentry->name),
|
2006-09-03 01:11:15 +04:00
|
|
|
false, TEXTOID, CurrentMemoryContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (astate)
|
|
|
|
PG_RETURN_ARRAYTYPE_P(makeArrayResult(astate,
|
|
|
|
CurrentMemoryContext));
|
|
|
|
else
|
|
|
|
PG_RETURN_NULL();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checks if a given remote connection is busy
|
|
|
|
*
|
|
|
|
* Returns 1 if the connection is busy, 0 otherwise
|
|
|
|
* Params:
|
2006-10-04 04:30:14 +04:00
|
|
|
* text connection_name - name of the connection to check
|
|
|
|
*
|
2006-09-03 01:11:15 +04:00
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_is_busy);
|
|
|
|
Datum
|
|
|
|
dblink_is_busy(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2012-03-30 01:52:28 +04:00
|
|
|
char *conname = NULL;
|
2006-10-04 04:30:14 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
DBLINK_INIT;
|
2008-01-04 00:27:59 +03:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
PQconsumeInput(conn);
|
|
|
|
PG_RETURN_INT32(PQisBusy(conn));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cancels a running request on a connection
|
|
|
|
*
|
2006-10-04 04:30:14 +04:00
|
|
|
* Returns text:
|
2006-09-03 01:11:15 +04:00
|
|
|
* "OK" if the cancel request has been sent correctly,
|
2006-10-04 04:30:14 +04:00
|
|
|
* an error message otherwise
|
|
|
|
*
|
2006-09-03 01:11:15 +04:00
|
|
|
* Params:
|
2006-10-04 04:30:14 +04:00
|
|
|
* text connection_name - name of the connection to check
|
|
|
|
*
|
2006-09-03 01:11:15 +04:00
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_cancel_query);
|
|
|
|
Datum
|
|
|
|
dblink_cancel_query(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2006-10-04 04:30:14 +04:00
|
|
|
int res = 0;
|
2012-03-30 01:52:28 +04:00
|
|
|
char *conname = NULL;
|
2006-10-04 04:30:14 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
PGcancel *cancel;
|
|
|
|
char errbuf[256];
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
DBLINK_INIT;
|
2008-01-04 00:27:59 +03:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2006-09-03 01:11:15 +04:00
|
|
|
cancel = PQgetCancel(conn);
|
|
|
|
|
|
|
|
res = PQcancel(cancel, errbuf, 256);
|
|
|
|
PQfreeCancel(cancel);
|
|
|
|
|
2008-01-04 00:27:59 +03:00
|
|
|
if (res == 1)
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2006-09-03 01:11:15 +04:00
|
|
|
else
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text(errbuf));
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get error message from a connection
|
|
|
|
*
|
2006-10-04 04:30:14 +04:00
|
|
|
* Returns text:
|
2006-09-03 01:11:15 +04:00
|
|
|
* "OK" if no error, an error message otherwise
|
2006-10-04 04:30:14 +04:00
|
|
|
*
|
2006-09-03 01:11:15 +04:00
|
|
|
* Params:
|
2006-10-04 04:30:14 +04:00
|
|
|
* text connection_name - name of the connection to check
|
|
|
|
*
|
2006-09-03 01:11:15 +04:00
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_error_message);
|
|
|
|
Datum
|
|
|
|
dblink_error_message(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2006-10-04 04:30:14 +04:00
|
|
|
char *msg;
|
2012-03-30 01:52:28 +04:00
|
|
|
char *conname = NULL;
|
2006-10-04 04:30:14 +04:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
DBLINK_INIT;
|
2008-01-04 00:27:59 +03:00
|
|
|
DBLINK_GET_NAMED_CONN;
|
2006-09-03 01:11:15 +04:00
|
|
|
|
|
|
|
msg = PQerrorMessage(conn);
|
2008-01-04 00:27:59 +03:00
|
|
|
if (msg == NULL || msg[0] == '\0')
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text("OK"));
|
2006-09-03 01:11:15 +04:00
|
|
|
else
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text(msg));
|
2006-09-03 01:11:15 +04:00
|
|
|
}
|
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/*
|
|
|
|
* Execute an SQL non-SELECT command
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_exec);
|
|
|
|
Datum
|
|
|
|
dblink_exec(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2012-04-04 04:43:15 +04:00
|
|
|
text *volatile sql_cmd_status = NULL;
|
|
|
|
PGconn *volatile conn = NULL;
|
|
|
|
volatile bool freeconn = false;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2005-10-18 06:55:49 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
PG_TRY();
|
2004-03-07 05:27:00 +03:00
|
|
|
{
|
2012-04-04 04:43:15 +04:00
|
|
|
char *msg;
|
|
|
|
PGresult *res = NULL;
|
|
|
|
char *connstr = NULL;
|
|
|
|
char *sql = NULL;
|
|
|
|
char *conname = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
bool fail = true; /* default to backward compatible behavior */
|
|
|
|
|
|
|
|
if (PG_NARGS() == 3)
|
|
|
|
{
|
|
|
|
/* must be text,text,bool */
|
|
|
|
DBLINK_GET_CONN;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
fail = PG_GETARG_BOOL(2);
|
|
|
|
}
|
|
|
|
else if (PG_NARGS() == 2)
|
|
|
|
{
|
|
|
|
/* might be text,text or text,bool */
|
|
|
|
if (get_fn_expr_argtype(fcinfo->flinfo, 1) == BOOLOID)
|
|
|
|
{
|
|
|
|
conn = pconn->conn;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
|
|
|
fail = PG_GETARG_BOOL(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DBLINK_GET_CONN;
|
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (PG_NARGS() == 1)
|
2004-03-07 05:27:00 +03:00
|
|
|
{
|
2012-04-04 04:43:15 +04:00
|
|
|
/* must be single text argument */
|
2005-10-18 06:55:49 +04:00
|
|
|
conn = pconn->conn;
|
2008-03-26 01:42:46 +03:00
|
|
|
sql = text_to_cstring(PG_GETARG_TEXT_PP(0));
|
2004-03-07 05:27:00 +03:00
|
|
|
}
|
|
|
|
else
|
2012-04-04 04:43:15 +04:00
|
|
|
/* shouldn't happen */
|
|
|
|
elog(ERROR, "wrong number of arguments");
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
if (!conn)
|
|
|
|
DBLINK_CONN_NOT_AVAIL;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
res = PQexec(conn, sql);
|
|
|
|
if (!res ||
|
|
|
|
(PQresultStatus(res) != PGRES_COMMAND_OK &&
|
|
|
|
PQresultStatus(res) != PGRES_TUPLES_OK))
|
|
|
|
{
|
|
|
|
dblink_res_error(conname, res, "could not execute command", fail);
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
/*
|
|
|
|
* and save a copy of the command status string to return as our
|
|
|
|
* result tuple
|
|
|
|
*/
|
|
|
|
sql_cmd_status = cstring_to_text("ERROR");
|
|
|
|
}
|
|
|
|
else if (PQresultStatus(res) == PGRES_COMMAND_OK)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* and save a copy of the command status string to return as our
|
|
|
|
* result tuple
|
|
|
|
*/
|
|
|
|
sql_cmd_status = cstring_to_text(PQcmdStatus(res));
|
|
|
|
PQclear(res);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PQclear(res);
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
|
|
|
|
errmsg("statement returning results not allowed")));
|
|
|
|
}
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
2012-04-04 04:43:15 +04:00
|
|
|
PG_CATCH();
|
2004-09-28 04:49:04 +04:00
|
|
|
{
|
2012-04-04 04:43:15 +04:00
|
|
|
/* if needed, close the connection to the database */
|
|
|
|
if (freeconn)
|
|
|
|
PQfinish(conn);
|
|
|
|
PG_RE_THROW();
|
2004-09-28 04:49:04 +04:00
|
|
|
}
|
2012-04-04 04:43:15 +04:00
|
|
|
PG_END_TRY();
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
/* if needed, close the connection to the database */
|
2004-03-07 05:27:00 +03:00
|
|
|
if (freeconn)
|
2002-09-02 10:13:31 +04:00
|
|
|
PQfinish(conn);
|
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
PG_RETURN_TEXT_P(sql_cmd_status);
|
2002-09-02 10:13:31 +04:00
|
|
|
}
|
|
|
|
|
2001-06-18 23:09:50 +04:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*
|
|
|
|
* dblink_get_pkey
|
2002-09-05 00:31:48 +04:00
|
|
|
*
|
2002-09-02 10:13:31 +04:00
|
|
|
* Return list of primary key fields for the supplied relation,
|
2002-04-24 06:28:28 +04:00
|
|
|
* or NULL if none exists.
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_get_pkey);
|
|
|
|
Datum
|
|
|
|
dblink_get_pkey(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
int16 numatts;
|
|
|
|
char **results;
|
|
|
|
FuncCallContext *funcctx;
|
|
|
|
int32 call_cntr;
|
|
|
|
int32 max_calls;
|
|
|
|
AttInMetadata *attinmeta;
|
|
|
|
MemoryContext oldcontext;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
/* stuff done only on the first call of the function */
|
2002-09-05 00:31:48 +04:00
|
|
|
if (SRF_IS_FIRSTCALL())
|
|
|
|
{
|
2010-06-15 00:49:33 +04:00
|
|
|
Relation rel;
|
|
|
|
TupleDesc tupdesc;
|
2002-09-02 10:13:31 +04:00
|
|
|
|
|
|
|
/* create a function context for cross-call persistence */
|
2002-09-05 00:31:48 +04:00
|
|
|
funcctx = SRF_FIRSTCALL_INIT();
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2002-09-05 00:31:48 +04:00
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* switch to memory context appropriate for multiple function calls
|
2002-09-05 00:31:48 +04:00
|
|
|
*/
|
2002-09-02 10:13:31 +04:00
|
|
|
oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
|
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
/* open target relation */
|
|
|
|
rel = get_rel_from_relname(PG_GETARG_TEXT_P(0), AccessShareLock, ACL_SELECT);
|
|
|
|
|
|
|
|
/* get the array of attnums */
|
|
|
|
results = get_pkey_attnames(rel, &numatts);
|
|
|
|
|
|
|
|
relation_close(rel, AccessShareLock);
|
2003-08-04 04:43:34 +04:00
|
|
|
|
2002-09-05 00:31:48 +04:00
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* need a tuple descriptor representing one INT and one TEXT column
|
2002-09-05 00:31:48 +04:00
|
|
|
*/
|
2002-09-03 08:00:37 +04:00
|
|
|
tupdesc = CreateTemplateTupleDesc(2, false);
|
2002-09-02 10:13:31 +04:00
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 1, "position",
|
2004-04-02 01:28:47 +04:00
|
|
|
INT4OID, -1, 0);
|
2002-09-02 10:13:31 +04:00
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 2, "colname",
|
2004-04-02 01:28:47 +04:00
|
|
|
TEXTOID, -1, 0);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Generate attribute metadata needed later to produce tuples from raw
|
|
|
|
* C strings
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2002-09-02 10:13:31 +04:00
|
|
|
attinmeta = TupleDescGetAttInMetadata(tupdesc);
|
|
|
|
funcctx->attinmeta = attinmeta;
|
|
|
|
|
|
|
|
if ((results != NULL) && (numatts > 0))
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-02 10:13:31 +04:00
|
|
|
funcctx->max_calls = numatts;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/* got results, keep track of them */
|
|
|
|
funcctx->user_fctx = results;
|
|
|
|
}
|
2002-09-05 00:31:48 +04:00
|
|
|
else
|
2008-12-01 02:23:52 +03:00
|
|
|
{
|
2003-06-25 05:10:15 +04:00
|
|
|
/* fast track when no results */
|
2008-12-01 02:23:52 +03:00
|
|
|
MemoryContextSwitchTo(oldcontext);
|
2002-09-05 00:31:48 +04:00
|
|
|
SRF_RETURN_DONE(funcctx);
|
2008-12-01 02:23:52 +03:00
|
|
|
}
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
MemoryContextSwitchTo(oldcontext);
|
2002-09-05 00:31:48 +04:00
|
|
|
}
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/* stuff done on every call of the function */
|
2002-09-05 00:31:48 +04:00
|
|
|
funcctx = SRF_PERCALL_SETUP();
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/*
|
|
|
|
* initialize per-call variables
|
|
|
|
*/
|
|
|
|
call_cntr = funcctx->call_cntr;
|
|
|
|
max_calls = funcctx->max_calls;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
results = (char **) funcctx->user_fctx;
|
|
|
|
attinmeta = funcctx->attinmeta;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
if (call_cntr < max_calls) /* do when there is more left to send */
|
2002-09-05 00:31:48 +04:00
|
|
|
{
|
2002-09-02 10:13:31 +04:00
|
|
|
char **values;
|
|
|
|
HeapTuple tuple;
|
|
|
|
Datum result;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
values = (char **) palloc(2 * sizeof(char *));
|
2002-09-05 00:31:48 +04:00
|
|
|
values[0] = (char *) palloc(12); /* sign, 10 digits, '\0' */
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
sprintf(values[0], "%d", call_cntr + 1);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
values[1] = results[call_cntr];
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/* build the tuple */
|
|
|
|
tuple = BuildTupleFromCStrings(attinmeta, values);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/* make the tuple into a datum */
|
2004-04-02 01:28:47 +04:00
|
|
|
result = HeapTupleGetDatum(tuple);
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2002-09-05 00:31:48 +04:00
|
|
|
SRF_RETURN_NEXT(funcctx, result);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
2002-09-05 00:31:48 +04:00
|
|
|
else
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2003-06-25 05:10:15 +04:00
|
|
|
/* do when there is no more left */
|
|
|
|
SRF_RETURN_DONE(funcctx);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dblink_build_sql_insert
|
2002-09-05 00:31:48 +04:00
|
|
|
*
|
2002-04-24 06:28:28 +04:00
|
|
|
* Used to generate an SQL insert statement
|
|
|
|
* based on an existing tuple in a local relation.
|
|
|
|
* This is useful for selectively replicating data
|
|
|
|
* to another server via dblink.
|
|
|
|
*
|
|
|
|
* API:
|
|
|
|
* <relname> - name of local table of interest
|
|
|
|
* <pkattnums> - an int2vector of attnums which will be used
|
|
|
|
* to identify the local tuple of interest
|
|
|
|
* <pknumatts> - number of attnums in pkattnums
|
|
|
|
* <src_pkattvals_arry> - text array of key values which will be used
|
|
|
|
* to identify the local tuple of interest
|
|
|
|
* <tgt_pkattvals_arry> - text array of key values which will be used
|
|
|
|
* to build the string for execution remotely. These are substituted
|
|
|
|
* for their counterparts in src_pkattvals_arry
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_build_sql_insert);
|
|
|
|
Datum
|
|
|
|
dblink_build_sql_insert(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2005-11-18 05:38:24 +03:00
|
|
|
text *relname_text = PG_GETARG_TEXT_P(0);
|
2010-06-15 20:22:19 +04:00
|
|
|
int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
|
|
|
|
int32 pknumatts_arg = PG_GETARG_INT32(2);
|
2005-11-18 05:38:24 +03:00
|
|
|
ArrayType *src_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
|
|
|
|
ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(4);
|
2010-06-15 00:49:33 +04:00
|
|
|
Relation rel;
|
2010-06-15 20:22:19 +04:00
|
|
|
int *pkattnums;
|
|
|
|
int pknumatts;
|
2002-09-02 10:13:31 +04:00
|
|
|
char **src_pkattvals;
|
|
|
|
char **tgt_pkattvals;
|
2002-04-24 06:28:28 +04:00
|
|
|
int src_nitems;
|
|
|
|
int tgt_nitems;
|
2002-09-02 10:13:31 +04:00
|
|
|
char *sql;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 00:49:33 +04:00
|
|
|
* Open target relation.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 20:22:19 +04:00
|
|
|
* Process pkattnums argument.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 20:22:19 +04:00
|
|
|
validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
|
|
|
|
&pkattnums, &pknumatts);
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Source array is made up of key values that will be used to locate the
|
|
|
|
* tuple of interest from the local system.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2005-11-18 05:38:24 +03:00
|
|
|
src_pkattvals = get_text_array_contents(src_pkattvals_arry, &src_nitems);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be one source array key value for each key attnum
|
|
|
|
*/
|
|
|
|
if (src_nitems != pknumatts)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
|
2005-10-15 06:49:52 +04:00
|
|
|
errmsg("source key array length must match number of key " \
|
|
|
|
"attributes")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Target array is made up of key values that will be used to build the
|
|
|
|
* SQL string for use on the remote system.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2005-11-18 05:38:24 +03:00
|
|
|
tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be one target array key value for each key attnum
|
|
|
|
*/
|
|
|
|
if (tgt_nitems != pknumatts)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
|
2005-10-15 06:49:52 +04:00
|
|
|
errmsg("target key array length must match number of key " \
|
|
|
|
"attributes")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prep work is finally done. Go get the SQL string.
|
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
sql = get_sql_insert(rel, pkattnums, pknumatts, src_pkattvals, tgt_pkattvals);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we can close the relation.
|
|
|
|
*/
|
|
|
|
relation_close(rel, AccessShareLock);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* And send it
|
|
|
|
*/
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text(sql));
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dblink_build_sql_delete
|
2002-09-05 00:31:48 +04:00
|
|
|
*
|
2002-04-24 06:28:28 +04:00
|
|
|
* Used to generate an SQL delete statement.
|
|
|
|
* This is useful for selectively replicating a
|
|
|
|
* delete to another server via dblink.
|
|
|
|
*
|
|
|
|
* API:
|
|
|
|
* <relname> - name of remote table of interest
|
|
|
|
* <pkattnums> - an int2vector of attnums which will be used
|
|
|
|
* to identify the remote tuple of interest
|
|
|
|
* <pknumatts> - number of attnums in pkattnums
|
|
|
|
* <tgt_pkattvals_arry> - text array of key values which will be used
|
|
|
|
* to build the string for execution remotely.
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_build_sql_delete);
|
|
|
|
Datum
|
|
|
|
dblink_build_sql_delete(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2005-11-18 05:38:24 +03:00
|
|
|
text *relname_text = PG_GETARG_TEXT_P(0);
|
2010-06-15 20:22:19 +04:00
|
|
|
int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
|
|
|
|
int32 pknumatts_arg = PG_GETARG_INT32(2);
|
2005-11-18 05:38:24 +03:00
|
|
|
ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
|
2010-06-15 00:49:33 +04:00
|
|
|
Relation rel;
|
2010-06-15 20:22:19 +04:00
|
|
|
int *pkattnums;
|
|
|
|
int pknumatts;
|
2002-09-05 00:31:48 +04:00
|
|
|
char **tgt_pkattvals;
|
2002-04-24 06:28:28 +04:00
|
|
|
int tgt_nitems;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *sql;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 00:49:33 +04:00
|
|
|
* Open target relation.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 20:22:19 +04:00
|
|
|
* Process pkattnums argument.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 20:22:19 +04:00
|
|
|
validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
|
|
|
|
&pkattnums, &pknumatts);
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Target array is made up of key values that will be used to build the
|
|
|
|
* SQL string for use on the remote system.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2005-11-18 05:38:24 +03:00
|
|
|
tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be one target array key value for each key attnum
|
|
|
|
*/
|
|
|
|
if (tgt_nitems != pknumatts)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
|
2005-10-15 06:49:52 +04:00
|
|
|
errmsg("target key array length must match number of key " \
|
|
|
|
"attributes")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prep work is finally done. Go get the SQL string.
|
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
sql = get_sql_delete(rel, pkattnums, pknumatts, tgt_pkattvals);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we can close the relation.
|
|
|
|
*/
|
|
|
|
relation_close(rel, AccessShareLock);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* And send it
|
|
|
|
*/
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text(sql));
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dblink_build_sql_update
|
2002-09-05 00:31:48 +04:00
|
|
|
*
|
2002-04-24 06:28:28 +04:00
|
|
|
* Used to generate an SQL update statement
|
|
|
|
* based on an existing tuple in a local relation.
|
|
|
|
* This is useful for selectively replicating data
|
|
|
|
* to another server via dblink.
|
|
|
|
*
|
|
|
|
* API:
|
|
|
|
* <relname> - name of local table of interest
|
|
|
|
* <pkattnums> - an int2vector of attnums which will be used
|
|
|
|
* to identify the local tuple of interest
|
|
|
|
* <pknumatts> - number of attnums in pkattnums
|
|
|
|
* <src_pkattvals_arry> - text array of key values which will be used
|
|
|
|
* to identify the local tuple of interest
|
|
|
|
* <tgt_pkattvals_arry> - text array of key values which will be used
|
|
|
|
* to build the string for execution remotely. These are substituted
|
|
|
|
* for their counterparts in src_pkattvals_arry
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_build_sql_update);
|
|
|
|
Datum
|
|
|
|
dblink_build_sql_update(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2005-11-18 05:38:24 +03:00
|
|
|
text *relname_text = PG_GETARG_TEXT_P(0);
|
2010-06-15 20:22:19 +04:00
|
|
|
int2vector *pkattnums_arg = (int2vector *) PG_GETARG_POINTER(1);
|
|
|
|
int32 pknumatts_arg = PG_GETARG_INT32(2);
|
2005-11-18 05:38:24 +03:00
|
|
|
ArrayType *src_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(3);
|
|
|
|
ArrayType *tgt_pkattvals_arry = PG_GETARG_ARRAYTYPE_P(4);
|
2010-06-15 00:49:33 +04:00
|
|
|
Relation rel;
|
2010-06-15 20:22:19 +04:00
|
|
|
int *pkattnums;
|
|
|
|
int pknumatts;
|
2002-09-05 00:31:48 +04:00
|
|
|
char **src_pkattvals;
|
|
|
|
char **tgt_pkattvals;
|
2002-04-24 06:28:28 +04:00
|
|
|
int src_nitems;
|
|
|
|
int tgt_nitems;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *sql;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 00:49:33 +04:00
|
|
|
* Open target relation.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
rel = get_rel_from_relname(relname_text, AccessShareLock, ACL_SELECT);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 20:22:19 +04:00
|
|
|
* Process pkattnums argument.
|
2010-02-04 02:01:11 +03:00
|
|
|
*/
|
2010-06-15 20:22:19 +04:00
|
|
|
validate_pkattnums(rel, pkattnums_arg, pknumatts_arg,
|
|
|
|
&pkattnums, &pknumatts);
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Source array is made up of key values that will be used to locate the
|
|
|
|
* tuple of interest from the local system.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2005-11-18 05:38:24 +03:00
|
|
|
src_pkattvals = get_text_array_contents(src_pkattvals_arry, &src_nitems);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be one source array key value for each key attnum
|
|
|
|
*/
|
|
|
|
if (src_nitems != pknumatts)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
|
2005-10-15 06:49:52 +04:00
|
|
|
errmsg("source key array length must match number of key " \
|
|
|
|
"attributes")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2005-10-15 06:49:52 +04:00
|
|
|
* Target array is made up of key values that will be used to build the
|
|
|
|
* SQL string for use on the remote system.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2005-11-18 05:38:24 +03:00
|
|
|
tgt_pkattvals = get_text_array_contents(tgt_pkattvals_arry, &tgt_nitems);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be one target array key value for each key attnum
|
|
|
|
*/
|
|
|
|
if (tgt_nitems != pknumatts)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_ARRAY_SUBSCRIPT_ERROR),
|
2005-10-15 06:49:52 +04:00
|
|
|
errmsg("target key array length must match number of key " \
|
|
|
|
"attributes")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prep work is finally done. Go get the SQL string.
|
|
|
|
*/
|
2010-06-15 00:49:33 +04:00
|
|
|
sql = get_sql_update(rel, pkattnums, pknumatts, src_pkattvals, tgt_pkattvals);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we can close the relation.
|
|
|
|
*/
|
|
|
|
relation_close(rel, AccessShareLock);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* And send it
|
|
|
|
*/
|
2008-03-26 01:42:46 +03:00
|
|
|
PG_RETURN_TEXT_P(cstring_to_text(sql));
|
2001-06-14 20:49:03 +04:00
|
|
|
}
|
|
|
|
|
2009-06-09 21:41:02 +04:00
|
|
|
/*
|
|
|
|
* dblink_current_query
|
|
|
|
* return the current query string
|
|
|
|
* to allow its use in (among other things)
|
|
|
|
* rewrite rules
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_current_query);
|
|
|
|
Datum
|
|
|
|
dblink_current_query(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
/* This is now just an alias for the built-in function current_query() */
|
|
|
|
PG_RETURN_DATUM(current_query(fcinfo));
|
|
|
|
}
|
|
|
|
|
2009-08-05 20:11:07 +04:00
|
|
|
/*
|
2010-02-26 05:01:40 +03:00
|
|
|
* Retrieve async notifications for a connection.
|
2009-08-05 20:11:07 +04:00
|
|
|
*
|
|
|
|
* Returns an setof record of notifications, or an empty set if none recieved.
|
|
|
|
* Can optionally take a named connection as parameter, but uses the unnamed connection per default.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define DBLINK_NOTIFY_COLS 3
|
|
|
|
|
|
|
|
PG_FUNCTION_INFO_V1(dblink_get_notify);
|
|
|
|
Datum
|
|
|
|
dblink_get_notify(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2012-03-30 01:52:28 +04:00
|
|
|
char *conname = NULL;
|
2010-02-26 05:01:40 +03:00
|
|
|
PGconn *conn = NULL;
|
|
|
|
remoteConn *rconn = NULL;
|
|
|
|
PGnotify *notify;
|
|
|
|
ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
|
|
|
|
TupleDesc tupdesc;
|
|
|
|
Tuplestorestate *tupstore;
|
|
|
|
MemoryContext per_query_ctx;
|
|
|
|
MemoryContext oldcontext;
|
2009-08-05 20:11:07 +04:00
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
prepTuplestoreResult(fcinfo);
|
|
|
|
|
2009-08-05 20:11:07 +04:00
|
|
|
DBLINK_INIT;
|
|
|
|
if (PG_NARGS() == 1)
|
|
|
|
DBLINK_GET_NAMED_CONN;
|
|
|
|
else
|
|
|
|
conn = pconn->conn;
|
|
|
|
|
2012-04-04 04:43:15 +04:00
|
|
|
/* create the tuplestore in per-query memory */
|
2009-08-05 20:11:07 +04:00
|
|
|
per_query_ctx = rsinfo->econtext->ecxt_per_query_memory;
|
|
|
|
oldcontext = MemoryContextSwitchTo(per_query_ctx);
|
|
|
|
|
|
|
|
tupdesc = CreateTemplateTupleDesc(DBLINK_NOTIFY_COLS, false);
|
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 1, "notify_name",
|
|
|
|
TEXTOID, -1, 0);
|
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 2, "be_pid",
|
|
|
|
INT4OID, -1, 0);
|
|
|
|
TupleDescInitEntry(tupdesc, (AttrNumber) 3, "extra",
|
|
|
|
TEXTOID, -1, 0);
|
|
|
|
|
|
|
|
tupstore = tuplestore_begin_heap(true, false, work_mem);
|
|
|
|
rsinfo->setResult = tupstore;
|
|
|
|
rsinfo->setDesc = tupdesc;
|
|
|
|
|
|
|
|
MemoryContextSwitchTo(oldcontext);
|
|
|
|
|
|
|
|
PQconsumeInput(conn);
|
|
|
|
while ((notify = PQnotifies(conn)) != NULL)
|
|
|
|
{
|
|
|
|
Datum values[DBLINK_NOTIFY_COLS];
|
|
|
|
bool nulls[DBLINK_NOTIFY_COLS];
|
|
|
|
|
|
|
|
memset(values, 0, sizeof(values));
|
|
|
|
memset(nulls, 0, sizeof(nulls));
|
|
|
|
|
|
|
|
if (notify->relname != NULL)
|
|
|
|
values[0] = CStringGetTextDatum(notify->relname);
|
|
|
|
else
|
|
|
|
nulls[0] = true;
|
|
|
|
|
|
|
|
values[1] = Int32GetDatum(notify->be_pid);
|
|
|
|
|
|
|
|
if (notify->extra != NULL)
|
|
|
|
values[2] = CStringGetTextDatum(notify->extra);
|
|
|
|
else
|
|
|
|
nulls[2] = true;
|
|
|
|
|
|
|
|
tuplestore_putvalues(tupstore, tupdesc, values, nulls);
|
|
|
|
|
|
|
|
PQfreemem(notify);
|
|
|
|
PQconsumeInput(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clean up and return the tuplestore */
|
|
|
|
tuplestore_donestoring(tupstore);
|
|
|
|
|
|
|
|
return (Datum) 0;
|
|
|
|
}
|
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*************************************************************
|
2001-06-14 20:49:03 +04:00
|
|
|
* internal functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
/*
|
|
|
|
* get_pkey_attnames
|
2002-09-05 00:31:48 +04:00
|
|
|
*
|
2002-04-24 06:28:28 +04:00
|
|
|
* Get the primary key attnames for the given relation.
|
|
|
|
* Return NULL, and set numatts = 0, if no primary key exists.
|
|
|
|
*/
|
2002-05-28 01:59:12 +04:00
|
|
|
static char **
|
2010-06-15 00:49:33 +04:00
|
|
|
get_pkey_attnames(Relation rel, int16 *numatts)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
Relation indexRelation;
|
2008-01-14 05:49:47 +03:00
|
|
|
ScanKeyData skey;
|
|
|
|
SysScanDesc scan;
|
2002-09-05 00:31:48 +04:00
|
|
|
HeapTuple indexTuple;
|
|
|
|
int i;
|
|
|
|
char **result = NULL;
|
|
|
|
TupleDesc tupdesc;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2008-01-14 05:49:47 +03:00
|
|
|
/* initialize numatts to 0 in case no primary key exists */
|
|
|
|
*numatts = 0;
|
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
tupdesc = rel->rd_att;
|
|
|
|
|
2008-01-14 05:49:47 +03:00
|
|
|
/* Prepare to scan pg_index for entries having indrelid = this rel. */
|
2005-04-15 00:03:27 +04:00
|
|
|
indexRelation = heap_open(IndexRelationId, AccessShareLock);
|
2008-01-14 05:49:47 +03:00
|
|
|
ScanKeyInit(&skey,
|
2003-11-13 00:15:59 +03:00
|
|
|
Anum_pg_index_indrelid,
|
|
|
|
BTEqualStrategyNumber, F_OIDEQ,
|
2010-06-15 00:49:33 +04:00
|
|
|
ObjectIdGetDatum(RelationGetRelid(rel)));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2008-01-14 05:49:47 +03:00
|
|
|
scan = systable_beginscan(indexRelation, IndexIndrelidIndexId, true,
|
|
|
|
SnapshotNow, 1, &skey);
|
|
|
|
|
|
|
|
while (HeapTupleIsValid(indexTuple = systable_getnext(scan)))
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
Form_pg_index index = (Form_pg_index) GETSTRUCT(indexTuple);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2002-09-02 10:13:31 +04:00
|
|
|
/* we're only interested if it is the primary key */
|
2008-01-14 05:49:47 +03:00
|
|
|
if (index->indisprimary)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2005-03-29 04:17:27 +04:00
|
|
|
*numatts = index->indnatts;
|
2002-04-24 06:28:28 +04:00
|
|
|
if (*numatts > 0)
|
|
|
|
{
|
|
|
|
result = (char **) palloc(*numatts * sizeof(char *));
|
2002-09-02 10:13:31 +04:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
for (i = 0; i < *numatts; i++)
|
2005-03-29 04:17:27 +04:00
|
|
|
result[i] = SPI_fname(tupdesc, index->indkey.values[i]);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-01-14 05:49:47 +03:00
|
|
|
|
|
|
|
systable_endscan(scan);
|
2002-04-24 06:28:28 +04:00
|
|
|
heap_close(indexRelation, AccessShareLock);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-11-18 05:38:24 +03:00
|
|
|
/*
|
|
|
|
* Deconstruct a text[] into C-strings (note any NULL elements will be
|
|
|
|
* returned as NULL pointers)
|
|
|
|
*/
|
|
|
|
static char **
|
|
|
|
get_text_array_contents(ArrayType *array, int *numitems)
|
|
|
|
{
|
|
|
|
int ndim = ARR_NDIM(array);
|
|
|
|
int *dims = ARR_DIMS(array);
|
|
|
|
int nitems;
|
|
|
|
int16 typlen;
|
|
|
|
bool typbyval;
|
|
|
|
char typalign;
|
|
|
|
char **values;
|
|
|
|
char *ptr;
|
|
|
|
bits8 *bitmap;
|
|
|
|
int bitmask;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
Assert(ARR_ELEMTYPE(array) == TEXTOID);
|
|
|
|
|
|
|
|
*numitems = nitems = ArrayGetNItems(ndim, dims);
|
|
|
|
|
|
|
|
get_typlenbyvalalign(ARR_ELEMTYPE(array),
|
|
|
|
&typlen, &typbyval, &typalign);
|
|
|
|
|
|
|
|
values = (char **) palloc(nitems * sizeof(char *));
|
|
|
|
|
|
|
|
ptr = ARR_DATA_PTR(array);
|
|
|
|
bitmap = ARR_NULLBITMAP(array);
|
|
|
|
bitmask = 1;
|
|
|
|
|
|
|
|
for (i = 0; i < nitems; i++)
|
|
|
|
{
|
|
|
|
if (bitmap && (*bitmap & bitmask) == 0)
|
|
|
|
{
|
|
|
|
values[i] = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-26 01:42:46 +03:00
|
|
|
values[i] = TextDatumGetCString(PointerGetDatum(ptr));
|
2007-04-06 08:21:44 +04:00
|
|
|
ptr = att_addlength_pointer(ptr, typlen, ptr);
|
|
|
|
ptr = (char *) att_align_nominal(ptr, typalign);
|
2005-11-18 05:38:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* advance bitmap pointer if any */
|
|
|
|
if (bitmap)
|
|
|
|
{
|
|
|
|
bitmask <<= 1;
|
|
|
|
if (bitmask == 0x100)
|
|
|
|
{
|
|
|
|
bitmap++;
|
|
|
|
bitmask = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
2002-05-28 01:59:12 +04:00
|
|
|
static char *
|
2010-06-15 20:22:19 +04:00
|
|
|
get_sql_insert(Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals, char **tgt_pkattvals)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
char *relname;
|
|
|
|
HeapTuple tuple;
|
|
|
|
TupleDesc tupdesc;
|
|
|
|
int natts;
|
2006-03-01 09:51:01 +03:00
|
|
|
StringInfoData buf;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *val;
|
2010-06-15 20:22:19 +04:00
|
|
|
int key;
|
2002-09-05 00:31:48 +04:00
|
|
|
int i;
|
|
|
|
bool needComma;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
|
|
|
|
2002-11-23 21:59:25 +03:00
|
|
|
/* get relation name including any needed schema prefix and quoting */
|
2010-06-15 00:49:33 +04:00
|
|
|
relname = generate_relation_name(rel);
|
2002-11-23 21:59:25 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
tupdesc = rel->rd_att;
|
|
|
|
natts = tupdesc->natts;
|
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
tuple = get_tuple_of_interest(rel, pkattnums, pknumatts, src_pkattvals);
|
2002-09-02 10:13:31 +04:00
|
|
|
if (!tuple)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_CARDINALITY_VIOLATION),
|
|
|
|
errmsg("source row not found")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "INSERT INTO %s(", relname);
|
2002-08-02 22:15:10 +04:00
|
|
|
|
|
|
|
needComma = false;
|
2002-04-24 06:28:28 +04:00
|
|
|
for (i = 0; i < natts; i++)
|
|
|
|
{
|
2002-08-02 22:15:10 +04:00
|
|
|
if (tupdesc->attrs[i]->attisdropped)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (needComma)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, ",");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf,
|
2005-10-15 06:49:52 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[i]->attname)));
|
2002-08-02 22:15:10 +04:00
|
|
|
needComma = true;
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, ") VALUES(");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 23:04:15 +04:00
|
|
|
* Note: i is physical column number (counting from 0).
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2002-08-02 22:15:10 +04:00
|
|
|
needComma = false;
|
2002-04-24 06:28:28 +04:00
|
|
|
for (i = 0; i < natts; i++)
|
|
|
|
{
|
2002-08-02 22:15:10 +04:00
|
|
|
if (tupdesc->attrs[i]->attisdropped)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (needComma)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, ",");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
key = get_attnum_pk_pos(pkattnums, pknumatts, i);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
if (key >= 0)
|
2005-11-18 05:38:24 +03:00
|
|
|
val = tgt_pkattvals[key] ? pstrdup(tgt_pkattvals[key]) : NULL;
|
2002-04-24 06:28:28 +04:00
|
|
|
else
|
|
|
|
val = SPI_getvalue(tuple, tupdesc, i + 1);
|
|
|
|
|
|
|
|
if (val != NULL)
|
|
|
|
{
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf, quote_literal_cstr(val));
|
2002-04-24 06:28:28 +04:00
|
|
|
pfree(val);
|
|
|
|
}
|
|
|
|
else
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "NULL");
|
2002-08-02 22:15:10 +04:00
|
|
|
needComma = true;
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, ")");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
return (buf.data);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2002-05-28 01:59:12 +04:00
|
|
|
static char *
|
2010-06-15 20:22:19 +04:00
|
|
|
get_sql_delete(Relation rel, int *pkattnums, int pknumatts, char **tgt_pkattvals)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
char *relname;
|
|
|
|
TupleDesc tupdesc;
|
2006-10-04 04:30:14 +04:00
|
|
|
StringInfoData buf;
|
2002-09-05 00:31:48 +04:00
|
|
|
int i;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
|
|
|
|
2002-11-23 21:59:25 +03:00
|
|
|
/* get relation name including any needed schema prefix and quoting */
|
2010-06-15 00:49:33 +04:00
|
|
|
relname = generate_relation_name(rel);
|
2002-11-23 21:59:25 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
tupdesc = rel->rd_att;
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "DELETE FROM %s WHERE ", relname);
|
2002-04-24 06:28:28 +04:00
|
|
|
for (i = 0; i < pknumatts; i++)
|
|
|
|
{
|
2010-06-15 20:22:19 +04:00
|
|
|
int pkattnum = pkattnums[i];
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
if (i > 0)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " AND ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf,
|
2010-07-06 23:19:02 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[pkattnum]->attname)));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2005-11-18 05:38:24 +03:00
|
|
|
if (tgt_pkattvals[i] != NULL)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " = %s",
|
2005-11-18 05:38:24 +03:00
|
|
|
quote_literal_cstr(tgt_pkattvals[i]));
|
2002-04-24 06:28:28 +04:00
|
|
|
else
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " IS NULL");
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
return (buf.data);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2002-05-28 01:59:12 +04:00
|
|
|
static char *
|
2010-06-15 20:22:19 +04:00
|
|
|
get_sql_update(Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals, char **tgt_pkattvals)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
char *relname;
|
|
|
|
HeapTuple tuple;
|
|
|
|
TupleDesc tupdesc;
|
|
|
|
int natts;
|
2006-03-01 09:51:01 +03:00
|
|
|
StringInfoData buf;
|
2002-09-05 00:31:48 +04:00
|
|
|
char *val;
|
2010-06-15 20:22:19 +04:00
|
|
|
int key;
|
2002-09-05 00:31:48 +04:00
|
|
|
int i;
|
|
|
|
bool needComma;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
|
|
|
|
2002-11-23 21:59:25 +03:00
|
|
|
/* get relation name including any needed schema prefix and quoting */
|
2010-06-15 00:49:33 +04:00
|
|
|
relname = generate_relation_name(rel);
|
2002-11-23 21:59:25 +03:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
tupdesc = rel->rd_att;
|
|
|
|
natts = tupdesc->natts;
|
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
tuple = get_tuple_of_interest(rel, pkattnums, pknumatts, src_pkattvals);
|
2002-09-02 10:13:31 +04:00
|
|
|
if (!tuple)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_CARDINALITY_VIOLATION),
|
|
|
|
errmsg("source row not found")));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "UPDATE %s SET ", relname);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
/*
|
|
|
|
* Note: i is physical column number (counting from 0).
|
|
|
|
*/
|
2002-08-02 22:15:10 +04:00
|
|
|
needComma = false;
|
2002-04-24 06:28:28 +04:00
|
|
|
for (i = 0; i < natts; i++)
|
|
|
|
{
|
2002-08-02 22:15:10 +04:00
|
|
|
if (tupdesc->attrs[i]->attisdropped)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (needComma)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, ", ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "%s = ",
|
2005-10-15 06:49:52 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[i]->attname)));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
key = get_attnum_pk_pos(pkattnums, pknumatts, i);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
if (key >= 0)
|
2005-11-22 21:17:34 +03:00
|
|
|
val = tgt_pkattvals[key] ? pstrdup(tgt_pkattvals[key]) : NULL;
|
2002-04-24 06:28:28 +04:00
|
|
|
else
|
|
|
|
val = SPI_getvalue(tuple, tupdesc, i + 1);
|
|
|
|
|
|
|
|
if (val != NULL)
|
|
|
|
{
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf, quote_literal_cstr(val));
|
2002-04-24 06:28:28 +04:00
|
|
|
pfree(val);
|
|
|
|
}
|
|
|
|
else
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf, "NULL");
|
2002-08-02 22:15:10 +04:00
|
|
|
needComma = true;
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " WHERE ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
for (i = 0; i < pknumatts; i++)
|
|
|
|
{
|
2010-06-15 20:22:19 +04:00
|
|
|
int pkattnum = pkattnums[i];
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
if (i > 0)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " AND ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, "%s",
|
2010-07-06 23:19:02 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[pkattnum]->attname)));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
val = tgt_pkattvals[i];
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
if (val != NULL)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " = %s", quote_literal_cstr(val));
|
2002-04-24 06:28:28 +04:00
|
|
|
else
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " IS NULL");
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
return (buf.data);
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return a properly quoted identifier.
|
|
|
|
* Uses quote_ident in quote.c
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
quote_ident_cstr(char *rawstr)
|
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
text *rawstr_text;
|
|
|
|
text *result_text;
|
|
|
|
char *result;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2008-03-26 01:42:46 +03:00
|
|
|
rawstr_text = cstring_to_text(rawstr);
|
|
|
|
result_text = DatumGetTextP(DirectFunctionCall1(quote_ident,
|
2009-06-11 18:49:15 +04:00
|
|
|
PointerGetDatum(rawstr_text)));
|
2008-03-26 01:42:46 +03:00
|
|
|
result = text_to_cstring(result_text);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-06-15 20:22:19 +04:00
|
|
|
static int
|
|
|
|
get_attnum_pk_pos(int *pkattnums, int pknumatts, int key)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
int i;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2002-09-05 00:31:48 +04:00
|
|
|
* Not likely a long list anyway, so just scan for the value
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
|
|
|
for (i = 0; i < pknumatts; i++)
|
2010-06-15 20:22:19 +04:00
|
|
|
if (key == pkattnums[i])
|
2002-04-24 06:28:28 +04:00
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-05-28 01:59:12 +04:00
|
|
|
static HeapTuple
|
2010-06-15 20:22:19 +04:00
|
|
|
get_tuple_of_interest(Relation rel, int *pkattnums, int pknumatts, char **src_pkattvals)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-09-05 00:31:48 +04:00
|
|
|
char *relname;
|
|
|
|
TupleDesc tupdesc;
|
2010-06-15 23:04:15 +04:00
|
|
|
int natts;
|
2006-03-01 09:51:01 +03:00
|
|
|
StringInfoData buf;
|
2002-09-05 00:31:48 +04:00
|
|
|
int ret;
|
|
|
|
HeapTuple tuple;
|
|
|
|
int i;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
/*
|
|
|
|
* Connect to SPI manager
|
|
|
|
*/
|
|
|
|
if ((ret = SPI_connect()) < 0)
|
|
|
|
/* internal error */
|
|
|
|
elog(ERROR, "SPI connect failure - returned %d", ret);
|
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
initStringInfo(&buf);
|
|
|
|
|
2002-11-23 21:59:25 +03:00
|
|
|
/* get relation name including any needed schema prefix and quoting */
|
2010-06-15 00:49:33 +04:00
|
|
|
relname = generate_relation_name(rel);
|
2002-11-23 21:59:25 +03:00
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
tupdesc = rel->rd_att;
|
2010-06-15 23:04:15 +04:00
|
|
|
natts = tupdesc->natts;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
2010-06-15 23:04:15 +04:00
|
|
|
* Build sql statement to look up tuple of interest, ie, the one matching
|
|
|
|
* src_pkattvals. We used to use "SELECT *" here, but it's simpler to
|
|
|
|
* generate a result tuple that matches the table's physical structure,
|
2010-07-06 23:19:02 +04:00
|
|
|
* with NULLs for any dropped columns. Otherwise we have to deal with two
|
|
|
|
* different tupdescs and everything's very confusing.
|
2002-04-24 06:28:28 +04:00
|
|
|
*/
|
2010-06-15 23:04:15 +04:00
|
|
|
appendStringInfoString(&buf, "SELECT ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 23:04:15 +04:00
|
|
|
for (i = 0; i < natts; i++)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
appendStringInfoString(&buf, ", ");
|
|
|
|
|
|
|
|
if (tupdesc->attrs[i]->attisdropped)
|
|
|
|
appendStringInfoString(&buf, "NULL");
|
|
|
|
else
|
|
|
|
appendStringInfoString(&buf,
|
2010-07-06 23:19:02 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[i]->attname)));
|
2010-06-15 23:04:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
appendStringInfo(&buf, " FROM %s WHERE ", relname);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
for (i = 0; i < pknumatts; i++)
|
|
|
|
{
|
2010-06-15 20:22:19 +04:00
|
|
|
int pkattnum = pkattnums[i];
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
if (i > 0)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " AND ");
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfoString(&buf,
|
2010-07-06 23:19:02 +04:00
|
|
|
quote_ident_cstr(NameStr(tupdesc->attrs[pkattnum]->attname)));
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2005-11-18 05:38:24 +03:00
|
|
|
if (src_pkattvals[i] != NULL)
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " = %s",
|
2005-11-18 05:38:24 +03:00
|
|
|
quote_literal_cstr(src_pkattvals[i]));
|
2002-04-24 06:28:28 +04:00
|
|
|
else
|
2006-03-01 09:51:01 +03:00
|
|
|
appendStringInfo(&buf, " IS NULL");
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Retrieve the desired tuple
|
|
|
|
*/
|
2006-03-01 09:51:01 +03:00
|
|
|
ret = SPI_exec(buf.data, 0);
|
|
|
|
pfree(buf.data);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only allow one qualifying tuple
|
|
|
|
*/
|
|
|
|
if ((ret == SPI_OK_SELECT) && (SPI_processed > 1))
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_CARDINALITY_VIOLATION),
|
|
|
|
errmsg("source criteria matched more than one record")));
|
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
else if (ret == SPI_OK_SELECT && SPI_processed == 1)
|
|
|
|
{
|
|
|
|
SPITupleTable *tuptable = SPI_tuptable;
|
2002-09-05 00:31:48 +04:00
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
tuple = SPI_copytuple(tuptable->vals[0]);
|
2003-11-26 23:43:25 +03:00
|
|
|
SPI_finish();
|
2002-04-24 06:28:28 +04:00
|
|
|
|
|
|
|
return tuple;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* no qualifying tuples
|
|
|
|
*/
|
2003-11-26 23:43:25 +03:00
|
|
|
SPI_finish();
|
|
|
|
|
2002-04-24 06:28:28 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* never reached, but keep compiler quiet
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
/*
|
|
|
|
* Open the relation named by relname_text, acquire specified type of lock,
|
|
|
|
* verify we have specified permissions.
|
|
|
|
* Caller must close rel when done with it.
|
|
|
|
*/
|
|
|
|
static Relation
|
|
|
|
get_rel_from_relname(text *relname_text, LOCKMODE lockmode, AclMode aclmode)
|
2002-04-24 06:28:28 +04:00
|
|
|
{
|
2002-05-28 01:59:12 +04:00
|
|
|
RangeVar *relvar;
|
|
|
|
Relation rel;
|
2010-06-15 00:49:33 +04:00
|
|
|
AclResult aclresult;
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2005-05-27 04:57:49 +04:00
|
|
|
relvar = makeRangeVarFromNameList(textToQualifiedNameList(relname_text));
|
2010-06-15 00:49:33 +04:00
|
|
|
rel = heap_openrv(relvar, lockmode);
|
2002-04-24 06:28:28 +04:00
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
aclresult = pg_class_aclcheck(RelationGetRelid(rel), GetUserId(),
|
|
|
|
aclmode);
|
|
|
|
if (aclresult != ACLCHECK_OK)
|
|
|
|
aclcheck_error(aclresult, ACL_KIND_CLASS,
|
|
|
|
RelationGetRelationName(rel));
|
|
|
|
|
|
|
|
return rel;
|
2002-04-24 06:28:28 +04:00
|
|
|
}
|
|
|
|
|
2002-11-23 21:59:25 +03:00
|
|
|
/*
|
|
|
|
* generate_relation_name - copied from ruleutils.c
|
2010-06-15 00:49:33 +04:00
|
|
|
* Compute the name to display for a relation
|
2002-11-23 21:59:25 +03:00
|
|
|
*
|
|
|
|
* The result includes all necessary quoting and schema-prefixing.
|
|
|
|
*/
|
|
|
|
static char *
|
2010-06-15 00:49:33 +04:00
|
|
|
generate_relation_name(Relation rel)
|
2002-11-23 21:59:25 +03:00
|
|
|
{
|
|
|
|
char *nspname;
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
/* Qualify the name if not visible in search path */
|
2010-06-15 00:49:33 +04:00
|
|
|
if (RelationIsVisible(RelationGetRelid(rel)))
|
2002-11-23 21:59:25 +03:00
|
|
|
nspname = NULL;
|
|
|
|
else
|
2010-06-15 00:49:33 +04:00
|
|
|
nspname = get_namespace_name(rel->rd_rel->relnamespace);
|
2002-11-23 21:59:25 +03:00
|
|
|
|
2010-06-15 00:49:33 +04:00
|
|
|
result = quote_qualified_identifier(nspname, RelationGetRelationName(rel));
|
2002-11-23 21:59:25 +03:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2003-06-25 05:10:15 +04:00
|
|
|
|
|
|
|
|
|
|
|
static remoteConn *
|
|
|
|
getConnectionByName(const char *name)
|
|
|
|
{
|
2003-08-04 04:43:34 +04:00
|
|
|
remoteConnHashEnt *hentry;
|
2010-06-03 13:38:33 +04:00
|
|
|
char *key;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (!remoteConnHash)
|
|
|
|
remoteConnHash = createConnHash();
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2010-06-03 13:38:33 +04:00
|
|
|
key = pstrdup(name);
|
2010-11-25 13:40:58 +03:00
|
|
|
truncate_identifier(key, strlen(key), false);
|
2003-08-04 04:43:34 +04:00
|
|
|
hentry = (remoteConnHashEnt *) hash_search(remoteConnHash,
|
|
|
|
key, HASH_FIND, NULL);
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (hentry)
|
2005-10-08 16:12:29 +04:00
|
|
|
return (hentry->rconn);
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
return (NULL);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static HTAB *
|
|
|
|
createConnHash(void)
|
|
|
|
{
|
2003-08-04 04:43:34 +04:00
|
|
|
HASHCTL ctl;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
|
|
|
ctl.keysize = NAMEDATALEN;
|
|
|
|
ctl.entrysize = sizeof(remoteConnHashEnt);
|
|
|
|
|
2004-10-25 04:46:43 +04:00
|
|
|
return hash_create("Remote Con hash", NUMCONN, &ctl, HASH_ELEM);
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
|
2003-07-24 21:52:50 +04:00
|
|
|
static void
|
2009-06-11 18:49:15 +04:00
|
|
|
createNewConnection(const char *name, remoteConn *rconn)
|
2003-06-25 05:10:15 +04:00
|
|
|
{
|
2003-08-04 04:43:34 +04:00
|
|
|
remoteConnHashEnt *hentry;
|
|
|
|
bool found;
|
2010-06-03 13:38:33 +04:00
|
|
|
char *key;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (!remoteConnHash)
|
2003-07-24 21:52:50 +04:00
|
|
|
remoteConnHash = createConnHash();
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2010-06-03 13:38:33 +04:00
|
|
|
key = pstrdup(name);
|
|
|
|
truncate_identifier(key, strlen(key), true);
|
2003-06-25 05:10:15 +04:00
|
|
|
hentry = (remoteConnHashEnt *) hash_search(remoteConnHash, key,
|
|
|
|
HASH_ENTER, &found);
|
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (found)
|
2010-06-09 04:56:02 +04:00
|
|
|
{
|
|
|
|
PQfinish(rconn->conn);
|
|
|
|
pfree(rconn);
|
|
|
|
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_DUPLICATE_OBJECT),
|
|
|
|
errmsg("duplicate connection name")));
|
2010-06-09 04:56:02 +04:00
|
|
|
}
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2005-10-08 16:12:29 +04:00
|
|
|
hentry->rconn = rconn;
|
2007-02-07 03:52:35 +03:00
|
|
|
strlcpy(hentry->name, name, sizeof(hentry->name));
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
deleteConnection(const char *name)
|
|
|
|
{
|
2003-08-04 04:43:34 +04:00
|
|
|
remoteConnHashEnt *hentry;
|
|
|
|
bool found;
|
2010-06-03 13:38:33 +04:00
|
|
|
char *key;
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (!remoteConnHash)
|
|
|
|
remoteConnHash = createConnHash();
|
2003-06-25 05:10:15 +04:00
|
|
|
|
2010-06-03 13:38:33 +04:00
|
|
|
key = pstrdup(name);
|
2010-11-25 13:40:58 +03:00
|
|
|
truncate_identifier(key, strlen(key), false);
|
2003-06-25 05:10:15 +04:00
|
|
|
hentry = (remoteConnHashEnt *) hash_search(remoteConnHash,
|
|
|
|
key, HASH_REMOVE, &found);
|
|
|
|
|
2003-08-04 04:43:34 +04:00
|
|
|
if (!hentry)
|
2003-07-24 21:52:50 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_UNDEFINED_OBJECT),
|
|
|
|
errmsg("undefined connection name")));
|
|
|
|
|
2003-06-25 05:10:15 +04:00
|
|
|
}
|
2008-01-04 00:27:59 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
dblink_security_check(PGconn *conn, remoteConn *rconn)
|
|
|
|
{
|
|
|
|
if (!superuser())
|
|
|
|
{
|
|
|
|
if (!PQconnectionUsedPassword(conn))
|
|
|
|
{
|
|
|
|
PQfinish(conn);
|
|
|
|
if (rconn)
|
|
|
|
pfree(rconn);
|
|
|
|
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
|
|
|
|
errmsg("password is required"),
|
|
|
|
errdetail("Non-superuser cannot connect if the server does not request a password."),
|
|
|
|
errhint("Target server's authentication method must be changed.")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-07-03 07:56:57 +04:00
|
|
|
|
2008-09-22 17:55:14 +04:00
|
|
|
/*
|
2009-06-11 18:49:15 +04:00
|
|
|
* For non-superusers, insist that the connstr specify a password. This
|
2008-09-22 17:55:14 +04:00
|
|
|
* prevents a password from being picked up from .pgpass, a service file,
|
|
|
|
* the environment, etc. We don't want the postgres user's passwords
|
|
|
|
* to be accessible to non-superusers.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
dblink_connstr_check(const char *connstr)
|
|
|
|
{
|
|
|
|
if (!superuser())
|
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
PQconninfoOption *options;
|
|
|
|
PQconninfoOption *option;
|
|
|
|
bool connstr_gives_password = false;
|
2008-09-22 17:55:14 +04:00
|
|
|
|
|
|
|
options = PQconninfoParse(connstr, NULL);
|
|
|
|
if (options)
|
|
|
|
{
|
|
|
|
for (option = options; option->keyword != NULL; option++)
|
|
|
|
{
|
|
|
|
if (strcmp(option->keyword, "password") == 0)
|
|
|
|
{
|
|
|
|
if (option->val != NULL && option->val[0] != '\0')
|
|
|
|
{
|
|
|
|
connstr_gives_password = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PQconninfoFree(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!connstr_gives_password)
|
|
|
|
ereport(ERROR,
|
2009-06-11 18:49:15 +04:00
|
|
|
(errcode(ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED),
|
|
|
|
errmsg("password is required"),
|
|
|
|
errdetail("Non-superusers must provide a password in the connection string.")));
|
2008-09-22 17:55:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-03 07:56:57 +04:00
|
|
|
static void
|
|
|
|
dblink_res_error(const char *conname, PGresult *res, const char *dblink_context_msg, bool fail)
|
|
|
|
{
|
|
|
|
int level;
|
|
|
|
char *pg_diag_sqlstate = PQresultErrorField(res, PG_DIAG_SQLSTATE);
|
|
|
|
char *pg_diag_message_primary = PQresultErrorField(res, PG_DIAG_MESSAGE_PRIMARY);
|
|
|
|
char *pg_diag_message_detail = PQresultErrorField(res, PG_DIAG_MESSAGE_DETAIL);
|
|
|
|
char *pg_diag_message_hint = PQresultErrorField(res, PG_DIAG_MESSAGE_HINT);
|
|
|
|
char *pg_diag_context = PQresultErrorField(res, PG_DIAG_CONTEXT);
|
|
|
|
int sqlstate;
|
|
|
|
char *message_primary;
|
|
|
|
char *message_detail;
|
|
|
|
char *message_hint;
|
|
|
|
char *message_context;
|
|
|
|
const char *dblink_context_conname = "unnamed";
|
|
|
|
|
|
|
|
if (fail)
|
|
|
|
level = ERROR;
|
|
|
|
else
|
|
|
|
level = NOTICE;
|
|
|
|
|
|
|
|
if (pg_diag_sqlstate)
|
|
|
|
sqlstate = MAKE_SQLSTATE(pg_diag_sqlstate[0],
|
|
|
|
pg_diag_sqlstate[1],
|
|
|
|
pg_diag_sqlstate[2],
|
|
|
|
pg_diag_sqlstate[3],
|
|
|
|
pg_diag_sqlstate[4]);
|
|
|
|
else
|
|
|
|
sqlstate = ERRCODE_CONNECTION_FAILURE;
|
|
|
|
|
|
|
|
xpstrdup(message_primary, pg_diag_message_primary);
|
|
|
|
xpstrdup(message_detail, pg_diag_message_detail);
|
|
|
|
xpstrdup(message_hint, pg_diag_message_hint);
|
|
|
|
xpstrdup(message_context, pg_diag_context);
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
PQclear(res);
|
|
|
|
|
|
|
|
if (conname)
|
|
|
|
dblink_context_conname = conname;
|
|
|
|
|
|
|
|
ereport(level,
|
2009-06-11 18:49:15 +04:00
|
|
|
(errcode(sqlstate),
|
2011-07-16 22:21:12 +04:00
|
|
|
message_primary ? errmsg_internal("%s", message_primary) :
|
|
|
|
errmsg("unknown error"),
|
|
|
|
message_detail ? errdetail_internal("%s", message_detail) : 0,
|
2009-06-11 18:49:15 +04:00
|
|
|
message_hint ? errhint("%s", message_hint) : 0,
|
|
|
|
message_context ? errcontext("%s", message_context) : 0,
|
|
|
|
errcontext("Error occurred on dblink connection named \"%s\": %s.",
|
|
|
|
dblink_context_conname, dblink_context_msg)));
|
2008-07-03 07:56:57 +04:00
|
|
|
}
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Obtain connection string for a foreign server
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
get_connect_string(const char *servername)
|
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
ForeignServer *foreign_server = NULL;
|
|
|
|
UserMapping *user_mapping;
|
|
|
|
ListCell *cell;
|
|
|
|
StringInfo buf = makeStringInfo();
|
2009-06-07 01:27:56 +04:00
|
|
|
ForeignDataWrapper *fdw;
|
2009-06-11 18:49:15 +04:00
|
|
|
AclResult aclresult;
|
2010-06-03 13:38:33 +04:00
|
|
|
char *srvname;
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
/* first gather the server connstr options */
|
2010-06-03 13:38:33 +04:00
|
|
|
srvname = pstrdup(servername);
|
2010-06-09 07:39:26 +04:00
|
|
|
truncate_identifier(srvname, strlen(srvname), false);
|
2010-06-03 13:38:33 +04:00
|
|
|
foreign_server = GetForeignServerByName(srvname, true);
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
if (foreign_server)
|
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
Oid serverid = foreign_server->serverid;
|
|
|
|
Oid fdwid = foreign_server->fdwid;
|
|
|
|
Oid userid = GetUserId();
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
user_mapping = GetUserMapping(userid, serverid);
|
2009-06-11 18:49:15 +04:00
|
|
|
fdw = GetForeignDataWrapper(fdwid);
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
/* Check permissions, user must have usage on the server. */
|
|
|
|
aclresult = pg_foreign_server_aclcheck(serverid, userid, ACL_USAGE);
|
|
|
|
if (aclresult != ACLCHECK_OK)
|
|
|
|
aclcheck_error(aclresult, ACL_KIND_FOREIGN_SERVER, foreign_server->servername);
|
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
foreach(cell, fdw->options)
|
2009-06-07 01:27:56 +04:00
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
DefElem *def = lfirst(cell);
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
appendStringInfo(buf, "%s='%s' ", def->defname,
|
|
|
|
escape_param_str(strVal(def->arg)));
|
|
|
|
}
|
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
foreach(cell, foreign_server->options)
|
2009-06-07 01:27:56 +04:00
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
DefElem *def = lfirst(cell);
|
|
|
|
|
2009-06-07 01:27:56 +04:00
|
|
|
appendStringInfo(buf, "%s='%s' ", def->defname,
|
|
|
|
escape_param_str(strVal(def->arg)));
|
|
|
|
}
|
2009-06-11 18:49:15 +04:00
|
|
|
|
|
|
|
foreach(cell, user_mapping->options)
|
2009-06-07 01:27:56 +04:00
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
|
|
|
|
DefElem *def = lfirst(cell);
|
|
|
|
|
2009-06-07 01:27:56 +04:00
|
|
|
appendStringInfo(buf, "%s='%s' ", def->defname,
|
|
|
|
escape_param_str(strVal(def->arg)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf->data;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Escaping libpq connect parameter strings.
|
|
|
|
*
|
|
|
|
* Replaces "'" with "\'" and "\" with "\\".
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
escape_param_str(const char *str)
|
|
|
|
{
|
2009-06-11 18:49:15 +04:00
|
|
|
const char *cp;
|
|
|
|
StringInfo buf = makeStringInfo();
|
2009-06-07 01:27:56 +04:00
|
|
|
|
|
|
|
for (cp = str; *cp; cp++)
|
|
|
|
{
|
|
|
|
if (*cp == '\\' || *cp == '\'')
|
|
|
|
appendStringInfoChar(buf, '\\');
|
|
|
|
appendStringInfoChar(buf, *cp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf->data;
|
|
|
|
}
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2010-06-15 20:22:19 +04:00
|
|
|
/*
|
|
|
|
* Validate the PK-attnums argument for dblink_build_sql_insert() and related
|
|
|
|
* functions, and translate to the internal representation.
|
|
|
|
*
|
2010-06-16 00:29:01 +04:00
|
|
|
* The user supplies an int2vector of 1-based logical attnums, plus a count
|
2010-06-15 20:22:19 +04:00
|
|
|
* argument (the need for the separate count argument is historical, but we
|
|
|
|
* still check it). We check that each attnum corresponds to a valid,
|
|
|
|
* non-dropped attribute of the rel. We do *not* prevent attnums from being
|
|
|
|
* listed twice, though the actual use-case for such things is dubious.
|
2010-06-16 00:29:01 +04:00
|
|
|
* Note that before Postgres 9.0, the user's attnums were interpreted as
|
|
|
|
* physical not logical column numbers; this was changed for future-proofing.
|
2010-06-15 20:22:19 +04:00
|
|
|
*
|
|
|
|
* The internal representation is a palloc'd int array of 0-based physical
|
|
|
|
* attnums.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
validate_pkattnums(Relation rel,
|
|
|
|
int2vector *pkattnums_arg, int32 pknumatts_arg,
|
|
|
|
int **pkattnums, int *pknumatts)
|
2010-02-04 02:01:11 +03:00
|
|
|
{
|
2010-06-15 20:22:19 +04:00
|
|
|
TupleDesc tupdesc = rel->rd_att;
|
|
|
|
int natts = tupdesc->natts;
|
2010-02-04 02:01:11 +03:00
|
|
|
int i;
|
|
|
|
|
2010-06-15 20:22:19 +04:00
|
|
|
/* Don't take more array elements than there are */
|
|
|
|
pknumatts_arg = Min(pknumatts_arg, pkattnums_arg->dim1);
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2010-06-15 20:22:19 +04:00
|
|
|
/* Must have at least one pk attnum selected */
|
|
|
|
if (pknumatts_arg <= 0)
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
|
|
|
errmsg("number of key attributes must be > 0")));
|
|
|
|
|
|
|
|
/* Allocate output array */
|
|
|
|
*pkattnums = (int *) palloc(pknumatts_arg * sizeof(int));
|
|
|
|
*pknumatts = pknumatts_arg;
|
|
|
|
|
|
|
|
/* Validate attnums and convert to internal form */
|
|
|
|
for (i = 0; i < pknumatts_arg; i++)
|
2010-02-04 02:01:11 +03:00
|
|
|
{
|
2010-07-06 23:19:02 +04:00
|
|
|
int pkattnum = pkattnums_arg->values[i];
|
|
|
|
int lnum;
|
|
|
|
int j;
|
2010-02-04 02:01:11 +03:00
|
|
|
|
2010-06-16 00:29:01 +04:00
|
|
|
/* Can throw error immediately if out of range */
|
|
|
|
if (pkattnum <= 0 || pkattnum > natts)
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
|
|
|
errmsg("invalid attribute number %d", pkattnum)));
|
|
|
|
|
|
|
|
/* Identify which physical column has this logical number */
|
|
|
|
lnum = 0;
|
|
|
|
for (j = 0; j < natts; j++)
|
|
|
|
{
|
|
|
|
/* dropped columns don't count */
|
|
|
|
if (tupdesc->attrs[j]->attisdropped)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (++lnum == pkattnum)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j < natts)
|
|
|
|
(*pkattnums)[i] = j;
|
|
|
|
else
|
2010-06-15 20:22:19 +04:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
|
|
|
errmsg("invalid attribute number %d", pkattnum)));
|
|
|
|
}
|
2010-02-04 02:01:11 +03:00
|
|
|
}
|