PostgreSQL Source Code git master
printsimple.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * printsimple.h
4 * print simple tuples without catalog access
5 *
6 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 * src/include/access/printsimple.h
10 *
11 *-------------------------------------------------------------------------
12 */
13
14#ifndef PRINTSIMPLE_H
15#define PRINTSIMPLE_H
16
17#include "tcop/dest.h"
18
19extern bool printsimple(TupleTableSlot *slot, DestReceiver *self);
20extern void printsimple_startup(DestReceiver *self, int operation,
21 TupleDesc tupdesc);
22
23#endif /* PRINTSIMPLE_H */
void printsimple_startup(DestReceiver *self, int operation, TupleDesc tupdesc)
Definition: printsimple.c:31
bool printsimple(TupleTableSlot *slot, DestReceiver *self)
Definition: printsimple.c:59