Skip to content

Commit

Permalink
Merge branch 'main' into vjeeva/cleanup-useless-commands
Browse files Browse the repository at this point in the history
  • Loading branch information
vjeeva authored Nov 26, 2024
2 parents 2a69199 + e3fc113 commit 2a31bc3
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 67 deletions.
11 changes: 7 additions & 4 deletions pgbelt/util/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,11 +310,14 @@ async def remove_dst_not_valid_constraints(
if (config.tables and table in config.tables) or not config.tables:
queries = queries + f"ALTER TABLE {table} DROP CONSTRAINT {constraint};"

command = ["psql", config.dst.owner_dsn, "-c", f"'{queries}'"]
if queries != "":
command = ["psql", config.dst.owner_dsn, "-c", f"'{queries}'"]

await _execute_subprocess(
command, "Finished removing NOT VALID constraints from the target.", logger
)
await _execute_subprocess(
command, "Finished removing NOT VALID constraints from the target.", logger
)
else:
logger.info("No NOT VALID detected for removal.")


async def apply_target_constraints(config: DbupgradeConfig, logger: Logger) -> None:
Expand Down
Loading

0 comments on commit 2a31bc3

Please sign in to comment.