Skip to content

Commit

Permalink
Change to accommodate new parameter binding method for DB2 SQLAlchemy…
Browse files Browse the repository at this point in the history
… 2.0
  • Loading branch information
mjsqu authored May 2, 2023
1 parent 10237e1 commit 45942ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_db2/sync_strategies/incremental.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def sync_table(mssql_conn, config, catalog_entry, state, columns):
replication_key_metadata
].format

select_sql += f' WHERE "{replication_key_metadata}" >= ? '
select_sql += f' WHERE "{replication_key_metadata}" >= :replication_key_value '

# Handle the offset value
# datetime - use pendulum to alter the value to be passed as a bind parameter
Expand Down

0 comments on commit 45942ac

Please sign in to comment.