mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
16 lines
509 B
Text
16 lines
509 B
Text
DESC sys.latest_file_io;
|
|
Field Type Null Key Default Extra
|
|
thread varchar(214) YES NULL
|
|
file varchar(512) YES NULL
|
|
latency varchar(12) YES NULL
|
|
operation varchar(32) NO NULL
|
|
requested varchar(14) YES NULL
|
|
SELECT * FROM sys.latest_file_io;
|
|
DESC sys.x$latest_file_io;
|
|
Field Type Null Key Default Extra
|
|
thread varchar(214) YES NULL
|
|
file varchar(512) YES NULL
|
|
latency bigint(20) unsigned YES NULL
|
|
operation varchar(32) NO NULL
|
|
requested bigint(20) YES NULL
|
|
SELECT * FROM sys.x$latest_file_io;
|