diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-11-18 22:25:52 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-11-18 22:25:52 +0100 |
commit | f7c50bf10f2738a633d8399b8fd97d7cfc665bef (patch) | |
tree | 8fb7d752b59a0413fe83ee47ae073f5deb8372ee /scripts/mysql_system_tables_fix.sql | |
parent | ea04a8cfda4963143e3fde38d5dec913c02d35ee (diff) | |
download | mariadb-git-f7c50bf10f2738a633d8399b8fd97d7cfc665bef.tar.gz |
MDEV-6779 Help file problems in 10.0.13
update mysql_system_tables_fix.sql to match mysql_system_tables.sql
Diffstat (limited to 'scripts/mysql_system_tables_fix.sql')
-rw-r--r-- | scripts/mysql_system_tables_fix.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/mysql_system_tables_fix.sql b/scripts/mysql_system_tables_fix.sql index 9e74eed4298..b81eb4e8e40 100644 --- a/scripts/mysql_system_tables_fix.sql +++ b/scripts/mysql_system_tables_fix.sql @@ -702,3 +702,10 @@ alter table tables_priv modify Grantor char(141) COLLATE utf8_bin not null flush privileges; +-- +-- Upgrade help tables +-- + +ALTER TABLE help_category MODIFY url TEXT NOT NULL; +ALTER TABLE help_topic MODIFY url TEXT NOT NULL; + |