printtup.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * printtup.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: printtup.h,v 1.10.2.1 1999/07/30 18:26:59 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PRINTTUP_H
  14. #define PRINTTUP_H
  15. #include "tcop/dest.h"
  16. extern DestReceiver *printtup_create_DR(void);
  17. extern void showatts(char *name, TupleDesc attinfo);
  18. extern void debugtup(HeapTuple tuple, TupleDesc typeinfo,
  19.  DestReceiver *self);
  20. extern void printtup_internal(HeapTuple tuple, TupleDesc typeinfo,
  21.   DestReceiver *self);
  22. /* XXX this one is really in executor/spi.c */
  23. extern void spi_printtup(HeapTuple tuple, TupleDesc tupdesc,
  24.  DestReceiver *self);
  25. extern int getTypeOutAndElem(Oid type, Oid *typOutput, Oid *typElem);
  26. #endif  /* PRINTTUP_H */