From 0d6fcddce37c0f85fee1f32d451b251802579abf Mon Sep 17 00:00:00 2001 From: Marcin Wojciechowski Date: Fri, 5 Apr 2024 18:17:15 +0100 Subject: [PATCH] Addressing issue #74 (#75) Addressing issue : bit data type is casted as string and results in an error #74 --- tap_mysql/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tap_mysql/client.py b/tap_mysql/client.py index 777b848..70d35b8 100644 --- a/tap_mysql/client.py +++ b/tap_mysql/client.py @@ -173,6 +173,7 @@ def sdk_typing_object( "char": th.StringType(), "bool": th.BooleanType(), "variant": th.StringType(), + "bit": th.IntegerType(), } if isinstance(from_type, str): type_name = from_type