Saulius Beinorius
Saulius Beinorius
This is specifically about other types rather than just booleans - there are also integers and even functions that can be sent to the driver that wouldn't work with `snowflake-sqlalchemy`.
I'm not actively working on this as while I can run most tests locally, some are very dependent on the CI setup, so I'm waiting on Snowflake folks to approve...
> It only allows one session per access token, so you would need to create and use one personal access token per process. Why was it designed this way though?...
@fpagliar the problem is with multiple instances of the same code executing concurrently within a web service. My use case at the time involved refreshing, downloading and processing a report,...
Encountered the same issue, though in my case we are using `extra="forbid"` which either makes the model validation fail or the type checks complain: ```python from pydantic import BaseModel, Field...
@imanshafiei540 my issue is the alias priority over the property name confusion - just that with `extra = "forbid"` it highlights how the non-alias name is not expected in the...