Skip to content

Conversation

@BrewTestBot
Copy link
Member

Created by brew bump


Created with brew bump-formula-pr.

release notes
# Merged PRs

dolt

  • 9924: Implement dolt_global_tables system table
    This adds support for a new system table, dolt_global_tables.
    It has the following schema:
    CREATE TABLE `dolt_global_tables` (
    `table_name` varchar(65535) NOT NULL,
    `target_ref` varchar(65535),
    `ref_table` varchar(65535),
    `options` varchar(65535),
    PRIMARY KEY (`table_name`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_bin
    
    It's purpose is to allow tables in one branch namespace to alias to tables in another ref, effectively simulating global tables if multiple "downstream" branches have dolt_global_tables point to the "upstream" table.
    table_name can be a pattern just like the entries in the ignore_tables system table.
    target_ref and ref_table, if null, are treated as the current branch and the input table name.
    Currently options must equal "immediate", which means that writes to a global table are seen immediately by other branches. The behavior is identical to writing to another branch via a fully qualified db name.
    This only effects name resolution during queries, and not other ways to interact with branches. This means that these tables are invisible to system procedures such as DOLT_ADD, just like if you tried to add a system table.
    I would love to have improved error messaging when using global tables with DOLT_ADD, show tables, etc, but if the rest of the design is ready I can do that in a follow-up.

go-mysql-server

  • 3250: Replace SubqueryAlias that selects an entire table with TableAlias

Closed Issues

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


@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 Oct 7, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Oct 7, 2025

🤖 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 Oct 7, 2025
@BrewTestBot BrewTestBot enabled auto-merge October 7, 2025 20:54
@BrewTestBot BrewTestBot added this pull request to the merge queue Oct 7, 2025
Merged via the queue into main with commit 67a21bb Oct 7, 2025
22 checks passed
@BrewTestBot BrewTestBot deleted the bump-dolt-1.59.18 branch October 7, 2025 21:04
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.

3 participants