Phillip Cloud
Phillip Cloud
This would be nice, PRs welcome!
Check out https://github.com/ibis-project/ibis/pull/5741 for a possible workaround.
Interestingly, if I instead spell `NULL` as `parse_json('null')` then valid JSON is returned: ``` In [20]: [(row,)] = con.execute("select array_construct(1,2,parse_json('null'))") In [21]: row Out[21]: '[\n 1,\n 2,\n null\n]' In [22]:...
I guess this is how the nuance of SQL `NULL` versus the `null` `VARIANT` value manifests.
It seems like `undefined` is being co-opted as the value for SQL's `NULL` inside JSON, which means it's probably hardwired into snowflake itself. In that case, the only way to...
It looks like #1379 would address this issue.
@sfc-gh-mkeller I have done some prototyping with ibis against #1371 and the experience is much improved: arrays, objects and variants are usable with #1371 and extremely difficult to use without....
If anyone comes to the issue wondering how to workaround this, we've implemented full support for decoding array, object and variant types over [in the ibis project and its Snowflake...
How are you running the container? Just because an application is containerized doesn't mean it can run in the browser. Couple of things to note: 1. There's no server running...
Any idea when sqlalchemy 2.0 support might land?