From: Jan Wieck Date: Fri, 10 Dec 1999 00:26:35 +0000 (+0000) Subject: Added a fflush(stdout) to the \p command required for the X-Git-Tag: REL7_0~1055 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a27542c3a84420c9258cd0b5c339b529bbba038a;p=postgresql Added a fflush(stdout) to the \p command required for the multisession test tool. Jan --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index ea20aa20d4..59b596d6f2 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -524,6 +524,7 @@ exec_command(const char *cmd, puts(query_buf->data); else if (!GetVariableBool(pset->vars, "quiet")) puts("Query buffer is empty."); + fflush(stdout); } /* \pset -- set printing parameters */