The SnowflakeClient.create() method was using host to connect. host is deprecated in favor of account. Additionally, the db/schema in the URL path wasn't being parsed into database and schema args. I fixed all that.
I also updated ls_catalogs since Snowflake doesn't have a information_schema.catalogs view.
The
SnowflakeClient.create()
method was usinghost
to connect.host
is deprecated in favor ofaccount
. Additionally, the db/schema in the URL path wasn't being parsed intodatabase
andschema
args. I fixed all that.I also updated
ls_catalogs
since Snowflake doesn't have ainformation_schema.catalogs
view.Closes #390