AttributeError after upgrading ibis #10068
Answered
by
gforsyth
vmsaipreeth
asked this question in
Q&A
-
Hi Team, Below is the sample code where we connect to trino via ibis and fetch data.
The above code works fine with Recently, we upgraded to Trino version: Please let me know if anything got changed here. TIA! |
Beta Was this translation helpful? Give feedback.
Answered by
gforsyth
Sep 9, 2024
Replies: 1 comment 3 replies
-
This is fixed on from trino.auth import BasicAuthentication
conn = ibis.trino.connect(
host=‘example host’,
user=‘username’,
port=port,
auth=BasicAuthentication("username", "password"),
http_schema=‘https’,
database=‘database’,
schema=‘schema’) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
cpcloud
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is fixed on
main
and should be released in 9.5.0 any day now, but as a workaround, you can do: