|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.17 1997/09/08 02:19:54 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.18 1997/09/08 21:40:24 momjian Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
|
29 | 29 | static Size IndexInfoFindDataOffset(unsigned short t_info);
|
30 | 30 | static char *
|
31 | 31 | fastgetiattr(IndexTuple tup, int attnum,
|
32 |
| - TupleDesc att, bool * isnull); |
| 32 | + TupleDesc att, bool *isnull); |
33 | 33 |
|
34 | 34 | /* ----------------------------------------------------------------
|
35 | 35 | * index_ tuple interface routines
|
@@ -137,7 +137,7 @@ static char *
|
137 | 137 | fastgetiattr(IndexTuple tup,
|
138 | 138 | int attnum,
|
139 | 139 | TupleDesc tupleDesc,
|
140 |
| - bool * isnull) |
| 140 | + bool *isnull) |
141 | 141 | {
|
142 | 142 | register char *tp; /* ptr to att in tuple */
|
143 | 143 | register char *bp = NULL; /* ptr to att in tuple */
|
@@ -368,7 +368,7 @@ fastgetiattr(IndexTuple tup,
|
368 | 368 | off = SHORTALIGN(off) +sizeof(short);
|
369 | 369 | break;
|
370 | 370 | case sizeof(int32):
|
371 |
| - off = INTALIGN(off) + sizeof(int32); |
| 371 | + off = INTALIGN(off) +sizeof(int32); |
372 | 372 | break;
|
373 | 373 | case -1:
|
374 | 374 | usecache = false;
|
@@ -430,7 +430,7 @@ Datum
|
430 | 430 | index_getattr(IndexTuple tuple,
|
431 | 431 | AttrNumber attNum,
|
432 | 432 | TupleDesc tupDesc,
|
433 |
| - bool * isNullOutP) |
| 433 | + bool *isNullOutP) |
434 | 434 | {
|
435 | 435 | Assert(attNum > 0);
|
436 | 436 |
|
@@ -483,7 +483,7 @@ IndexInfoFindDataOffset(unsigned short t_info)
|
483 | 483 | * we assume we have space that is already palloc'ed.
|
484 | 484 | */
|
485 | 485 | void
|
486 |
| -CopyIndexTuple(IndexTuple source, IndexTuple * target) |
| 486 | +CopyIndexTuple(IndexTuple source, IndexTuple *target) |
487 | 487 | {
|
488 | 488 | Size size;
|
489 | 489 | IndexTuple ret;
|
|
0 commit comments