PostgreSQL Source Code git master
Loading...
Searching...
No Matches
dest.h File Reference
#include "executor/tuptable.h"
#include "tcop/cmdtag.h"
Include dependency graph for dest.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _DestReceiver
 

Typedefs

typedef struct _DestReceiver DestReceiver
 

Enumerations

enum  CommandDest {
  DestNone , DestDebug , DestRemote , DestRemoteExecute ,
  DestRemoteSimple , DestSPI , DestTuplestore , DestIntoRel ,
  DestCopyOut , DestSQLFunction , DestTransientRel , DestTupleQueue ,
  DestExplainSerialize
}
 

Functions

void BeginCommand (CommandTag commandTag, CommandDest dest)
 
DestReceiverCreateDestReceiver (CommandDest dest)
 
void EndCommand (const QueryCompletion *qc, CommandDest dest, bool force_undecorated_output)
 
void EndReplicationCommand (const char *commandTag)
 
void NullCommand (CommandDest dest)
 
void ReadyForQuery (CommandDest dest)
 

Variables

PGDLLIMPORT DestReceiverNone_Receiver
 

Typedef Documentation

◆ DestReceiver

Definition at line 113 of file dest.h.

Enumeration Type Documentation

◆ CommandDest

Enumerator
DestNone 
DestDebug 
DestRemote 
DestRemoteExecute 
DestRemoteSimple 
DestSPI 
DestTuplestore 
DestIntoRel 
DestCopyOut 
DestSQLFunction 
DestTransientRel 
DestTupleQueue 
DestExplainSerialize 

Definition at line 85 of file dest.h.

86{
87 DestNone, /* results are discarded */
88 DestDebug, /* results go to debugging output */
89 DestRemote, /* results sent to frontend process */
90 DestRemoteExecute, /* sent to frontend, in Execute command */
91 DestRemoteSimple, /* sent to frontend, w/no catalog access */
92 DestSPI, /* results sent to SPI manager */
93 DestTuplestore, /* results sent to Tuplestore */
94 DestIntoRel, /* results sent to relation (SELECT INTO) */
95 DestCopyOut, /* results sent to COPY TO code */
96 DestSQLFunction, /* results sent to SQL-language func mgr */
97 DestTransientRel, /* results sent to transient relation */
98 DestTupleQueue, /* results sent to tuple queue */
99 DestExplainSerialize, /* results are serialized and discarded */
CommandDest
Definition dest.h:86
@ DestSQLFunction
Definition dest.h:96
@ DestTupleQueue
Definition dest.h:98
@ DestTuplestore
Definition dest.h:93
@ DestRemote
Definition dest.h:89
@ DestDebug
Definition dest.h:88
@ DestExplainSerialize
Definition dest.h:99
@ DestRemoteSimple
Definition dest.h:91
@ DestCopyOut
Definition dest.h:95
@ DestTransientRel
Definition dest.h:97
@ DestSPI
Definition dest.h:92
@ DestIntoRel
Definition dest.h:94
@ DestRemoteExecute
Definition dest.h:90
@ DestNone
Definition dest.h:87

Function Documentation

◆ BeginCommand()

void BeginCommand ( CommandTag  commandTag,
CommandDest  dest 
)
extern

Definition at line 103 of file dest.c.

104{
105 /* Nothing to do at present */
106}

Referenced by exec_execute_message(), and exec_simple_query().

◆ CreateDestReceiver()

DestReceiver * CreateDestReceiver ( CommandDest  dest)
extern

Definition at line 113 of file dest.c.

114{
115 /*
116 * It's ok to cast the constness away as any modification of the none
117 * receiver would be a bug (which gets easier to catch this way).
118 */
119
120 switch (dest)
121 {
122 case DestRemote:
124 return printtup_create_DR(dest);
125
126 case DestRemoteSimple:
128
129 case DestNone:
131
132 case DestDebug:
134
135 case DestSPI:
137
138 case DestTuplestore:
140
141 case DestIntoRel:
143
144 case DestCopyOut:
145 return CreateCopyDestReceiver();
146
147 case DestSQLFunction:
149
150 case DestTransientRel:
152
153 case DestTupleQueue:
155
158 }
159
160 /* should never get here */
162}
#define unconstify(underlying_type, expr)
Definition c.h:1234
#define pg_unreachable()
Definition c.h:341
DestReceiver * CreateCopyDestReceiver(void)
Definition copyto.c:1528
DestReceiver * CreateIntoRelDestReceiver(IntoClause *intoClause)
Definition createas.c:440
static const DestReceiver spi_printtupDR
Definition dest.c:85
static const DestReceiver debugtupDR
Definition dest.c:75
static const DestReceiver donothingDR
Definition dest.c:70
static const DestReceiver printsimpleDR
Definition dest.c:80
DestReceiver * CreateExplainSerializeDestReceiver(ExplainState *es)
Definition explain_dr.c:275
DestReceiver * CreateSQLFunctionDestReceiver(void)
Definition functions.c:2617
DestReceiver * CreateTransientRelDestReceiver(Oid transientoid)
Definition matview.c:464
#define InvalidOid
static int fb(int x)
DestReceiver * printtup_create_DR(CommandDest dest)
Definition printtup.c:72
DestReceiver * CreateTupleQueueDestReceiver(shm_mq_handle *handle)
Definition tqueue.c:119
DestReceiver * CreateTuplestoreDestReceiver(void)

References CreateCopyDestReceiver(), CreateExplainSerializeDestReceiver(), CreateIntoRelDestReceiver(), CreateSQLFunctionDestReceiver(), CreateTransientRelDestReceiver(), CreateTupleQueueDestReceiver(), CreateTuplestoreDestReceiver(), debugtupDR, DestCopyOut, DestDebug, DestExplainSerialize, DestIntoRel, DestNone, DestRemote, DestRemoteExecute, DestRemoteSimple, DestSPI, DestSQLFunction, DestTransientRel, DestTupleQueue, DestTuplestore, donothingDR, fb(), InvalidOid, pg_unreachable, printsimpleDR, printtup_create_DR(), spi_printtupDR, and unconstify.

Referenced by _SPI_execute_plan(), BeginCopyTo(), CreateReplicationSlot(), exec_execute_message(), exec_replication_command(), exec_simple_query(), exec_stmt_return_query(), execute_sql_string(), FillPortalStore(), IdentifySystem(), PersistHoldablePortal(), postquel_start(), ReadReplicationSlot(), SendTablespaceList(), SendTimeLineHistory(), SendXlogRecPtrResult(), SPI_cursor_fetch(), SPI_scroll_cursor_fetch(), and StartReplication().

◆ EndCommand()

void EndCommand ( const QueryCompletion qc,
CommandDest  dest,
bool  force_undecorated_output 
)
extern

Definition at line 169 of file dest.c.

170{
172 Size len;
173
174 switch (dest)
175 {
176 case DestRemote:
178 case DestRemoteSimple:
179
183
184 case DestNone:
185 case DestDebug:
186 case DestSPI:
187 case DestTuplestore:
188 case DestIntoRel:
189 case DestCopyOut:
190 case DestSQLFunction:
191 case DestTransientRel:
192 case DestTupleQueue:
194 break;
195 }
196}
size_t Size
Definition c.h:619
Size BuildQueryCompletionString(char *buff, const QueryCompletion *qc, bool nameonly)
Definition cmdtag.c:121
#define COMPLETION_TAG_BUFSIZE
Definition cmdtag.h:17
#define pq_putmessage(msgtype, s, len)
Definition libpq.h:49
const void size_t len
#define PqMsg_CommandComplete
Definition protocol.h:42

References BuildQueryCompletionString(), COMPLETION_TAG_BUFSIZE, DestCopyOut, DestDebug, DestExplainSerialize, DestIntoRel, DestNone, DestRemote, DestRemoteExecute, DestRemoteSimple, DestSPI, DestSQLFunction, DestTransientRel, DestTupleQueue, DestTuplestore, fb(), len, pq_putmessage, and PqMsg_CommandComplete.

Referenced by exec_execute_message(), exec_simple_query(), StartLogicalReplication(), and WalSndDone().

◆ EndReplicationCommand()

void EndReplicationCommand ( const char commandTag)
extern

Definition at line 205 of file dest.c.

206{
207 pq_putmessage(PqMsg_CommandComplete, commandTag, strlen(commandTag) + 1);
208}

References fb(), pq_putmessage, and PqMsg_CommandComplete.

Referenced by exec_replication_command(), and StartReplication().

◆ NullCommand()

void NullCommand ( CommandDest  dest)
extern

Definition at line 218 of file dest.c.

219{
220 switch (dest)
221 {
222 case DestRemote:
224 case DestRemoteSimple:
225
226 /* Tell the FE that we saw an empty query string */
228 break;
229
230 case DestNone:
231 case DestDebug:
232 case DestSPI:
233 case DestTuplestore:
234 case DestIntoRel:
235 case DestCopyOut:
236 case DestSQLFunction:
237 case DestTransientRel:
238 case DestTupleQueue:
240 break;
241 }
242}
void pq_putemptymessage(char msgtype)
Definition pqformat.c:387
#define PqMsg_EmptyQueryResponse
Definition protocol.h:47

References DestCopyOut, DestDebug, DestExplainSerialize, DestIntoRel, DestNone, DestRemote, DestRemoteExecute, DestRemoteSimple, DestSPI, DestSQLFunction, DestTransientRel, DestTupleQueue, DestTuplestore, pq_putemptymessage(), and PqMsg_EmptyQueryResponse.

Referenced by exec_execute_message(), and exec_simple_query().

◆ ReadyForQuery()

void ReadyForQuery ( CommandDest  dest)
extern

Definition at line 256 of file dest.c.

257{
258 switch (dest)
259 {
260 case DestRemote:
262 case DestRemoteSimple:
263 {
265
269 }
270 /* Flush output at end of cycle in any case. */
271 pq_flush();
272 break;
273
274 case DestNone:
275 case DestDebug:
276 case DestSPI:
277 case DestTuplestore:
278 case DestIntoRel:
279 case DestCopyOut:
280 case DestSQLFunction:
281 case DestTransientRel:
282 case DestTupleQueue:
284 break;
285 }
286}
#define pq_flush()
Definition libpq.h:46
static char buf[DEFAULT_XLOG_SEG_SIZE]
void pq_endmessage(StringInfo buf)
Definition pqformat.c:296
void pq_beginmessage(StringInfo buf, char msgtype)
Definition pqformat.c:88
static void pq_sendbyte(StringInfo buf, uint8 byt)
Definition pqformat.h:160
#define PqMsg_ReadyForQuery
Definition protocol.h:55
char TransactionBlockStatusCode(void)
Definition xact.c:5025

References buf, DestCopyOut, DestDebug, DestExplainSerialize, DestIntoRel, DestNone, DestRemote, DestRemoteExecute, DestRemoteSimple, DestSPI, DestSQLFunction, DestTransientRel, DestTupleQueue, DestTuplestore, pq_beginmessage(), pq_endmessage(), pq_flush, pq_sendbyte(), PqMsg_ReadyForQuery, and TransactionBlockStatusCode().

Referenced by PostgresMain().

Variable Documentation

◆ None_Receiver