|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.295 2002/09/26 05:17:00 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.296 2002/09/27 03:34:15 momjian Exp $ |
12 | 12 | *
|
13 | 13 | * NOTES
|
14 | 14 | * this is the "main" module of the postgres backend and
|
@@ -1276,12 +1276,13 @@ PostgresMain(int argc, char *argv[], const char *username)
|
1276 | 1276 | SetConfigOption("debug_print_rewritten","true",ctx,gucsource);
|
1277 | 1277 | }
|
1278 | 1278 | else
|
1279 |
| - |
1280 | 1279 | /*
|
1281 | 1280 | * -d 0 allows user to prevent postmaster debug
|
1282 |
| - * from propagating to backend. |
| 1281 | + * from propagating to backend. It would be nice |
| 1282 | + * to set it to the postgresql.conf value here. |
1283 | 1283 | */
|
1284 |
| -ResetPGVariable("server_min_messages"); |
| 1284 | +SetConfigOption("server_min_messages","notice", |
| 1285 | +ctx,gucsource); |
1285 | 1286 | }
|
1286 | 1287 | break;
|
1287 | 1288 |
|
@@ -1697,7 +1698,7 @@ PostgresMain(int argc, char *argv[], const char *username)
|
1697 | 1698 | if (!IsUnderPostmaster)
|
1698 | 1699 | {
|
1699 | 1700 | puts("\nPOSTGRES backend interactive interface ");
|
1700 |
| -puts("$Revision: 1.295 $ $Date: 2002/09/26 05:17:00 $\n"); |
| 1701 | +puts("$Revision: 1.296 $ $Date: 2002/09/27 03:34:15 $\n"); |
1701 | 1702 | }
|
1702 | 1703 |
|
1703 | 1704 | /*
|
|