diff options
Diffstat (limited to 'src/include/access/printtup.h')
| -rw-r--r-- | src/include/access/printtup.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/include/access/printtup.h b/src/include/access/printtup.h index 7e534d41bf8..aa7989f98f0 100644 --- a/src/include/access/printtup.h +++ b/src/include/access/printtup.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/printtup.h,v 1.32 2004/12/31 22:03:21 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/access/printtup.h,v 1.33 2005/03/16 21:38:09 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -23,13 +23,11 @@ extern void SendRowDescriptionMessage(TupleDesc typeinfo, List *targetlist, extern void debugStartup(DestReceiver *self, int operation, TupleDesc typeinfo); -extern void debugtup(HeapTuple tuple, TupleDesc typeinfo, - DestReceiver *self); +extern void debugtup(TupleTableSlot *slot, DestReceiver *self); /* XXX these are really in executor/spi.c */ extern void spi_dest_startup(DestReceiver *self, int operation, TupleDesc typeinfo); -extern void spi_printtup(HeapTuple tuple, TupleDesc typeinfo, - DestReceiver *self); +extern void spi_printtup(TupleTableSlot *slot, DestReceiver *self); #endif /* PRINTTUP_H */ |
