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

Function makeString

src/backend/nodes/value.c:52–60  ·  view source on GitHub ↗

* makeString * * Caller is responsible for passing a palloc'd string. */

Source from the content-addressed store, hash-verified

50 * Caller is responsible for passing a palloc'd string.
51 */
52Value *
53makeString(char *str)
54{
55 Value *v = makeNode(Value);
56
57 v->type = T_String;
58 v->val.str = str;
59 return v;
60}
61
62/*
63 * makeBitString

Callers 15

appendLimitClauseFunction · 0.85
postgresGetForeignPlanFunction · 0.85
postgresPlanDirectModifyFunction · 0.85
load_format_configFunction · 0.85
plpgsql_parse_dblwordFunction · 0.85
plpgsql_parse_tripwordFunction · 0.85
make_path_rowexprFunction · 0.85
rewriteSearchAndCycleFunction · 0.85

Calls

no outgoing calls

Tested by 2