* Evaluate NullTest / IS NULL for rows. */
| 2682 | * Evaluate NullTest / IS NULL for rows. |
| 2683 | */ |
| 2684 | void |
| 2685 | ExecEvalRowNull(ExprState *state, ExprEvalStep *op, ExprContext *econtext) |
| 2686 | { |
| 2687 | ExecEvalRowNullInt(state, op, econtext, true); |
| 2688 | } |
| 2689 | |
| 2690 | /* |
| 2691 | * Evaluate NullTest / IS NOT NULL for rows. |
no test coverage detected