diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-05 22:50:21 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 2000-11-05 22:50:21 +0000 |
commit | f0e37a85319e6c113ecd3303cddeb6edd5a6ac44 (patch) | |
tree | dcca7027e03e7c17aa482d420d9f691c02eb65a5 /src/include/access/xlog.h | |
parent | 7267fdd7a3ae0a8a169e9730bdfaa46fde7dd94b (diff) | |
download | postgresql-f0e37a85319e6c113ecd3303cddeb6edd5a6ac44.tar.gz postgresql-f0e37a85319e6c113ecd3303cddeb6edd5a6ac44.zip |
New CHECKPOINT command.
Auto removing of offline log files and creating new file
at checkpoint time.
Diffstat (limited to 'src/include/access/xlog.h')
-rw-r--r-- | src/include/access/xlog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 02998755c32..ec7215b6ae9 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -97,4 +97,6 @@ extern XLogRecPtr XLogInsert(RmgrId rmid, uint8 info, char *buf, uint32 buflen); extern void XLogFlush(XLogRecPtr RecPtr); +extern void CreateCheckPoint(bool shutdown); + #endif /* XLOG_H */ |