File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 77 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
10- * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.109 2006/04/24 22:17:04 momjian Exp $
10+ * $PostgreSQL: pgsql/src/include/access/heapam.h,v 1.110 2006/04/24 22:24:58 momjian Exp $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
4545#define fastgetattr (tup , attnum , tupleDesc , isnull ) \
4646( \
4747 AssertMacro((attnum) > 0), \
48- ((isnull) ? (*(isnull) = false) : (dummyret)NULL), \
48+ ((( isnull) != NULL ) ? (*(isnull) = false) : (dummyret)NULL), \
4949 HeapTupleNoNulls(tup) ? \
5050 ( \
5151 (tupleDesc)->attrs[(attnum)-1]->attcacheoff >= 0 ? \
6161 ( \
6262 att_isnull((attnum)-1, (tup)->t_data->t_bits) ? \
6363 ( \
64- ((isnull) ? (*(isnull) = true) : (dummyret)NULL), \
64+ ((( isnull) != NULL ) ? (*(isnull) = true) : (dummyret)NULL), \
6565 (Datum)NULL \
6666 ) \
6767 : \
You can’t perform that action at this time.
0 commit comments