retrieve the AST
| 228 | |
| 229 | // retrieve the AST |
| 230 | AST *QueryCtx_GetAST(void) { |
| 231 | QueryCtx *ctx = _QueryCtx_GetCtx(); |
| 232 | ASSERT(ctx != NULL); |
| 233 | return ctx->query_data.ast; |
| 234 | } |
| 235 | |
| 236 | // retrieve the query parameters values map |
| 237 | rax *QueryCtx_GetParams(void) { |