diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-18 17:58:33 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-18 17:58:33 +0000 |
commit | 1c5fa955cdf5999bcb941130f02528090a37981e (patch) | |
tree | f97a5a00112234c160d447b3f10a188f5d114dbe /src | |
parent | c8fc4c96074bd36618d34523e2985592f406b780 (diff) | |
download | postgresql-1c5fa955cdf5999bcb941130f02528090a37981e.tar.gz postgresql-1c5fa955cdf5999bcb941130f02528090a37981e.zip |
Add prototype for heap_getattr() to quiet compiler
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/heaptuple.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/access/heaptuple.h b/src/include/access/heaptuple.h new file mode 100644 index 00000000000..7dcbd60e60e --- /dev/null +++ b/src/include/access/heaptuple.h @@ -0,0 +1,22 @@ +/*------------------------------------------------------------------------- + * + * heaptuple.h-- + * + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: heaptuple.h,v 1.1 1996/10/18 17:58:33 scrappy Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef HEAPTUPLE_H +#define HEAPTUPLE_H + +extern char *heap_getattr(HeapTuple tup, + Buffer b, + int attnum, + TupleDesc tupleDesc, + bool *isnull); + +#endif /* HEAP_TUPLE_H */ |