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.release notes
dolt backupto use SQL interfaceFixes dolthub/dolt#7628
The
dolt backupcommand now interfaces through SQL to execute stored proceduredolt_backup. Thedolt_backupprocedure now supports HTTP and HTTPS URLs foradd,restore, andsync-urlparameters as a result. AWS flags are also supported for the above too, but only outside of the sql-server (this goes for both CLI and SQL interfaces).DoltEnv-based subcommand implementations and replaced them with calls to stored proceduredolt_backup.dolt_backupsto includeparamscolumn.dolt_backupprocedure'sadd,restore, andsync-urlparameters. We implicitly use the dialer provided bySession.Provider()to get remote databases.helper/remotesrv-common.bashwithremotesrv_start,remotesrv_stop, andwait_for_portfunctions to testdolt backupagainst HTTP remote server.dolt_backup.backup.batsfromlocal-remote.bashlist so tests run on remote server.--aws-region,--aws-creds-type,--aws-creds-fileand--aws-creds-profiletodolt backup restore.'TestDoltStoredProceduresto use local file system due to limitation onInMem.TmpDir()incompatibility.go-mysql-server
Fixes dolthub/dolt#10113
DELETEqueries withNOT EXISTSsubqueries failed becauseEXISTSexpressions did not set therefsSubqueryflag. This causedDELETEqueries to use a simplified analyzer batch that skipped subquery initialization, leaving subqueries without execution builders.EXISTSexpression building to reusebuildScalar()for*ast.Subquery, ensuring refsSubquery is set.DELETEqueries beforebuildWhere()wraps it.WithTargets()method to update targets without changing the explicit/implicit flag.offsetAssignIndexes()fast path to skip when virtual columns are present, using the full indexing path instead.Closed Issues
dolt backupto SQLView the full release notes at https://github.com/dolthub/dolt/releases/tag/v1.78.5.