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
support optional string arguments in the middle of command line args.
dolt_reset('--hard')
When calling
dolt_reset(--hard)
, we don't properly reload the auto increment value from the global tracker.The bug is a side effect from maintaining auto increment value between branches. We track the last greatest auto increment value across all branches in the session, and dropping a table sets the previous auto_increment value to 0.
The fix is to get the tracker to reload values when resetting.
Some notable behavior here is that a
dolt_reset
over insert will not reset the auto_increment tracker.fixes: dolt_reset(
--hard
) after a drop table reserts the auto_increment counter to 1 dolthub/dolt#8272This is Dolt's counterpart to the following PR:
go-mysql-server
HashInTuple
expressionsWhen hashing tuples, we don't take into account the collation of the individual elements, which results in incorrect comparisons for case insensitive collations.
The fix here was to recursively hash each individual element in a tuple, and hash the slice of hashes.
fixes Sqlalchemy can't reflect schema with foreign key dolthub/dolt#8316
EqualityRangeBuilder
Fix bug in equality range builder where duplicate equality filters to one value would stomp each other.
fixes:
SELECT WHERE (id = x AND id = y)
returns row matchingy
instead of no results dolthub/dolt#8317dolt-side: Conflicting eq lookup bug dolthub/dolt#8322
Closed Issues
SELECT WHERE (id = x AND id = y)
returns row matchingy
instead of no results--hard
) after a drop table reserts the auto_increment counter to 1