1997-08-29 09:05:57 +00:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
1999-02-13 23:22:53 +00:00
|
|
|
* spi.h
|
1997-09-07 05:04:48 +00:00
|
|
|
*
|
2004-09-16 16:58:44 +00:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.49 2004/09/16 16:58:40 tgl Exp $
|
1997-08-29 09:05:57 +00:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
1997-09-07 05:04:48 +00:00
|
|
|
#ifndef SPI_H
|
1997-08-29 09:05:57 +00:00
|
|
|
#define SPI_H
|
|
|
|
|
2001-02-10 02:31:31 +00:00
|
|
|
/*
|
|
|
|
* This file may be used by client modules that haven't already
|
|
|
|
* included postgres.h
|
|
|
|
*/
|
1997-08-29 09:05:57 +00:00
|
|
|
#include "postgres.h"
|
1999-07-15 15:21:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These are not needed by this file, but used by other programs
|
|
|
|
* using SPI
|
|
|
|
*/
|
1997-08-29 09:05:57 +00:00
|
|
|
#include "nodes/primnodes.h"
|
|
|
|
#include "nodes/relation.h"
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
#include "catalog/pg_proc.h"
|
1997-11-30 22:42:58 +00:00
|
|
|
#include "catalog/pg_type.h"
|
1997-08-29 09:05:57 +00:00
|
|
|
#include "tcop/pquery.h"
|
|
|
|
#include "tcop/tcopprot.h"
|
|
|
|
#include "tcop/utility.h"
|
|
|
|
#include "tcop/dest.h"
|
|
|
|
#include "nodes/params.h"
|
2003-03-10 03:53:52 +00:00
|
|
|
#include "utils/builtins.h"
|
1997-08-29 09:05:57 +00:00
|
|
|
#include "utils/datum.h"
|
2003-03-10 03:53:52 +00:00
|
|
|
#include "utils/portal.h"
|
1997-08-29 09:05:57 +00:00
|
|
|
#include "utils/syscache.h"
|
|
|
|
#include "catalog/pg_language.h"
|
|
|
|
#include "access/heapam.h"
|
|
|
|
#include "access/xact.h"
|
|
|
|
#include "executor/executor.h"
|
|
|
|
#include "executor/execdefs.h"
|
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2001-05-21 14:22:19 +00:00
|
|
|
MemoryContext tuptabcxt; /* memory context of result table */
|
1997-09-08 02:41:22 +00:00
|
|
|
uint32 alloced; /* # of alloced vals */
|
|
|
|
uint32 free; /* # of free vals */
|
|
|
|
TupleDesc tupdesc; /* tuple descriptor */
|
|
|
|
HeapTuple *vals; /* tuples */
|
1998-02-26 04:46:47 +00:00
|
|
|
} SPITupleTable;
|
1997-08-29 09:05:57 +00:00
|
|
|
|
2001-08-02 18:08:43 +00:00
|
|
|
#define SPI_ERROR_CONNECT (-1)
|
|
|
|
#define SPI_ERROR_COPY (-2)
|
|
|
|
#define SPI_ERROR_OPUNKNOWN (-3)
|
|
|
|
#define SPI_ERROR_UNCONNECTED (-4)
|
|
|
|
#define SPI_ERROR_CURSOR (-5)
|
|
|
|
#define SPI_ERROR_ARGUMENT (-6)
|
|
|
|
#define SPI_ERROR_PARAM (-7)
|
|
|
|
#define SPI_ERROR_TRANSACTION (-8)
|
|
|
|
#define SPI_ERROR_NOATTRIBUTE (-9)
|
|
|
|
#define SPI_ERROR_NOOUTFUNC (-10)
|
|
|
|
#define SPI_ERROR_TYPUNKNOWN (-11)
|
1997-08-29 09:05:57 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
#define SPI_OK_CONNECT 1
|
|
|
|
#define SPI_OK_FINISH 2
|
|
|
|
#define SPI_OK_FETCH 3
|
|
|
|
#define SPI_OK_UTILITY 4
|
|
|
|
#define SPI_OK_SELECT 5
|
|
|
|
#define SPI_OK_SELINTO 6
|
|
|
|
#define SPI_OK_INSERT 7
|
|
|
|
#define SPI_OK_DELETE 8
|
|
|
|
#define SPI_OK_UPDATE 9
|
|
|
|
#define SPI_OK_CURSOR 10
|
1997-09-04 13:26:19 +00:00
|
|
|
|
1999-03-09 13:39:15 +00:00
|
|
|
extern DLLIMPORT uint32 SPI_processed;
|
2001-02-19 19:49:53 +00:00
|
|
|
extern DLLIMPORT Oid SPI_lastoid;
|
1999-03-09 13:39:15 +00:00
|
|
|
extern DLLIMPORT SPITupleTable *SPI_tuptable;
|
1999-05-25 16:15:34 +00:00
|
|
|
extern DLLIMPORT int SPI_result;
|
1997-08-29 09:05:57 +00:00
|
|
|
|
1997-09-08 02:41:22 +00:00
|
|
|
extern int SPI_connect(void);
|
|
|
|
extern int SPI_finish(void);
|
1999-05-25 16:15:34 +00:00
|
|
|
extern void SPI_push(void);
|
|
|
|
extern void SPI_pop(void);
|
2004-09-13 20:10:13 +00:00
|
|
|
extern int SPI_execute(const char *src, bool read_only, int tcount);
|
|
|
|
extern int SPI_execute_plan(void *plan, Datum *Values, const char *Nulls,
|
|
|
|
bool read_only, int tcount);
|
2004-08-29 05:07:03 +00:00
|
|
|
extern int SPI_exec(const char *src, int tcount);
|
2004-09-13 20:10:13 +00:00
|
|
|
extern int SPI_execp(void *plan, Datum *Values, const char *Nulls,
|
|
|
|
int tcount);
|
|
|
|
extern int SPI_execute_snapshot(void *plan,
|
|
|
|
Datum *Values, const char *Nulls,
|
|
|
|
Snapshot snapshot,
|
|
|
|
Snapshot crosscheck_snapshot,
|
|
|
|
bool read_only, int tcount);
|
2002-12-30 22:10:54 +00:00
|
|
|
extern void *SPI_prepare(const char *src, int nargs, Oid *argtypes);
|
1997-09-08 02:41:22 +00:00
|
|
|
extern void *SPI_saveplan(void *plan);
|
2001-10-25 05:50:21 +00:00
|
|
|
extern int SPI_freeplan(void *plan);
|
1997-09-04 13:26:19 +00:00
|
|
|
|
2004-08-29 05:07:03 +00:00
|
|
|
extern Oid SPI_getargtypeid(void *plan, int argIndex);
|
|
|
|
extern int SPI_getargcount(void *plan);
|
2004-03-05 00:47:01 +00:00
|
|
|
extern bool SPI_is_cursor_plan(void *plan);
|
2004-07-31 20:55:45 +00:00
|
|
|
extern const char *SPI_result_code_string(int code);
|
2004-03-05 00:47:01 +00:00
|
|
|
|
1997-09-12 08:37:52 +00:00
|
|
|
extern HeapTuple SPI_copytuple(HeapTuple tuple);
|
2004-04-01 21:28:47 +00:00
|
|
|
extern HeapTupleHeader SPI_returntuple(HeapTuple tuple, TupleDesc tupdesc);
|
1998-09-01 04:40:42 +00:00
|
|
|
extern HeapTuple SPI_modifytuple(Relation rel, HeapTuple tuple, int natts,
|
2002-12-30 22:10:54 +00:00
|
|
|
int *attnum, Datum *Values, const char *Nulls);
|
|
|
|
extern int SPI_fnumber(TupleDesc tupdesc, const char *fname);
|
1997-09-11 07:24:37 +00:00
|
|
|
extern char *SPI_fname(TupleDesc tupdesc, int fnumber);
|
1997-09-08 02:41:22 +00:00
|
|
|
extern char *SPI_getvalue(HeapTuple tuple, TupleDesc tupdesc, int fnumber);
|
1998-02-26 04:46:47 +00:00
|
|
|
extern Datum SPI_getbinval(HeapTuple tuple, TupleDesc tupdesc, int fnumber, bool *isnull);
|
1997-09-08 02:41:22 +00:00
|
|
|
extern char *SPI_gettype(TupleDesc tupdesc, int fnumber);
|
|
|
|
extern Oid SPI_gettypeid(TupleDesc tupdesc, int fnumber);
|
|
|
|
extern char *SPI_getrelname(Relation rel);
|
1998-02-26 04:46:47 +00:00
|
|
|
extern void *SPI_palloc(Size size);
|
|
|
|
extern void *SPI_repalloc(void *pointer, Size size);
|
|
|
|
extern void SPI_pfree(void *pointer);
|
1999-12-16 22:20:03 +00:00
|
|
|
extern void SPI_freetuple(HeapTuple pointer);
|
2001-05-21 14:22:19 +00:00
|
|
|
extern void SPI_freetuptable(SPITupleTable *tuptable);
|
|
|
|
|
2002-12-30 22:10:54 +00:00
|
|
|
extern Portal SPI_cursor_open(const char *name, void *plan,
|
2004-09-13 20:10:13 +00:00
|
|
|
Datum *Values, const char *Nulls, bool read_only);
|
2002-12-30 22:10:54 +00:00
|
|
|
extern Portal SPI_cursor_find(const char *name);
|
2001-10-25 05:50:21 +00:00
|
|
|
extern void SPI_cursor_fetch(Portal portal, bool forward, int count);
|
|
|
|
extern void SPI_cursor_move(Portal portal, bool forward, int count);
|
|
|
|
extern void SPI_cursor_close(Portal portal);
|
1997-08-29 09:05:57 +00:00
|
|
|
|
2003-12-02 19:26:47 +00:00
|
|
|
extern void AtEOXact_SPI(bool isCommit);
|
2004-09-16 16:58:44 +00:00
|
|
|
extern void AtEOSubXact_SPI(bool isCommit, SubTransactionId mySubid);
|
2001-10-28 06:26:15 +00:00
|
|
|
|
2001-11-05 17:46:40 +00:00
|
|
|
#endif /* SPI_H */
|