From 16503e6fa4a13051debe09698b6db9ce0d509af8 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 5 May 2003 00:44:56 +0000 Subject: Extended query protocol: parse, bind, execute, describe FE/BE messages. Only lightly tested as yet, since libpq doesn't know anything about 'em. --- src/include/access/printtup.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/include/access') diff --git a/src/include/access/printtup.h b/src/include/access/printtup.h index 728b0c89906..688a75cd2db 100644 --- a/src/include/access/printtup.h +++ b/src/include/access/printtup.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: printtup.h,v 1.23 2003/01/21 22:06:12 tgl Exp $ + * $Id: printtup.h,v 1.24 2003/05/05 00:44:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,9 @@ #include "tcop/dest.h" -extern DestReceiver *printtup_create_DR(bool isBinary); +extern DestReceiver *printtup_create_DR(bool isBinary, bool sendDescrip); + +extern void SendRowDescriptionMessage(TupleDesc typeinfo); extern void debugSetup(DestReceiver *self, int operation, const char *portalName, TupleDesc typeinfo); -- cgit v1.2.3