projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06fa387
)
Remove trailing semicolons from macro initializations in plpython.
author
Bruce Momjian
<bruce@momjian.us>
Sun, 4 Jan 2004 00:14:55 +0000
(
00:14
+0000)
committer
Bruce Momjian
<bruce@momjian.us>
Sun, 4 Jan 2004 00:14:55 +0000
(
00:14
+0000)
Problem report on True64 Unix by Nikola Milutinovic.
]
src/pl/plpython/plpython.c
patch
|
blob
|
blame
|
history
diff --git
a/src/pl/plpython/plpython.c
b/src/pl/plpython/plpython.c
index f73466c0ab65190b367562a128d364ef613d62d0..4b272eda906af06382dcc6602c3a5a7b0cc88e04 100644
(file)
--- a/
src/pl/plpython/plpython.c
+++ b/
src/pl/plpython/plpython.c
@@
-149,7
+149,7
@@
typedef struct PLyProcedure
*/
typedef struct PLyPlanObject
{
- PyObject_HEAD
;
+ PyObject_HEAD
void *plan; /* return of an SPI_saveplan */
int nargs;
Oid *types;
@@
-159,7
+159,7
@@
typedef struct PLyPlanObject
typedef struct PLyResultObject
{
- PyObject_HEAD
;
+ PyObject_HEAD
/* HeapTuple *tuples; */
PyObject *nrows; /* number of rows returned by query */
PyObject *rows; /* data rows, or None if no data returned */