Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / access / printsimple.h
blob67a995014fe8bc50200b3ef8635c753e8acc48c7
1 /*-------------------------------------------------------------------------
3 * printsimple.h
4 * print simple tuples without catalog access
6 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * src/include/access/printsimple.h
11 *-------------------------------------------------------------------------
14 #ifndef PRINTSIMPLE_H
15 #define PRINTSIMPLE_H
17 #include "tcop/dest.h"
19 extern bool printsimple(TupleTableSlot *slot, DestReceiver *self);
20 extern void printsimple_startup(DestReceiver *self, int operation,
21 TupleDesc tupdesc);
23 #endif /* PRINTSIMPLE_H */