mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix failures in the funcs_1 test suite.
Some result updates necessary due to extra tables and columns added in information_schema in MariaDB (XtraDB, PBXT, microsec_process). Also fix bad merge of two result files; apparently the test case was merged, but the result file was not. mysql-test/suite/funcs_1/datadict/processlist_priv.inc: Handle the new TIME_MS column in information_schema.processlist. mysql-test/suite/funcs_1/datadict/processlist_val.inc: Handle the new TIME_MS column in information_schema.processlist. mysql-test/suite/funcs_1/r/is_columns_is.result: Handle new tables in information_schema. mysql-test/suite/funcs_1/r/is_tables_is.result: Handle new tables in information_schema. mysql-test/suite/funcs_1/r/is_tables_myisam.result: Fix previous bad merge; apparently this file was not merged along with test changes. mysql-test/suite/funcs_1/r/processlist_priv_no_prot.result: Handle the new TIME_MS column in information_schema.processlist. mysql-test/suite/funcs_1/r/processlist_val_no_prot.result: Fix previous bad merge; apparently this file was not merged along with test changes. Also handle the new TIME_MS column in INFORMATION_SCHEMA.PROCESSLIST. mysql-test/suite/funcs_1/t/is_columns_is.test: Since result file includes PBXT information_schema tables, we need PBXT to run this test.
This commit is contained in:
@ -66,7 +66,7 @@
|
|||||||
let $table= processlist;
|
let $table= processlist;
|
||||||
#
|
#
|
||||||
# columns of the information_schema table e.g. to use in a select.
|
# columns of the information_schema table e.g. to use in a select.
|
||||||
let $columns= ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO;
|
let $columns= ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS;
|
||||||
#
|
#
|
||||||
# Where clause for an update.
|
# Where clause for an update.
|
||||||
let $update_where= WHERE id=1 ;
|
let $update_where= WHERE id=1 ;
|
||||||
@ -137,11 +137,11 @@ WHERE DB = 'information_schema' AND COMMAND = 'Sleep' AND USER = 'ddicttestuser1
|
|||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
--replace_result ENGINE=MyISAM "" ENGINE=MARIA "" " PAGE_CHECKSUM=1" "" " PAGE_CHECKSUM=0" ""
|
--replace_result ENGINE=MyISAM "" ENGINE=MARIA "" " PAGE_CHECKSUM=1" "" " PAGE_CHECKSUM=0" ""
|
||||||
eval SHOW CREATE TABLE $table;
|
eval SHOW CREATE TABLE $table;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SHOW $table;
|
eval SHOW $table;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SELECT * FROM $table $select_where ORDER BY id;
|
eval SELECT * FROM $table $select_where ORDER BY id;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SELECT $columns FROM $table $select_where ORDER BY id;
|
eval SELECT $columns FROM $table $select_where ORDER BY id;
|
||||||
--source suite/funcs_1/datadict/datadict_priv.inc
|
--source suite/funcs_1/datadict/datadict_priv.inc
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
@ -157,11 +157,11 @@ connection con100;
|
|||||||
# but "ddicttestuser1" must not see anything of the root session.
|
# but "ddicttestuser1" must not see anything of the root session.
|
||||||
--replace_result ENGINE=MyISAM "" ENGINE=MARIA "" " PAGE_CHECKSUM=1" "" " PAGE_CHECKSUM=0" ""
|
--replace_result ENGINE=MyISAM "" ENGINE=MARIA "" " PAGE_CHECKSUM=1" "" " PAGE_CHECKSUM=0" ""
|
||||||
eval SHOW CREATE TABLE $table;
|
eval SHOW CREATE TABLE $table;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SHOW $table;
|
eval SHOW $table;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SELECT * FROM $table $select_where ORDER BY id;
|
eval SELECT * FROM $table $select_where ORDER BY id;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
eval SELECT $columns FROM $table $select_where ORDER BY id;
|
eval SELECT $columns FROM $table $select_where ORDER BY id;
|
||||||
--source suite/funcs_1/datadict/datadict_priv.inc
|
--source suite/funcs_1/datadict/datadict_priv.inc
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
@ -183,9 +183,9 @@ GRANT PROCESS ON *.* TO ddicttestuser1@'localhost' IDENTIFIED BY 'ddictpass';
|
|||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
connection con100;
|
connection con100;
|
||||||
SHOW GRANTS;
|
SHOW GRANTS;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -195,9 +195,9 @@ SELECT * FROM information_schema.processlist;
|
|||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
connect (con101,localhost,ddicttestuser1,ddictpass,information_schema);
|
connect (con101,localhost,ddicttestuser1,ddictpass,information_schema);
|
||||||
SHOW GRANTS;
|
SHOW GRANTS;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -217,9 +217,9 @@ GRANT PROCESS ON *.* TO ''@'localhost';
|
|||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
connect (anonymous1,localhost,"''",,information_schema);
|
connect (anonymous1,localhost,"''",,information_schema);
|
||||||
SHOW GRANTS;
|
SHOW GRANTS;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -239,9 +239,9 @@ connect (con102,localhost,ddicttestuser1,ddictpass,information_schema);
|
|||||||
--echo ddicttestuser1 are visible.
|
--echo ddicttestuser1 are visible.
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS;
|
SHOW GRANTS;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -264,10 +264,10 @@ SHOW GRANTS FOR ''@'localhost';
|
|||||||
if ($fixed_bug_30395)
|
if ($fixed_bug_30395)
|
||||||
{
|
{
|
||||||
# Bug#30395 strange results after REVOKE PROCESS ON *.* FROM ...
|
# Bug#30395 strange results after REVOKE PROCESS ON *.* FROM ...
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
}
|
}
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -286,9 +286,9 @@ connect (con103,localhost,ddicttestuser1,ddictpass,information_schema);
|
|||||||
--echo Only the processes of ddicttestuser1 user are visible.
|
--echo Only the processes of ddicttestuser1 user are visible.
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -308,9 +308,9 @@ connect (con104,localhost,ddicttestuser1,ddictpass,information_schema);
|
|||||||
--echo Only the processes of ddicttestuser1 are visible.
|
--echo Only the processes of ddicttestuser1 are visible.
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -355,9 +355,9 @@ connect (con200,localhost,ddicttestuser2,ddictpass,information_schema);
|
|||||||
--echo ddicttestuser2 has now the PROCESS privilege and sees all connections
|
--echo ddicttestuser2 has now the PROCESS privilege and sees all connections
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS FOR 'ddicttestuser2'@'localhost';
|
SHOW GRANTS FOR 'ddicttestuser2'@'localhost';
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -376,9 +376,9 @@ connect (con201,localhost,ddicttestuser2,ddictpass,information_schema);
|
|||||||
--echo ddicttestuser2 has no more the PROCESS privilege and can only see own connects
|
--echo ddicttestuser2 has no more the PROCESS privilege and can only see own connects
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS;
|
SHOW GRANTS;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -399,9 +399,9 @@ connect (con107,localhost,ddicttestuser1,ddictpass,information_schema);
|
|||||||
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
||||||
--error ER_ACCESS_DENIED_ERROR
|
--error ER_ACCESS_DENIED_ERROR
|
||||||
GRANT PROCESS ON *.* TO 'ddicttestuser2'@'localhost';
|
GRANT PROCESS ON *.* TO 'ddicttestuser2'@'localhost';
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
@ -423,9 +423,9 @@ connect (con108,localhost,ddicttestuser1,ddictpass,information_schema);
|
|||||||
--echo Therefore the missing SELECT privilege does not affect SELECTs on PROCESSLIST.
|
--echo Therefore the missing SELECT privilege does not affect SELECTs on PROCESSLIST.
|
||||||
--echo ####################################################################################
|
--echo ####################################################################################
|
||||||
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
SHOW GRANTS FOR 'ddicttestuser1'@'localhost';
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
--replace_column 1 ID 3 HOST_NAME 6 TIME
|
--replace_column 1 ID 3 HOST_NAME 6 TIME 9 TIME_MS
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
--real_sleep 0.3
|
--real_sleep 0.3
|
||||||
|
|
||||||
|
@ -93,9 +93,9 @@ echo
|
|||||||
# - INFO must contain the corresponding SHOW/SELECT PROCESSLIST
|
# - INFO must contain the corresponding SHOW/SELECT PROCESSLIST
|
||||||
#
|
#
|
||||||
# 1. Just dump what we get
|
# 1. Just dump what we get
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
#
|
#
|
||||||
# Determine the connection id of the current connection (default)
|
# Determine the connection id of the current connection (default)
|
||||||
@ -129,7 +129,7 @@ SELECT @my_info = '$my_statement'
|
|||||||
# 6. TIME must have a reasonable value
|
# 6. TIME must have a reasonable value
|
||||||
SELECT COUNT(*) = 1 AS "Has TIME a reasonable value?"
|
SELECT COUNT(*) = 1 AS "Has TIME a reasonable value?"
|
||||||
FROM INFORMATION_SCHEMA.PROCESSLIST
|
FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||||
WHERE ID = @default_id AND 0 <= TIME < 10;
|
WHERE ID = @default_id AND 0 <= TIME < 10 AND 0 <= TIME_MS < 10000;
|
||||||
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
@ -166,7 +166,7 @@ let $wait_condition= SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
|||||||
WHERE COMMAND = 'Sleep' AND USER = 'test_user';
|
WHERE COMMAND = 'Sleep' AND USER = 'test_user';
|
||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
# 1. Just dump what we get
|
# 1. Just dump what we get
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
@ -211,7 +211,7 @@ echo
|
|||||||
# ----- switch to connection con1 (user = test_user) -----
|
# ----- switch to connection con1 (user = test_user) -----
|
||||||
;
|
;
|
||||||
connection con1;
|
connection con1;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
@ -245,7 +245,7 @@ echo
|
|||||||
;
|
;
|
||||||
connection con2;
|
connection con2;
|
||||||
# Just dump what we get
|
# Just dump what we get
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
@ -305,7 +305,7 @@ WHERE ID = @test_user_con2_id AND Command IN('Query','Execute')
|
|||||||
AND State = 'User sleep' AND INFO IS NOT NULL ;
|
AND State = 'User sleep' AND INFO IS NOT NULL ;
|
||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
# 1. Just dump what we get
|
# 1. Just dump what we get
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
@ -376,7 +376,7 @@ let $wait_condition= SELECT COUNT(*) FROM INFORMATION_SCHEMA.PROCESSLIST
|
|||||||
#
|
#
|
||||||
# Expect to see the state 'Locked' for the third connection because the SELECT
|
# Expect to see the state 'Locked' for the third connection because the SELECT
|
||||||
# collides with the WRITE TABLE LOCK.
|
# collides with the WRITE TABLE LOCK.
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME>
|
--replace_column 1 <ID> 3 <HOST_NAME> 6 <TIME> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
#
|
#
|
||||||
@ -435,7 +435,7 @@ echo
|
|||||||
# SHOW FULL PROCESSLIST Complete statement
|
# SHOW FULL PROCESSLIST Complete statement
|
||||||
# SHOW PROCESSLIST statement truncated after 100 char
|
# SHOW PROCESSLIST statement truncated after 100 char
|
||||||
;
|
;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE>
|
--replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE> 9 <TIME_MS>
|
||||||
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;
|
||||||
--replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE>
|
--replace_column 1 <ID> 3 <HOST_NAME> 5 <COMMAND> 6 <TIME> 7 <STATE>
|
||||||
SHOW FULL PROCESSLIST;
|
SHOW FULL PROCESSLIST;
|
||||||
|
@ -113,6 +113,96 @@ NULL information_schema GLOBAL_STATUS VARIABLE_NAME 1 NO varchar 64 192 NULL NU
|
|||||||
NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
NULL information_schema GLOBAL_STATUS VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
||||||
NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema GLOBAL_VARIABLES VARIABLE_NAME 1 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
NULL information_schema GLOBAL_VARIABLES VARIABLE_VALUE 2 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES fix_count 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES flush_type 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES lru_position 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES page_no 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES page_type 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES space_id 2 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB compressed 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB fix_count 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB flush_type 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB lru_position 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB next_page_no 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB page_no 2 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB part_len 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB space_id 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX accessed 9 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX data_size 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX dirty 11 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX fix_count 14 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX flush_type 15 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX hashed 8 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX index_name 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX lru_position 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX modified 10 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX n_recs 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX old 12 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX page_no 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX schema_name 1 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX space_id 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX table_name 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
|
NULL information_schema INNODB_CMP compress_ops 2 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP compress_ops_ok 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP compress_time 4 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP page_size 1 0 NO int NULL NULL 10 0 NULL NULL int(5) select
|
||||||
|
NULL information_schema INNODB_CMP uncompress_ops 5 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP uncompress_time 6 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM pages_free 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM pages_used 2 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM page_size 1 0 NO int NULL NULL 10 0 NULL NULL int(5) select
|
||||||
|
NULL information_schema INNODB_CMPMEM relocation_ops 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
|
||||||
|
NULL information_schema INNODB_CMPMEM relocation_time 5 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET pages_free 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET pages_used 2 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET page_size 1 0 NO int NULL NULL 10 0 NULL NULL int(5) select
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET relocation_ops 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) select
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET relocation_time 5 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_ops 2 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_ops_ok 3 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_time 4 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET page_size 1 0 NO int NULL NULL 10 0 NULL NULL int(5) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET uncompress_ops 5 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_CMP_RESET uncompress_time 6 0 NO int NULL NULL 10 0 NULL NULL int(11) select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS fields 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS index_name 2 NO varchar 192 576 NULL NULL utf8 utf8_general_ci varchar(192) select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS index_size 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS leaf_pages 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS row_per_keys 4 NO varchar 256 768 NULL NULL utf8 utf8_general_ci varchar(256) select
|
||||||
|
NULL information_schema INNODB_INDEX_STATS table_name 1 NO varchar 192 576 NULL NULL utf8 utf8_general_ci varchar(192) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_data 10 NULL YES varchar 8192 24576 NULL NULL utf8 utf8_general_ci varchar(8192) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_id 1 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_index 6 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_mode 3 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_page 8 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_rec 9 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_space 7 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_table 5 NO varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_trx_id 2 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
|
||||||
|
NULL information_schema INNODB_LOCKS lock_type 4 NO varchar 32 96 NULL NULL utf8 utf8_general_ci varchar(32) select
|
||||||
|
NULL information_schema INNODB_LOCK_WAITS blocking_lock_id 4 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
|
||||||
|
NULL information_schema INNODB_LOCK_WAITS blocking_trx_id 3 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
|
||||||
|
NULL information_schema INNODB_LOCK_WAITS requested_lock_id 2 NO varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
|
||||||
|
NULL information_schema INNODB_LOCK_WAITS requesting_trx_id 1 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
|
||||||
|
NULL information_schema INNODB_RSEG curr_size 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_RSEG max_size 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_RSEG page_no 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_RSEG rseg_id 1 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_RSEG space_id 2 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_RSEG zip_size 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TABLE_STATS clust_size 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TABLE_STATS modified 5 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TABLE_STATS other_size 4 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TABLE_STATS rows 2 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TABLE_STATS table_name 1 NO varchar 192 576 NULL NULL utf8 utf8_general_ci varchar(192) select
|
||||||
|
NULL information_schema INNODB_TRX trx_id 1 NO varchar 18 54 NULL NULL utf8 utf8_general_ci varchar(18) select
|
||||||
|
NULL information_schema INNODB_TRX trx_mysql_thread_id 7 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
|
NULL information_schema INNODB_TRX trx_query 8 NULL YES varchar 1024 3072 NULL NULL utf8 utf8_general_ci varchar(1024) select
|
||||||
|
NULL information_schema INNODB_TRX trx_requested_lock_id 4 NULL YES varchar 81 243 NULL NULL utf8 utf8_general_ci varchar(81) select
|
||||||
|
NULL information_schema INNODB_TRX trx_started 3 0000-00-00 00:00:00 NO datetime NULL NULL NULL NULL NULL NULL datetime select
|
||||||
|
NULL information_schema INNODB_TRX trx_state 2 NO varchar 13 39 NULL NULL utf8 utf8_general_ci varchar(13) select
|
||||||
|
NULL information_schema INNODB_TRX trx_wait_started 5 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
|
||||||
|
NULL information_schema INNODB_TRX trx_weight 6 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema KEY_COLUMN_USAGE COLUMN_NAME 7 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 512 1536 NULL NULL utf8 utf8_general_ci varchar(512) select
|
NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG 1 NULL YES varchar 512 1536 NULL NULL utf8 utf8_general_ci varchar(512) select
|
||||||
NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
@ -150,6 +240,9 @@ NULL information_schema PARTITIONS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf
|
|||||||
NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
NULL information_schema PARTITIONS TABLE_ROWS 13 0 NO bigint NULL NULL 19 0 NULL NULL bigint(21) unsigned select
|
||||||
NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema PARTITIONS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
|
NULL information_schema PARTITIONS UPDATE_TIME 20 NULL YES datetime NULL NULL NULL NULL NULL NULL datetime select
|
||||||
|
NULL information_schema PBXT_STATISTICS ID 1 0 NO int NULL NULL 10 0 NULL NULL int(4) select
|
||||||
|
NULL information_schema PBXT_STATISTICS Name 2 NO varchar 40 120 NULL NULL utf8 utf8_general_ci varchar(40) select
|
||||||
|
NULL information_schema PBXT_STATISTICS Value 3 0 NO bigint NULL NULL 19 0 NULL NULL bigint(8) select
|
||||||
NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema PLUGINS PLUGIN_AUTHOR 8 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
NULL information_schema PLUGINS PLUGIN_DESCRIPTION 9 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
||||||
NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema PLUGINS PLUGIN_LIBRARY 6 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
@ -167,6 +260,7 @@ NULL information_schema PROCESSLIST ID 1 0 NO bigint NULL NULL 19 0 NULL NULL bi
|
|||||||
NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
NULL information_schema PROCESSLIST INFO 8 NULL YES longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
||||||
NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema PROCESSLIST STATE 7 NULL YES varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema PROCESSLIST TIME 6 0 NO int NULL NULL 10 0 NULL NULL int(7) select
|
NULL information_schema PROCESSLIST TIME 6 0 NO int NULL NULL 10 0 NULL NULL int(7) select
|
||||||
|
NULL information_schema PROCESSLIST TIME_MS 9 0.000 NO decimal NULL NULL 22 3 NULL NULL decimal(22,3) select
|
||||||
NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
|
NULL information_schema PROCESSLIST USER 2 NO varchar 16 48 NULL NULL utf8 utf8_general_ci varchar(16) select
|
||||||
NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 512 1536 NULL NULL utf8 utf8_general_ci varchar(512) select
|
NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG 1 NULL YES varchar 512 1536 NULL NULL utf8 utf8_general_ci varchar(512) select
|
||||||
NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
@ -300,6 +394,10 @@ NULL information_schema VIEWS TABLE_CATALOG 1 NULL YES varchar 512 1536 NULL NUL
|
|||||||
NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema VIEWS TABLE_NAME 3 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
NULL information_schema VIEWS TABLE_SCHEMA 2 NO varchar 64 192 NULL NULL utf8 utf8_general_ci varchar(64) select
|
||||||
NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
NULL information_schema VIEWS VIEW_DEFINITION 4 NULL NO longtext 4294967295 4294967295 NULL NULL utf8 utf8_general_ci longtext select
|
||||||
|
NULL information_schema XTRADB_ENHANCEMENTS comment 3 NO varchar 100 300 NULL NULL utf8 utf8_general_ci varchar(100) select
|
||||||
|
NULL information_schema XTRADB_ENHANCEMENTS description 2 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
|
||||||
|
NULL information_schema XTRADB_ENHANCEMENTS link 4 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
|
||||||
|
NULL information_schema XTRADB_ENHANCEMENTS name 1 NO varchar 255 765 NULL NULL utf8 utf8_general_ci varchar(255) select
|
||||||
##########################################################################
|
##########################################################################
|
||||||
# Show the quotient of CHARACTER_OCTET_LENGTH and CHARACTER_MAXIMUM_LENGTH
|
# Show the quotient of CHARACTER_OCTET_LENGTH and CHARACTER_MAXIMUM_LENGTH
|
||||||
##########################################################################
|
##########################################################################
|
||||||
@ -340,6 +438,7 @@ ORDER BY CHARACTER_SET_NAME, COLLATION_NAME, COL_CML;
|
|||||||
COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
|
COL_CML DATA_TYPE CHARACTER_SET_NAME COLLATION_NAME
|
||||||
NULL bigint NULL NULL
|
NULL bigint NULL NULL
|
||||||
NULL datetime NULL NULL
|
NULL datetime NULL NULL
|
||||||
|
NULL decimal NULL NULL
|
||||||
NULL int NULL NULL
|
NULL int NULL NULL
|
||||||
--> CHAR(0) is allowed (see manual), and here both CHARACHTER_* values
|
--> CHAR(0) is allowed (see manual), and here both CHARACHTER_* values
|
||||||
--> are 0, which is intended behavior, and the result of 0 / 0 IS NULL
|
--> are 0, which is intended behavior, and the result of 0 / 0 IS NULL
|
||||||
@ -468,6 +567,96 @@ NULL information_schema FILES CHECKSUM bigint NULL NULL NULL NULL bigint(21) uns
|
|||||||
3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
3.0000 information_schema GLOBAL_STATUS VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
||||||
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
3.0000 information_schema GLOBAL_VARIABLES VARIABLE_VALUE varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
||||||
|
3.0000 information_schema INNODB_BUFFER_POOL_PAGES page_type varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES space_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES page_no bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES lru_position bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES fix_count bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES flush_type bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB space_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB page_no bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB compressed bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB part_len bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB next_page_no bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB lru_position bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB fix_count bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_BLOB flush_type bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_BUFFER_POOL_PAGES_INDEX schema_name varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
|
3.0000 information_schema INNODB_BUFFER_POOL_PAGES_INDEX table_name varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
|
3.0000 information_schema INNODB_BUFFER_POOL_PAGES_INDEX index_name varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX space_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX page_no bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX n_recs bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX data_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX hashed bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX accessed bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX modified bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX dirty bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX old bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX lru_position bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX fix_count bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_BUFFER_POOL_PAGES_INDEX flush_type bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_CMP page_size int NULL NULL NULL NULL int(5)
|
||||||
|
NULL information_schema INNODB_CMP compress_ops int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP compress_ops_ok int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP compress_time int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP uncompress_ops int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP uncompress_time int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM page_size int NULL NULL NULL NULL int(5)
|
||||||
|
NULL information_schema INNODB_CMPMEM pages_used int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM pages_free int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM relocation_ops bigint NULL NULL NULL NULL bigint(21)
|
||||||
|
NULL information_schema INNODB_CMPMEM relocation_time int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET page_size int NULL NULL NULL NULL int(5)
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET pages_used int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET pages_free int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET relocation_ops bigint NULL NULL NULL NULL bigint(21)
|
||||||
|
NULL information_schema INNODB_CMPMEM_RESET relocation_time int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP_RESET page_size int NULL NULL NULL NULL int(5)
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_ops int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_ops_ok int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP_RESET compress_time int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP_RESET uncompress_ops int NULL NULL NULL NULL int(11)
|
||||||
|
NULL information_schema INNODB_CMP_RESET uncompress_time int NULL NULL NULL NULL int(11)
|
||||||
|
3.0000 information_schema INNODB_INDEX_STATS table_name varchar 192 576 utf8 utf8_general_ci varchar(192)
|
||||||
|
3.0000 information_schema INNODB_INDEX_STATS index_name varchar 192 576 utf8 utf8_general_ci varchar(192)
|
||||||
|
NULL information_schema INNODB_INDEX_STATS fields bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_INDEX_STATS row_per_keys varchar 256 768 utf8 utf8_general_ci varchar(256)
|
||||||
|
NULL information_schema INNODB_INDEX_STATS index_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_INDEX_STATS leaf_pages bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_id varchar 81 243 utf8 utf8_general_ci varchar(81)
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_trx_id varchar 18 54 utf8 utf8_general_ci varchar(18)
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_mode varchar 32 96 utf8 utf8_general_ci varchar(32)
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_type varchar 32 96 utf8 utf8_general_ci varchar(32)
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_table varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_index varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
||||||
|
NULL information_schema INNODB_LOCKS lock_space bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_LOCKS lock_page bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_LOCKS lock_rec bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_LOCKS lock_data varchar 8192 24576 utf8 utf8_general_ci varchar(8192)
|
||||||
|
3.0000 information_schema INNODB_LOCK_WAITS requesting_trx_id varchar 18 54 utf8 utf8_general_ci varchar(18)
|
||||||
|
3.0000 information_schema INNODB_LOCK_WAITS requested_lock_id varchar 81 243 utf8 utf8_general_ci varchar(81)
|
||||||
|
3.0000 information_schema INNODB_LOCK_WAITS blocking_trx_id varchar 18 54 utf8 utf8_general_ci varchar(18)
|
||||||
|
3.0000 information_schema INNODB_LOCK_WAITS blocking_lock_id varchar 81 243 utf8 utf8_general_ci varchar(81)
|
||||||
|
NULL information_schema INNODB_RSEG rseg_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_RSEG space_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_RSEG zip_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_RSEG page_no bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_RSEG max_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_RSEG curr_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_TABLE_STATS table_name varchar 192 576 utf8 utf8_general_ci varchar(192)
|
||||||
|
NULL information_schema INNODB_TABLE_STATS rows bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_TABLE_STATS clust_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_TABLE_STATS other_size bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_TABLE_STATS modified bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_TRX trx_id varchar 18 54 utf8 utf8_general_ci varchar(18)
|
||||||
|
3.0000 information_schema INNODB_TRX trx_state varchar 13 39 utf8 utf8_general_ci varchar(13)
|
||||||
|
NULL information_schema INNODB_TRX trx_started datetime NULL NULL NULL NULL datetime
|
||||||
|
3.0000 information_schema INNODB_TRX trx_requested_lock_id varchar 81 243 utf8 utf8_general_ci varchar(81)
|
||||||
|
NULL information_schema INNODB_TRX trx_wait_started datetime NULL NULL NULL NULL datetime
|
||||||
|
NULL information_schema INNODB_TRX trx_weight bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
NULL information_schema INNODB_TRX trx_mysql_thread_id bigint NULL NULL NULL NULL bigint(21) unsigned
|
||||||
|
3.0000 information_schema INNODB_TRX trx_query varchar 1024 3072 utf8 utf8_general_ci varchar(1024)
|
||||||
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512)
|
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512)
|
||||||
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema KEY_COLUMN_USAGE CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
@ -505,6 +694,9 @@ NULL information_schema PARTITIONS CHECKSUM bigint NULL NULL NULL NULL bigint(21
|
|||||||
3.0000 information_schema PARTITIONS PARTITION_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
|
3.0000 information_schema PARTITIONS PARTITION_COMMENT varchar 80 240 utf8 utf8_general_ci varchar(80)
|
||||||
3.0000 information_schema PARTITIONS NODEGROUP varchar 12 36 utf8 utf8_general_ci varchar(12)
|
3.0000 information_schema PARTITIONS NODEGROUP varchar 12 36 utf8 utf8_general_ci varchar(12)
|
||||||
3.0000 information_schema PARTITIONS TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema PARTITIONS TABLESPACE_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
|
NULL information_schema PBXT_STATISTICS ID int NULL NULL NULL NULL int(4)
|
||||||
|
3.0000 information_schema PBXT_STATISTICS Name varchar 40 120 utf8 utf8_general_ci varchar(40)
|
||||||
|
NULL information_schema PBXT_STATISTICS Value bigint NULL NULL NULL NULL bigint(8)
|
||||||
3.0000 information_schema PLUGINS PLUGIN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema PLUGINS PLUGIN_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
3.0000 information_schema PLUGINS PLUGIN_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
|
3.0000 information_schema PLUGINS PLUGIN_VERSION varchar 20 60 utf8 utf8_general_ci varchar(20)
|
||||||
3.0000 information_schema PLUGINS PLUGIN_STATUS varchar 10 30 utf8 utf8_general_ci varchar(10)
|
3.0000 information_schema PLUGINS PLUGIN_STATUS varchar 10 30 utf8 utf8_general_ci varchar(10)
|
||||||
@ -523,6 +715,7 @@ NULL information_schema PROCESSLIST ID bigint NULL NULL NULL NULL bigint(4)
|
|||||||
NULL information_schema PROCESSLIST TIME int NULL NULL NULL NULL int(7)
|
NULL information_schema PROCESSLIST TIME int NULL NULL NULL NULL int(7)
|
||||||
3.0000 information_schema PROCESSLIST STATE varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema PROCESSLIST STATE varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
1.0000 information_schema PROCESSLIST INFO longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
|
1.0000 information_schema PROCESSLIST INFO longtext 4294967295 4294967295 utf8 utf8_general_ci longtext
|
||||||
|
NULL information_schema PROCESSLIST TIME_MS decimal NULL NULL NULL NULL decimal(22,3)
|
||||||
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512)
|
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_CATALOG varchar 512 1536 utf8 utf8_general_ci varchar(512)
|
||||||
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_SCHEMA varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
3.0000 information_schema REFERENTIAL_CONSTRAINTS CONSTRAINT_NAME varchar 64 192 utf8 utf8_general_ci varchar(64)
|
||||||
@ -655,3 +848,7 @@ NULL information_schema TRIGGERS CREATED datetime NULL NULL NULL NULL datetime
|
|||||||
3.0000 information_schema VIEWS SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
|
3.0000 information_schema VIEWS SECURITY_TYPE varchar 7 21 utf8 utf8_general_ci varchar(7)
|
||||||
3.0000 information_schema VIEWS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
|
3.0000 information_schema VIEWS CHARACTER_SET_CLIENT varchar 32 96 utf8 utf8_general_ci varchar(32)
|
||||||
3.0000 information_schema VIEWS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
|
3.0000 information_schema VIEWS COLLATION_CONNECTION varchar 32 96 utf8 utf8_general_ci varchar(32)
|
||||||
|
3.0000 information_schema XTRADB_ENHANCEMENTS name varchar 255 765 utf8 utf8_general_ci varchar(255)
|
||||||
|
3.0000 information_schema XTRADB_ENHANCEMENTS description varchar 255 765 utf8 utf8_general_ci varchar(255)
|
||||||
|
3.0000 information_schema XTRADB_ENHANCEMENTS comment varchar 100 300 utf8 utf8_general_ci varchar(100)
|
||||||
|
3.0000 information_schema XTRADB_ENHANCEMENTS link varchar 255 765 utf8 utf8_general_ci varchar(255)
|
||||||
|
@ -245,6 +245,305 @@ user_comment
|
|||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA information_schema
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES_BLOB
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES_INDEX
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMP
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMPMEM
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMPMEM_RESET
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMP_RESET
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_INDEX_STATS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_LOCKS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_LOCK_WAITS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_RSEG
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_TABLE_STATS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_TRX
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
TABLE_NAME KEY_COLUMN_USAGE
|
TABLE_NAME KEY_COLUMN_USAGE
|
||||||
TABLE_TYPE SYSTEM VIEW
|
TABLE_TYPE SYSTEM VIEW
|
||||||
ENGINE MEMORY
|
ENGINE MEMORY
|
||||||
@ -291,6 +590,29 @@ user_comment
|
|||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA information_schema
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME PBXT_STATISTICS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
TABLE_NAME PLUGINS
|
TABLE_NAME PLUGINS
|
||||||
TABLE_TYPE SYSTEM VIEW
|
TABLE_TYPE SYSTEM VIEW
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
@ -634,6 +956,29 @@ CREATE_OPTIONS #CO#
|
|||||||
TABLE_COMMENT #TC#
|
TABLE_COMMENT #TC#
|
||||||
user_comment
|
user_comment
|
||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME XTRADB_ENHANCEMENTS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
DROP USER testuser1@localhost;
|
DROP USER testuser1@localhost;
|
||||||
CREATE USER testuser1@localhost;
|
CREATE USER testuser1@localhost;
|
||||||
GRANT SELECT ON test1.* TO testuser1@localhost;
|
GRANT SELECT ON test1.* TO testuser1@localhost;
|
||||||
@ -883,6 +1228,305 @@ user_comment
|
|||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA information_schema
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES_BLOB
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_BUFFER_POOL_PAGES_INDEX
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMP
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMPMEM
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMPMEM_RESET
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_CMP_RESET
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_INDEX_STATS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_LOCKS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_LOCK_WAITS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_RSEG
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_TABLE_STATS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME INNODB_TRX
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
TABLE_NAME KEY_COLUMN_USAGE
|
TABLE_NAME KEY_COLUMN_USAGE
|
||||||
TABLE_TYPE SYSTEM VIEW
|
TABLE_TYPE SYSTEM VIEW
|
||||||
ENGINE MEMORY
|
ENGINE MEMORY
|
||||||
@ -929,6 +1573,29 @@ user_comment
|
|||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA information_schema
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME PBXT_STATISTICS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
TABLE_NAME PLUGINS
|
TABLE_NAME PLUGINS
|
||||||
TABLE_TYPE SYSTEM VIEW
|
TABLE_TYPE SYSTEM VIEW
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
@ -1272,6 +1939,29 @@ CREATE_OPTIONS #CO#
|
|||||||
TABLE_COMMENT #TC#
|
TABLE_COMMENT #TC#
|
||||||
user_comment
|
user_comment
|
||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
|
TABLE_CATALOG NULL
|
||||||
|
TABLE_SCHEMA information_schema
|
||||||
|
TABLE_NAME XTRADB_ENHANCEMENTS
|
||||||
|
TABLE_TYPE SYSTEM VIEW
|
||||||
|
ENGINE MEMORY
|
||||||
|
VERSION 10
|
||||||
|
ROW_FORMAT Fixed
|
||||||
|
TABLE_ROWS #TBLR#
|
||||||
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
DATA_LENGTH #DL#
|
||||||
|
MAX_DATA_LENGTH #MDL#
|
||||||
|
INDEX_LENGTH #IL#
|
||||||
|
DATA_FREE #DF#
|
||||||
|
AUTO_INCREMENT NULL
|
||||||
|
CREATE_TIME #CRT#
|
||||||
|
UPDATE_TIME #UT#
|
||||||
|
CHECK_TIME #CT#
|
||||||
|
TABLE_COLLATION utf8_general_ci
|
||||||
|
CHECKSUM NULL
|
||||||
|
CREATE_OPTIONS #CO#
|
||||||
|
TABLE_COMMENT #TC#
|
||||||
|
user_comment
|
||||||
|
Separator -----------------------------------------------------
|
||||||
# Switch to connection default and close connection testuser1
|
# Switch to connection default and close connection testuser1
|
||||||
DROP USER testuser1@localhost;
|
DROP USER testuser1@localhost;
|
||||||
DROP DATABASE test1;
|
DROP DATABASE test1;
|
||||||
|
@ -19,287 +19,11 @@ FROM information_schema.tables
|
|||||||
WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE'
|
WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE'
|
||||||
ORDER BY table_schema,table_name;
|
ORDER BY table_schema,table_name;
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA test
|
TABLE_SCHEMA test1
|
||||||
TABLE_NAME t1
|
TABLE_NAME t1
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
VERSION 10
|
VERSION 10
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t10
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t11
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t2
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t3
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t4
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t7
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t8
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t9
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb1
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb2
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb3
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb4
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
ROW_FORMAT DYNAMIC_OR_PAGE
|
||||||
TABLE_ROWS #TBLR#
|
TABLE_ROWS #TBLR#
|
||||||
AVG_ROW_LENGTH #ARL#
|
AVG_ROW_LENGTH #ARL#
|
||||||
@ -319,7 +43,7 @@ user_comment
|
|||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA test1
|
TABLE_SCHEMA test1
|
||||||
TABLE_NAME tb2
|
TABLE_NAME t2
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
VERSION 10
|
VERSION 10
|
||||||
@ -341,12 +65,12 @@ TABLE_COMMENT #TC#
|
|||||||
user_comment
|
user_comment
|
||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA test4
|
TABLE_SCHEMA test2
|
||||||
TABLE_NAME t6
|
TABLE_NAME t1
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
VERSION 10
|
VERSION 10
|
||||||
ROW_FORMAT Fixed
|
ROW_FORMAT DYNAMIC_OR_PAGE
|
||||||
TABLE_ROWS #TBLR#
|
TABLE_ROWS #TBLR#
|
||||||
AVG_ROW_LENGTH #ARL#
|
AVG_ROW_LENGTH #ARL#
|
||||||
DATA_LENGTH #DL#
|
DATA_LENGTH #DL#
|
||||||
@ -387,12 +111,12 @@ FROM information_schema.tables
|
|||||||
WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE'
|
WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE'
|
||||||
ORDER BY table_schema,table_name;
|
ORDER BY table_schema,table_name;
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA test
|
TABLE_SCHEMA test1
|
||||||
TABLE_NAME t1
|
TABLE_NAME t1
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
VERSION 10
|
VERSION 10
|
||||||
ROW_FORMAT Fixed
|
ROW_FORMAT DYNAMIC_OR_PAGE
|
||||||
TABLE_ROWS #TBLR#
|
TABLE_ROWS #TBLR#
|
||||||
AVG_ROW_LENGTH #ARL#
|
AVG_ROW_LENGTH #ARL#
|
||||||
DATA_LENGTH #DL#
|
DATA_LENGTH #DL#
|
||||||
@ -410,264 +134,11 @@ TABLE_COMMENT #TC#
|
|||||||
user_comment
|
user_comment
|
||||||
Separator -----------------------------------------------------
|
Separator -----------------------------------------------------
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA test
|
TABLE_SCHEMA test1
|
||||||
TABLE_NAME t10
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t11
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t2
|
TABLE_NAME t2
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MYISAM_OR_MARIA
|
ENGINE MYISAM_OR_MARIA
|
||||||
VERSION 10
|
VERSION 10
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t3
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t4
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t7
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t8
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME t9
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb1
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb2
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb3
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
|
||||||
TABLE_ROWS #TBLR#
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME #CRT#
|
|
||||||
UPDATE_TIME #UT#
|
|
||||||
CHECK_TIME #CT#
|
|
||||||
TABLE_COLLATION latin1_swedish_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS #CO#
|
|
||||||
TABLE_COMMENT #TC#
|
|
||||||
user_comment
|
|
||||||
Separator -----------------------------------------------------
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA test
|
|
||||||
TABLE_NAME tb4
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MYISAM_OR_MARIA
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT DYNAMIC_OR_PAGE
|
ROW_FORMAT DYNAMIC_OR_PAGE
|
||||||
TABLE_ROWS #TBLR#
|
TABLE_ROWS #TBLR#
|
||||||
AVG_ROW_LENGTH #ARL#
|
AVG_ROW_LENGTH #ARL#
|
||||||
|
@ -29,28 +29,29 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` (
|
|||||||
`COMMAND` varchar(16) NOT NULL DEFAULT '',
|
`COMMAND` varchar(16) NOT NULL DEFAULT '',
|
||||||
`TIME` int(7) NOT NULL DEFAULT '0',
|
`TIME` int(7) NOT NULL DEFAULT '0',
|
||||||
`STATE` varchar(64) DEFAULT NULL,
|
`STATE` varchar(64) DEFAULT NULL,
|
||||||
`INFO` longtext
|
`INFO` longtext,
|
||||||
|
`TIME_MS` decimal(22,3) NOT NULL DEFAULT '0.000'
|
||||||
) DEFAULT CHARSET=utf8
|
) DEFAULT CHARSET=utf8
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
Id User Host db Command Time State Info
|
Id User Host db Command Time State Info
|
||||||
ID root HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID root HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
SELECT * FROM processlist ORDER BY id;
|
SELECT * FROM processlist ORDER BY id;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID root HOST_NAME information_schema Query TIME executing SELECT * FROM processlist ORDER BY id
|
ID root HOST_NAME information_schema Query TIME executing SELECT * FROM processlist ORDER BY id TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO FROM processlist ORDER BY id;
|
SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS FROM processlist ORDER BY id;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID root HOST_NAME information_schema Query TIME executing SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO FROM processlist ORDER BY id
|
ID root HOST_NAME information_schema Query TIME executing SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS FROM processlist ORDER BY id TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
CREATE TEMPORARY TABLE test.t_processlist AS SELECT * FROM processlist;
|
CREATE TEMPORARY TABLE test.t_processlist AS SELECT * FROM processlist;
|
||||||
UPDATE test.t_processlist SET user='horst' WHERE id=1 ;
|
UPDATE test.t_processlist SET user='horst' WHERE id=1 ;
|
||||||
INSERT INTO processlist SELECT * FROM test.t_processlist;
|
INSERT INTO processlist SELECT * FROM test.t_processlist;
|
||||||
ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
|
||||||
DROP TABLE test.t_processlist;
|
DROP TABLE test.t_processlist;
|
||||||
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO) AS SELECT * FROM processlist WITH CHECK OPTION;
|
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS) AS SELECT * FROM processlist WITH CHECK OPTION;
|
||||||
ERROR HY000: CHECK OPTION on non-updatable view 'test.v_processlist'
|
ERROR HY000: CHECK OPTION on non-updatable view 'test.v_processlist'
|
||||||
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO) AS SELECT * FROM processlist;
|
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS) AS SELECT * FROM processlist;
|
||||||
UPDATE test.v_processlist SET TIME=NOW() WHERE id = 1;
|
UPDATE test.v_processlist SET TIME=NOW() WHERE id = 1;
|
||||||
ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
|
ERROR 42000: Access denied for user 'root'@'localhost' to database 'information_schema'
|
||||||
DROP VIEW test.v_processlist;
|
DROP VIEW test.v_processlist;
|
||||||
@ -99,25 +100,26 @@ PROCESSLIST CREATE TEMPORARY TABLE `PROCESSLIST` (
|
|||||||
`COMMAND` varchar(16) NOT NULL DEFAULT '',
|
`COMMAND` varchar(16) NOT NULL DEFAULT '',
|
||||||
`TIME` int(7) NOT NULL DEFAULT '0',
|
`TIME` int(7) NOT NULL DEFAULT '0',
|
||||||
`STATE` varchar(64) DEFAULT NULL,
|
`STATE` varchar(64) DEFAULT NULL,
|
||||||
`INFO` longtext
|
`INFO` longtext,
|
||||||
|
`TIME_MS` decimal(22,3) NOT NULL DEFAULT '0.000'
|
||||||
) DEFAULT CHARSET=utf8
|
) DEFAULT CHARSET=utf8
|
||||||
SHOW processlist;
|
SHOW processlist;
|
||||||
Id User Host db Command Time State Info
|
Id User Host db Command Time State Info
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM processlist ORDER BY id;
|
SELECT * FROM processlist ORDER BY id;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM processlist ORDER BY id
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM processlist ORDER BY id TIME_MS
|
||||||
SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO FROM processlist ORDER BY id;
|
SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS FROM processlist ORDER BY id;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO FROM processlist ORDER BY id
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS FROM processlist ORDER BY id TIME_MS
|
||||||
CREATE TEMPORARY TABLE test.t_processlist AS SELECT * FROM processlist;
|
CREATE TEMPORARY TABLE test.t_processlist AS SELECT * FROM processlist;
|
||||||
UPDATE test.t_processlist SET user='horst' WHERE id=1 ;
|
UPDATE test.t_processlist SET user='horst' WHERE id=1 ;
|
||||||
INSERT INTO processlist SELECT * FROM test.t_processlist;
|
INSERT INTO processlist SELECT * FROM test.t_processlist;
|
||||||
ERROR 42000: Access denied for user 'ddicttestuser1'@'localhost' to database 'information_schema'
|
ERROR 42000: Access denied for user 'ddicttestuser1'@'localhost' to database 'information_schema'
|
||||||
DROP TABLE test.t_processlist;
|
DROP TABLE test.t_processlist;
|
||||||
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO) AS SELECT * FROM processlist WITH CHECK OPTION;
|
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS) AS SELECT * FROM processlist WITH CHECK OPTION;
|
||||||
ERROR HY000: CHECK OPTION on non-updatable view 'test.v_processlist'
|
ERROR HY000: CHECK OPTION on non-updatable view 'test.v_processlist'
|
||||||
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO) AS SELECT * FROM processlist;
|
CREATE VIEW test.v_processlist (ID, USER, HOST, DB, COMMAND, TIME, STATE, INFO, TIME_MS) AS SELECT * FROM processlist;
|
||||||
UPDATE test.v_processlist SET TIME=NOW() WHERE id = 1;
|
UPDATE test.v_processlist SET TIME=NOW() WHERE id = 1;
|
||||||
ERROR 42000: Access denied for user 'ddicttestuser1'@'localhost' to database 'information_schema'
|
ERROR 42000: Access denied for user 'ddicttestuser1'@'localhost' to database 'information_schema'
|
||||||
DROP VIEW test.v_processlist;
|
DROP VIEW test.v_processlist;
|
||||||
@ -170,8 +172,8 @@ SHOW processlist;
|
|||||||
Id User Host db Command Time State Info
|
Id User Host db Command Time State Info
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
4.2 New connection con101 (ddicttestuser1 with PROCESS privilege)
|
4.2 New connection con101 (ddicttestuser1 with PROCESS privilege)
|
||||||
SHOW/SELECT shows all processes/threads.
|
SHOW/SELECT shows all processes/threads.
|
||||||
@ -185,10 +187,10 @@ ID root HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID root HOST_NAME information_schema Sleep TIME NULL
|
ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
5 Grant PROCESS privilege to anonymous user.
|
5 Grant PROCESS privilege to anonymous user.
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -209,11 +211,11 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID root HOST_NAME information_schema Sleep TIME NULL
|
ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
6 Revoke PROCESS privilege from ddicttestuser1
|
6 Revoke PROCESS privilege from ddicttestuser1
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -233,10 +235,10 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
7 Revoke PROCESS privilege from anonymous user
|
7 Revoke PROCESS privilege from anonymous user
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -251,9 +253,9 @@ SHOW GRANTS FOR ''@'localhost';
|
|||||||
Grants for @localhost
|
Grants for @localhost
|
||||||
GRANT USAGE ON *.* TO ''@'localhost'
|
GRANT USAGE ON *.* TO ''@'localhost'
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID HOST_NAME information_schema Sleep TIME NULL
|
ID HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
8 Grant SUPER (does not imply PROCESS) privilege to ddicttestuser1
|
8 Grant SUPER (does not imply PROCESS) privilege to ddicttestuser1
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -273,11 +275,11 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
9 Revoke SUPER privilege from user ddicttestuser1
|
9 Revoke SUPER privilege from user ddicttestuser1
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -299,12 +301,12 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
10 Grant SUPER privilege with grant option to user ddicttestuser1.
|
10 Grant SUPER privilege with grant option to user ddicttestuser1.
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -353,18 +355,18 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser2 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser2 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser2 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser2 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID HOST_NAME information_schema Sleep TIME NULL
|
ID HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID HOST_NAME information_schema Sleep TIME NULL
|
ID HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID root HOST_NAME information_schema Sleep TIME NULL
|
ID root HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
11 User ddicttestuser1 revokes PROCESS privilege from user ddicttestuser2
|
11 User ddicttestuser1 revokes PROCESS privilege from user ddicttestuser2
|
||||||
connection ddicttestuser1;
|
connection ddicttestuser1;
|
||||||
@ -382,9 +384,9 @@ Id User Host db Command Time State Info
|
|||||||
ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser2 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser2 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser2 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser2 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser2 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
11.2 Revoke SUPER,PROCESS,GRANT OPTION privilege from user ddicttestuser1
|
11.2 Revoke SUPER,PROCESS,GRANT OPTION privilege from user ddicttestuser1
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -411,15 +413,15 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
12 Revoke the SELECT privilege from user ddicttestuser1
|
12 Revoke the SELECT privilege from user ddicttestuser1
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
@ -447,16 +449,16 @@ ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
|||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME NULL SHOW processlist
|
||||||
SELECT * FROM information_schema.processlist;
|
SELECT * FROM information_schema.processlist;
|
||||||
ID USER HOST DB COMMAND TIME STATE INFO
|
ID USER HOST DB COMMAND TIME STATE INFO TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist
|
ID ddicttestuser1 HOST_NAME information_schema Query TIME executing SELECT * FROM information_schema.processlist TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL
|
ID ddicttestuser1 HOST_NAME information_schema Sleep TIME NULL TIME_MS
|
||||||
####################################################################################
|
####################################################################################
|
||||||
12.2 Revoke only the SELECT privilege on the information_schema from ddicttestuser1.
|
12.2 Revoke only the SELECT privilege on the information_schema from ddicttestuser1.
|
||||||
connection default (user=root)
|
connection default (user=root)
|
||||||
|
File diff suppressed because one or more lines are too long
@ -16,6 +16,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
--source include/not_embedded.inc
|
--source include/not_embedded.inc
|
||||||
|
# This test depends on having the PBXT information_schema stuff.
|
||||||
|
--source include/have_pbxt.inc
|
||||||
|
|
||||||
let $my_where = WHERE table_schema = 'information_schema'
|
let $my_where = WHERE table_schema = 'information_schema'
|
||||||
AND table_name <> 'profiling';
|
AND table_name <> 'profiling';
|
||||||
|
Reference in New Issue
Block a user