Merged PRs
dolt
- 8860: Add pointer for checking super user perms for backup restore for doltgres
- 8859: go: remotestorage: Rework how dictionary fetching and dictionary cache is populated.
- 8847: Added an extension point for doltgres to lookup values in the dolt_ignore table
- 8842: move status messages from parquet to stderr
fixes: #8839 - 8838: allow
dolt init
on dolt repo with justconfig.json
This PR changesdolt 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 dorelated: #8835mkdir .dolt dolt config --add user.email <email> dolt config --add user.name <name>
- 8821: New skipped test for bug merging roots with overlapping index defs
go-mysql-server
- 2853: [expression] coalesce should cast return values
fixes: dolthub/go-mysql-server#2847 - 2850: processlist: Allow for killing the context associated with non-query operations like SetDB and Prepare.
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. - 2849: PlanBuilder: Fix spelling in error message s/prodecure/procedure
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. - 2845: Added external function provider
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'sDatabaseProvider
).
vitess
- 398: Add select expressions for the Postgres
INSERT ... RETURNING
support
Postgres allowsINSERT
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) - 397: /.github/workflows: bump hosted runners
- 396: Implemented WalkableSQLNode for InjectedExpr
This is required to examine / manipulate an expression tree involving one of these expressions - 395: syntax for
drop temporary table ...