Details
-
Task
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
Description
According to documentation, max_long_data_size is still present in MariaDB:
This variable was removed in Oracle's MySQL 5.6, and it's functionality was replaced with max_allowed_packet:
http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_max_long_data_size
Is there any reason to keep max_long_data_size in MariaDB? Some users think it should be removed.
I used this to test this:
https://github.com/dveeden/mysql_supersize/blob/master/C/supersize.c
max_allowed_packet can be 1GB
max_long_data_size can be 4GB
So if you want to insert (in chunks) more than 1G you need this variable.