|
6 | 6 | * |
7 | 7 | * Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $Id: heapam.h,v 1.25 1998/01/27 15:35:18 momjian Exp $ |
| 9 | + * $Id: heapam.h,v 1.26 1998/01/27 15:57:41 momjian Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -101,10 +101,10 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics; |
101 | 101 | #defineheap_getattr(tup,b,attnum,tupleDesc,isnull) \ |
102 | 102 | (AssertMacro((tup) != NULL) ? \ |
103 | 103 | ((attnum) > (int) (tup)->t_natts) ? \ |
104 | | -(((isnull) ? (*(isnull) = true) :dummyretNULL), (Datum)NULL) : \ |
| 104 | +(((isnull) ? (*(isnull) = true) :(dummyret)NULL), (Datum)NULL) : \ |
105 | 105 | ((attnum) > 0) ? \ |
106 | 106 | fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \ |
107 | | -(((isnull) ? (*(isnull) = false) :dummyretNULL), heap_getsysattr((tup), (b), (attnum))) : \ |
| 107 | +(((isnull) ? (*(isnull) = false) :(dummyret)NULL), heap_getsysattr((tup), (b), (attnum))) : \ |
108 | 108 | (Datum)NULL) |
109 | 109 |
|
110 | 110 | externHeapAccessStatisticsheap_access_stats;/* in stats.c */ |
|