From deef313fd09fd8ccce0ed9c92dd813b66044c83e Mon Sep 17 00:00:00 2001 From: "Vadim B. Mikheev" Date: Mon, 20 Jan 1997 04:06:13 +0000 Subject: [PATCH] New flag for BufferDesc - BM_JUST_DIRTIED, - to prevent losing data changes. --- src/include/storage/buf_internals.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h index 4ffe4ae22b..2672d3a44f 100644 --- a/src/include/storage/buf_internals.h +++ b/src/include/storage/buf_internals.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: buf_internals.h,v 1.8 1997/01/16 07:53:26 vadim Exp $ + * $Id: buf_internals.h,v 1.9 1997/01/20 04:06:13 vadim Exp $ * * NOTE * If BUFFERPAGE0 is defined, then 0 will be used as a @@ -38,6 +38,7 @@ extern int Num_Descriptors; #define BM_FREE (1 << 4) #define BM_IO_IN_PROGRESS (1 << 5) #define BM_IO_ERROR (1 << 6) +#define BM_JUST_DIRTIED (1 << 7) typedef bits16 BufFlags; -- 2.40.0