Bug #48339 | Delayed inserts into archive table lead to warnings in error log on debug server | ||
---|---|---|---|
Submitted: | 27 Oct 2009 7:17 | Modified: | 27 Oct 2009 10:38 |
Reporter: | Dmitry Lenev | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Archive storage engine | Severity: | S3 (Non-critical) |
Version: | 5.1.41-bzr, 5.5.0-bzr, 6.0.14-bzr | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[27 Oct 2009 7:17]
Dmitry Lenev
[27 Oct 2009 10:38]
MySQL Verification Team
Thank you for the bug report. Verified as described: miguel@laras:~/dbs/5.1$ bin/mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.1.41-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> CREATE TABLE t2 ( -> auto int, -> fld1 int(6) unsigned zerofill DEFAULT '000000' NOT NULL, -> companynr tinyint(2) unsigned zerofill DEFAULT '00' NOT NULL, -> fld3 char(30) DEFAULT '' NOT NULL, -> fld4 char(35) DEFAULT '' NOT NULL, -> fld5 char(35) DEFAULT '' NOT NULL, -> fld6 char(4) DEFAULT '' NOT NULL -> ) ENGINE=archive; Query OK, 0 rows affected (0.04 sec) mysql> mysql> INSERT DELAYED INTO t2 VALUES (99999,011403,37,'the','delayed','insert',''); Query OK, 1 row affected (0.00 sec) mysql> mysql> INSERT INTO t2 VALUES (100000,sleep(10),00,'after','delayed','insert',''); ERROR 2013 (HY000): Lost connection to MySQL server during query mysql>