|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.377 2003/11/2919:51:57 pgsql Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.378 2003/11/2921:40:43 tgl Exp $ |
12 | 12 | *
|
13 | 13 | * NOTES
|
14 | 14 | * this is the "main" module of the postgres backend and
|
@@ -2656,11 +2656,9 @@ PostgresMain(int argc, char *argv[], const char *username)
|
2656 | 2656 | /* Need not flush since ReadyForQuery will do it. */
|
2657 | 2657 | }
|
2658 | 2658 |
|
| 2659 | +/* Welcome banner for non-frontend case */ |
2659 | 2660 | if (!IsUnderPostmaster)
|
2660 |
| -{ |
2661 |
| -puts("\nPOSTGRES backend interactive interface "); |
2662 |
| -puts("$Revision: 1.377 $ $Date: 2003/11/29 19:51:57 $\n"); |
2663 |
| -} |
| 2661 | +printf("\nPostgreSQL stand-alone backend %s\n",PG_VERSION); |
2664 | 2662 |
|
2665 | 2663 | /*
|
2666 | 2664 | * Create the memory context we will use in the main loop.
|
|