| 988 | } |
| 989 | |
| 990 | static Node * |
| 991 | transformAExprOpAll(ParseState *pstate, A_Expr *a) |
| 992 | { |
| 993 | Node *lexpr = transformExprRecurse(pstate, a->lexpr); |
| 994 | Node *rexpr = transformExprRecurse(pstate, a->rexpr); |
| 995 | |
| 996 | return (Node *) make_scalar_array_op(pstate, |
| 997 | a->name, |
| 998 | false, |
| 999 | lexpr, |
| 1000 | rexpr, |
| 1001 | a->location); |
| 1002 | } |
| 1003 | |
| 1004 | static Node * |
| 1005 | transformAExprDistinct(ParseState *pstate, A_Expr *a) |
no test coverage detected