You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 just config.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
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's DatabaseProvider).
vitess
398: Add select expressions for the Postgres INSERT ... RETURNING support
Postgres allows INSERT statements (and also UPDATE and DELETE) to specify a RETURNING clause with select expressions and will then evaluate those expressions against the affected rows and return the results. This change adds initial support for the RETURNING select expressions so that they can be represented in the AST. (PostgreSQL docs)