mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
* it isn't "pfs" function, don't call it Item_func_pfs, don't use item_pfsfunc.* * tests don't depend on performance schema, put in the main suite * inherit from Item_str_ascii_func * use connection collation, not utf8mb3_general_ci * set result length in fix_length_and_dec * do not set maybe_null * use my_snprintf() where possible * don't set m_value.ptr on every invocation * update sys schema to use the format_pico_time() * len must be size_t (compilation error on Windows) * the correct function name for double->double is fabs() * drop volatile hack
16 lines
502 B
Text
16 lines
502 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 text 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;
|