From ab35a4a77b7fcbcf6d4f01947e07e11e49482f67 Mon Sep 17 00:00:00 2001 From: SpaceCondor Date: Thu, 12 Sep 2024 12:40:24 -0400 Subject: [PATCH] Fix FullyQualifiedName --- tap_mssql/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_mssql/client.py b/tap_mssql/client.py index bc828ec..5b39ddf 100644 --- a/tap_mssql/client.py +++ b/tap_mssql/client.py @@ -250,7 +250,7 @@ def change_tracking_current_version(self): @cached_property def minimum_valid_version(self): return t.cast(MSSQLConnector, self.connector).get_minimum_valid_version( - self.fully_qualified_name) + self.fully_qualified_name.table) @cached_property def table_is_change_tracking_enabled(self) -> bool: