https://bugs.kde.org/show_bug.cgi?id=365354
--- Comment #5 from swatilodh...@gmail.com --- The default max_allowed_packet variable is 16MB. For larger packets, it issues an ER_NET_PACKET_TOO_LARGE error and closes the connection. You may also get a "Lost connection to MySQL server during query" error. ( Select @@global.max_allowed_packet; will provide current value) You could start MySQL server with "mysql --max_allowed_packet=128M. OR in my.ini or ~/.my.cnf, change the following option: [mysqld] max_allowed_packet=128M It is safe to increase the value of this variable because the extra memory is allocated only when needed. -- You are receiving this mail because: You are watching all bug changes.