Fix glue ingestion issue (#10732)

This commit is contained in:
Milan Bariya 2023-03-23 20:53:43 +05:30 committed by GitHub
parent c24710a811
commit 48cc249b11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -332,7 +332,6 @@ class GlueSource(DatabaseServiceSource):
parsed_string["dataTypeDisplay"] = str(column["Type"])
parsed_string["dataType"] = "UNION"
parsed_string["name"] = column["Name"][:64]
parsed_string["dataTypeDisplay"] = column["Type"]
parsed_string["dataLength"] = parsed_string.get("dataLength", 1)
parsed_string["description"] = column.get("Comment")
yield Column(**parsed_string)