*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.26 1997/09/18 20:19:36 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.27 1997/09/24 17:44:24 thomas Exp $
*
* NOTES
* The old interface functions have been converted to macros
default:
elog(WARN, "heap_getsysattr: undefined attnum %d", attnum);
}
- return (NULL);
+ return ((Datum) NULL);
}
/* ----------------
{
if (isnull)
*isnull = true;
- return NULL;
+ return (Datum) NULL;
}
/* ----------------
*isnull = true;
SPI_result = 0;
if (tuple->t_natts < fnumber || fnumber <= 0)
- return (NULL);
+ return ((Datum) NULL);
val = heap_getattr(tuple, InvalidBuffer, fnumber, tupdesc, isnull);