mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
mysql_fix_privilege_tables.sql:
Fix typo in comments. scripts/mysql_fix_privilege_tables.sql: Fix typo in comments.
This commit is contained in:
parent
851154ee30
commit
f7a2d98c71
1 changed files with 2 additions and 2 deletions
|
@ -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 privrlages (v5.0)
|
||||
# Create VIEWs privilages (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 privrlages (v5.0)
|
||||
# Show VIEWs privilages (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;
|
||||
|
|
Loading…
Reference in a new issue