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 table dump in pg_dump[all] with backends older than 9.5
The access method name "amname" can be dumped as of3b925e9, butqueries for backends older than 9.5 forgot to map it to a dummy NULLvalue, causing the column to not be mapped to a number. As a result,pg_dump was throwing some spurious errors in its stderr output comingfrom libpq:pg_dump: column number -1 is out of range 0..36Fix this issue by adding a mapping of "amname" to NULL to all the olderqueries.Discussion:https://postgr.es/m/20190522083038.GA16837@paquier.xyzAuthor: Michael PaquierReviewed-by: Dmitry Dolgov, Andres Freund, Tom Lane