diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-10-24 09:56:23 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-10-24 09:56:23 +0000 |
commit | db2faa943a0d3517f9e9641b9012d81ecc870ff6 (patch) | |
tree | ded2e15b6978762d5676cc76c51c0fbe51db5e3a /src/backend/bootstrap/bootstrap.c | |
parent | 4b70629b92185a3d5c5a39e224f38564d1e4fed6 (diff) | |
download | postgresql-db2faa943a0d3517f9e9641b9012d81ecc870ff6.tar.gz postgresql-db2faa943a0d3517f9e9641b9012d81ecc870ff6.zip |
WAL misc
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 275433dda39..aab0c21230e 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.94 2000/10/21 15:43:24 vadim Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.95 2000/10/24 09:56:09 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -399,6 +399,10 @@ BootstrapMain(int argc, char *argv[]) */ Int_yyparse(); +#ifdef XLOG + FlushBufferPool(); +#endif + /* clean up processing */ StartTransactionCommand(); cleanup(); |