diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 21:49:14 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 21:49:14 +0000 |
commit | 9247b29228c05e1e368c14d339fcbabeb27b426b (patch) | |
tree | 9ab68b8bb9118aa21b47c5398c7df2571d41506c /src/backend/access/ibit.h | |
parent | e1f31a2bb67d5b70f12951562da3fa33b141cafe (diff) | |
download | postgresql-9247b29228c05e1e368c14d339fcbabeb27b426b.tar.gz postgresql-9247b29228c05e1e368c14d339fcbabeb27b426b.zip |
The use of include files is a mess...alot of redundancy, it seems...
First Step: Centralize them under on src/include hierarchy
Diffstat (limited to 'src/backend/access/ibit.h')
-rw-r--r-- | src/backend/access/ibit.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/backend/access/ibit.h b/src/backend/access/ibit.h deleted file mode 100644 index 990c23ab4dd..00000000000 --- a/src/backend/access/ibit.h +++ /dev/null @@ -1,34 +0,0 @@ -/*------------------------------------------------------------------------- - * - * ibit.h-- - * POSTGRES index valid attribute bit map definitions. - * - * - * Copyright (c) 1994, Regents of the University of California - * - * $Id: ibit.h,v 1.1.1.1 1996/07/09 06:21:08 scrappy Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef IBIT_H -#define IBIT_H - -#include "c.h" -#include "utils/memutils.h" - -typedef struct IndexAttributeBitMapData { - char bits[(MaxIndexAttributeNumber + MaxBitsPerByte - 1) - / MaxBitsPerByte]; -} IndexAttributeBitMapData; - -typedef IndexAttributeBitMapData *IndexAttributeBitMap; - -#define IndexAttributeBitMapSize sizeof(IndexAttributeBitMapData) - -/* - * IndexAttributeBitMapIsValid -- - * True iff attribute bit map is valid. - */ -#define IndexAttributeBitMapIsValid(bits) PointerIsValid(bits) - -#endif /* IBIT_H */ |