mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
WL #3031
* New result files due to new error message/error numbers * Fixed system_mysql_db tests to work with servers table * Added UTF8 charset to table defs
This commit is contained in:
@@ -379,6 +379,22 @@ ALTER TABLE procs_priv
|
||||
ALTER TABLE procs_priv
|
||||
MODIFY Timestamp timestamp(14) AFTER Proc_priv;
|
||||
|
||||
--
|
||||
-- servers
|
||||
--
|
||||
CREATE TABLE servers (
|
||||
Server_name char(64) NOT NULL DEFAULT '',
|
||||
Host char(64) NOT NULL DEFAULT '',
|
||||
Db char(64) NOT NULL DEFAULT '',
|
||||
Username char(64) NOT NULL DEFAULT '',
|
||||
Password char(64) NOT NULL DEFAULT '',
|
||||
Port INT(4) NOT NULL DEFAULT '0',
|
||||
Socket char(64) NOT NULL DEFAULT '',
|
||||
Wrapper char(64) NOT NULL DEFAULT '',
|
||||
Owner char(64) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (Server_name))
|
||||
CHARACTER SET utf8 comment='MySQL Foreign Servers table';
|
||||
|
||||
--
|
||||
-- help_topic
|
||||
--
|
||||
|
Reference in New Issue
Block a user