MCPcopy Create free account
hub / github.com/apache/cloudberry / pqTraceOutputG

Function pqTraceOutputG

src/interfaces/libpq/fe-trace.c:375–386  ·  view source on GitHub ↗

CopyInResponse */

Source from the content-addressed store, hash-verified

373
374/* CopyInResponse */
375static void
376pqTraceOutputG(FILE *f, const char *message, int *cursor)
377{
378 int nfields;
379
380 fprintf(f, "CopyInResponse\t");
381 pqTraceOutputByte1(f, message, cursor);
382 nfields = pqTraceOutputInt16(f, message, cursor);
383
384 for (int i = 0; i < nfields; i++)
385 pqTraceOutputInt16(f, message, cursor);
386}
387
388/* CopyOutResponse */
389static void

Callers 1

pqTraceOutputMessageFunction · 0.85

Calls 2

pqTraceOutputByte1Function · 0.85
pqTraceOutputInt16Function · 0.85

Tested by

no test coverage detected