Fredrik Sannholm
Fredrik Sannholm
I would guess so. But its due to pymongo and i could only reproduce it with invalid creds so one could argue its not a datahub issue and not an...
We started seeing this when using SQLAlchemy `engine.connect()` as a context manager (snowflake-connector-python version 2.7.7): ``` import os from sqlalchemy import create_engine from sqlalchemy.engine.url import URL engine = create_engine( URL(),...
Try the `enable_multiple_grants` option: [Docs](https://registry.terraform.io/providers/Snowflake-Labs/snowflake/latest/docs/resources/database_grant#enable_multiple_grants)
We ran into a similar issue, and the issue for us was that the `enable_multiple_grants` flag was unset in the state, causing the plans to still include the revocation. What...
Alright, then I’m out of ideas, sorry. 😔
This is a very awkward bug indeed! As the grants are recreated, for a short time roles are missing their permission to the database, causing all kinds of issues. Even...
I wonder if this is a due to the same root cause, or if this is a Snowflake specific issue: ``` purchases = conn.table("purchases", schema="staging") venues = conn.table("venues", schema="public") cities...
In this case I need to take into account the renamed column `purchases.join(venues, purchases.VENUE_ID == venues.VENUE_ID).join(cities, ibis._.CITY_x==cities.NAME).execute()`
I had a short discussion about this with Snowflake support, and the behaviour of the query state is indeed "by design". They explained it as the situation that is occurring...