diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-27 15:57:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-27 15:57:41 +0000 |
commit | 54399bb2f99860fa48532c998d87774b8b737f72 (patch) | |
tree | 18fb95aead52e71e5c818630e413bcc8160e6434 | |
parent | b65847b84e9952d5fd40908c6ed575919bd4e17e (diff) | |
download | postgresql-54399bb2f99860fa48532c998d87774b8b737f72.tar.gz postgresql-54399bb2f99860fa48532c998d87774b8b737f72.zip |
dummyret cleanup
-rw-r--r-- | src/include/access/heapam.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 3e6e8687805..f3c7c55bda6 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.25 1998/01/27 15:35:18 momjian Exp $ + * $Id: heapam.h,v 1.26 1998/01/27 15:57:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -101,10 +101,10 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics; #define heap_getattr(tup, b, attnum, tupleDesc, isnull) \ (AssertMacro((tup) != NULL) ? \ ((attnum) > (int) (tup)->t_natts) ? \ - (((isnull) ? (*(isnull) = true) : dummyretNULL), (Datum)NULL) : \ + (((isnull) ? (*(isnull) = true) : (dummyret)NULL), (Datum)NULL) : \ ((attnum) > 0) ? \ fastgetattr((tup), (attnum), (tupleDesc), (isnull)) : \ - (((isnull) ? (*(isnull) = false) : dummyretNULL), heap_getsysattr((tup), (b), (attnum))) : \ + (((isnull) ? (*(isnull) = false) : (dummyret)NULL), heap_getsysattr((tup), (b), (attnum))) : \ (Datum)NULL) extern HeapAccessStatistics heap_access_stats; /* in stats.c */ |