From e06099c6076a3cee2b8fc39284744239d772ff2f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 29 Aug 1997 00:44:55 +0000 Subject: [PATCH] heap_getattr fix for aix. --- src/include/access/heapam.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 1819d72339..d77c118cae 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.9 1997/08/27 09:03:47 vadim Exp $ + * $Id: heapam.h,v 1.10 1997/08/29 00:44:55 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -96,11 +96,11 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics; #define heap_getattr(tup, b, attnum, tupleDesc, isnull) \ (AssertMacro((tup) != NULL) ? \ ((attnum) > (int) (tup)->t_natts) ? \ - (((isnull) ? (*(isnull) = true) : NULL), (char *) NULL) : \ + (((isnull) ? (*(isnull) = true) : (char *)NULL), (char *)NULL) : \ ((attnum) > 0) ? \ fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \ - (((isnull) ? (*(isnull) = false) : NULL), heap_getsysattr((tup), (b), (attnum))) : \ - (char *) NULL) + (((isnull) ? (*(isnull) = false) : (char *)NULL), heap_getsysattr((tup), (b), (attnum))) : \ + (char *)NULL) extern HeapAccessStatistics heap_access_stats; /* in stats.c */