From fc24134e017923f8e58760cc68af08eca342966a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 28 Apr 1999 22:17:58 +0000 Subject: [PATCH] Fix stupid typo that broke empty-query response... odd that this is not revealed by any of our regression tests... --- src/backend/tcop/dest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/tcop/dest.c b/src/backend/tcop/dest.c index 134a02a4b7..f7045b3778 100644 --- a/src/backend/tcop/dest.c +++ b/src/backend/tcop/dest.c @@ -336,7 +336,7 @@ NullCommand(CommandDest dest) * 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; case Local: -- 2.39.5