aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Wieck <JanWieck@Yahoo.com>1999-12-10 00:26:35 +0000
committerJan Wieck <JanWieck@Yahoo.com>1999-12-10 00:26:35 +0000
commita27542c3a84420c9258cd0b5c339b529bbba038a (patch)
tree89b60b98206280f28f8d1de6c10b3f4584995d6f
parent3ffd3d82dbbd86d4d66b3eb7cc9f08434db6dd55 (diff)
downloadpostgresql-a27542c3a84420c9258cd0b5c339b529bbba038a.tar.gz
postgresql-a27542c3a84420c9258cd0b5c339b529bbba038a.zip
Added a fflush(stdout) to the \p command required for the
multisession test tool. Jan
-rw-r--r--src/bin/psql/command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index ea20aa20d41..59b596d6f22 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 */