On Fri, Jun 4, 2021 at 9:58 AM Julien Rouhaud <rjuju...@gmail.com> wrote: > > so this is not a generally applicable strategy. > > > > We have pg_nodiscard for functions where you explicitly want callers to > > check the return value. In all other cases, callers are free to ignore > > return values. > > Yes, but we have a lot a examples of functions without pg_nodiscard and callers > still explicitly ignoring the results, like fsm_vacuum_page() in the same file. > It would be more consistent and make the code slightly more self explanatory.
Yeah, just for consistency reasons (void) casting can be added to fsm_set_and_search when it's return value is ignored. With Regards, Bharath Rupireddy.