Is clause an OR clause? */
| 103 | |
| 104 | /* Is clause an OR clause? */ |
| 105 | static inline bool |
| 106 | is_orclause(const void *clause) |
| 107 | { |
| 108 | return (clause != NULL && |
| 109 | IsA(clause, BoolExpr) && |
| 110 | ((const BoolExpr *) clause)->boolop == OR_EXPR); |
| 111 | } |
| 112 | |
| 113 | /* Is clause a NOT clause? */ |
| 114 | static inline bool |
no outgoing calls