MCPcopy Create free account
hub / github.com/apache/cloudberry / is_notclause

Function is_notclause

src/include/nodes/nodeFuncs.h:114–120  ·  view source on GitHub ↗

Is clause a NOT clause? */

Source from the content-addressed store, hash-verified

112
113/* Is clause a NOT clause? */
114static inline bool
115is_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 */
123static inline Expr *

Calls

no outgoing calls

Tested by

no test coverage detected