Skip to content

Commit deef313

Browse files
committed
New flag for BufferDesc - BM_JUST_DIRTIED, - to prevent
losing data changes.
1 parent 9d18793 commit deef313

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/include/storage/buf_internals.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: buf_internals.h,v 1.8 1997/01/16 07:53:26 vadim Exp $
9+
* $Id: buf_internals.h,v 1.9 1997/01/20 04:06:13 vadim Exp $
1010
*
1111
* NOTE
1212
* If BUFFERPAGE0 is defined, then 0 will be used as a
@@ -38,6 +38,7 @@ extern int Num_Descriptors;
3838
#define BM_FREE (1 << 4)
3939
#define BM_IO_IN_PROGRESS (1 << 5)
4040
#define BM_IO_ERROR (1 << 6)
41+
#define BM_JUST_DIRTIED (1 << 7)
4142

4243
typedef bits16 BufFlags;
4344

0 commit comments

Comments
 (0)