printtup.h

来自「PostgreSQL7.4.6 for Linux」· C头文件 代码 · 共 36 行

H
36
字号
/*------------------------------------------------------------------------- * * printtup.h * * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $Id: printtup.h,v 1.29 2003/08/04 02:40:10 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef PRINTTUP_H#define PRINTTUP_H#include "tcop/dest.h"extern DestReceiver *printtup_create_DR(CommandDest dest, Portal portal);extern void SendRowDescriptionMessage(TupleDesc typeinfo, List *targetlist,						  int16 *formats);extern void debugStartup(DestReceiver *self, int operation,			 TupleDesc typeinfo);extern void debugtup(HeapTuple tuple, TupleDesc typeinfo,		 DestReceiver *self);/* XXX these are really in executor/spi.c */extern void spi_dest_startup(DestReceiver *self, int operation,				 TupleDesc typeinfo);extern void spi_printtup(HeapTuple tuple, TupleDesc typeinfo,			 DestReceiver *self);#endif   /* PRINTTUP_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?