Skip to content

Commit

Permalink
[KYUUBI #6905] PyHive HTTP/HTTPS dialect to use the database name fro…
Browse files Browse the repository at this point in the history
…m url
  • Loading branch information
developster committed Jan 29, 2025
1 parent dd9cc0e commit ec7d462
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/pyhive/sqlalchemy_hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ def create_connect_args(self, url):
"scheme": self.scheme,
"username": url.username or None,
"password": url.password or None,
'database': url.database or 'default',
}
if url.query:
kwargs.update(url.query)
Expand Down

0 comments on commit ec7d462

Please sign in to comment.