mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Make tree compilable (+WAL).
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "postgres.h"
|
||||
#include "access/xlog.h"
|
||||
@ -1376,12 +1377,10 @@ CreateCheckPoint(bool shutdown)
|
||||
/* Get REDO record ptr */
|
||||
while (!TAS(&(XLogCtl->insert_lck)))
|
||||
{
|
||||
struct timeval delay;
|
||||
struct timeval delay = {0, 5000};
|
||||
|
||||
if (shutdown)
|
||||
elog(STOP, "XLog insert lock is busy while data base is shutting down");
|
||||
delay.tv_sec = 0;
|
||||
delay.tv_usec = 0;
|
||||
(void) select(0, NULL, NULL, NULL, &delay);
|
||||
}
|
||||
freespace = ((char*) Insert->currpage) + BLCKSZ - Insert->currpos;
|
||||
@ -1408,7 +1407,7 @@ CreateCheckPoint(bool shutdown)
|
||||
checkPoint.nextOid = ShmemVariableCache->nextOid;
|
||||
SpinRelease(OidGenLockId);
|
||||
|
||||
FlushBufferPool(false);
|
||||
FlushBufferPool();
|
||||
|
||||
/* Get UNDO record ptr */
|
||||
|
||||
|
Reference in New Issue
Block a user