We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b0d29 commit 58f5bc6Copy full SHA for 58f5bc6
snowflake_utils/models.py
@@ -327,7 +327,7 @@ def single_column_update(
327
):
328
"""Updates the value of one column with the value of another column in the same table."""
329
logging.debug(
330
- f"Swapping the value of {target_column.name} with {new_column.name} in the table {self.name}"
+ f"Updating the value of {target_column.name} with {new_column.name} in the table {self.name}"
331
)
332
cursor.execute(
333
f"UPDATE {self.schema_}.{self.name} SET {target_column.name} = {new_column.name};"
0 commit comments