Eyðun Nielsen

Results 4 comments of Eyðun Nielsen

``` proxyReqBodyDecorator: function(bodyContent, req) { return encodeURIallPropertiesByReflection(bodyContent); }, ``` and somewhere ``` encodeURIallPropertiesByReflection: (bodyContent) => { if(Reflect.ownKeys(bodyContent)){ const keys = Reflect.ownKeys(bodyContent); for (const idx in keys) { Reflect.set(bodyContent, keys[idx], encodeURIComponent(bodyContent[keys[idx]]));...

It is fixed: https://github.com/hugohomesquita/htmx-jetbrains/issues/6

Here is [an article that explains reading parquet files with duckdb_fdw](https://medium.com/@ahuarte/loading-parquet-in-postgresql-via-duckdb-testing-queries-and-exploring-the-core-1d667ae67dc2)

Is the /tmp/duck.db created with version `1.0.0`? The commands above work for me, if I also create the `t1_duckdb` table with: `SELECT duckdb_execute('duckdb_server','CREATE TABLE t1_duckdb (a integer, b text);');` The...