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
As of commiteaa5808, MemoryContextResetAndDeleteChildren() isjust a backwards compatibility macro for MemoryContextReset(). Nowthat some time has passed, this macro seems more likely to createconfusion.This commit removes the macro and replaces all remaining uses withcalls to MemoryContextReset(). Any third-party code that use thismacro will need to be adjusted to call MemoryContextReset()instead. Since the two have behaved the same way since v9.5, suchadjustments won't produce any behavior changes for allcurrently-supported versions of PostgreSQL.Reviewed-by: Amul Sul, Tom Lane, Alvaro Herrera, Dagfinn Ilmari MannsåkerDiscussion:https://postgr.es/m/20231113185950.GA1668018%40nathanxps13