diff options
| author | Teodor Sigaev | 2005-06-30 17:52:14 +0000 |
|---|---|---|
| committer | Teodor Sigaev | 2005-06-30 17:52:14 +0000 |
| commit | 8f1b2f281a0d97dbfcbd4becec7896523c1bcfdb (patch) | |
| tree | 76fba63b5a6b199d22bb018c2c5df400ff082065 /src/include/access/gist.h | |
| parent | b4a0589728004fc2f0874f34c2f49d15f7032ef3 (diff) | |
Bug fixes for GiST crash recovery.
- add forgotten check of lsn for insert completion
- remove level of pages: hard to check in recovery
- some cleanups
Diffstat (limited to 'src/include/access/gist.h')
| -rw-r--r-- | src/include/access/gist.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/include/access/gist.h b/src/include/access/gist.h index a7e63ea58e..4bfb542e07 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -45,13 +45,7 @@ typedef XLogRecPtr GistNSN; typedef struct GISTPageOpaqueData { - uint8 flags; - - /* number page to which current one is splitted in last split */ - uint8 nsplited; - - /* level of page, 0 - leaf */ - uint16 level; + uint32 flags; /* 29 bits are unused for now */ BlockNumber rightlink; /* the only meaning - change this value if |
