Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: feldera/feldera
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.317.0
Choose a base ref
...
head repository: feldera/feldera
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.318.0
Choose a head ref
  • 3 commits
  • 14 files changed
  • 4 contributors

Commits on Jul 6, 2026

  1. adapters: support column mapping in follow and CDC mode for delta input

    The follow/CDC paths read each commit's data file as raw Parquet,
    bypassing delta-rs's scan. That bypass also skips delta-rs's column-mapping
    translation, so a table with delta.columnMapping.mode = 'name' or 'id'
    read wrong or missing columns: on disk the data lives under physical col-<uuid>
    names while the SQL schema uses logical names.
    
    Force the physical schema onto the reader, then rename columns back to their
    logical names after reading. Each commit's data is read against the schema
    active when it was written; advance_schema adopts a new schema whenever a
    commit carries a metaData action.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    Signed-off-by: Swanand Mulay <73115739+swanandx@users.noreply.github.com>
    swanandx and claude committed Jul 6, 2026
    Configuration menu
    Copy the full SHA
    54bc3de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eba81f4 View commit details
    Browse the repository at this point in the history
  3. [SQL] Generalize optimization rule for MAX(CASE WHEN expression THEN …

    …1 END)
    
    Signed-off-by: Mihai Budiu <mbudiu@feldera.com>
    mihaibudiu committed Jul 6, 2026
    Configuration menu
    Copy the full SHA
    914012b View commit details
    Browse the repository at this point in the history
Loading