1SPI_EXECUTE(3) PostgreSQL 9.2.24 Documentation SPI_EXECUTE(3)
2
3
4
6 SPI_execute - execute a command
7
9 int SPI_execute(const char * command, bool read_only, long count)
10
12 SPI_execute executes the specified SQL command for count rows. If
13 read_only is true, the command must be read-only, and execution
14 overhead is somewhat reduced.
15
16 This function can only be called from a connected procedure.
17
18 If count is zero then the command is executed for all rows that it
19 applies to. If count is greater than zero, then no more than count rows
20 will be retrieved; execution stops when the count is reached, much like
21 adding a LIMIT clause to the query. For example,
22
23 SPI_execute("SELECT * FROM foo", true, 5);
24
25 will retrieve at most 5 rows from the table. Note that such a limit is
26 only effective when the command actually returns rows. For example,
27
28 SPI_execute("INSERT INTO foo SELECT * FROM bar", false, 5);
29
30 inserts all rows from bar, ignoring the count parameter. However, with
31
32 SPI_execute("INSERT INTO foo SELECT * FROM bar RETURNING *", false, 5);
33
34 at most 5 rows would be inserted, since execution would stop after the
35 fifth RETURNING result row is retrieved.
36
37 You can pass multiple commands in one string; SPI_execute returns the
38 result for the command executed last. The count limit applies to each
39 command separately (even though only the last result will actually be
40 returned). The limit is not applied to any hidden commands generated by
41 rules.
42
43 When read_only is false, SPI_execute increments the command counter and
44 computes a new snapshot before executing each command in the string.
45 The snapshot does not actually change if the current transaction
46 isolation level is SERIALIZABLE or REPEATABLE READ, but in READ
47 COMMITTED mode the snapshot update allows each command to see the
48 results of newly committed transactions from other sessions. This is
49 essential for consistent behavior when the commands are modifying the
50 database.
51
52 When read_only is true, SPI_execute does not update either the snapshot
53 or the command counter, and it allows only plain SELECT commands to
54 appear in the command string. The commands are executed using the
55 snapshot previously established for the surrounding query. This
56 execution mode is somewhat faster than the read/write mode due to
57 eliminating per-command overhead. It also allows genuinely stable
58 functions to be built: since successive executions will all use the
59 same snapshot, there will be no change in the results.
60
61 It is generally unwise to mix read-only and read-write commands within
62 a single function using SPI; that could result in very confusing
63 behavior, since the read-only queries would not see the results of any
64 database updates done by the read-write queries.
65
66 The actual number of rows for which the (last) command was executed is
67 returned in the global variable SPI_processed. If the return value of
68 the function is SPI_OK_SELECT, SPI_OK_INSERT_RETURNING,
69 SPI_OK_DELETE_RETURNING, or SPI_OK_UPDATE_RETURNING, then you can use
70 the global pointer SPITupleTable *SPI_tuptable to access the result
71 rows. Some utility commands (such as EXPLAIN) also return row sets, and
72 SPI_tuptable will contain the result in these cases too.
73
74 The structure SPITupleTable is defined thus:
75
76 typedef struct
77 {
78 MemoryContext tuptabcxt; /* memory context of result table */
79 uint32 alloced; /* number of alloced vals */
80 uint32 free; /* number of free vals */
81 TupleDesc tupdesc; /* row descriptor */
82 HeapTuple *vals; /* rows */
83 } SPITupleTable;
84
85 vals is an array of pointers to rows. (The number of valid entries is
86 given by SPI_processed.) tupdesc is a row descriptor which you can
87 pass to SPI functions dealing with rows. tuptabcxt, alloced, and free
88 are internal fields not intended for use by SPI callers.
89
90 SPI_finish frees all SPITupleTables allocated during the current
91 procedure. You can free a particular result table earlier, if you are
92 done with it, by calling SPI_freetuptable.
93
95 const char * command
96 string containing command to execute
97
98 bool read_only
99 true for read-only execution
100
101 long count
102 maximum number of rows to return, or 0 for no limit
103
105 If the execution of the command was successful then one of the
106 following (nonnegative) values will be returned:
107
108 SPI_OK_SELECT
109 if a SELECT (but not SELECT INTO) was executed
110
111 SPI_OK_SELINTO
112 if a SELECT INTO was executed
113
114 SPI_OK_INSERT
115 if an INSERT was executed
116
117 SPI_OK_DELETE
118 if a DELETE was executed
119
120 SPI_OK_UPDATE
121 if an UPDATE was executed
122
123 SPI_OK_INSERT_RETURNING
124 if an INSERT RETURNING was executed
125
126 SPI_OK_DELETE_RETURNING
127 if a DELETE RETURNING was executed
128
129 SPI_OK_UPDATE_RETURNING
130 if an UPDATE RETURNING was executed
131
132 SPI_OK_UTILITY
133 if a utility command (e.g., CREATE TABLE) was executed
134
135 SPI_OK_REWRITTEN
136 if the command was rewritten into another kind of command (e.g.,
137 UPDATE became an INSERT) by a rule.
138
139 On error, one of the following negative values is returned:
140
141 SPI_ERROR_ARGUMENT
142 if command is NULL or count is less than 0
143
144 SPI_ERROR_COPY
145 if COPY TO stdout or COPY FROM stdin was attempted
146
147 SPI_ERROR_TRANSACTION
148 if a transaction manipulation command was attempted (BEGIN, COMMIT,
149 ROLLBACK, SAVEPOINT, PREPARE TRANSACTION, COMMIT PREPARED, ROLLBACK
150 PREPARED, or any variant thereof)
151
152 SPI_ERROR_OPUNKNOWN
153 if the command type is unknown (shouldn't happen)
154
155 SPI_ERROR_UNCONNECTED
156 if called from an unconnected procedure
157
159 All SPI query-execution functions set both SPI_processed and
160 SPI_tuptable (just the pointer, not the contents of the structure).
161 Save these two global variables into local procedure variables if you
162 need to access the result table of SPI_execute or another
163 query-execution function across later calls.
164
165
166
167PostgreSQL 9.2.24 2017-11-06 SPI_EXECUTE(3)