You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
I am getting an issue where large data fields are cut off to 65535 bytes.
That is because: A BLOB type in MySQL can store up to 65,534 bytes MEDIUMBLOB can store up to 16,777,213 bytes LONGBLOB can store up to 4,294,967,292 bytes
So we should check the size of biggest for a specific field and change accordingly.
I think we should also look at strict mode so users know when there is a potential error.
The text was updated successfully, but these errors were encountered:
Hi @matriphe
I am getting an issue where large data fields are cut off to 65535 bytes.
That is because:
A BLOB type in MySQL can store up to 65,534 bytes
MEDIUMBLOB can store up to 16,777,213 bytes
LONGBLOB can store up to 4,294,967,292 bytes
So we should check the size of biggest for a specific field and change accordingly.
I think we should also look at strict mode so users know when there is a potential error.
The text was updated successfully, but these errors were encountered: