diff options
Diffstat (limited to 'src/include/access/ibit.h')
-rw-r--r-- | src/include/access/ibit.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/include/access/ibit.h b/src/include/access/ibit.h index 8cb17221608..87e2fec53fd 100644 --- a/src/include/access/ibit.h +++ b/src/include/access/ibit.h @@ -1,33 +1,34 @@ /*------------------------------------------------------------------------- * * ibit.h-- - * POSTGRES index valid attribute bit map definitions. + * POSTGRES index valid attribute bit map definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: ibit.h,v 1.4 1996/11/05 07:24:03 scrappy Exp $ + * $Id: ibit.h,v 1.5 1997/09/07 04:56:01 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef IBIT_H +#ifndef IBIT_H #define IBIT_H #include <utils/memutils.h> -typedef struct IndexAttributeBitMapData { - char bits[(MaxIndexAttributeNumber + MaxBitsPerByte - 1) - / MaxBitsPerByte]; -} IndexAttributeBitMapData; +typedef struct IndexAttributeBitMapData +{ + char bits[(MaxIndexAttributeNumber + MaxBitsPerByte - 1) + / MaxBitsPerByte]; +} IndexAttributeBitMapData; -typedef IndexAttributeBitMapData *IndexAttributeBitMap; +typedef IndexAttributeBitMapData *IndexAttributeBitMap; -#define IndexAttributeBitMapSize sizeof(IndexAttributeBitMapData) +#define IndexAttributeBitMapSize sizeof(IndexAttributeBitMapData) /* * IndexAttributeBitMapIsValid -- - * True iff attribute bit map is valid. + * True iff attribute bit map is valid. */ -#define IndexAttributeBitMapIsValid(bits) PointerIsValid(bits) +#define IndexAttributeBitMapIsValid(bits) PointerIsValid(bits) -#endif /* IBIT_H */ +#endif /* IBIT_H */ |