mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Add prototype for heap_getattr() to quiet compiler
This commit is contained in:
22
src/include/access/heaptuple.h
Normal file
22
src/include/access/heaptuple.h
Normal file
@ -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 */
|
Reference in New Issue
Block a user