mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 09:52:14 -05:00
26 lines
669 B
C
26 lines
669 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* heaptuple.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: heaptuple.h,v 1.3 1996/11/05 07:18:05 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef HEAPTUPLE_H
|
|
#define HEAPTUPLE_H
|
|
|
|
#include <access/tupdesc.h>
|
|
#include <storage/buf.h>
|
|
#include <access/htup.h>
|
|
|
|
extern char *heap_getattr(HeapTuple tup,
|
|
Buffer b,
|
|
int attnum,
|
|
TupleDesc tupleDesc,
|
|
bool *isnull);
|
|
|
|
#endif /* HEAP_TUPLE_H */
|