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

Function appendStringInfoString

src/common/stringinfo.c:191–195  ·  view source on GitHub ↗

* appendStringInfoString * * Append a null-terminated string to str. * Like appendStringInfo(str, "%s", s) but faster. */

Source from the content-addressed store, hash-verified

189 * Like appendStringInfo(str, "%s", s) but faster.
190 */
191void
192appendStringInfoString(StringInfo str, const char *s)
193{
194 appendBinaryStringInfo(str, s, strlen(s));
195}
196
197/*
198 * appendStringInfoChar

Callers 15

deparseSelectStmtForRelFunction · 0.85
deparseSelectSqlFunction · 0.85
deparseFromExprFunction · 0.85
deparseTargetListFunction · 0.85
deparseLockingClauseFunction · 0.85
appendConditionsFunction · 0.85
deparseFromExprForRelFunction · 0.85
deparseRangeTblRefFunction · 0.85
deparseInsertSqlFunction · 0.85
rebuildInsertSqlFunction · 0.85

Calls 1

appendBinaryStringInfoFunction · 0.85

Tested by 15

pg_output_beginFunction · 0.68
pg_decode_commit_txnFunction · 0.68
print_literalFunction · 0.68
tuple_to_stringinfoFunction · 0.68
pg_decode_changeFunction · 0.68
pg_decode_truncateFunction · 0.68
pg_output_stream_startFunction · 0.68
pg_decode_stream_stopFunction · 0.68
pg_decode_stream_abortFunction · 0.68
pg_decode_stream_commitFunction · 0.68
pg_decode_stream_changeFunction · 0.68