Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.0.13
Description
Just been bitten by this:
[root@myserver ~]# setup_help_tables
|
ERROR 1406 (22001) at line 76: Data too long for column 'url' at row 1
|
[root@myserver ~]# cat /path/to/setup_help_tables
|
#!/bin/sh
|
#
|
# Update the help tables, but ensure we don't write to any binlogs
|
# as this may break downstream slaves.
|
#
|
|
(
|
echo "set sql_log_bin = 0;"
|
cat /usr/share/mysql/fill_help_tables.sql
|
) | mysql mysql
|
[root@myserver ~]# rpm -qa | grep MariaDB-server
|
MariaDB-server-10.0.13-1.el6.x86_64
|
[root@myserver ~]#
|
Please look at:
http://bugs.mysql.com/bug.php?id=69564 Please disable writing to binlogs in fill_help_tables.sql
http://bugs.mysql.com/bug.php?id=61520 help-tableformat doesn't match help-files
I reported the first bug to the upstream source over a year ago, and it was fixed some time later. It is frustrating to see the bug reappear here.
Note a big deal but I was looking for online help about multi-source replication commands and this was missing. The patches made by Oracle of course fix this issue so should be easy to apply.
It was apparently fixed in 5.7.5 DMR. We don't merge from 5.7 yet. But I can cherry-pick this fix for you.