From f53d5349efae2094faa9cc235a0999964fddf090 Mon Sep 17 00:00:00 2001 From: Abhishek Pandey Date: Mon, 20 Feb 2023 20:07:47 +0530 Subject: [PATCH] null-type-column-handling-added (#10234) --- .../metadata/ingestion/source/database/sql_column_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py b/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py index 2169f3f734a..ef147cd78a1 100644 --- a/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py +++ b/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py @@ -219,7 +219,7 @@ class SqlColumnHandlerMixin: precision = ColumnTypeParser.check_col_precision( col_type, column["type"] ) - if col_type == "NULL" or col_type is None: + if col_type is None: col_type = DataType.VARCHAR.name data_type_display = col_type.lower() logger.warning(