Bug #14153 | ARCHIVE engine doesn't support INSERT DELAYED | ||
---|---|---|---|
Submitted: | 19 Oct 2005 21:36 | Modified: | 23 Oct 2005 2:19 |
Reporter: | Gleb Paharenko | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 4.1.14/BK source | OS: | Linux (Linux) |
Assigned to: | Paul DuBois | CPU Architecture: | Any |
[19 Oct 2005 21:36]
Gleb Paharenko
[19 Oct 2005 21:54]
MySQL Verification Team
miguel@hegel:~/dbs/4.1> bin/mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 4.1.16-debug-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create table ar(a int) engine=archive; Query OK, 0 rows affected (0.10 sec) mysql> show create table ar; +-------+----------------------------------------------------------------------------------------+ | Table | Create Table | +-------+----------------------------------------------------------------------------------------+ | ar | CREATE TABLE `ar` ( `a` int(11) default NULL ) ENGINE=ARCHIVE DEFAULT CHARSET=latin1 | +-------+----------------------------------------------------------------------------------------+ 1 row in set (0.04 sec) mysql> insert delayed into ar set a=1; ERROR 1031 (HY000): Table storage engine for 'ar' doesn't have this option mysql> Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 5.0.15-debug Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> drop table ar; Query OK, 0 rows affected (0.01 sec) mysql> create table ar(a int) engine=archive; Query OK, 0 rows affected (0.06 sec) mysql> show create table ar; +-------+----------------------------------------------------------------------------------------+ | Table | Create Table | +-------+----------------------------------------------------------------------------------------+ | ar | CREATE TABLE `ar` ( `a` int(11) default NULL ) ENGINE=ARCHIVE DEFAULT CHARSET=latin1 | +-------+----------------------------------------------------------------------------------------+ 1 row in set (0.03 sec) mysql> insert delayed into ar set a=1; Query OK, 1 row affected (0.00 sec) mysql>
[21 Oct 2005 17:30]
Brian Aker
Insert delayed was added for 5.0. We need to document this.
[23 Oct 2005 2:19]
Paul DuBois
I removed ARCHIVE from the list of supported engines for DELAYED in the 4.1 manual.