diff options
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index ba446310530..69d4d974099 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.131 2003/12/12 18:45:09 petere Exp $ + * $PostgreSQL: pgsql/src/backend/utils/init/postinit.c,v 1.132 2004/05/27 17:12:54 tgl Exp $ * * *------------------------------------------------------------------------- @@ -326,6 +326,13 @@ InitPostgres(const char *dbname, const char *username) AmiTransactionOverride(bootstrap); /* + * Initialize local process's access to XLOG. In bootstrap case + * we may skip this since StartupXLOG() was run instead. + */ + if (!bootstrap) + InitXLOGAccess(); + + /* * Initialize the relation descriptor cache. This must create at * least the minimum set of "nailed-in" cache entries. No catalog * access happens here. |