Is clause a NOT clause? */
| 112 | |
| 113 | /* Is clause a NOT clause? */ |
| 114 | static inline bool |
| 115 | is_notclause(const void *clause) |
| 116 | { |
| 117 | return (clause != NULL && |
| 118 | IsA(clause, BoolExpr) && |
| 119 | ((const BoolExpr *) clause)->boolop == NOT_EXPR); |
| 120 | } |
| 121 | |
| 122 | /* Extract argument from a clause known to be a NOT clause */ |
| 123 | static inline Expr * |
no outgoing calls
no test coverage detected