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: WordPress/sqlite-database-integration
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.7
Choose a base ref
...
head repository: WordPress/sqlite-database-integration
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.8
Choose a head ref
  • 2 commits
  • 6 files changed
  • 1 contributor

Commits on Sep 12, 2025

  1. Implement UPDATE with mutliple tables used (single modified table o…

    …nly) (#238)
    
    This PR implements support for `UPDATE` statements with multiple tables
    used.
    
    It only allows a single modified table, as updating multiple tables at
    once is likely much more complex and may require using temporary tables
    (e.g., in `UPDATE t1, t2 SET t1.id = t2.id, t2.id = t1.id`, we can't
    simply update `t1` first and `t2` after that).
    
    This is what I managed to do today—it may require adding some more
    tests.
    
    Resolves
    #233.
    JanJakes authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    6469203 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ffd7cd7 View commit details
    Browse the repository at this point in the history
Loading