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
The type of the payload column in the database table is currently BINARY (in the MyBatis mapper as well as the DDL in the examples), which is a fixed-length data type. This will take up the maximum space for every row, even if the payload is smaller than that. We should use VARBINARY instead.
Workaround: I haven't tried yet, but I think it should be possible to just use VARBINARY in the actual database table, so this is mainly an issue with the examples.
The text was updated successfully, but these errors were encountered:
Steps to reproduce
The type of the
payload
column in the database table is currentlyBINARY
(in the MyBatis mapper as well as the DDL in the examples), which is a fixed-length data type. This will take up the maximum space for every row, even if the payload is smaller than that. We should useVARBINARY
instead.Workaround: I haven't tried yet, but I think it should be possible to just use
VARBINARY
in the actual database table, so this is mainly an issue with the examples.The text was updated successfully, but these errors were encountered: