pg_duckdb
pg_duckdb copied to clipboard
DuckDB-powered Postgres for high performance apps & analytics.
https://duckdb.org/docs/extensions/azure * Azure is its own extension, so this needs to be added * Authentication is a bit bespoke - https://duckdb.org/docs/extensions/azure#authentication * There is both `az://` and `abfss://` protocols
If we create this table set up: ``` postgres=# select * from "s.tbl"; a ----- abc (1 row) postgres=# select * from s.tbl; a ----- cde (1 row) ``` We...
We should enable COPY command to be able to write to remote S3 storage. Copying TO remote storage should be possible by passing query directly to duckdb execution while in...
When obtaining metadata for a partitioned table, several tables are returned - the parent and then its children. Support scanning each table in turn (or in parallel). For now, we...
How to compile pg_duckdb in CentOS 7+PG16 environment?
The issue in #119 was already fixed by #130, but this PR adds a test for it. Fixes #119
Hello, I am very excited by the prospect of using this extension and combining two amazing projects! That said, during experimentation with [duckdb_fdw](https://github.com/alitrack/duckdb_fdw), I discovered that using multiple concurrent connections...
This adds support for forwarding `EXPLAIN ANALYZE` to DuckDB. A useful side-effect for debugging issues of running `EXPLAIN ANALYZE`, is that it shows the actual query that was executed in...