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
Functions did their entire overload resolution during
Eval
, meaning if a function was called 1000 times, then we did overload resolution 1000 times for the exact same function. This changes it so that we only do it once. This optimization was made while investigating our performance benchmarks.Of note, errors found during overload resolution are stashed for later. This ensures that other steps in the pipeline retain their error priority. Previously, when this was all done in
Eval
, stashing wasn't needed.Fixes disabling the session after executing the request dolthub/doltgresql#348
Idle connections were timing out in 60s before this change.
This change reworks how the data dir, config file and related initialization values are loaded. The main effect is that it's now possible to run
doltgres
without a config.yaml file.The sever config is now resolved in this order
The data-dir for this config is then overridden as necessary with a similar pattern:
DOLTGRES_DATA_DIR
This PR has the tests. The fix for the behavior is in Made drop table work with search path dolthub/dolt#7952
Created by the Release workflow to update DoltgreSQL's version
Closed Issues