Prevent flushing from packets, by Massimo.

This commit is contained in:
Bruce Momjian 1997-11-27 03:01:12 +00:00
parent db00632e0f
commit 241a87b951
2 changed files with 1 additions and 3 deletions

View File

@ -163,7 +163,6 @@ pqPutString(const char *s, FILE *f)
fputc('\0', f); /* important to send an ending \0 since fputc('\0', f); /* important to send an ending \0 since
* backend expects it */ * backend expects it */
fflush(f);
return 0; return 0;
} }

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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_putint(attrs[i]->attlen, 2);
} }
} }
pq_flush();
break; break;
case Local: case Local: