Skip to content

Commit 58f5bc6

Browse files
author
Eli Yarson
committed
fix description
1 parent b7b0d29 commit 58f5bc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snowflake_utils/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def single_column_update(
327327
):
328328
"""Updates the value of one column with the value of another column in the same table."""
329329
logging.debug(
330-
f"Swapping the value of {target_column.name} with {new_column.name} in the table {self.name}"
330+
f"Updating the value of {target_column.name} with {new_column.name} in the table {self.name}"
331331
)
332332
cursor.execute(
333333
f"UPDATE {self.schema_}.{self.name} SET {target_column.name} = {new_column.name};"

0 commit comments

Comments
 (0)