Commit 0a160a84 authored by kent@mysql.com's avatar kent@mysql.com

init_db.sql:

  Added system table 'mysql.plugin'
parent 3eafcbc2
...@@ -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