diff --git a/metadata-ingestion/docs/sources/hive/hive_recipe.yml b/metadata-ingestion/docs/sources/hive/hive_recipe.yml index 091f161936966f..f84659016dc451 100644 --- a/metadata-ingestion/docs/sources/hive/hive_recipe.yml +++ b/metadata-ingestion/docs/sources/hive/hive_recipe.yml @@ -59,8 +59,8 @@ source: type: hive config: host_port: :443 - username: token - password: + username: token / username + password: / password scheme: 'databricks+pyhive' options: diff --git a/metadata-ingestion/src/datahub/ingestion/source/sql/hive.py b/metadata-ingestion/src/datahub/ingestion/source/sql/hive.py index f1a44989d1c5b5..40bb9b07bb6743 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/sql/hive.py +++ b/metadata-ingestion/src/datahub/ingestion/source/sql/hive.py @@ -79,6 +79,7 @@ def dbapi_get_columns_patched(self, connection, table_name, schema=None, **kw): "nullable": True, "default": None, "full_type": orig_col_type, # pass it through + "comment": _comment, } ) return result