Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e06099c

Browse files
committed
heap_getattr fix for aix.
1 parent 8fd0898 commit e06099c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/include/access/heapam.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
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 $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -96,11 +96,11 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics;
9696
#define heap_getattr(tup, b, attnum, tupleDesc, isnull) \
9797
(AssertMacro((tup) != NULL) ? \
9898
((attnum) > (int) (tup)->t_natts) ? \
99-
(((isnull) ? (*(isnull) = true) : NULL), (char *) NULL) : \
99+
(((isnull) ? (*(isnull) = true) : (char *)NULL), (char *)NULL) : \
100100
((attnum) > 0) ? \
101101
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)
104104

105105
extern HeapAccessStatistics heap_access_stats; /* in stats.c */
106106

0 commit comments

Comments
 (0)