* makeString * * Caller is responsible for passing a palloc'd string. */
| 50 | * Caller is responsible for passing a palloc'd string. |
| 51 | */ |
| 52 | Value * |
| 53 | makeString(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 |
no outgoing calls