c-meier

Results 4 comments of c-meier

Hello @mostafa, Would it be possible to directly send an `ArrayBuffer`? For the moment I do the following: ```js const body = encoding.b64decode(".............") // returns an ArrayBuffer writer.produce({ messages: [{...

Hello @mostafa, My point wasn't about exporting the serdes functionality to JS (I think it works quite well). But that I think it would make more sense for `SCHEMA_TYPE_BYTES` to...

After further tests, any call to `postgres_execute` after a select in a transaction throws the same error: ```python import duckdb con = duckdb.connect(database=':memory:') con.execute("""ATTACH 'dbname=postgresscanner' AS s (TYPE postgres);""") tr...

Same issue if I add at the start ```python con = duckdb.connect(database=':memory:') con.execute("""SET pg_connection_cache = false""") ```