Richard Guo <guofenglinux@gmail.com> writes:
> - if (IS_SRF_CALL((Node *) em->em_expr))
> + if (expression_returns_set((Node *) em->em_expr))
Yeah. I think we need to go further: placed in optimizer.h as
it is, IS_SRF_CALL is just an invitation to writing broken code.
I think the calls in tlist.c are legit because that code is
precisely concerned with breaking down nests of SRFs; but
everywhere else, if you write IS_SRF_CALL you're doing it wrong.
We should take that macro out of the header altogether.
I kind of wonder whether IS_SRF_CALL is a good idea at all.
It'd be more maintainable to have an expression_returns_set_one_level,
or something like that, placed beside expression_returns_set.
regards, tom lane