diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-04 18:51:36 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-04 18:51:36 +0000 |
commit | 46287bd6602ea055e2099426550a4bfafab8ed6f (patch) | |
tree | d91853ff4152752451ccef3dd2358bffa41e6b2d /src/include/utils/relcache.h | |
parent | 52667d56a3b489e5645f069522631824b7ffc520 (diff) |
Simplify relcache startup sequence. With the new design of InitPostgres
it's not necessary to have three separate calls anymore. This patch also
fixes things so we don't try to read pg_internal.init until after we've
obtained lock on the target database; which was fairly harmless, but it's
certainly cleaner this way.
Diffstat (limited to 'src/include/utils/relcache.h')
-rw-r--r-- | src/include/utils/relcache.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/utils/relcache.h b/src/include/utils/relcache.h index d9a355af249..b30387a7ef4 100644 --- a/src/include/utils/relcache.h +++ b/src/include/utils/relcache.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/relcache.h,v 1.53 2006/03/05 15:59:07 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/relcache.h,v 1.54 2006/05/04 18:51:36 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -44,7 +44,6 @@ extern void RelationInitIndexAccessInfo(Relation relation); */ extern void RelationCacheInitialize(void); extern void RelationCacheInitializePhase2(void); -extern void RelationCacheInitializePhase3(void); /* * Routine to create a relcache entry for an about-to-be-created relation |