1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Make postgres prompt backend>, and remove PARSEDEBUG.

This commit is contained in:
Bruce Momjian
1999-05-22 02:55:58 +00:00
parent 654f8f0b51
commit 9710995fc9
3 changed files with 7 additions and 117 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.113 1999/05/13 07:28:46 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.114 1999/05/22 02:55:58 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@ -215,7 +215,7 @@ InteractiveBackend(char *inBuf)
* display a prompt and obtain input from the user
* ----------------
*/
printf("> ");
printf("backend> ");
fflush(stdout);
for (;;)
@ -1485,7 +1485,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.113 $ $Date: 1999/05/13 07:28:46 $\n");
puts("$Revision: 1.114 $ $Date: 1999/05/22 02:55:58 $\n");
}
/* ----------------