Is clause an OpExpr clause? */
| 63 | |
| 64 | /* Is clause an OpExpr clause? */ |
| 65 | static inline bool |
| 66 | is_opclause(const void *clause) |
| 67 | { |
| 68 | return clause != NULL && IsA(clause, OpExpr); |
| 69 | } |
| 70 | |
| 71 | /* Extract left arg of a binary opclause, or only arg of a unary opclause */ |
| 72 | static inline Node * |
no outgoing calls