Commit 89cf9303 authored by Tom Lane's avatar Tom Lane

Fix stupid typo that broke empty-query response... odd that

this is not revealed by any of our regression tests...
parent 26909a07
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.28 1999/04/25 21:50:57 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.29 1999/04/28 22:17:58 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -336,7 +336,7 @@ NullCommand(CommandDest dest) ...@@ -336,7 +336,7 @@ NullCommand(CommandDest dest)
* tell the fe that we saw an empty query string * tell the fe that we saw an empty query string
* ---------------- * ----------------
*/ */
pq_putbytes("I", 1); pq_putbytes("I", 2); /* note we send I and \0 */
break; break;
case Local: case Local:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment