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

Function createPQExpBuffer

src/interfaces/libpq/pqexpbuffer.c:80–90  ·  view source on GitHub ↗

* createPQExpBuffer * * Create an empty 'PQExpBufferData' & return a pointer to it. */

Source from the content-addressed store, hash-verified

78 * Create an empty 'PQExpBufferData' & return a pointer to it.
79 */
80PQExpBuffer
81createPQExpBuffer(void)
82{
83 PQExpBuffer res;
84
85 res = (PQExpBuffer) malloc(sizeof(PQExpBufferData));
86 if (res != NULL)
87 initPQExpBuffer(res);
88
89 return res;
90}
91
92/*
93 * initPQExpBuffer

Callers 15

cdbdisp_makeResultFunction · 0.85
fmtQualifiedIdEncFunction · 0.85
appendStringLiteralDQFunction · 0.85
GenerateRecoveryConfigFunction · 0.85
test_psql_parseFunction · 0.85
test_one_vector_escapeFunction · 0.85
gets_fromFileFunction · 0.85
exec_command_sf_svFunction · 0.85
lookup_object_oidFunction · 0.85
get_create_object_cmdFunction · 0.85

Calls 1

initPQExpBufferFunction · 0.85

Tested by 2

test_psql_parseFunction · 0.68
test_one_vector_escapeFunction · 0.68