1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Re-run pgindent with updated list of typedefs. (Updated README should

avoid this problem in the future.)
This commit is contained in:
Bruce Momjian
2007-11-15 22:25:18 +00:00
parent da0b2cdff8
commit f6e8730d11
124 changed files with 751 additions and 750 deletions

View File

@ -36,7 +36,7 @@ typedef struct NODE
int4 type;
int4 val;
struct NODE *next;
} NODE;
} NODE;
typedef struct
{
@ -226,7 +226,7 @@ typedef struct
{
int4 *arrb;
int4 *arre;
} CHKVAL;
} CHKVAL;
/*
* is there value 'val' in array or not ?
@ -323,7 +323,7 @@ typedef struct
{
ITEM *first;
bool *mapped_check;
} GinChkVal;
} GinChkVal;
static bool
checkcondition_gin(void *checkval, ITEM * item)
@ -506,7 +506,7 @@ typedef struct
char *buf;
char *cur;
int4 buflen;
} INFIX;
} INFIX;
#define RESIZEBUF(inf,addsize) while( ( (inf)->cur - (inf)->buf ) + (addsize) + 1 >= (inf)->buflen ) { \
int4 len = inf->cur - inf->buf; \
@ -516,7 +516,7 @@ typedef struct
}
static void
infix(INFIX * in, bool first)
infix(INFIX *in, bool first)
{
if (in->curpol->type == VAL)
{