Nick Crews
Nick Crews
The only workaround that I have been doing is to use a duckdb backend, and then use ATTACH ... (TYPE POSTGRES), and then proxy all my queries through this duckdb...
Or, cast all the uuid columns to strings on the backend as a finale step before materializing.
Related: Duckdb, when materializing a uuid column with .arrow(), [returns an array of pyarrow strings](https://github.com/duckdb/duckdb/issues/17842). I THINK they consider this a bug, and hopefully will change this behavior to return...
I did get a custom uuid type working: ```python import uuid import duckdb import pandas as pd import pyarrow as pa print(pa.__version__) print(duckdb.__version__) byte_list = [uuid.uuid4().bytes, uuid.uuid4().bytes] class UUIDType(pa.ExtensionType): def...
Well, for duckdb I tried the implementation of `SET arrow_losslss_conversion = true` as a pre-execute hook before every execution, and this DOES have side effects, in particular when we execute...
I think the use @OlivierBinette describes here is nearly the exact same use case that I had in https://github.com/ibis-project/ibis/issues/6636. I also started #7762 if anyone wants to chime in there....
I am in a very similar boat with needing to pass off tables back and forth with Splink. @OlivierBinette Are you sure that you actually need to be able to...
Just tried configuring using an env variable per the docs: ``` docker run -d --name noco -v "$(pwd)"/nocodb:/usr/app/data/ -p 8080:8080 -e NC_DB="pg://us-west-2.aws.neon.tech?u=root&p=password&d=d1&sslmode=require" -e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" nocodb/nocodb:0.255.2 ``` note that this is...
I use .to_html() to save multiple charts into a template that holds multiple charts in different tabs, so it would be great for me if we could keep it around!
If you submit a PR that adds the names to the csv file (following [this format](https://github.com/carltonnorthern/nicknames/blob/2ec47ddd35ea29168df3df95f33ab0e746951d7e/normalize.py#L1-L14)), then absolutely, we would really appreciate the contribution! I just don't want to do...