Skip to content

Commit 61907ec

Browse files
authored
Passing the correct formatted cdc table name
1 parent 4c65399 commit 61907ec

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, table_name)
314+
lsn_range = get_lsn_available_range(mssql_conn, cdc_table)
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)