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

Function makeBitString

src/backend/nodes/value.c:67–75  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

65 * Caller is responsible for passing a palloc'd string.
66 */
67Value *
68makeBitString(char *str)
69{
70 Value *v = makeNode(Value);
71
72 v->type = T_BitString;
73 v->val.str = str;
74 return v;
75}

Callers 2

_readValueFunction · 0.85
nodeReadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected