Comment 6 for bug 1267732

Revision history for this message
Jericho Rivera (jericho-rivera) wrote :

Just to complete the tests, tested on latest PS 5.1 and upstream version but neither one affected.
max_heap_table_size and tmp_table_size both at 16M.

Server version: 5.1.73rel14.11 Percona Server with XtraDB (GPL), Release rel14.11, Revision 603

mysql> call load_test;
ERROR 1114 (HY000): The table 'test' is full
mysql> select count(*) from test;
+----------+
| count(*) |
+----------+
| 2032 |
+----------+
1 row in set (0.00 sec)

mysql> delete from test limit 400;
Query OK, 400 rows affected (0.00 sec)

mysql> select count(*) from test;
+----------+
| count(*) |
+----------+
| 1632 |
+----------+
1 row in set (0.00 sec)

mysql> insert into test values ("a"*8192);
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql> select count(*) from test;
+----------+
| count(*) |
+----------+
| 1633 |
+----------+
1 row in set (0.00 sec)