duckdb / duckdb_iceberg

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Difference between two snapshots

marsupialtail opened this issue · comments

Hello, is it possible to efficiently support querying only the difference between two snapshots?

E.g. in Spark you can do:
spark.read()
.format("iceberg")
.option("start-snapshot-id", "10963874102873")
.option("end-snapshot-id", "63874143573109")
.load("path/to/table")

@marsupialtail Not yet, definitely something worth looking into though

happy to contribute