We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente3107b2 commitf04af68Copy full SHA for f04af68
src/pl/plpython/plpython.c
@@ -29,7 +29,7 @@
29
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
30
*
31
* IDENTIFICATION
32
- *$PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.42 2003/11/29 19:52:12 pgsql Exp $
+ *$PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.43 2004/01/04 00:14:17 momjian Exp $
33
34
*********************************************************************
35
*/
@@ -149,7 +149,7 @@ typedef struct PLyProcedure
149
150
typedefstructPLyPlanObject
151
{
152
-PyObject_HEAD;
+PyObject_HEAD
153
void*plan;/* return of an SPI_saveplan */
154
intnargs;
155
Oid*types;
@@ -159,7 +159,7 @@ typedef struct PLyPlanObject
159
160
typedefstructPLyResultObject
161
162
163
/* HeapTuple *tuples; */
164
PyObject*nrows;/* number of rows returned by query */
165
PyObject*rows;/* data rows, or None if no data returned */