* 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. */
| 727 | * returns a set. |
| 728 | */ |
| 729 | bool |
| 730 | expression_returns_set(Node *clause) |
| 731 | { |
| 732 | return expression_returns_set_walker(clause, NULL); |
| 733 | } |
| 734 | |
| 735 | static bool |
| 736 | expression_returns_set_walker(Node *node, void *context) |
no test coverage detected