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 bumpCreated with
brew bump-formula-pr.release notes
This fixes a customer issue that was causing
Error 1105 (HY000): result max1Row iterator returned more than one rowWe can probably do better than this: we could tweak it so that adding a FD key on a non-unique index instead adds an implication that the non-unique index key determines the primary key.
But this is a simpler fix in the meantime that makes us more correct.
Multi-alters are executed with
Blockiterators. Block error handling always assumed the calling context was a stored procedure, which doesn't appear to be true in this case. Rather than create a new iterator, error handling noops to the default error if a proc reference is not found.fixes: SIGSEGV panic when modifying the schema for foreign keys dolthub/dolt#8917
fixes: declare variables does not work within triggers dolthub/dolt#8913
This is the GMS side of an issue to properly display diffs when the autoincrement counter on a table changes.
We add a new interface,
AutoIncrementGetterfor tables that store AutoIncrement info, even if they can't generate autoincremented ids (because they're immutable snapshots of a table with an autoincrement column)This adds the functions
regexp_instrandregexp_substr. This also references the new interface functions in:This is for the following issue:
Closed Issues