Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / access / printtup.h
blob7313153cb818359f5bd033fb9154434c9cb415f2
1 /*-------------------------------------------------------------------------
3 * printtup.h
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef PRINTTUP_H
15 #define PRINTTUP_H
17 #include "tcop/dest.h"
19 extern DestReceiver *printtup_create_DR(CommandDest dest, Portal portal);
21 extern void SendRowDescriptionMessage(TupleDesc typeinfo, List *targetlist,
22 int16 *formats);
24 extern void debugStartup(DestReceiver *self, int operation,
25 TupleDesc typeinfo);
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,
30 TupleDesc typeinfo);
31 extern void spi_printtup(TupleTableSlot *slot, DestReceiver *self);
33 #endif /* PRINTTUP_H */