* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/tcop/dest.c,v 1.67 2005/11/03 17:11:38 alvherre Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/dest.c,v 1.67.2.1 2010/01/30 20:10:16 tgl Exp $
*
*-------------------------------------------------------------------------
*/
{
case DestRemote:
case DestRemoteExecute:
- pq_puttextmessage('C', commandTag);
+ /*
+ * We assume the commandTag is plain ASCII and therefore
+ * requires no encoding conversion.
+ */
+ pq_putmessage('C', commandTag, strlen(commandTag) + 1);
break;
case DestNone:
if (PG_PROTOCOL_MAJOR(FrontendProtocol) >= 3)
pq_putemptymessage('I');
else
- pq_puttextmessage('I', "");
+ pq_putmessage('I', "", 1);
break;
case DestNone: