diff options
author | unknown <kent@mysql.com> | 2005-11-06 20:51:37 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-11-06 20:51:37 +0100 |
commit | 8a224ed85a8794743472f3611830349dc490aabc (patch) | |
tree | b97f6053c3fa6ef2e9e964101e8a47911219f3b1 /mysql-test/lib | |
parent | 696d7fe4440e8f54478d921cb504849a4b5a6d8b (diff) | |
download | mariadb-git-8a224ed85a8794743472f3611830349dc490aabc.tar.gz |
init_db.sql:
Added system table 'mysql.plugin'
mysql-test/lib/init_db.sql:
Added system table 'mysql.plugin'
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/init_db.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/lib/init_db.sql b/mysql-test/lib/init_db.sql index fd7b035e038..85faf7869d4 100644 --- a/mysql-test/lib/init_db.sql +++ b/mysql-test/lib/init_db.sql @@ -121,6 +121,15 @@ CHARACTER SET utf8 COLLATE utf8_bin comment='User defined functions'; +CREATE TABLE plugin ( + name char(64) binary DEFAULT '' NOT NULL, + dl char(128) DEFAULT '' NOT NULL, + PRIMARY KEY (name) +) engine=MyISAM +CHARACTER SET utf8 COLLATE utf8_bin +comment='MySQL plugins'; + + CREATE TABLE tables_priv ( Host char(60) binary DEFAULT '' NOT NULL, Db char(64) binary DEFAULT '' NOT NULL, |