1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Rename fields of DestReceiver to avoid collisions with (ill-considered)

macros in some platforms' sys/socket.h.
This commit is contained in:
Tom Lane
2003-08-06 17:46:46 +00:00
parent d5f7d2c682
commit 338aa57be0
8 changed files with 34 additions and 34 deletions

View File

@ -26,7 +26,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.214 2003/08/04 02:39:58 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.215 2003/08/06 17:46:45 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -217,7 +217,7 @@ ExecutorRun(QueryDesc *queryDesc,
estate->es_processed = 0;
estate->es_lastoid = InvalidOid;
(*dest->startup) (dest, operation, queryDesc->tupDesc);
(*dest->rStartup) (dest, operation, queryDesc->tupDesc);
/*
* run plan
@ -235,7 +235,7 @@ ExecutorRun(QueryDesc *queryDesc,
/*
* shutdown receiver
*/
(*dest->shutdown) (dest);
(*dest->rShutdown) (dest);
MemoryContextSwitchTo(oldcontext);