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

Function expression_returns_set

src/backend/nodes/nodeFuncs.c:729–733  ·  view source on GitHub ↗

* expression_returns_set * Test whether an expression returns a set result. * * Because we use expression_tree_walker(), this can also be applied to * whole targetlists; it'll produce true if any one of the tlist items * returns a set. */

Source from the content-addressed store, hash-verified

727 * returns a set.
728 */
729bool
730expression_returns_set(Node *clause)
731{
732 return expression_returns_set_walker(clause, NULL);
733}
734
735static bool
736expression_returns_set_walker(Node *node, void *context)

Callers 15

ExpressionReturnsSetMethod · 0.85
coerce_to_booleanFunction · 0.85
make_row_comparison_opFunction · 0.85
safe_to_convert_EXPRFunction · 0.85
ExecInitProjectSetFunction · 0.85
single_row_queryFunction · 0.85
tlist_has_srfFunction · 0.85
can_replace_tlistFunction · 0.85

Calls 1

Tested by

no test coverage detected