Skip to content

Commit 6153cc9

Browse files
authored
Passing in a non-escaped table to the lsn lookup function
1 parent d1c4540 commit 6153cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tap_mssql/sync_strategies/log_based.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def sync_table(mssql_conn, config, catalog_entry, state, columns, stream_version
311311
).format(escaped_schema_name, escape_table_name)
312312
)
313313

314-
lsn_range = get_lsn_available_range(mssql_conn, escaped_cdc_table)
314+
lsn_range = get_lsn_available_range(mssql_conn, table_name)
315315

316316
if lsn_range[0] is not None: # Test to see if there are any change records to process
317317
lsn_from = str(lsn_range[0].hex())

0 commit comments

Comments
 (0)