Skip to content

Commit

Permalink
Merge branch 'main' into feat/log-stream-sync-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Payne authored May 23, 2023
2 parents 6b0cd8b + 9f1a013 commit 1518708
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repos:
)$
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.267
rev: v0.0.269
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down Expand Up @@ -69,6 +69,6 @@ repos:
)$
- repo: https://github.com/python-poetry/poetry
rev: 1.4.0
rev: 1.5.0
hooks:
- id: poetry-check
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion singer_sdk/sinks/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def activate_version(self, new_version: int) -> None:
)

query = sqlalchemy.text(
f"UPDATE {self.full_table_name}\n" # noqa: S608
f"UPDATE {self.full_table_name}\n"
f"SET {self.soft_delete_column_name} = :deletedate \n"
f"WHERE {self.version_column_name} < :version \n"
f" AND {self.soft_delete_column_name} IS NULL\n",
Expand Down

0 comments on commit 1518708

Please sign in to comment.