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 bump
Created with
brew bump-formula-pr
.release notes
fixes:
dolt sql --result-format=parquet --file path.sql
prints garbage to stdout dolthub/dolt#8839dolt init
on dolt repo with justconfig.json
This PR changes
dolt init
to allow the dolt repo to still be created when there are no global users, but there are local users in.dolt/config.json
.In order to get to that state you must do
dolt init
fails ifdolt config
is run without global arguments dolthub/dolt#8835go-mysql-server
fixes: BUG: Element types don't match MySQL: query-results have inconsistent types dolthub/go-mysql-server#2847
The processlist maintains a Process struct for a given mysql.Conn, and registers a context.CancelFunc for the running operation when the handler dispatches it. This works for queries today. This PR makes it so we also register CancelFunc callbacks for operations which touch the database but do not put the connection into CommandQuery, such as Prepare and ComInit.
Fix spelling of word "procedure".
Since this is trivial, if it makes it easier for maintainers to make a commit like this themselves, or include as part of something else -- I don't mind.
This adds an external function provider, currently needed for Doltgres to get function creation working. This is intended to be a temporary measure until a more permanent solution is developed (which may involve modifying Dolt's
DatabaseProvider
).vitess
INSERT ... RETURNING
supportPostgres allows
INSERT
statements (and alsoUPDATE
andDELETE
) to specify aRETURNING
clause with select expressions and will then evaluate those expressions against the affected rows and return the results. This change adds initial support for theRETURNING
select expressions so that they can be represented in the AST. (PostgreSQL docs)This is required to examine / manipulate an expression tree involving one of these expressions
drop temporary table ...
Closed Issues
dolt sql --result-format=parquet --file path.sql
prints garbage to stdoutdolt clone
allows cloning a repo with a journal, but only if that repo is in a child directory.