Siham-IT commented on issue #24031: URL: https://github.com/apache/superset/issues/24031#issuecomment-1555932664
Finally, we solved this problem by following Usiel's solution: https://github.com/Usiel/PyHive/commit/fb692d956758bca9d4aba980a8c418cc5788768d?diff=split by changing those two lines in the sqlalchemy_hive.py file: class HiveDialect(default.DefaultDialect): name = b'hive' driver = b'thrift' to this: class HiveDialect(default.DefaultDialect): name = 'hive' driver = 'thrift' Alternatively, you can simply use the latest version of PyHive, which already contains these changes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
