You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* printtup.h--
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
|
|
|
|
* $Id: printtup.h,v 1.4 1997/09/08 02:34:19 momjian 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 */
|