|
6 | 6 | *
|
7 | 7 | * Copyright (c) 1994, Regents of the University of California
|
8 | 8 | *
|
9 |
| - * $Id: heapam.h,v 1.10 1997/08/29 00:44:55 momjian Exp $ |
| 9 | + * $Id: heapam.h,v 1.11 1997/09/04 16:20:55 momjian Exp $ |
10 | 10 | *
|
11 | 11 | *-------------------------------------------------------------------------
|
12 | 12 | */
|
@@ -96,10 +96,10 @@ 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) : (char *)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) : (char *)NULL), heap_getsysattr((tup), (b), (attnum))) : \ |
| 102 | +(((isnull) ? (*(isnull) = false) : (char)NULL), heap_getsysattr((tup), (b), (attnum))) : \ |
103 | 103 | (char *)NULL)
|
104 | 104 |
|
105 | 105 | externHeapAccessStatisticsheap_access_stats;/* in stats.c */
|
|