diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index c84d119ad78..e61c866b374 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.363 2003/09/14 00:03:32 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.364 2003/09/24 18:54:01 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -2252,9 +2252,12 @@ PostgresMain(int argc, char *argv[], const char *username) /* * ignore system indexes + * + * As of PG 7.4 this is safe to allow from the client, + * since it only disables reading the system indexes, + * not writing them. Worst case consequence is slowness. */ - if (secure) /* XXX safe to allow from client??? */ - IgnoreSystemIndexes(true); + IgnoreSystemIndexes(true); break; case 'o': @@ -2658,7 +2661,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.363 $ $Date: 2003/09/14 00:03:32 $\n"); + puts("$Revision: 1.364 $ $Date: 2003/09/24 18:54:01 $\n"); } /* |