Commit b99d81ed authored by unknown's avatar unknown

init_db.sql:

  Added system table 'mysql.plugin'


mysql-test/lib/init_db.sql:
  Added system table 'mysql.plugin'
parent 55c0a8fa
...@@ -121,6 +121,15 @@ CHARACTER SET utf8 COLLATE utf8_bin ...@@ -121,6 +121,15 @@ CHARACTER SET utf8 COLLATE utf8_bin
comment='User defined functions'; 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 ( CREATE TABLE tables_priv (
Host char(60) binary DEFAULT '' NOT NULL, Host char(60) binary DEFAULT '' NOT NULL,
Db char(64) binary DEFAULT '' NOT NULL, Db char(64) binary DEFAULT '' NOT NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment