Bug #9400 | Errors deleting rows from heap tables with btree indexes | ||
---|---|---|---|
Submitted: | 25 Mar 2005 7:42 | Modified: | 25 Apr 2005 16:23 |
Reporter: | Sergey Naletov | Email Updates: | |
Status: | No Feedback | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 4.1.10a | OS: | |
Assigned to: | CPU Architecture: | Any |
[25 Mar 2005 7:42]
Sergey Naletov
[25 Mar 2005 15:28]
MySQL Verification Team
Hi, Thank you for the report, but I wasn't able reproduce it with my test data using 4.1.11-debug-log: mysql> insert into visits values -> (9999999,0,1,2,'normal'), -> (9999999,0,1,2,'normal'); Query OK, 2 rows affected (0.05 sec) Records: 2 Duplicates: 0 Warnings: 0 mysql> SELECT COUNT(*) FROM visits where ttime<UNIX_TIMESTAMP()-21600; +----------+ | COUNT(*) | +----------+ | 2 | +----------+ 1 row in set (0.06 sec) mysql> DELETE FROM visits where ttime<UNIX_TIMESTAMP()-21600; Query OK, 2 rows affected (0.00 sec) mysql> SELECT COUNT(*) FROM visits where ttime<UNIX_TIMESTAMP()-21600; +----------+ | COUNT(*) | +----------+ | 0 | +----------+ 1 row in set (0.00 sec) Can you provide some data for testing?
[25 Mar 2005 16:23]
Sergey Naletov
Hmm... Very strange. I also couldnt reproduce this on another database with the same data. Even when I have copied full database with data (where bug appears) to new database - I dont see this bug on new database. On old database I still have this bug. Looks like this bug appears on high load or something like that and somehow corrupt particular database files. Now I have no idea how to reproduce it...
[25 Apr 2005 23:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".