https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18336 --- Comment #48 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 71337 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=71337&action=edit Bug 18336: Shift *TEXT columns size Because of the 3-byte vs. 4-byte char size change in utf8mb4, altering a column's encoding from utf8 into utf8mb4 results in this changes: TEXT => MEDIUMTEXT MEDIUMTEXT => LONGTEXT The column size in the rows (the text itself goes to a separate object storage) shifts by 1 byte, because all chars are shifted in bytes size too, so there needs to be room for the byte-count in the column. This is a debatable change, but the path needs to be included along with the rest of the patchset for consistency. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.