Skip to content

Commit

Permalink
fix: remove-constraints errors if no NOT VALIDS involved
Browse files Browse the repository at this point in the history
  • Loading branch information
vjeeva committed Nov 25, 2024
1 parent 2d1fec6 commit e66d3c3
Showing 1 changed file with 7 additions and 4 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

0 comments on commit e66d3c3

Please sign in to comment.