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