New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON encoding failed: Malformed UTF-8 characters, possibly incorrectly encoded #15628
Comments
|
Would it be possible to have a structure and a set of data to reproduce it please? |
|
I have same bug. Column type binary(16) |
|
@harsh-kukreja @Gaurav-Punjabi @victorphoenix3 @kartik1000 first one who wants to work on it (if it can be reproduced) comments here :) Affects 5.0 ? |
|
Well I'll first try to reproduce @williamdes and then let you know 😄 |
CREATE TABLE `aes` (
`id` int(11) NOT NULL,
`charreg` varchar(255) NOT NULL,
`charbin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`vbin` varbinary(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
INSERT INTO `aes` (`id`, `charreg`, `charbin`, `vbin`) VALUES
(1, 'ded', 'ded', 0x0ded),
(2, 'ded', 'ded', 0x0ded),
(3, 'fef', 'fef', 0x0fef),
(4, '0x7f000001', '0x7f000001', 0x30783766303030303031); |
Signed-off-by: William Desportes <williamdes@wdes.fr>
Signed-off-by: William Desportes <williamdes@wdes.fr>
JSON encoding failed: Malformed UTF-8 characters, possibly incorrectly encodedafter setting display transformation toBinary to IPfor a varbinary column and browsing that table.5.0.0-rc1
The text was updated successfully, but these errors were encountered: