I have the following InnoDB configuration option in my.cnf:
innodb_file_per_table = 1
I'm populating a table with a few million rows, but after spending a few minutes inserting, MySQL produces the following error:
ERROR 1114 (HY000): The table is full
The .ibd filesize is exactly 629145600 bytes (yep, 600*2^20). The partition containing the MySQL data is not full.
Can anyone explain what's going on here?