Commit 5cf55737 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

Added: new BTP_CHAIN flag (if hikey == firstkey then it's not

last page in chain of duplicates).
parent 3f5834fb
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: nbtree.h,v 1.12 1997/04/16 01:21:59 vadim Exp $ * $Id: nbtree.h,v 1.13 1997/05/30 18:40:02 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -47,6 +47,7 @@ typedef struct BTPageOpaqueData { ...@@ -47,6 +47,7 @@ typedef struct BTPageOpaqueData {
#define BTP_ROOT (1 << 1) #define BTP_ROOT (1 << 1)
#define BTP_FREE (1 << 2) #define BTP_FREE (1 << 2)
#define BTP_META (1 << 3) #define BTP_META (1 << 3)
#define BTP_CHAIN (1 << 4)
} BTPageOpaqueData; } BTPageOpaqueData;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment