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

Function is_andclause

src/include/nodes/nodeFuncs.h:96–102  ·  view source on GitHub ↗

Is clause an AND clause? */

Source from the content-addressed store, hash-verified

94
95/* Is clause an AND clause? */
96static inline bool
97is_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? */
105static inline bool

Callers 15

ExprWalkerMethod · 0.85
mcv_get_match_bitmapFunction · 0.85
SubqueryToJoinWalkerFunction · 0.85
make_ands_implicitFunction · 0.85
ExecInitSubPlanFunction · 0.85
testexpr_is_hashableFunction · 0.85
process_sublinks_mutatorFunction · 0.85
pull_andsFunction · 0.85
find_duplicate_orsFunction · 0.85

Calls

no outgoing calls

Tested by 1

predicate_classifyFunction · 0.68