Replies: 3 comments
-
|
Any plans on this? |
Beta Was this translation helpful? Give feedback.
-
|
this is a very big pain, ideally if you insert new data, the schema should add those columns automatically |
Beta Was this translation helpful? Give feedback.
-
|
Yeah, I’ve been running into this from the downstream side too. I’m playing with a small DuckLake CDC layer here: https://github.com// It doesn’t do automatic schema evolution, but it tries to make schema changes easier to react to: consumers stop at the schema boundary, inspect the diff, migrate their sink, then continue on the new shape. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Both Snowflake and Databricks schema evolution support automatic schema evolution when loading files into a table with a
COPYstatement. As far as I can tell in ducklake you need to figure out yourself which columns you need to add, delete, rename or promote and run theALTERstatements yourself. It would be hugely useful to have this automated to support ELT patterns.Beta Was this translation helpful? Give feedback.
All reactions