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 incorrect logic for excluding range constructor functions in pg_dump.
Faulty AND/OR nesting in the WHERE clause of getFuncs' SQL query led todumping range constructor functions if they are part of an extensionand we're in binary-upgrade mode. Actually, we don't want to dump themseparately even then, since CREATE TYPE AS RANGE will create the range'sconstructor functions regardless. Per report from Andrew Dunstan.It looks like this mistake was introduced by me, in commitb985d48, inperhaps-overzealous refactoring to reduce code duplication. I'm suitablyembarrassed.Report: <34854939-02d7-f591-5677-ce2994104599@dunslane.net>