aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r--src/bin/psql/common.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index cdb071f85e2..6cef2bafcf7 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2010, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.145 2010/05/28 20:02:32 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.146 2010/07/06 19:18:59 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -1108,18 +1108,18 @@ ExecQueryUsingCursor(const char *query, double *elapsed_msec)
/*
* Make sure to flush the output stream, so intermediate results are
- * visible to the client immediately. We check the results because
- * if the pager dies/exits/etc, there's no sense throwing more data
- * at it.
+ * visible to the client immediately. We check the results because if
+ * the pager dies/exits/etc, there's no sense throwing more data at
+ * it.
*/
flush_error = fflush(pset.queryFout);
/*
- * Check if we are at the end, if a cancel was pressed, or if
- * there were any errors either trying to flush out the results,
- * or more generally on the output stream at all. If we hit any
- * errors writing things to the stream, we presume $PAGER has
- * disappeared and stop bothering to pull down more data.
+ * Check if we are at the end, if a cancel was pressed, or if there
+ * were any errors either trying to flush out the results, or more
+ * generally on the output stream at all. If we hit any errors
+ * writing things to the stream, we presume $PAGER has disappeared and
+ * stop bothering to pull down more data.
*/
if (ntuples < pset.fetch_count || cancel_pressed || flush_error ||
ferror(pset.queryFout))