1 /*-------------------------------------------------------------------------
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
17 #include "tcop/dest.h"
19 extern DestReceiver
*printtup_create_DR(CommandDest dest
, Portal portal
);
21 extern void SendRowDescriptionMessage(TupleDesc typeinfo
, List
*targetlist
,
24 extern void debugStartup(DestReceiver
*self
, int operation
,
26 extern void debugtup(TupleTableSlot
*slot
, DestReceiver
*self
);
28 /* XXX these are really in executor/spi.c */
29 extern void spi_dest_startup(DestReceiver
*self
, int operation
,
31 extern void spi_printtup(TupleTableSlot
*slot
, DestReceiver
*self
);
33 #endif /* PRINTTUP_H */