Closed criccomini closed 1 year ago
Snowflake's Python sqlalchemy client shows URL connections like this:
snowflake://testuser1:0123456@myorganization-myaccount/testdb/public?warehouse=testwh&role=myrole
Right now, we can't support this because we don't handle the path (testdb/public). We also set "host" instead of "account" for the host.
Per-this doc, host is deprecated in favor of account.
host
account
Snowflake's Python sqlalchemy client shows URL connections like this:
Right now, we can't support this because we don't handle the path (testdb/public). We also set "host" instead of "account" for the host.
Per-this doc,
host
is deprecated in favor ofaccount
.