Advertisement
eromang

MySQL Bug 13510739

Apr 10th, 2012
3,992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.53 KB | None | 0 0
  1. mysql-test/suite/innodb/t/innodb_bug13510739.test
  2.  
  3. #
  4. # Bug#13510739 63775: SERVER CRASH ON HANDLER READ NEXT AFTER DELETE RECORD.
  5. #
  6.  
  7. -- source include/have_innodb.inc
  8.  
  9. CREATE TABLE bug13510739 (c INTEGER NOT NULL, PRIMARY KEY (c)) ENGINE=INNODB;
  10.  
  11. INSERT INTO bug13510739 VALUES (1), (2), (3), (4);
  12.  
  13. DELETE FROM bug13510739 WHERE c=2;
  14.  
  15. HANDLER bug13510739 OPEN;
  16.  
  17. HANDLER bug13510739 READ `primary` = (2);
  18.  
  19. # this one crashes the server IF the bug IS present
  20. HANDLER bug13510739 READ `primary` NEXT;
  21.  
  22. DROP TABLE bug13510739;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement