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
Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.
This is not the hoped-for facility of using INSERT/UPDATE/DELETE insidea WITH, but rather the other way around. It seems useful in its ownright anyway.Note: catversion bumped because, although the contents of stored rulesmight look compatible, there's actually a subtle semantic change.A single Query containing a WITH and INSERT...VALUES now representswriting the WITH before the INSERT, not before the VALUES. While it'snot clear that that matters to anyone, it seems like a good idea tohave it cited in the git history for catversion.h.Original patch by Marko Tiikkaja, with updating and cleanup byHitoshi Harada.