|
6 | 6 | * |
7 | 7 | * Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $Id: heapam.h,v 1.9 1997/08/27 09:03:47 vadim Exp $ |
| 9 | + * $Id: heapam.h,v 1.10 1997/08/29 00:44:55 momjian Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -96,11 +96,11 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics; |
96 | 96 | #defineheap_getattr(tup,b,attnum,tupleDesc,isnull) \ |
97 | 97 | (AssertMacro((tup) != NULL) ? \ |
98 | 98 | ((attnum) > (int) (tup)->t_natts) ? \ |
99 | | - (((isnull) ? (*(isnull) = true) : NULL), (char *)NULL) : \ |
| 99 | + (((isnull) ? (*(isnull) = true) :(char *)NULL), (char *)NULL) : \ |
100 | 100 | ((attnum) > 0) ? \ |
101 | 101 | fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \ |
102 | | -(((isnull) ? (*(isnull) = false) : NULL), heap_getsysattr((tup), (b), (attnum))) : \ |
103 | | - (char *)NULL) |
| 102 | +(((isnull) ? (*(isnull) = false) :(char *)NULL), heap_getsysattr((tup), (b), (attnum))) : \ |
| 103 | + (char *)NULL) |
104 | 104 |
|
105 | 105 | externHeapAccessStatisticsheap_access_stats;/* in stats.c */ |
106 | 106 |
|
|