mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Don't write timing output in quiet mode.
Merlin Moncure
This commit is contained in:
		@@ -3,7 +3,7 @@
 | 
				
			|||||||
 *
 | 
					 *
 | 
				
			||||||
 * Copyright (c) 2000-2005, PostgreSQL Global Development Group
 | 
					 * Copyright (c) 2000-2005, PostgreSQL Global Development Group
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.110.2.4 2006/11/22 21:12:57 tgl Exp $
 | 
					 * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.110.2.5 2007/04/16 20:16:02 mha Exp $
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
#include "postgres_fe.h"
 | 
					#include "postgres_fe.h"
 | 
				
			||||||
#include "common.h"
 | 
					#include "common.h"
 | 
				
			||||||
@@ -1109,7 +1109,7 @@ SendQuery(const char *query)
 | 
				
			|||||||
	PQclear(results);
 | 
						PQclear(results);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Possible microtiming output */
 | 
						/* Possible microtiming output */
 | 
				
			||||||
	if (OK && pset.timing)
 | 
						if (OK && pset.timing && !QUIET())
 | 
				
			||||||
		printf(_("Time: %.3f ms\n"), DIFF_MSEC(&after, &before));
 | 
							printf(_("Time: %.3f ms\n"), DIFF_MSEC(&after, &before));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* check for events that may occur during query execution */
 | 
						/* check for events that may occur during query execution */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user