17 Mar
2018
17 Mar
'18
2:31 p.m.
at git commit: https://github.com/MariaDB/server/commit/fdc47792354c820aa4a8542d7c00d434424... instead of: + return n < 256 ? 1 : n < 65536 ? 2 : n < 16777216 ? 3 : 4; use: + return n < 256*-1* ? 1 : n < 65536*-1* ? 2 : n < 16777216*-1* ? 3 : 4; since length is reduced by one: https://github.com/MariaDB/server/commit/fdc47792354c820aa4a8542d7c00d434424...