diff options
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 60338397dbc..2a57a7acd74 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.91 2001/09/08 15:24:00 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.92 2001/09/27 16:29:12 tgl Exp $ * * *------------------------------------------------------------------------- @@ -46,8 +46,6 @@ static void InitCommunication(void); static void ShutdownPostgres(void); static bool ThereIsAtLeastOneUser(void); -int lockingOff = 0; /* backend -L switch */ - /*** InitPostgres support ***/ @@ -327,9 +325,6 @@ InitPostgres(const char *dbname, const char *username) /* replace faked-up relcache entries with the real info */ RelationCacheInitializePhase2(); - if (lockingOff) - LockDisable(true); - /* * Figure out our postgres user id. In standalone mode we use a * fixed id, otherwise we figure it out from the authenticated |