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

Function pqPutc

src/interfaces/libpq/fe-misc.c:99–106  ·  view source on GitHub ↗

* pqPutc: write 1 char to the current message */

Source from the content-addressed store, hash-verified

97 * pqPutc: write 1 char to the current message
98 */
99int
100pqPutc(char c, PGconn *conn)
101{
102 if (pqPutMsgBytes(&c, 1, conn))
103 return EOF;
104
105 return 0;
106}
107
108
109/*

Callers 4

send_sequence_responseFunction · 0.85
PQsendQueryInternalFunction · 0.85
PQsendQueryGutsFunction · 0.85
PQsendDescribeFunction · 0.85

Calls 1

pqPutMsgBytesFunction · 0.85

Tested by

no test coverage detected