diff options
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 */ |