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: h2database/h2database
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: issue-4346
Choose a base ref
...
head repository: h2database/h2database
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 14 files changed
  • 5 contributors

Commits on May 25, 2026

  1. Merge pull request #4348 from h2database/issue-4346

    relax maxOpenTransactions restriction for recovery tools
    andreitokar authored May 25, 2026
    Configuration menu
    Copy the full SHA
    c39970f View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2026

  1. Configuration menu
    Copy the full SHA
    793b5b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0f5cd56 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2026

  1. Merge pull request #4358 from andreitokar/issue-4352

    Race between metatable generation and transaction closure
    andreitokar authored Jul 6, 2026
    Configuration menu
    Copy the full SHA
    acc99c2 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2026

  1. Configuration menu
    Copy the full SHA
    a80a7ea View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2026

  1. Modified changelog

    mayank1008-tech committed Jul 9, 2026
    Configuration menu
    Copy the full SHA
    2407f76 View commit details
    Browse the repository at this point in the history
  2. Formatting fix

    mayank1008-tech committed Jul 9, 2026
    Configuration menu
    Copy the full SHA
    bd1e0f4 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2026

  1. Merge pull request #4359 from mayank1008-tech/Fixed-wrong-int-to-doub…

    …le-casting
    
    Fixed casting issue: skipped Index Condition Pushdown optm for lossy conversions
    andreitokar authored Jul 10, 2026
    Configuration menu
    Copy the full SHA
    a5e059b View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2026

  1. Don't discount sortingCost past a genuine column mismatch

    getCostRangeIndex() was giving an index that only matches the leading
    column(s) of an ORDER BY nearly the same sort discount as an index that
    matches the whole order. A real column mismatch stopped the loop early
    but didn't disqualify the coveringCount credit already picked up before
    the mismatch, so two very different indexes could tie in cost even
    though one still needs a real sort within each equality group and the
    other doesn't.
    
    Only disqualify the discount when the index has a different column at
    that position. A direction/null-ordering mismatch on the same column is
    left alone, since that's still usable via a reverse index scan and the
    existing indexes.sql tests rely on the partial credit there.
    
    Fixes #4353
    momonari8 committed Aug 20, 2026
    Configuration menu
    Copy the full SHA
    ff1131a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d37836 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2026

  1. Merge pull request #4378 from momonari8/fix-getcostrangeindex-partial…

    …-sort-match
    
    Fix getCostRangeIndex() giving partial-match indexes an unfair sort discount
    grandinj authored Aug 21, 2026
    Configuration menu
    Copy the full SHA
    c436bf6 View commit details
    Browse the repository at this point in the history
Loading