· 8 years ago · Mar 05, 2018, 02:08 AM
1root@17aa74cbc5e2# mysql_upgrade -uroot -password
2Warning: Using a password on the command line interface can be insecure.
3Looking for 'mysql' as: mysql
4Looking for 'mysqlcheck' as: mysqlcheck
5Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/var/run/mysqld/mysqld.sock'
6Warning: Using a password on the command line interface can be insecure.
7Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/var/run/mysqld/mysqld.sock'
8Warning: Using a password on the command line interface can be insecure.
9mysql.columns_priv OK
10mysql.db OK
11mysql.event OK
12mysql.func OK
13mysql.general_log OK
14mysql.help_category OK
15mysql.help_keyword OK
16mysql.help_relation OK
17mysql.help_topic OK
18mysql.innodb_index_stats
19Error : Table 'mysql.innodb_index_stats' doesn't exist
20status : Operation failed
21mysql.innodb_table_stats
22Error : Table 'mysql.innodb_table_stats' doesn't exist
23status : Operation failed
24mysql.ndb_binlog_index OK
25mysql.plugin OK
26mysql.proc OK
27mysql.procs_priv OK
28mysql.proxies_priv OK
29mysql.servers OK
30mysql.slave_master_info
31Error : Table 'mysql.slave_master_info' doesn't exist
32status : Operation failed
33mysql.slave_relay_log_info
34Error : Table 'mysql.slave_relay_log_info' doesn't exist
35status : Operation failed
36mysql.slave_worker_info
37Error : Table 'mysql.slave_worker_info' doesn't exist
38status : Operation failed
39mysql.slow_log OK
40mysql.tables_priv OK
41mysql.time_zone OK
42mysql.time_zone_leap_second OK
43mysql.time_zone_name OK
44mysql.time_zone_transition OK
45mysql.time_zone_transition_type OK
46mysql.user OK
47
48Repairing tables
49mysql.innodb_index_stats
50Error : Table 'mysql.innodb_index_stats' doesn't exist
51status : Operation failed
52mysql.innodb_table_stats
53Error : Table 'mysql.innodb_table_stats' doesn't exist
54status : Operation failed
55mysql.slave_master_info
56Error : Table 'mysql.slave_master_info' doesn't exist
57status : Operation failed
58mysql.slave_relay_log_info
59Error : Table 'mysql.slave_relay_log_info' doesn't exist
60status : Operation failed
61mysql.slave_worker_info
62Error : Table 'mysql.slave_worker_info' doesn't exist
63status : Operation failed
64Running 'mysql_fix_privilege_tables'...
65Warning: Using a password on the command line interface can be insecure.
66ERROR 1146 (42S02) at line 62: Table 'mysql.innodb_table_stats' doesn't exist
67ERROR 1243 (HY000) at line 63: Unknown prepared statement handler (stmt) given to EXECUTE
68ERROR 1243 (HY000) at line 64: Unknown prepared statement handler (stmt) given to DEALLOCATE PREPARE
69ERROR 1146 (42S02) at line 66: Table 'mysql.innodb_index_stats' doesn't exist
70ERROR 1243 (HY000) at line 67: Unknown prepared statement handler (stmt) given to EXECUTE
71ERROR 1243 (HY000) at line 68: Unknown prepared statement handler (stmt) given to DEALLOCATE PREPARE
72ERROR 1146 (42S02) at line 81: Table 'mysql.slave_relay_log_info' doesn't exist
73ERROR 1243 (HY000) at line 82: Unknown prepared statement handler (stmt) given to EXECUTE
74ERROR 1243 (HY000) at line 83: Unknown prepared statement handler (stmt) given to DEALLOCATE PREPARE
75ERROR 1146 (42S02) at line 110: Table 'mysql.slave_master_info' doesn't exist
76ERROR 1243 (HY000) at line 111: Unknown prepared statement handler (stmt) given to EXECUTE
77ERROR 1243 (HY000) at line 112: Unknown prepared statement handler (stmt) given to DEALLOCATE PREPARE
78ERROR 1146 (42S02) at line 128: Table 'mysql.slave_worker_info' doesn't exist
79ERROR 1243 (HY000) at line 129: Unknown prepared statement handler (stmt) given to EXECUTE
80ERROR 1243 (HY000) at line 130: Unknown prepared statement handler (stmt) given to DEALLOCATE PREPARE
81ERROR 1146 (42S02) at line 1896: Table 'mysql.slave_master_info' doesn't exist
82ERROR 1146 (42S02) at line 1897: Table 'mysql.slave_master_info' doesn't exist
83ERROR 1146 (42S02) at line 1898: Table 'mysql.slave_master_info' doesn't exist
84ERROR 1146 (42S02) at line 1899: Table 'mysql.slave_worker_info' doesn't exist
85ERROR 1146 (42S02) at line 1900: Table 'mysql.slave_relay_log_info' doesn't exist
86ERROR 1146 (42S02) at line 1904: Table 'mysql.innodb_table_stats' doesn't exist
87ERROR 1146 (42S02) at line 1908: Table 'mysql.innodb_index_stats' doesn't exist
88FATAL ERROR: Upgrade failed
89
90innodb_index_stats
91 innodb_table_stats
92 slave_master_info
93 slave_relay_log_info
94 slave_worker_info
95
96CREATE TABLE `innodb_index_stats` (
97 `database_name` varchar(64) COLLATE utf8_bin NOT NULL,
98 `table_name` varchar(64) COLLATE utf8_bin NOT NULL,
99 `index_name` varchar(64) COLLATE utf8_bin NOT NULL,
100 `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
101 `stat_name` varchar(64) COLLATE utf8_bin NOT NULL,
102 `stat_value` bigint(20) unsigned NOT NULL,
103 `sample_size` bigint(20) unsigned DEFAULT NULL,
104 `stat_description` varchar(1024) COLLATE utf8_bin NOT NULL,
105 PRIMARY KEY (`database_name`,`table_name`,`index_name`,`stat_name`)
106) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
107
108CREATE TABLE `innodb_table_stats` (
109 `database_name` varchar(64) COLLATE utf8_bin NOT NULL,
110 `table_name` varchar(64) COLLATE utf8_bin NOT NULL,
111 `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
112 `n_rows` bigint(20) unsigned NOT NULL,
113 `clustered_index_size` bigint(20) unsigned NOT NULL,
114 `sum_of_other_index_sizes` bigint(20) unsigned NOT NULL,
115 PRIMARY KEY (`database_name`,`table_name`)
116) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
117
118CREATE TABLE `slave_master_info` (
119 `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file.',
120 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log currently being read from the master.',
121 `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last read event.',
122 `Host` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The host name of the master.',
123 `User_name` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The user name used to connect to the master.',
124 `User_password` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The password used to connect to the master.',
125 `Port` int(10) unsigned NOT NULL COMMENT 'The network port used to connect to the master.',
126 `Connect_retry` int(10) unsigned NOT NULL COMMENT 'The period (in seconds) that the slave will wait before trying to reconnect to the master.',
127 `Enabled_ssl` tinyint(1) NOT NULL COMMENT 'Indicates whether the server supports SSL connections.',
128 `Ssl_ca` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Authority (CA) certificate.',
129 `Ssl_capath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path to the Certificate Authority (CA) certificates.',
130 `Ssl_cert` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL certificate file.',
131 `Ssl_cipher` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the cipher in use for the SSL connection.',
132 `Ssl_key` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL key file.',
133 `Ssl_verify_server_cert` tinyint(1) NOT NULL COMMENT 'Whether to verify the server certificate.',
134 `Heartbeat` float NOT NULL,
135 `Bind` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Displays which interface is employed when connecting to the MySQL server',
136 `Ignored_server_ids` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The number of server IDs to be ignored, followed by the actual server IDs',
137 `Uuid` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The master server uuid.',
138 `Retry_count` bigint(20) unsigned NOT NULL COMMENT 'Number of reconnect attempts, to the master, before giving up.',
139 `Ssl_crl` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Revocation List (CRL)',
140 `Ssl_crlpath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path used for Certificate Revocation List (CRL) files',
141 `Enabled_auto_position` tinyint(1) NOT NULL COMMENT 'Indicates whether GTIDs will be used to retrieve events from the master.',
142 PRIMARY KEY (`Host`,`Port`)
143) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information';
144
145CREATE TABLE `slave_relay_log_info` (
146 `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file or rows in the table. Used to version table definitions.',
147 `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the current relay log file.',
148 `Relay_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The relay log position of the last executed event.',
149 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log file from which the events in the relay log file were read.',
150 `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last executed event.',
151 `Sql_delay` int(11) NOT NULL COMMENT 'The number of seconds that the slave must lag behind the master.',
152 `Number_of_workers` int(10) unsigned NOT NULL,
153 `Id` int(10) unsigned NOT NULL COMMENT 'Internal Id that uniquely identifies this record.',
154 PRIMARY KEY (`Id`)
155) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information';
156
157CREATE TABLE `slave_worker_info` (
158 `Id` int(10) unsigned NOT NULL,
159 `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
160 `Relay_log_pos` bigint(20) unsigned NOT NULL,
161 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
162 `Master_log_pos` bigint(20) unsigned NOT NULL,
163 `Checkpoint_relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
164 `Checkpoint_relay_log_pos` bigint(20) unsigned NOT NULL,
165 `Checkpoint_master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
166 `Checkpoint_master_log_pos` bigint(20) unsigned NOT NULL,
167 `Checkpoint_seqno` int(10) unsigned NOT NULL,
168 `Checkpoint_group_size` int(10) unsigned NOT NULL,
169 `Checkpoint_group_bitmap` blob NOT NULL,
170 PRIMARY KEY (`Id`)
171) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Worker Information';
172
173--
174-- Table structure for table `gtid_slave_pos`
175--
176
177DROP TABLE IF EXISTS `gtid_slave_pos`;
178/*!40101 SET @saved_cs_client = @@character_set_client */;
179/*!40101 SET character_set_client = utf8 */;
180CREATE TABLE `gtid_slave_pos` (
181 `domain_id` int(10) unsigned NOT NULL,
182 `sub_id` bigint(20) unsigned NOT NULL,
183 `server_id` int(10) unsigned NOT NULL,
184 `seq_no` bigint(20) unsigned NOT NULL,
185 PRIMARY KEY (`domain_id`,`sub_id`)
186) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Replication slave GTID position';
187/*!40101 SET character_set_client = @saved_cs_client */;
188
189--
190-- Dumping data for table `gtid_slave_pos`
191--
192
193LOCK TABLES `gtid_slave_pos` WRITE;
194/*!40000 ALTER TABLE `gtid_slave_pos` DISABLE KEYS */;
195/*!40000 ALTER TABLE `gtid_slave_pos` ENABLE KEYS */;
196UNLOCK TABLES;
197
198--
199-- Table structure for table `innodb_index_stats`
200--
201
202DROP TABLE IF EXISTS `innodb_index_stats`;
203/*!40101 SET @saved_cs_client = @@character_set_client */;
204/*!40101 SET character_set_client = utf8 */;
205CREATE TABLE `innodb_index_stats` (
206 `database_name` varchar(64) COLLATE utf8_bin NOT NULL,
207 `table_name` varchar(64) COLLATE utf8_bin NOT NULL,
208 `index_name` varchar(64) COLLATE utf8_bin NOT NULL,
209 `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
210 `stat_name` varchar(64) COLLATE utf8_bin NOT NULL,
211 `stat_value` bigint(20) unsigned NOT NULL,
212 `sample_size` bigint(20) unsigned DEFAULT NULL,
213 `stat_description` varchar(1024) COLLATE utf8_bin NOT NULL,
214 PRIMARY KEY (`database_name`,`table_name`,`index_name`,`stat_name`)
215) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
216/*!40101 SET character_set_client = @saved_cs_client */;
217
218--
219-- Dumping data for table `innodb_index_stats`
220--
221
222LOCK TABLES `innodb_index_stats` WRITE;
223/*!40000 ALTER TABLE `innodb_index_stats` DISABLE KEYS */;
224/*!40000 ALTER TABLE `innodb_index_stats` ENABLE KEYS */;
225UNLOCK TABLES;
226
227--
228-- Table structure for table `innodb_table_stats`
229--
230
231DROP TABLE IF EXISTS `innodb_table_stats`;
232/*!40101 SET @saved_cs_client = @@character_set_client */;
233/*!40101 SET character_set_client = utf8 */;
234CREATE TABLE `innodb_table_stats` (
235 `database_name` varchar(64) COLLATE utf8_bin NOT NULL,
236 `table_name` varchar(64) COLLATE utf8_bin NOT NULL,
237 `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
238 `n_rows` bigint(20) unsigned NOT NULL,
239 `clustered_index_size` bigint(20) unsigned NOT NULL,
240 `sum_of_other_index_sizes` bigint(20) unsigned NOT NULL,
241 PRIMARY KEY (`database_name`,`table_name`)
242) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0;
243/*!40101 SET character_set_client = @saved_cs_client */;
244
245--
246-- Dumping data for table `innodb_table_stats`
247--
248
249LOCK TABLES `innodb_table_stats` WRITE;
250/*!40000 ALTER TABLE `innodb_table_stats` DISABLE KEYS */;
251/*!40000 ALTER TABLE `innodb_table_stats` ENABLE KEYS */;
252UNLOCK TABLES;
253
254--
255-- Table structure for table `slave_master_info`
256--
257
258DROP TABLE IF EXISTS `slave_master_info`;
259/*!40101 SET @saved_cs_client = @@character_set_client */;
260/*!40101 SET character_set_client = utf8 */;
261CREATE TABLE `slave_master_info` (
262 `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file.',
263 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log currently being read from the master.',
264 `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last read event.',
265 `Host` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The host name of the master.',
266 `User_name` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The user name used to connect to the master.',
267 `User_password` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The password used to connect to the master.',
268 `Port` int(10) unsigned NOT NULL COMMENT 'The network port used to connect to the master.',
269 `Connect_retry` int(10) unsigned NOT NULL COMMENT 'The period (in seconds) that the slave will wait before trying to reconnect to the master.',
270 `Enabled_ssl` tinyint(1) NOT NULL COMMENT 'Indicates whether the server supports SSL connections.',
271 `Ssl_ca` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Authority (CA) certificate.',
272 `Ssl_capath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path to the Certificate Authority (CA) certificates.',
273 `Ssl_cert` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL certificate file.',
274 `Ssl_cipher` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the cipher in use for the SSL connection.',
275 `Ssl_key` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL key file.',
276 `Ssl_verify_server_cert` tinyint(1) NOT NULL COMMENT 'Whether to verify the server certificate.',
277 `Heartbeat` float NOT NULL,
278 `Bind` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Displays which interface is employed when connecting to the MySQL server',
279 `Ignored_server_ids` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The number of server IDs to be ignored, followed by the actual server IDs',
280 `Uuid` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The master server uuid.',
281 `Retry_count` bigint(20) unsigned NOT NULL COMMENT 'Number of reconnect attempts, to the master, before giving up.',
282 `Ssl_crl` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Revocation List (CRL)',
283 `Ssl_crlpath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path used for Certificate Revocation List (CRL) files',
284 `Enabled_auto_position` tinyint(1) NOT NULL COMMENT 'Indicates whether GTIDs will be used to retrieve events from the master.',
285 PRIMARY KEY (`Host`,`Port`)
286) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information';
287/*!40101 SET character_set_client = @saved_cs_client */;
288
289--
290-- Dumping data for table `slave_master_info`
291--
292
293LOCK TABLES `slave_master_info` WRITE;
294/*!40000 ALTER TABLE `slave_master_info` DISABLE KEYS */;
295/*!40000 ALTER TABLE `slave_master_info` ENABLE KEYS */;
296UNLOCK TABLES;
297
298--
299-- Table structure for table `slave_relay_log_info`
300--
301
302DROP TABLE IF EXISTS `slave_relay_log_info`;
303/*!40101 SET @saved_cs_client = @@character_set_client */;
304/*!40101 SET character_set_client = utf8 */;
305CREATE TABLE `slave_relay_log_info` (
306 `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file or rows in the table. Used to version table definitions.',
307 `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the current relay log file.',
308 `Relay_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The relay log position of the last executed event.',
309 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log file from which the events in the relay log file were read.',
310 `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last executed event.',
311 `Sql_delay` int(11) NOT NULL COMMENT 'The number of seconds that the slave must lag behind the master.',
312 `Number_of_workers` int(10) unsigned NOT NULL,
313 `Id` int(10) unsigned NOT NULL COMMENT 'Internal Id that uniquely identifies this record.',
314 PRIMARY KEY (`Id`)
315) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information';
316/*!40101 SET character_set_client = @saved_cs_client */;
317
318--
319-- Dumping data for table `slave_relay_log_info`
320--
321
322LOCK TABLES `slave_relay_log_info` WRITE;
323/*!40000 ALTER TABLE `slave_relay_log_info` DISABLE KEYS */;
324/*!40000 ALTER TABLE `slave_relay_log_info` ENABLE KEYS */;
325UNLOCK TABLES;
326
327--
328-- Table structure for table `slave_worker_info`
329--
330
331DROP TABLE IF EXISTS `slave_worker_info`;
332/*!40101 SET @saved_cs_client = @@character_set_client */;
333/*!40101 SET character_set_client = utf8 */;
334CREATE TABLE `slave_worker_info` (
335 `Id` int(10) unsigned NOT NULL,
336 `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
337 `Relay_log_pos` bigint(20) unsigned NOT NULL,
338 `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
339 `Master_log_pos` bigint(20) unsigned NOT NULL,
340 `Checkpoint_relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
341 `Checkpoint_relay_log_pos` bigint(20) unsigned NOT NULL,
342 `Checkpoint_master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
343 `Checkpoint_master_log_pos` bigint(20) unsigned NOT NULL,
344 `Checkpoint_seqno` int(10) unsigned NOT NULL,
345 `Checkpoint_group_size` int(10) unsigned NOT NULL,
346 `Checkpoint_group_bitmap` blob NOT NULL,
347 PRIMARY KEY (`Id`)
348) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Worker Information';
349/*!40101 SET character_set_client = @saved_cs_client */;
350
351--
352-- Dumping data for table `slave_worker_info`
353--
354
355LOCK TABLES `slave_worker_info` WRITE;
356/*!40000 ALTER TABLE `slave_worker_info` DISABLE KEYS */;
357/*!40000 ALTER TABLE `slave_worker_info` ENABLE KEYS */;
358UNLOCK TABLES;
359
360+---------------------------+
361 | Tables_in_mysql |
362 +---------------------------+
363 | columns_priv |
364 | db |
365 | event |
366 | func |
367 | general_log |
368 | help_category |
369 | help_keyword |
370 | help_relation |
371 | help_topic |
372- | host |
373+ | innodb_index_stats |
374+ | innodb_table_stats |
375 | ndb_binlog_index |
376 | plugin |
377 | proc |
378 | procs_priv |
379 | proxies_priv |
380 | servers |
381+ | slave_master_info |
382+ | slave_relay_log_info |
383+ | slave_worker_info |
384 | slow_log |
385 | tables_priv |
386 | time_zone |
387 | time_zone_leap_second |
388 | time_zone_name |
389 | time_zone_transition |
390 | time_zone_transition_type |
391 | user |
392 +---------------------------+
393
394ERROR 1813 (HY000): Tablespace '`mysql`.`slave_worker_info`' exists.