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
8289: User Contribution Fixup
Revised: #8246
Fixes: #8221
8288: Skip filter iter, with more test fixes
This is the same as #8242 with one change and new test in GMS dolthub/go-mysql-server#2639. The change prevents string comparisons from skipping range.Matches, because the index range iterators can return false positives/prefix matches.
8246: Fixed grammar typos re issue #8221
Solved ./go typos as requested in #8221. This was my first-ever big project contribution, even if it's simple, so hope I followed procedure appropriately :)
go-mysql-server
2637: Adding a test combining duplicate indexes through create table and alter table
Additional test case for dolthub/go-mysql-server#2634
2635: Fix multi-statements in nested triggers
changes:
have different savepoint names
this fixes nested triggers overwriting save points and clearing the same savepoint
handle aliases independently for each statement in trigger blocks
sync up prepend and scope nesting for triggers
wrap applyTrigger rule wraps triggerExecutors over individual statements in BeginEndBlocks
this prevents wrapping triggerExecutors over the wrong statements (not matching event or table)
related: #8213
2634: Adding tests for supporting duplicate secondary indexes
New tests asserting that multiple indexes over the same set of columns can be created on tables. #8274 fixes Dolt for these tests to pass.