Hi,
I try to import a platform gzip dump database on a new platform project with this command :
gunzip < dump/dump.gz | platform db:sql
and this is my error :
ERROR 1114 (HY000) at line 442: The table 'user' is full
But when I check the db space I have :
+----------------+-----------------+--------+
| Allocated disk | Estimated usage | % used |
+----------------+-----------------+--------+
| 4.0 GiB | 250.8 MiB | ~ 6% |
+----------------+-----------------+--------+
The plan of my new project is the same than the source dump project (5Go)
Is seems stop when the table reach 250mo (the same value of innodb_buffer_pool_size, but I haven’t the permission to change this value)
How can I import the dump without this error ?
Thanks
