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.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
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. |
Just been bitten by this: {noformat} [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 ~]# {noformat} 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. |
Issue Type | Task [ 3 ] | Bug [ 1 ] |
Affects Version/s | 10.0.13 [ 16300 ] |
Labels | upstream |
Fix Version/s | 10.0 [ 16000 ] |
Priority | Minor [ 4 ] | Major [ 3 ] |
Assignee | Sergei Golubchik [ serg ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Fix Version/s | 10.0.15 [ 17300 ] | |
Fix Version/s | 10.0 [ 16000 ] |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Component/s | Scripts [ 11002 ] | |
Component/s | OTHER [ 10125 ] |
Workflow | MariaDB v2 [ 55016 ] | MariaDB v3 [ 65325 ] |
Workflow | MariaDB v3 [ 65325 ] | MariaDB v4 [ 148250 ] |
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.