mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-19 04:46:59 +08:00
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
30 lines
780 B
C
30 lines
780 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* tstoreReceiver.h
|
|
* prototypes for tstoreReceiver.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/executor/tstoreReceiver.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef TSTORE_RECEIVER_H
|
|
#define TSTORE_RECEIVER_H
|
|
|
|
#include "tcop/dest.h"
|
|
#include "utils/tuplestore.h"
|
|
|
|
|
|
extern DestReceiver *CreateTuplestoreDestReceiver(void);
|
|
|
|
extern void SetTuplestoreDestReceiverParams(DestReceiver *self,
|
|
Tuplestorestate *tStore,
|
|
MemoryContext tContext,
|
|
bool detoast);
|
|
|
|
#endif /* TSTORE_RECEIVER_H */
|