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

Function is_orclause

src/include/nodes/nodeFuncs.h:105–111  ·  view source on GitHub ↗

Is clause an OR clause? */

Source from the content-addressed store, hash-verified

103
104/* Is clause an OR clause? */
105static inline bool
106is_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? */
114static inline bool

Callers 15

ExprWalkerMethod · 0.85
mcv_get_match_bitmapFunction · 0.85
SubqueryToJoinWalkerFunction · 0.85
process_sublinks_mutatorFunction · 0.85
pull_orsFunction · 0.85
find_duplicate_orsFunction · 0.85
clause_selectivity_extFunction · 0.85
predicate_classifyFunction · 0.85

Calls

no outgoing calls

Tested by 1

predicate_classifyFunction · 0.68