J'importe un vidage MySQL et j'obtiens l'erreur suivante.
$ mysql foo < foo.sql
ERROR 1153 (08S01) at line 96: Got a packet bigger than 'max_allowed_packet' bytes
Apparemment, il y a des pièces jointes dans la base de données, ce qui fait de très grandes insertions.
C'est sur ma machine locale, un Mac avec MySQL 5 installé à partir du package MySQL.
Où dois-je changer max_allowed_packet
pour pouvoir importer le vidage?
Y a-t-il autre chose que je devrais régler?
La simple exécution a mysql --max_allowed_packet=32M …
entraîné la même erreur.