Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit f98e68d

Browse files
committed
Add simple selects to all views, whilst ignoring results, to ensure no errors
1 parent 05b6538 commit f98e68d

File tree

99 files changed

+973
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+973
-2
lines changed

mysql-test/suite/sysschema/r/all_sys_objects_exist.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,10 @@ format_path FUNCTION
102102
format_statement FUNCTION
103103
format_time FUNCTION
104104
ps_is_account_enabled FUNCTION
105+
ps_is_consumer_enabled FUNCTION
105106
ps_is_instrument_default_enabled FUNCTION
106107
ps_is_instrument_default_timed FUNCTION
108+
ps_is_thread_instrumented FUNCTION
107109
ps_thread_id FUNCTION
108110
ps_thread_stack FUNCTION
109111
sys_get_config FUNCTION

mysql-test/suite/sysschema/r/v_host_summary.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ total_connections decimal(41,0) YES NULL
1212
unique_users bigint(21) NO 0
1313
current_memory text YES NULL
1414
total_memory_allocated text YES NULL
15+
SELECT * FROM sys.host_summary;
1516
DESC sys.x$host_summary;
1617
Field Type Null Key Default Extra
1718
host varchar(60) YES NULL
@@ -26,3 +27,4 @@ total_connections decimal(41,0) YES NULL
2627
unique_users bigint(21) NO 0
2728
current_memory decimal(63,0) YES NULL
2829
total_memory_allocated decimal(64,0) YES NULL
30+
SELECT * FROM sys.x$host_summary;

mysql-test/suite/sysschema/r/v_host_summary_by_file_io.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ Field Type Null Key Default Extra
33
host varchar(60) YES NULL
44
ios decimal(42,0) YES NULL
55
io_latency text YES NULL
6+
SELECT * FROM sys.host_summary_by_file_io;
67
DESC sys.x$host_summary_by_file_io;
78
Field Type Null Key Default Extra
89
host varchar(60) YES NULL
910
ios decimal(42,0) YES NULL
1011
io_latency decimal(42,0) YES NULL
12+
SELECT * FROM sys.x$host_summary_by_file_io;

mysql-test/suite/sysschema/r/v_host_summary_by_file_io_type.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ event_name varchar(128) NO NULL
55
total bigint(20) unsigned NO NULL
66
total_latency text YES NULL
77
max_latency text YES NULL
8+
SELECT * FROM sys.host_summary_by_file_io_type;
89
DESC sys.x$host_summary_by_file_io_type;
910
Field Type Null Key Default Extra
1011
host varchar(60) YES NULL
1112
event_name varchar(128) NO NULL
1213
total bigint(20) unsigned NO NULL
1314
total_latency bigint(20) unsigned NO NULL
1415
max_latency bigint(20) unsigned NO NULL
16+
SELECT * FROM sys.x$host_summary_by_file_io_type;

mysql-test/suite/sysschema/r/v_host_summary_by_stages.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ event_name varchar(128) NO NULL
55
total bigint(20) unsigned NO NULL
66
total_latency text YES NULL
77
avg_latency text YES NULL
8+
SELECT * FROM sys.host_summary_by_stages;
89
DESC sys.x$host_summary_by_stages;
910
Field Type Null Key Default Extra
1011
host varchar(60) YES NULL
1112
event_name varchar(128) NO NULL
1213
total bigint(20) unsigned NO NULL
1314
total_latency bigint(20) unsigned NO NULL
1415
avg_latency bigint(20) unsigned NO NULL
16+
SELECT * FROM sys.x$host_summary_by_stages;

mysql-test/suite/sysschema/r/v_host_summary_by_statement_latency.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ rows_sent decimal(42,0) YES NULL
99
rows_examined decimal(42,0) YES NULL
1010
rows_affected decimal(42,0) YES NULL
1111
full_scans decimal(43,0) YES NULL
12+
SELECT * FROM sys.host_summary_by_statement_latency;
1213
DESC sys.x$host_summary_by_statement_latency;
1314
Field Type Null Key Default Extra
1415
host varchar(60) YES NULL
@@ -20,3 +21,4 @@ rows_sent decimal(42,0) YES NULL
2021
rows_examined decimal(42,0) YES NULL
2122
rows_affected decimal(42,0) YES NULL
2223
full_scans decimal(43,0) YES NULL
24+
SELECT * FROM sys.x$host_summary_by_statement_latency;

mysql-test/suite/sysschema/r/v_host_summary_by_statement_type.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ rows_sent bigint(20) unsigned NO NULL
1010
rows_examined bigint(20) unsigned NO NULL
1111
rows_affected bigint(20) unsigned NO NULL
1212
full_scans bigint(21) unsigned NO 0
13+
SELECT * FROM sys.host_summary_by_statement_type;
1314
DESC sys.x$host_summary_by_statement_type;
1415
Field Type Null Key Default Extra
1516
host varchar(60) YES NULL
@@ -22,3 +23,4 @@ rows_sent bigint(20) unsigned NO NULL
2223
rows_examined bigint(20) unsigned NO NULL
2324
rows_affected bigint(20) unsigned NO NULL
2425
full_scans bigint(21) unsigned NO 0
26+
SELECT * FROM sys.x$host_summary_by_statement_type;

mysql-test/suite/sysschema/r/v_innodb_buffer_stats_by_schema.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pages bigint(21) NO 0
77
pages_hashed bigint(21) NO 0
88
pages_old bigint(21) NO 0
99
rows_cached decimal(44,0) YES NULL
10+
SELECT * FROM sys.innodb_buffer_stats_by_schema;
1011
DESC sys.x$innodb_buffer_stats_by_schema;
1112
Field Type Null Key Default Extra
1213
object_schema text YES NULL
@@ -16,3 +17,4 @@ pages bigint(21) NO 0
1617
pages_hashed bigint(21) NO 0
1718
pages_old bigint(21) NO 0
1819
rows_cached decimal(44,0) NO 0
20+
SELECT * FROM sys.x$innodb_buffer_stats_by_schema;

mysql-test/suite/sysschema/r/v_innodb_buffer_stats_by_table.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ pages bigint(21) NO 0
88
pages_hashed bigint(21) NO 0
99
pages_old bigint(21) NO 0
1010
rows_cached decimal(44,0) YES NULL
11+
SELECT * FROM sys.innodb_buffer_stats_by_table;
1112
DESC sys.x$innodb_buffer_stats_by_table;
1213
Field Type Null Key Default Extra
1314
object_schema text YES NULL
@@ -18,3 +19,4 @@ pages bigint(21) NO 0
1819
pages_hashed bigint(21) NO 0
1920
pages_old bigint(21) NO 0
2021
rows_cached decimal(44,0) NO 0
22+
SELECT * FROM sys.x$innodb_buffer_stats_by_table;

mysql-test/suite/sysschema/r/v_innodb_lock_waits.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ blocking_pid bigint(21) unsigned NO 0
1515
blocking_query longtext YES NULL
1616
blocking_lock_id varchar(81) NO
1717
blocking_lock_mode varchar(32) NO
18+
SELECT * FROM sys.innodb_lock_waits;
1819
DESC sys.x$innodb_lock_waits;
1920
Field Type Null Key Default Extra
2021
wait_started datetime YES NULL
@@ -32,3 +33,4 @@ blocking_pid bigint(21) unsigned NO 0
3233
blocking_query varchar(1024) YES NULL
3334
blocking_lock_id varchar(81) NO
3435
blocking_lock_mode varchar(32) NO
36+
SELECT * FROM sys.x$innodb_lock_waits;

0 commit comments

Comments
 (0)