Skip to content

dolt 1.79.0#258297

Merged
BrewTestBot merged 2 commits intomainfrom
bump-dolt-1.79.0
Dec 12, 2025
Merged

dolt 1.79.0#258297
BrewTestBot merged 2 commits intomainfrom
bump-dolt-1.79.0

Conversation

@BrewTestBot
Copy link
Contributor

Created by brew bump


Created with brew bump-formula-pr.

Details

release notes
# Merged PRs

dolt

  • 10188: Added JWT support for metrics endpoint authorization.
  • 10184: removed doltgres index implementation
    This change removes doltgres-specific index logic from Dolt and fixes various bugs in index lookup and type conversion logic that were preventing doltgres from using the unified index logic in the first place.
    See: remove doltgres index implementation, various bug fixes dolthub/doltgresql#2093
  • 10159: Add adapters.TableAdapter to handle dolt_status and other table conversions for integrators (a.k.a. Doltgres)
    A recent change to cherry-pick tests required dolt_status to display its staged column as a byte type to overcome MySQL's wire protocol being unable to distinguish Boolean types. This had the side affect of breaking Doltgres. This fix adds Dolt system table adapters for integrators (i.e. Doltgres). adapters.TableAdapter allows for tables in general to be wrapped or overwritten with different implementations.
    • Add adapters.TableAdapter to allow integrator's to overwrite or wrap existing table implementations.
    • Add adapters.DoltTableAdapterRegistry to automatically integrate said table adapters for Dolt system table through an interface available to integrators.
    • Remove explicit SUPERUSER privilege check in dolt_purge_dropped_databases as this should be handled by integrators.
    • Remove authentication handling in dolt_backup for Doltgres; now handled by dolthub/doltgresql#2068.
  • 10097: dolthub/dolt#10030: --filter contribution for dolt diff
    Author @codeaucafe
    Add --filter option to dolt diff, enabling filtering by specific change types and fixing issues from the earlier stalled PR (#3499).

    Users reviewing large diffs often need to focus on specific change types - deletes may need extra scrutiny while inserts are routine. With diffs spanning thousands of rows across multiple tables, grep isn't enough since updates show
    both additions and deletions.

    dolt diff --filter=added      # new tables/rows
    dolt diff --filter=modified   # schema changes, row updates
    dolt diff --filter=renamed    # renamed tables
    dolt diff --filter=dropped    # dropped tables, deleted rows
    dolt diff --filter=removed    # alias for dropped
    dolt diff HEAD~1 --filter=dropped -r sql
    
    Close dolthub/dolt#10030
    Fix #1430
  • 10030: dolt/dolthub#1430: Add --filter option for dolt diff
    There was no action on the original #3499 for issue #1430; the PR was closed ~3 years ago. This PR fixes the open PR comments and updates the implementation details a bit for the RowWriting of filtered rows

go-mysql-server

  • 3336: Return a helpful error message when attempting to use a table function where a non-table function is expected.
    Previously, we would return a "function not found" error, which was confusing and misleading.
    Fixes Using a table function where a non-table function is expected results in confusing "function not found" error dolthub/dolt#10187
  • 3334: Index lookup type conversion issues
    This PR addresses type conversion semantics during key lookups. Some type conversions were insufficient for Doltgres, and some were simply incorrect, notably the behavior when a value being converted was out of range, which could produce incorrect results.
    Other fixes addressed:
  • 3333: fix overflow indexed table access
    There's a bug where filtering by a key that overflows the index column type results in incorrect lookups.
    When converting the key type to the column type, we ignore in OutOfRange results, and use the max/min of the corresponding type. As a result, we perform lookups using the wrong key.
    Changes:
    • sql.Convert() returns if the conversion result is InRange, Overflows, or Underflows.
    • Reduce number of potential ranges by ignoring impossible ones.
    • Fixes HashIn to handle overflowing keys.
    • Added tests for out of range key conversions.
  • 3332: Fix create view error message
    This fixes: need better error message when creating view with conflicting name dolthub/dolt#10177
  • 3331: Introduce notion of conditional equivalence sets in FDS for optimizing outer joins.
    Fixes PRIMARY KEY isn't always used in left joins dolthub/dolt#9520
    In Functional Dependency Analysis, equivalence sets are sets of columns which have been determined to always be equal to each other. During join planning, we walk the join tree, read the join filters, and use these filters to compute equivalence sets which can inform the analysis.
    However, we currently only look at filters on inner joins, because filters on outer joins do not unconditionally imply equivalence.
    For example, in the following join query:
    SELECT * FROM table_one LEFT JOIN table_two ON table_one.one = table_two.two
    It cannot be said that table_one.one and table_two.two have equal values in the output. Any of the following are valid rows in the final output:
    table_one.one table_two.two
    1 1
    1 NULL
    NULL NULL
    In order to record this filter and include it in FDS, we need to tweak the definition of equivalence sets slightly.
    This PR adds conditional equivalence sets, which consist of two column sets: conditional columns and equivalent columns. A conditional equivalence set should be interpreted as: "IF at least one of the columns in conditional is not null, THEN all of the columns in equivalent are equal." This matches the behavior of left joins.
    We could implement regular equivalence sets as conditional equivalence sets with an empty conditional, but this PR keeps them separate to avoid complicating existing logic.
    It's worth noting that we deliberately don't check if the columns are non-null at the time that the equivalence set is created. This is deliberate, because when equivalence sets are inherited by parent nodes, this can change for outer joins, and when evaluating whether a join can be implemented as a lookup, we analyze the child node using filters and equivalence sets from the parent, but with the child's nullness information.
    Thanks to Angela, who worked on the investigation with me, wrote the original version of this feature (Add partial equivs to left join functional dependencies if right-side column is not nullable dolthub/go-mysql-server#3288), and wrote the plan test for this PR.

vitess

  • 445: /go/vt/sqlparser: support float8
  • 444: go/mysql: server.go: Add a callback on Handler, ConnectionAuthenticated, which is called immediately after the connection is authenticated.
    This allows a server implementation to know the authenticated user without waiting for the first command interactions, such as ComQuery or ComInitDB.

Closed Issues

  • 10174: Does Dolt Support Minio Storage for Remotes and Backups?
  • 10059: Incorrect collation returned by case expression
  • 10187: Using a table function where a non-table function is expected results in confusing "function not found" error
  • 10157: Unexpected ANTI JOIN Result
  • 1430: dolt diff should support --filter option
  • 10136: DOLT_BACKUP Restore Requires Existing Database Context and Service Restart to Recognize New Database

Note on Incompatibility

  • Dolt 1.79.0 has support for new sql-server config parameters. Due to the strict yaml parser used for server configuration, a 1.79.0 config will not work with older versions of Dolt.

View the full release notes at https://github.com/dolthub/dolt/releases/tag/v1.79.0.


@github-actions github-actions bot added go Go use is a significant feature of the PR or issue bump-formula-pr PR was created using `brew bump-formula-pr` icu4c ICU use is a significant feature of the PR or issue labels Dec 12, 2025
@github-actions
Copy link
Contributor

🤖 An automated task has requested bottles to be published to this PR.

Caution

Please do not push to this PR branch before the bottle commits have been pushed, as this results in a state that is difficult to recover from. If you need to resolve a merge conflict, please use a merge commit. Do not force-push to this PR branch.

@github-actions github-actions bot added the CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. label Dec 12, 2025
@BrewTestBot BrewTestBot added this pull request to the merge queue Dec 12, 2025
Merged via the queue into main with commit 32878f1 Dec 12, 2025
22 checks passed
@BrewTestBot BrewTestBot deleted the bump-dolt-1.79.0 branch December 12, 2025 04:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bump-formula-pr PR was created using `brew bump-formula-pr` CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. go Go use is a significant feature of the PR or issue icu4c ICU use is a significant feature of the PR or issue

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants