null-type-column-handling-added (#10234)

This commit is contained in:
Abhishek Pandey 2023-02-20 20:07:47 +05:30 committed by GitHub
parent 7a59bc7676
commit f53d5349ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(