summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-11-10 11:23:52 -0800
committerjimw@mysql.com <>2005-11-10 11:23:52 -0800
commit56a56a789a9c47c14ce9765522602965658da0c5 (patch)
tree4359d750e2b78df04281b58c2e6ddb77d5bb9aa9 /scripts
parent27a66707471cafecf0b80de8c80ea621d60f3fec (diff)
parent6894cbc9ebace4839dd1070479df423cf29a5bac (diff)
downloadmariadb-git-56a56a789a9c47c14ce9765522602965658da0c5.tar.gz
Merge mysql.com:/home/jimw/my/mysql-4.1-14469
into mysql.com:/home/jimw/my/mysql-4.1-clean
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_fix_privilege_tables.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_fix_privilege_tables.sql b/scripts/mysql_fix_privilege_tables.sql
index 0d7d32fd6a9..a72bd2799aa 100644
--- a/scripts/mysql_fix_privilege_tables.sql
+++ b/scripts/mysql_fix_privilege_tables.sql
@@ -29,7 +29,7 @@ ALTER TABLE user add Grant_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,a
ALTER TABLE host add Grant_priv enum('N','Y') NOT NULL,add References_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,add Index_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,add Alter_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL;
ALTER TABLE db add Grant_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,add References_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,add Index_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL,add Alter_priv enum('N','Y') COLLATE utf8_general_ci NOT NULL;
---- Fix privileges for old tables
+-- Fix privileges for old tables
UPDATE user SET Grant_priv=File_priv,References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv WHERE @hadGrantPriv = 0;
UPDATE db SET References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv WHERE @hadGrantPriv = 0;
UPDATE host SET References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv WHERE @hadGrantPriv = 0;