| 463 | */ |
| 464 | #ifndef FRONTEND |
| 465 | static inline bool |
| 466 | ExecQualAndReset(ExprState *state, ExprContext *econtext) |
| 467 | { |
| 468 | bool ret = ExecQual(state, econtext); |
| 469 | |
| 470 | /* inline ResetExprContext, to avoid ordering issue in this file */ |
| 471 | MemoryContextReset(econtext->ecxt_per_tuple_memory); |
| 472 | return ret; |
| 473 | } |
| 474 | #endif |
| 475 | |
| 476 | extern bool ExecCheck(ExprState *state, ExprContext *context); |
no test coverage detected