* Evaluate NullTest / IS NOT NULL for rows. */
| 2691 | * Evaluate NullTest / IS NOT NULL for rows. |
| 2692 | */ |
| 2693 | void |
| 2694 | ExecEvalRowNotNull(ExprState *state, ExprEvalStep *op, ExprContext *econtext) |
| 2695 | { |
| 2696 | ExecEvalRowNullInt(state, op, econtext, false); |
| 2697 | } |
| 2698 | |
| 2699 | /* Common code for IS [NOT] NULL on a row value */ |
| 2700 | static void |
no test coverage detected