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

Function makeFloat

src/backend/nodes/value.c:37–45  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

35 * Caller is responsible for passing a palloc'd string.
36 */
37Value *
38makeFloat(char *numericStr)
39{
40 Value *v = makeNode(Value);
41
42 v->type = T_Float;
43 v->val.str = numericStr;
44 return v;
45}
46
47/*
48 * makeString

Callers 6

AlterQueueFunction · 0.85
buildDefItemFunction · 0.85
sequence_optionsFunction · 0.85
_readValueFunction · 0.85
nodeReadFunction · 0.85
pg_get_object_addressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected