mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Moved from backend/access to include/access
This commit is contained in:
26
src/include/access/printtup.h
Normal file
26
src/include/access/printtup.h
Normal file
@@ -0,0 +1,26 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* printtup.h--
|
||||
*
|
||||
*
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: printtup.h,v 1.1 1996/08/27 21:50:19 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef PRINTTUP_H
|
||||
#define PRINTTUP_H
|
||||
|
||||
#include "access/htup.h"
|
||||
#include "access/tupdesc.h"
|
||||
|
||||
extern Oid typtoout(Oid type);
|
||||
extern void printtup(HeapTuple tuple, TupleDesc typeinfo);
|
||||
extern void showatts(char *name, TupleDesc attinfo);
|
||||
extern void debugtup(HeapTuple tuple, TupleDesc typeinfo);
|
||||
extern void printtup_internal(HeapTuple tuple, TupleDesc typeinfo);
|
||||
extern Oid gettypelem(Oid type);
|
||||
|
||||
#endif /* PRINTTUP_H */
|
||||
Reference in New Issue
Block a user