sets the "utilized_cache" flag of a QueryInfo
| 154 | |
| 155 | // sets the "utilized_cache" flag of a QueryInfo |
| 156 | void QueryCtx_SetUtilizedCache |
| 157 | ( |
| 158 | QueryCtx *ctx, // query context |
| 159 | bool utilized // cache utilized |
| 160 | ) { |
| 161 | ASSERT(ctx != NULL); |
| 162 | |
| 163 | ctx->stats.utilized_cache = utilized; |
| 164 | } |
| 165 | |
| 166 | // sets the global execution context |
| 167 | void QueryCtx_SetGlobalExecutionCtx |