feat: add Iceberg read support via source_format - #1100
Merged
Conversation
jjcfrancisco
force-pushed
the
iceberg-read-support
branch
from
August 8, 2026 20:32
1b722c2 to
a937950
Compare
jjcfrancisco
marked this pull request as ready for review
August 8, 2026 20:34
gadomski
requested changes
Aug 11, 2026
gadomski
left a comment
Member
There was a problem hiding this comment.
This is great, thanks! One refactor (using a setter), then some nit-picky suggestions to remove inline comments and a couple other tweaks — thanks for tolerating my nits 🙇🏼!
jjcfrancisco
force-pushed
the
iceberg-read-support
branch
from
August 15, 2026 20:07
531987f to
edc0790
Compare
jjcfrancisco
force-pushed
the
iceberg-read-support
branch
from
August 15, 2026 20:11
edc0790 to
46c619b
Compare
gadomski
self-requested a review
August 17, 2026 11:18
gadomski
approved these changes
Aug 27, 2026
gadomski
left a comment
Member
There was a problem hiding this comment.
Awesome, let's
! Thanks for the contribution!
gadomski
enabled auto-merge (squash)
August 27, 2026 22:52
Merged
gadomski
pushed a commit
that referenced
this pull request
Aug 27, 2026
## 🤖 New release * `stac`: 0.17.4 -> 0.17.5 (✓ API compatible changes) * `stac-duckdb`: 0.3.11 -> 0.3.12 * `stac-io`: 0.3.2 -> 0.3.3 * `stac-server`: 0.5.6 -> 0.5.7 * `stac-validate`: 0.6.12 -> 0.6.13 * `rustac`: 0.2.14 -> 0.2.15 * `stac-extensions`: 0.1.14 -> 0.1.15 <details><summary><i><b>Changelog</b></i></summary><p> ## `stac` <blockquote> ## [0.17.5](stac-v0.17.4...stac-v0.17.5) - 2026-08-27 ### Other - update Cargo.toml dependencies </blockquote> ## `stac-duckdb` <blockquote> ## [0.3.12](stac-duckdb-v0.3.11...stac-duckdb-v0.3.12) - 2026-08-27 ### Added - add Iceberg read support via source_format ([#1100](#1100)) </blockquote> ## `stac-io` <blockquote> ## [0.3.3](stac-io-v0.3.2...stac-io-v0.3.3) - 2026-08-27 ### Other - updated the following local packages: stac </blockquote> ## `stac-server` <blockquote> ## [0.5.7](stac-server-v0.5.6...stac-server-v0.5.7) - 2026-08-27 ### Other - updated the following local packages: stac, stac-duckdb </blockquote> ## `stac-validate` <blockquote> ## [0.6.13](stac-validate-v0.6.12...stac-validate-v0.6.13) - 2026-08-27 ### Other - updated the following local packages: stac </blockquote> ## `rustac` <blockquote> ## [0.2.15](rustac-v0.2.14...rustac-v0.2.15) - 2026-08-27 ### Other - updated the following local packages: stac, stac-duckdb, stac-io, stac-server, stac-validate </blockquote> ## `stac-extensions` <blockquote> ## [0.1.15](stac-extensions-v0.1.14...stac-extensions-v0.1.15) - 2026-08-27 ### Other - updated the following local packages: stac </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: stac-utils-release-bot[bot] <249776822+stac-utils-release-bot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #942
Description
Add support for reading Iceberg via DuckDB. Driven by a new enum to choose between source format Parquet and Iceberg. Some hiccups around default
enable_geoparquet_conversionas Iceberg (v2) declares geometrybinarybut DuckDB transforms to nativegeometryper geoparquet 1.2 (seeapply_source_format_settings).Checklist
prek run --all-files)