ibit.h

来自「PostgreSQL7.4.6 for Linux」· C头文件 代码 · 共 33 行

H
33
字号
/*------------------------------------------------------------------------- * * ibit.h *	  POSTGRES index valid attribute bit map definitions. * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $Id: ibit.h,v 1.20 2003/08/04 02:40:10 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef IBIT_H#define IBIT_Htypedef struct IndexAttributeBitMapData{	bits8		bits[(INDEX_MAX_KEYS + 8 - 1) / 8];} IndexAttributeBitMapData;typedef IndexAttributeBitMapData *IndexAttributeBitMap;#define IndexAttributeBitMapSize		sizeof(IndexAttributeBitMapData)/* * IndexAttributeBitMapIsValid *		True iff attribute bit map is valid. */#define IndexAttributeBitMapIsValid(bits) PointerIsValid(bits)#endif   /* IBIT_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?