Commit 241a87b9 authored by Bruce Momjian's avatar Bruce Momjian

Prevent flushing from packets, by Massimo.

parent db00632e
......@@ -163,7 +163,6 @@ pqPutString(const char *s, FILE *f)
fputc('\0', f); /* important to send an ending \0 since
* backend expects it */
fflush(f);
return 0;
}
......
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.13 1997/10/24 15:51:37 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.14 1997/11/27 03:01:12 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -287,7 +287,6 @@ BeginCommand(char *pname,
pq_putint(attrs[i]->attlen, 2);
}
}
pq_flush();
break;
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