mirror of https://github.com/postgres/postgres
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.
24 lines
673 B
24 lines
673 B
|
9 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* printsimple.h
|
||
|
|
* print simple tuples without catalog access
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* src/include/access/printsimple.h
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef PRINTSIMPLE_H
|
||
|
|
#define PRINTSIMPLE_H
|
||
|
|
|
||
|
|
#include "tcop/dest.h"
|
||
|
|
|
||
|
|
extern bool printsimple(TupleTableSlot *slot, DestReceiver *self);
|
||
|
|
extern void printsimple_startup(DestReceiver *self, int operation,
|
||
|
|
TupleDesc tupdesc);
|
||
|
|
|
||
|
|
#endif /* PRINTSIMPLE_H */
|