From 51bc075f524b8b4d44a45e6f3bc16456676b15ef Mon Sep 17 00:00:00 2001 From: Lu Jin <1395856829@qq.com> Date: Mon, 3 Mar 2025 09:57:31 +0800 Subject: [PATCH] Update sqlalchemy_hive.py add comment in get_columns --- pyhive/sqlalchemy_hive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyhive/sqlalchemy_hive.py b/pyhive/sqlalchemy_hive.py index e2244525..46f7547b 100644 --- a/pyhive/sqlalchemy_hive.py +++ b/pyhive/sqlalchemy_hive.py @@ -344,6 +344,7 @@ def get_columns(self, connection, table_name, schema=None, **kw): 'type': coltype, 'nullable': True, 'default': None, + 'comment': _comment, }) return result