Skip to content

Commit

Permalink
fix(eap): Fix statement in manual job
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed Feb 18, 2025
1 parent 2c8e104 commit 2167d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snuba/manual_jobs/recreate_eap_dist_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def execute(self, logger: JobLogger) -> None:
connection.execute(query=statement)

for table_name in tables:
statement = "RENAME TABLE {table_name} TO old_{table_name}, new_{table_name} TO {table_name}"
statement = f"RENAME TABLE {table_name} TO old_{table_name}, new_{table_name} TO {table_name}"
logger.info("Rename table: {statement}")
connection.execute(query=statement)

Expand Down

0 comments on commit 2167d61

Please sign in to comment.