mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
- Fixed BUG#623285: Crash in quick_range_seq_next() in maria-5.3-dsmrr-cpk
- Relax overly-strict assert added in previous commit - Run generic MRR testsuite for Maria engine, too.
This commit is contained in:
@ -153,7 +153,7 @@ public:
|
||||
- it is adjacent to buffer space we're using
|
||||
- it is on the end towards which we grow.
|
||||
*/
|
||||
DBUG_ASSERT(unused_end > unused_start);
|
||||
DBUG_ASSERT(unused_end >= unused_start);
|
||||
TRASH(unused_start, unused_end - unused_start);
|
||||
if (direction == 1 && end == unused_start)
|
||||
{
|
||||
|
Reference in New Issue
Block a user