| 974 | } |
| 975 | |
| 976 | static Node * |
| 977 | transformAExprOpAny(ParseState *pstate, A_Expr *a) |
| 978 | { |
| 979 | Node *lexpr = transformExprRecurse(pstate, a->lexpr); |
| 980 | Node *rexpr = transformExprRecurse(pstate, a->rexpr); |
| 981 | |
| 982 | return (Node *) make_scalar_array_op(pstate, |
| 983 | a->name, |
| 984 | true, |
| 985 | lexpr, |
| 986 | rexpr, |
| 987 | a->location); |
| 988 | } |
| 989 | |
| 990 | static Node * |
| 991 | transformAExprOpAll(ParseState *pstate, A_Expr *a) |
no test coverage detected