summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <andrey@lmy004.>2006-01-12 12:06:13 +0100
committerunknown <andrey@lmy004.>2006-01-12 12:06:13 +0100
commitd8753a825eec9d7c606324d811da1907ef52b8b6 (patch)
tree4e1722002c4cc8ab92617e3b7d6565a93debcdac /scripts
parent5bff97212ac0986aa432130c01437e0de1aceb9b (diff)
downloadmariadb-git-d8753a825eec9d7c606324d811da1907ef52b8b6.tar.gz
WL #1034 (Internal CRON) post-push fix
- add Event_priv to db and host tables scripts/mysql_create_system_tables.sh: add event_priv to db and host. will fix failing tests too
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_create_system_tables.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/mysql_create_system_tables.sh b/scripts/mysql_create_system_tables.sh
index 6e0ff3b6389..b114e8edeea 100644
--- a/scripts/mysql_create_system_tables.sh
+++ b/scripts/mysql_create_system_tables.sh
@@ -72,6 +72,7 @@ then
c_d="$c_d Create_routine_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_d="$c_d Alter_routine_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_d="$c_d Execute_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
+ c_d="$c_d Event_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_d="$c_d PRIMARY KEY Host (Host,Db,User),"
c_d="$c_d KEY User (User)"
c_d="$c_d ) engine=MyISAM"
@@ -150,6 +151,7 @@ then
c_u="$c_u Create_routine_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_u="$c_u Alter_routine_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_u="$c_u Create_user_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
+ c_u="$c_u Event_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,"
c_u="$c_u ssl_type enum('','ANY','X509', 'SPECIFIED') COLLATE utf8_general_ci DEFAULT '' NOT NULL,"
c_u="$c_u ssl_cipher BLOB NOT NULL,"
c_u="$c_u x509_issuer BLOB NOT NULL,"