/*------------------------------------------------------------------------- * * printtup.h-- * * * * Copyright (c) 1994, Regents of the University of California * * $Id: printtup.h,v 1.5 1998/09/01 04:34:22 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PRINTTUP_H #define PRINTTUP_H #include #include 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 */