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
Under the hood of SQLAlchemy, PickleType is just LargeBlob, which under MySQL is mapped to BLOB. BLOB (in MYSQL) has a max size of 64kiB, rather than MEDIUM_BLOB or LONG_BLOB, which store larger amounts. In other words, it works, just not for very long.
The text was updated successfully, but these errors were encountered:
Under the hood of SQLAlchemy, PickleType is just LargeBlob, which under MySQL is mapped to BLOB. BLOB (in MYSQL) has a max size of 64kiB, rather than MEDIUM_BLOB or LONG_BLOB, which store larger amounts. In other words, it works, just not for very long.
The text was updated successfully, but these errors were encountered: