Is clause an AND clause? */
| 94 | |
| 95 | /* Is clause an AND clause? */ |
| 96 | static inline bool |
| 97 | is_andclause(const void *clause) |
| 98 | { |
| 99 | return (clause != NULL && |
| 100 | IsA(clause, BoolExpr) && |
| 101 | ((const BoolExpr *) clause)->boolop == AND_EXPR); |
| 102 | } |
| 103 | |
| 104 | /* Is clause an OR clause? */ |
| 105 | static inline bool |
no outgoing calls