1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Add fflush of stdout when outputing query.

This commit is contained in:
Bruce Momjian
2003-07-31 04:23:40 +00:00
parent 82bade79dc
commit f766b376f1
2 changed files with 7 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.66 2003/07/23 08:47:39 petere Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.67 2003/07/31 04:23:40 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -595,8 +595,11 @@ SendQuery(const char *query)
return false;
}
else if (VariableEquals(pset.vars, "ECHO", "queries"))
{
puts(query);
fflush(stdout);
}
SetCancelConn();
if (PQtransactionStatus(pset.db) == PQTRANS_IDLE &&