Commit 169a5b76 authored by Marc G. Fournier's avatar Marc G. Fournier

applied fixes for psql

	- \p produces traditional results
	- \r added

submitted by: Bruce Momjian (root@candle.pha.pa.us)
parent d7a1ce7a
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.1.1.1 1996/07/09 06:22:15 scrappy Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.2 1996/07/16 06:37:28 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -762,8 +762,13 @@ HandleSlashCmds(PGconn** db_ptr,
if (query) {
fputs(query, stdout);
fputc('\n', stdout);
status = 1;
}
break;
case 'r':
query[0] = '\0';
status = 1;
break;
case 'q': /* \q is quit */
status = 2;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment