mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
Look Ma, no MAX_PARSE_BUFFER! (At least not in the backend.
pg_dump and interfaces/odbc still need some work.)
This commit is contained in:
@@ -6,19 +6,18 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: ibit.h,v 1.10 1999/07/15 23:03:34 momjian Exp $
|
||||
* $Id: ibit.h,v 1.11 1999/10/23 03:13:27 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef IBIT_H
|
||||
#define IBIT_H
|
||||
|
||||
#include "utils/memutils.h"
|
||||
#include "catalog/pg_index.h"
|
||||
|
||||
typedef struct IndexAttributeBitMapData
|
||||
{
|
||||
char bits[(MaxIndexAttributeNumber + MaxBitsPerByte - 1)
|
||||
/ MaxBitsPerByte];
|
||||
bits8 bits[(INDEX_MAX_KEYS + 8 - 1)/8];
|
||||
} IndexAttributeBitMapData;
|
||||
|
||||
typedef IndexAttributeBitMapData *IndexAttributeBitMap;
|
||||
|
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: itup.h,v 1.21 1999/07/19 07:07:28 momjian Exp $
|
||||
* $Id: itup.h,v 1.22 1999/10/23 03:13:28 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -18,7 +18,6 @@
|
||||
#include "access/tupmacs.h"
|
||||
#include "storage/itemptr.h"
|
||||
|
||||
#define MaxIndexAttributeNumber 7
|
||||
|
||||
typedef struct IndexTupleData
|
||||
{
|
||||
|
Reference in New Issue
Block a user