diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:00:34 +0000 |
commit | 3f619478f796eddbba6e39502fe941b285dd97b1 (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/sysschema/r/v_host_summary.result | |
parent | Initial commit. (diff) | |
download | mariadb-upstream.tar.xz mariadb-upstream.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/sysschema/r/v_host_summary.result')
-rw-r--r-- | mysql-test/suite/sysschema/r/v_host_summary.result | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mysql-test/suite/sysschema/r/v_host_summary.result b/mysql-test/suite/sysschema/r/v_host_summary.result new file mode 100644 index 00000000..b619a8a5 --- /dev/null +++ b/mysql-test/suite/sysschema/r/v_host_summary.result @@ -0,0 +1,30 @@ +DESC sys.host_summary; +Field Type Null Key Default Extra +host varchar(255) YES NULL +statements decimal(64,0) YES NULL +statement_latency text YES NULL +statement_avg_latency text YES NULL +table_scans decimal(65,0) YES NULL +file_ios decimal(64,0) YES NULL +file_io_latency text YES NULL +current_connections decimal(41,0) YES NULL +total_connections decimal(41,0) YES NULL +unique_users bigint(21) NO 0 +current_memory text YES NULL +total_memory_allocated text YES NULL +SELECT * FROM sys.host_summary; +DESC sys.x$host_summary; +Field Type Null Key Default Extra +host varchar(255) YES NULL +statements decimal(64,0) YES NULL +statement_latency decimal(64,0) YES NULL +statement_avg_latency decimal(65,4) YES NULL +table_scans decimal(65,0) YES NULL +file_ios decimal(64,0) YES NULL +file_io_latency decimal(64,0) YES NULL +current_connections decimal(41,0) YES NULL +total_connections decimal(41,0) YES NULL +unique_users bigint(21) NO 0 +current_memory decimal(63,0) YES NULL +total_memory_allocated decimal(64,0) YES NULL +SELECT * FROM sys.x$host_summary; |