* makeFloat * * Caller is responsible for passing a palloc'd string. */
| 35 | * Caller is responsible for passing a palloc'd string. |
| 36 | */ |
| 37 | Value * |
| 38 | makeFloat(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 |
no outgoing calls
no test coverage detected