From e640db319222ed8592942c36aa805ee787e62ef3 Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Mon, 27 Jun 2022 00:47:33 +0530 Subject: [PATCH] Fix #5525: Fixed Bigquery Comment Issue (#5616) --- .../src/metadata/ingestion/source/database/sql_column_handler.py | 1 + 1 file changed, 1 insertion(+) 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 83c58d40aa2..2a8001313f4 100644 --- a/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py +++ b/ingestion/src/metadata/ingestion/source/database/sql_column_handler.py @@ -116,6 +116,7 @@ class SqlColumnHandlerMixin: parsed_string["dataLength"] = self._check_col_length( parsed_string["dataType"], column["type"] ) + parsed_string["description"] = column.get("comment") if column["raw_data_type"] == "array": array_data_type_display = ( repr(column["type"])