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
dolt show
This PR does a couple things:
dolt show #address
can now display the internals of a ProllyTreeMap message (typically used for storing indexes). Previously, onlysplunk
/noms show
could do this.dolt show
andsplunk
can now display the contents of a Blob message.dolt show
orsplunk
to explore the whole tree.STAGED
as commit hashThis PR adds support for
STAGED
as a commit_hash when filtering dolt diff system tables.fixes for Should be able to use "STAGED" as commits in
dolt_commit_diff_[tablename]
dolthub/dolt#7978Error in hasMany effectively prevented writes after moving database to archives.
There was an issue merging [prolly] Float keyRange increment bug dolthub/dolt#8025 ontop of a revert. Enable the key iteration optimization.
This PR adds custom Dolt execution operators for lookup joins. When building an execution plan, we try to replace
joinIter
with a Dolt equivalent that inlines the key building and map get. This is a lot faster than repeatedly building the secondary iterator and materializing sql.Rows in-between lookups.The main downside is that this PR hoists filters in join children to after materializing lookup join rows.
This brings
index_join
from 5.18 ms/query to 2.64 ms/q, which will be about 2.0x MySQL's latency.This PR falls short of some aspiration goals:
val.Tuple
yet. There are edge case queries that might be dramatically slower because of this. To fix this, we could need to convertsql.Expression
filters into a format that we could execute onval.Tuple
KV pairs.Safety comments:
prolly.Encoding
compatibleThere are extra tests here: custom row exec dolthub/go-mysql-server#2593
go-mysql-server
binlog_expire_logs_seconds
system variableMySQL
@@binlog_expire_logs_seconds
reference docsMissed this table in my original PR
Additions for custom row operators on Dolt side: [rowexec] dolt-side lookup execution operator dolthub/dolt#8072
Closed Issues
dolt_commit_diff_[tablename]