summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <paul@ice.snake.net>2004-07-18 22:16:42 -0500
committerunknown <paul@ice.snake.net>2004-07-18 22:16:42 -0500
commit9fc19ce8f507c89eed604f9968a897b37b0b065f (patch)
tree4cc3d52a710c4942abf85091e24d2a516347c92d /scripts
parentf7a2d98c71a9ff5d0f48906ca09c4f2319c71b72 (diff)
downloadmariadb-git-9fc19ce8f507c89eed604f9968a897b37b0b065f.tar.gz
mysql_fix_privilege_tables.sql:
Fix the other typo, too. :-) scripts/mysql_fix_privilege_tables.sql: Fix the other typo, too. :-)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_fix_privilege_tables.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mysql_fix_privilege_tables.sql b/scripts/mysql_fix_privilege_tables.sql
index 1869f87239b..3e7a2f12f3e 100644
--- a/scripts/mysql_fix_privilege_tables.sql
+++ b/scripts/mysql_fix_privilege_tables.sql
@@ -145,14 +145,14 @@ alter table func comment='User defined functions';
alter table tables_priv comment='Table privileges';
alter table columns_priv comment='Column privileges';
#
-# Create VIEWs privilages (v5.0)
+# Create VIEWs privileges (v5.0)
#
ALTER TABLE db ADD Create_view_priv enum('N','Y') DEFAULT 'N' NOT NULL AFTER Lock_tables_priv;
ALTER TABLE host ADD Create_view_priv enum('N','Y') DEFAULT 'N' NOT NULL AFTER Lock_tables_priv;
ALTER TABLE user ADD Create_view_priv enum('N','Y') DEFAULT 'N' NOT NULL AFTER Repl_client_priv;
#
-# Show VIEWs privilages (v5.0)
+# Show VIEWs privileges (v5.0)
#
ALTER TABLE db ADD Show_view_priv enum('N','Y') DEFAULT 'N' NOT NULL AFTER Create_view_priv;
ALTER TABLE host ADD Show_view_priv enum('N','Y') DEFAULT 'N' NOT NULL AFTER Create_view_priv;