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
This option makes pg_dump, pg_dumpall and pg_restore inject an IF EXISTSclause to each DROP command they emit. (In pg_dumpall, the clause isnot added to individual objects drops, but rather to the CREATE DATABASEcommands, as well as CREATE ROLE and CREATE TABLESPACE.)This allows for a better user dump experience when using --clean in casesome objects do not already exist. Per bug #7873 by Dave Rolsky.Author: Pavel StěhuleReviewed-by: Jeevan Chalke, Álvaro Herrera, Josh Kupershmidt