Ducklake support #809
Replies: 4 comments 3 replies
-
DuckLake operates similarly to pg_mooncake v0.1, but has more implemented features, such as schema evolution and compaction. It would be beneficial to have a native columnstore support in pg_duckdb by integrating ducklake. |
Beta Was this translation helpful? Give feedback.
-
This is definitely something we're considering to add support for, but it's not a small feature to implement. |
Beta Was this translation helpful? Give feedback.
-
Hi @JelteF, I've got a working PoC for integrating
I can submit a merge request if we agree this "columnstore" integration is suitable to land on The usage looks like: create table t1(id int) using ducklake;
insert into t1 values(1); -- executed by DuckDB
select * from t1; -- executed by DuckDB |
Beta Was this translation helpful? Give feedback.
-
The PR (#830) has been opened. This initial version supports basic operations such as creating tables, inserting data, and querying DuckLake tables. Features we may want to have on
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
It would be awesome if pg_duckdb could query from a ducklake, now that that's been announced.
Two potential ways to support:
Is this possible?
Beta Was this translation helpful? Give feedback.
All reactions