1
0
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:
Sergey Petrunya
2010-09-13 19:45:41 +04:00
parent ac3756a1d0
commit 188de43db1
4 changed files with 373 additions and 1 deletions

View File

@ -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)
{