mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
Rename fields of DestReceiver to avoid collisions with (ill-considered)
macros in some platforms' sys/socket.h.
This commit is contained in:
@ -9,7 +9,7 @@
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.77 2003/08/04 02:39:56 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.78 2003/08/06 17:46:45 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -90,9 +90,9 @@ printtup_create_DR(CommandDest dest, Portal portal)
|
||||
else
|
||||
self->pub.receiveTuple = printtup_20;
|
||||
}
|
||||
self->pub.startup = printtup_startup;
|
||||
self->pub.shutdown = printtup_shutdown;
|
||||
self->pub.destroy = printtup_destroy;
|
||||
self->pub.rStartup = printtup_startup;
|
||||
self->pub.rShutdown = printtup_shutdown;
|
||||
self->pub.rDestroy = printtup_destroy;
|
||||
self->pub.mydest = dest;
|
||||
|
||||
self->portal = portal;
|
||||
|
Reference in New Issue
Block a user