set the parameters map
| 217 | |
| 218 | // set the parameters map |
| 219 | void QueryCtx_SetParams |
| 220 | ( |
| 221 | rax *params |
| 222 | ) { |
| 223 | ASSERT(params != NULL); |
| 224 | |
| 225 | QueryCtx *ctx = _QueryCtx_GetCreateCtx(); |
| 226 | ctx->query_data.params = params; |
| 227 | } |
| 228 | |
| 229 | // retrieve the AST |
| 230 | AST *QueryCtx_GetAST(void) { |
no test coverage detected