1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Remove trailing semicolons from macro initializations in plpython.

Problem report on True64 Unix by Nikola Milutinovic.
This commit is contained in:
Bruce Momjian 2004-01-04 00:14:17 +00:00
parent e3107b2844
commit f04af68e54

View File

@ -29,7 +29,7 @@
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
* *
* IDENTIFICATION * IDENTIFICATION
* $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 $
* *
********************************************************************* *********************************************************************
*/ */
@ -149,7 +149,7 @@ typedef struct PLyProcedure
*/ */
typedef struct PLyPlanObject typedef struct PLyPlanObject
{ {
PyObject_HEAD; PyObject_HEAD
void *plan; /* return of an SPI_saveplan */ void *plan; /* return of an SPI_saveplan */
int nargs; int nargs;
Oid *types; Oid *types;
@ -159,7 +159,7 @@ typedef struct PLyPlanObject
typedef struct PLyResultObject typedef struct PLyResultObject
{ {
PyObject_HEAD; PyObject_HEAD
/* HeapTuple *tuples; */ /* HeapTuple *tuples; */
PyObject *nrows; /* number of rows returned by query */ PyObject *nrows; /* number of rows returned by query */
PyObject *rows; /* data rows, or None if no data returned */ PyObject *rows; /* data rows, or None if no data returned */