Merged
Conversation
daeho-ro
approved these changes
Feb 28, 2026
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Created by
brew bumpCreated with
brew bump-formula-pr.Details
release notes
dolt_logfor some types of databases.Databases with lots of tags will see a performance improvement on analyzing queries which use
dolt_log.An internal cache has been increased in size. Database servers which regularly run queries against
dolt_logwhich visit more than 10,000 commits will be able to take advantage of the larger cache and will see the performance of those queries improve.dolt table {import,export}Adds JSONL (.jsonl / --file-type jsonl) support for both dolt table export (newline-delimited rows reusing existing JSON serialization) and dolt table import (streaming JSONL reader), with updated CLI help plus unit and Bats integration tests.
ForeignKey.HashOf()This PR optimizes the
ForeignKey.HashOf()function to be about 55% faster by using async.Poolof[]byteinstead ofbytes.Buffer.Unfortunately, this only accounts for like 0.2% of total tppc cpu runtime.
Old:
@database revision delimiter for ORMs and driversFix dolthub/dolt#10382
doltSQL shell bug where the revision database in use would switch tomainafter a SQL statement:@character as delimiter for database revision names and remove@use in normal database names.dolt_statustable to report status in detached heads.@delimiter for database revisions.MySQL ORMs (e.g., Prisma) and drivers have trouble parsing the
/character in database names for their connection URLs. Dolt's database revisions (i.e., branches and commits) system requires the use of/in order to access a database revision. Consequently, this makes revisions inaccessible via ORMs and drivers under certain interfaces, as seen in the issue above.As a result, the
@symbol now serves as a delimiter alias when accessing database revisions in Dolt. Any database-related queries that contain the@delimiter will resolve their strings to the/counterpart. Keep in mind the database in-use will be reflected in the@format. However, no new databases are created or stored, and you can still use the/name version.The following covered side effects exist to keep compatibility with MySQL ORMs and drivers that use their connection URLs' database for internal tables.
⚠️The
@character is no longer supported for normal databases to avoid conflicts with revision databases.⚠️Using the
@version of a revision database name will appear in the same format in dependent functions. This can also affect certain tables likeinformation_schema.tablesindirectly, wheretable_info.table_schemawill resolve to the@name when in use.dolt_show_branch_databasessystem variable. WhenSHOW DATABASES;is called, the current revision database using the@format will omit its/counterpart.information_schemaand other examples can be found in #10431 integration tests.go-mysql-server
plan.Limitfor doltgresgenerate_seriesPR
TopNoptimizations dolthub/go-mysql-server#3432 replacedplan.Limitnodes withplan.TopN, because they are unnecessary for anything in dolt and gms. However, because of the waygenerate_seriesworks withLIMIT, we actually need to keep theplan.Limitat the top.This should have minimal impact on performance
/guard on new databases to Dolt and addsql.ErrWrongDBNameandsql.SQLErrorto automatically add other error metadataParent dolthub/dolt#10431
Closed Issues
View the full release notes at https://github.com/dolthub/dolt/releases/tag/v1.83.0.