From: Marc G. Fournier Date: Tue, 16 Jul 1996 06:37:28 +0000 (+0000) Subject: applied fixes for psql X-Git-Tag: Release_1_0_2~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=169a5b76708b8f00f380130253491694ce0df8b0;p=thirdparty%2Fpostgresql.git applied fixes for psql - \p produces traditional results - \r added submitted by: Bruce Momjian (root@candle.pha.pa.us) --- diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index d5dbfcea6fd..76ca326d0f7 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -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;