Skip to content

Commit 6598429

Browse files
feat(pg_dump): Add '--if-exists' option for pg_dump (#478)
1 parent 9208919 commit 6598429

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

dbbackup/db/postgresql.py

+3
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ class PgDumpBinaryConnector(PgDumpConnector):
100100
restore_cmd = "pg_restore"
101101
single_transaction = True
102102
drop = True
103+
if_exists = False
103104

104105
def _create_dump(self):
105106
cmd = f"{self.dump_cmd} "
@@ -120,6 +121,8 @@ def _restore_dump(self, dump):
120121
cmd += " --single-transaction"
121122
if self.drop:
122123
cmd += " --clean"
124+
if self.if_exists:
125+
cmd += " --if-exists"
123126
cmd = f"{self.restore_prefix} {cmd} {self.restore_suffix}"
124127
stdout, stderr = self.run_command(cmd, stdin=dump, env=self.restore_env)
125128
return stdout, stderr

docs/databases.rst

+7
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,13 @@ This corresponds to ``--clean`` argument of ``pg_dump`` and ``pg_restore``.
166166

167167
Default: ``True``
168168

169+
IF_EXISTS
170+
~~~~
171+
172+
Use DROP ... IF EXISTS commands to drop objects in ``--clean`` mode of ``pg_dump``.
173+
174+
Default: ``False``
175+
169176
PostGIS
170177
-------
171178

0 commit comments

Comments
 (0)