You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Fix inline_set_returning_function() to preserve the invalItems list properly.
This avoids a possible crash when inlining a SRF whose argument listcontains a reference to an inline-able user function. The crash is quitereproducible with CLOBBER_FREED_MEMORY enabled, but would be less certainin a production build. Problem introduced in 9.0 by the named-argumentspatch, which requires invoking eval_const_expressions() before we can tryto inline a SRF. Per report from Brendan Jurd.