[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.147.56.105: ~ $
# Tests for PERFORMANCE_SCHEMA
# Miscelaneous

--source include/not_embedded.inc
--source include/have_perfschema.inc
--source include/no_protocol.inc

#
# Bug#12790483 OBJECTS_SUMMARY_GLOBAL_BY_TYPE AND RENAME TABLE
#
# Rename table leaves old tables names behind in
# performance_schema.objects_summary_global_by_type
#
SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

CREATE TABLE test.t_before(a INT);
INSERT INTO test.t_before VALUES (1);

# The new table should appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE.

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

RENAME TABLE test.t_before TO test.t_after;

# The renamed table should appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE, but only
# after it is accessed.

SELECT COUNT(*) FROM test.t_after;

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

DROP TABLE test.t_after;

# The renamed table should not appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE.

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

#
# Verify table views are ignored by the table io instrumentation.
#

CREATE TABLE test.t1(a INT);
INSERT INTO test.t1 VALUES (1);
CREATE VIEW test.v1 AS SELECT * FROM test.t1;
SELECT COUNT(*) FROM test.v1;

# Verify that a PFS table share was not created for the view.
SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

DROP VIEW test.v1;
DROP TABLE test.t1;

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';


#
# Bug#45496 Performance schema: assertion fails in
# ha_perfschema::rnd_init:223
#

--disable_result_log
SELECT EVENT_ID FROM performance_schema.events_waits_current
WHERE THREAD_ID IN
  (SELECT THREAD_ID FROM performance_schema.threads)
AND EVENT_NAME IN
  (SELECT NAME FROM performance_schema.setup_instruments
   WHERE NAME LIKE "wait/synch/%")
LIMIT 1;
--enable_result_log

#
# Bug#45088 Should not be able to create tables of engine PERFORMANCE_SCHEMA
#

--error ER_WRONG_PERFSCHEMA_USAGE
create table test.t1(a int) engine=performance_schema;

# The table should not appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

#
# Bug#44897 Performance Schema: can create a ghost table in another database
#

--error ER_WRONG_PERFSCHEMA_USAGE
create table test.t1 like performance_schema.events_waits_current;

# The table should not appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

#
# Bug#44898 PerformanceSchema: can create a table in db performance_schema, cannot insert
#

--error ER_TABLEACCESS_DENIED_ERROR
create table performance_schema.t1(a int);

# The table should not appear in OBJECTS_SUMMARY_GLOBAL_BY_TYPE

SELECT object_schema, object_name FROM performance_schema.objects_summary_global_by_type
  WHERE object_schema='test';

#
# Bug#51447 performance schema evil twin files
#

--disable_warnings
drop table if exists test.ghost;
--enable_warnings

create table test.ghost (a int, b int);
alter table test.ghost add index index_a(a);
alter table test.ghost add index index_b(b);
insert into test.ghost values (1, 3);
insert into test.ghost values (2, 4);
select * from test.ghost;

drop table test.ghost;

# Shoud return nothing
select * from performance_schema.file_instances
  where file_name like "%ghost%";

#
# Bug#52586 Misleading error message on attempt to access
#           a P_S table using a wrong name

--error ER_NO_SUCH_TABLE
select * from performance_schema.no_such_table;

#
# Bug#12370950 - 60905: TABLE_IO_WAITS_SUMMARY_BY_INDEX_USAGE AGGREGATES NON-INSERT DML WRONGLY
#

--disable_warnings
DROP TABLE IF EXISTS t_60905;
--enable_warnings
CREATE TABLE t_60905 (i INT, j INT, KEY(i)) ENGINE = InnoDB;
INSERT INTO t_60905 VALUES
(1,2), (3,4), (5,6), (7,8), (9,10);

# should delete with a "single" PRIMARY lookup (2 PRIMARY fetch, 1 PRIMARY delete)
DELETE FROM t_60905 WHERE i = 1;

# should delete with a full scan (5 NULL fetch, 1 NULL delete)
DELETE FROM t_60905 WHERE j = 8;

# show the instrument data
SELECT object_schema,
       object_name,
       index_name,
       count_fetch,
       count_insert,
       count_update,
       count_delete
  FROM performance_schema.table_io_waits_summary_by_index_usage
 WHERE object_schema = 'test'
   AND object_name = 't_60905';

DROP TABLE t_60905;


#
# Bug#11929832 - EVENTS_STATEMENTS_HISTORY HAS ERRORS=0 WHEN THERE ARE ERRORS
#
# Verify that SQL errors are properly counted.

use test;
truncate performance_schema.events_statements_history;
truncate performance_schema.events_statements_history_long;

--error ER_NO_SUCH_TABLE
select * from t1;

--echo 
select mysql_errno, returned_sqlstate, message_text, errors, warnings
  from performance_schema.events_statements_history where errors > 0;
  
--echo
select mysql_errno, returned_sqlstate, message_text, errors, warnings from 
  performance_schema.events_statements_history_long where errors > 0;

#
# Bug#20519832 - TRUNCATED SQL_TEXT values are not suffixed with '...'
#
# Verify that truncated SQL statements are suffixed with '...'

use performance_schema;
truncate performance_schema.events_statements_history;

# Should truncate at 1024 bytes (1024 characters)
select 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' AS A;

# Should truncate at 1024 bytes (487 characters)

select _utf8mb4 'васÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑвасÑ' as B;

select count(*) from events_statements_history where sql_text like "%...";

Filemanager

Name Type Size Permission Actions
all_tests.test File 2.28 KB 0644
bad_option_1.test File 950 B 0644
bad_option_2.test File 923 B 0644
bad_option_3.test File 889 B 0644
bad_option_4.test File 928 B 0644
bad_option_5.test File 1 KB 0644
binlog_edge_mix-master.opt File 41 B 0644
binlog_edge_mix.test File 208 B 0644
binlog_edge_row-master.opt File 41 B 0644
binlog_edge_row.test File 206 B 0644
binlog_edge_stmt-master.opt File 41 B 0644
binlog_edge_stmt.test File 212 B 0644
binlog_ok_mix-master.opt File 41 B 0644
binlog_ok_mix.test File 206 B 0644
binlog_ok_row-master.opt File 41 B 0644
binlog_ok_row.test File 204 B 0644
binlog_ok_stmt-master.opt File 41 B 0644
binlog_ok_stmt.test File 210 B 0644
checksum.test File 6.28 KB 0644
cnf_option.cnf File 273 B 0644
cnf_option.test File 281 B 0644
column_privilege.test File 1.69 KB 0644
connect_attrs.test File 2.24 KB 0644
connection.test File 163 B 0644
connection_3a-master.opt File 43 B 0644
connection_3a.test File 163 B 0644
connection_3a_3u-master.opt File 83 B 0644
connection_3a_3u.test File 163 B 0644
connection_3u-master.opt File 40 B 0644
connection_3u.test File 163 B 0644
csv_table_io.test File 791 B 0644
ddl_accounts.test File 487 B 0644
ddl_cond_instances.test File 514 B 0644
ddl_esgs_by_account_by_event_name.test File 621 B 0644
ddl_esgs_by_host_by_event_name.test File 609 B 0644
ddl_esgs_by_thread_by_event_name.test File 617 B 0644
ddl_esgs_by_user_by_event_name.test File 609 B 0644
ddl_esgs_global_by_event_name.test File 609 B 0644
ddl_esms_by_account_by_event_name.test File 637 B 0644
ddl_esms_by_digest.test File 1.68 KB 0644
ddl_esms_by_host_by_event_name.test File 625 B 0644
ddl_esms_by_thread_by_event_name.test File 633 B 0644
ddl_esms_by_user_by_event_name.test File 625 B 0644
ddl_esms_global_by_event_name.test File 625 B 0644
ddl_events_stages_current.test File 515 B 0644
ddl_events_stages_history.test File 515 B 0644
ddl_events_stages_history_long.test File 535 B 0644
ddl_events_statements_current.test File 531 B 0644
ddl_events_statements_history.test File 531 B 0644
ddl_events_statements_history_long.test File 551 B 0644
ddl_events_waits_current.test File 511 B 0644
ddl_events_waits_history.test File 511 B 0644
ddl_events_waits_history_long.test File 531 B 0644
ddl_ews_by_account_by_event_name.test File 617 B 0644
ddl_ews_by_host_by_event_name.test File 605 B 0644
ddl_ews_by_instance.test File 563 B 0644
ddl_ews_by_thread_by_event_name.test File 613 B 0644
ddl_ews_by_user_by_event_name.test File 605 B 0644
ddl_ews_global_by_event_name.test File 605 B 0644
ddl_file_instances.test File 524 B 0644
ddl_fs_by_event_name.test File 527 B 0644
ddl_fs_by_instance.test File 519 B 0644
ddl_host_cache.test File 459 B 0644
ddl_hosts.test File 475 B 0644
ddl_mutex_instances.test File 518 B 0644
ddl_os_global_by_type.test File 563 B 0644
ddl_performance_timers.test File 542 B 0644
ddl_rwlock_instances.test File 522 B 0644
ddl_session_account_connect_attrs.test File 553 B 0644
ddl_session_connect_attrs.test File 521 B 0644
ddl_setup_actors.test File 798 B 0644
ddl_setup_consumers.test File 518 B 0644
ddl_setup_instruments.test File 526 B 0644
ddl_setup_objects.test File 823 B 0644
ddl_setup_timers.test File 506 B 0644
ddl_socket_instances.test File 532 B 0644
ddl_socket_summary_by_event_name.test File 537 B 0644
ddl_socket_summary_by_instance.test File 537 B 0644
ddl_threads.test File 506 B 0644
ddl_tiws_by_index_usage.test File 585 B 0644
ddl_tiws_by_table.test File 561 B 0644
ddl_tlws_by_table.test File 569 B 0644
ddl_users.test File 475 B 0644
digest_null_literal.test File 872 B 0644
digest_table_full-master.opt File 42 B 0644
digest_table_full.test File 1 KB 0644
disabled.def File 404 B 0644
dml_accounts.test File 1.01 KB 0644
dml_cond_instances.test File 901 B 0644
dml_esgs_by_account_by_event_name.test File 1.41 KB 0644
dml_esgs_by_host_by_event_name.test File 1.38 KB 0644
dml_esgs_by_thread_by_event_name.test File 1.39 KB 0644
dml_esgs_by_user_by_event_name.test File 1.38 KB 0644
dml_esgs_global_by_event_name.test File 1.35 KB 0644
dml_esms_by_account_by_event_name.test File 1.45 KB 0644
dml_esms_by_digest.test File 2.41 KB 0644
dml_esms_by_host_by_event_name.test File 1.42 KB 0644
dml_esms_by_thread_by_event_name.test File 1.43 KB 0644
dml_esms_by_user_by_event_name.test File 1.42 KB 0644
dml_esms_global_by_event_name.test File 1.39 KB 0644
dml_events_stages_current.test File 1.14 KB 0644
dml_events_stages_history.test File 1.38 KB 0644
dml_events_stages_history_long.test File 1.43 KB 0644
dml_events_statements_current.test File 1.18 KB 0644
dml_events_statements_history.test File 1.43 KB 0644
dml_events_statements_history_long.test File 1.49 KB 0644
dml_events_waits_current.test File 1.14 KB 0644
dml_events_waits_history.test File 1.38 KB 0644
dml_events_waits_history_long.test File 1.44 KB 0644
dml_ews_by_account_by_event_name.test File 1.42 KB 0644
dml_ews_by_host_by_event_name.test File 1.38 KB 0644
dml_ews_by_instance.test File 1.74 KB 0644
dml_ews_by_thread_by_event_name.test File 1.39 KB 0644
dml_ews_by_user_by_event_name.test File 1.38 KB 0644
dml_ews_global_by_event_name.test File 1.35 KB 0644
dml_file_instances.test File 929 B 0644
dml_fs_by_event_name.test File 1.21 KB 0644
dml_fs_by_instance.test File 1.2 KB 0644
dml_handler.test File 1.29 KB 0644
dml_host_cache.test File 1.08 KB 0644
dml_hosts.test File 985 B 0644
dml_mutex_instances.test File 909 B 0644
dml_os_global_by_type.test File 1.98 KB 0644
dml_performance_timers.test File 1.06 KB 0644
dml_rwlock_instances.test File 917 B 0644
dml_session_account_connect_attrs.test File 1.17 KB 0644
dml_session_connect_attrs.test File 1.1 KB 0644
dml_setup_actors.test File 1.72 KB 0644
dml_setup_consumers.test File 1008 B 0644
dml_setup_instruments.test File 2.63 KB 0644
dml_setup_objects.test File 2.58 KB 0644
dml_setup_timers.test File 1.78 KB 0644
dml_socket_instances.test File 918 B 0644
dml_socket_summary_by_event_name.test File 1.2 KB 0644
dml_socket_summary_by_instance.test File 1.21 KB 0644
dml_threads.test File 1.27 KB 0644
dml_tiws_by_index_usage.test File 1.32 KB 0644
dml_tiws_by_table.test File 1.27 KB 0644
dml_tlws_by_table.test File 1.29 KB 0644
dml_users.test File 985 B 0644
event_aggregate-master.opt File 32 B 0644
event_aggregate.test File 215 B 0644
event_aggregate_no_a-master.opt File 75 B 0644
event_aggregate_no_a.test File 215 B 0644
event_aggregate_no_a_no_h-master.opt File 115 B 0644
event_aggregate_no_a_no_h.test File 215 B 0644
event_aggregate_no_a_no_u-master.opt File 115 B 0644
event_aggregate_no_a_no_u.test File 215 B 0644
event_aggregate_no_a_no_u_no_h-master.opt File 155 B 0644
event_aggregate_no_a_no_u_no_h.test File 215 B 0644
event_aggregate_no_h-master.opt File 72 B 0644
event_aggregate_no_h.test File 215 B 0644
event_aggregate_no_u-master.opt File 72 B 0644
event_aggregate_no_u.test File 215 B 0644
event_aggregate_no_u_no_h-master.opt File 112 B 0644
event_aggregate_no_u_no_h.test File 215 B 0644
func_file_io.test File 5.68 KB 0644
func_mutex.test File 4.45 KB 0644
global_read_lock.test File 2.21 KB 0644
hostcache_ipv4_addrinfo_again_allow.test File 1.29 KB 0644
hostcache_ipv4_addrinfo_again_deny.test File 1.17 KB 0644
hostcache_ipv4_addrinfo_bad_allow.test File 1.4 KB 0644
hostcache_ipv4_addrinfo_bad_deny.test File 1.29 KB 0644
hostcache_ipv4_addrinfo_good_allow.test File 1.33 KB 0644
hostcache_ipv4_addrinfo_good_deny.test File 1.16 KB 0644
hostcache_ipv4_addrinfo_noname_allow.test File 1.45 KB 0644
hostcache_ipv4_addrinfo_noname_deny.test File 1.16 KB 0644
hostcache_ipv4_auth_plugin-master.opt File 35 B 0644
hostcache_ipv4_auth_plugin.test File 2.57 KB 0644
hostcache_ipv4_blocked.test File 3.95 KB 0644
hostcache_ipv4_format.test File 1.07 KB 0644
hostcache_ipv4_max_con.test File 6.37 KB 0644
hostcache_ipv4_nameinfo_again_allow.test File 1.85 KB 0644
hostcache_ipv4_nameinfo_again_deny.test File 1.58 KB 0644
hostcache_ipv4_nameinfo_noname_allow.test File 1.22 KB 0644
hostcache_ipv4_nameinfo_noname_deny.test File 1.11 KB 0644
hostcache_ipv4_passwd.test File 2.28 KB 0644
hostcache_ipv4_ssl.test File 1.9 KB 0644
hostcache_ipv6_addrinfo_again_allow-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_again_allow.test File 1.31 KB 0644
hostcache_ipv6_addrinfo_again_deny-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_again_deny.test File 1.19 KB 0644
hostcache_ipv6_addrinfo_bad_allow-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_bad_allow.test File 1.44 KB 0644
hostcache_ipv6_addrinfo_bad_deny-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_bad_deny.test File 1.31 KB 0644
hostcache_ipv6_addrinfo_good_allow-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_good_allow.test File 1.34 KB 0644
hostcache_ipv6_addrinfo_good_deny-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_good_deny.test File 1.05 KB 0644
hostcache_ipv6_addrinfo_noname_allow-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_noname_allow.test File 1.48 KB 0644
hostcache_ipv6_addrinfo_noname_deny-master.opt File 15 B 0644
hostcache_ipv6_addrinfo_noname_deny.test File 1.18 KB 0644
hostcache_ipv6_auth_plugin-master.opt File 50 B 0644
hostcache_ipv6_auth_plugin.test File 2.57 KB 0644
hostcache_ipv6_blocked-master.opt File 15 B 0644
hostcache_ipv6_blocked.test File 3.9 KB 0644
hostcache_ipv6_max_con-master.opt File 15 B 0644
hostcache_ipv6_max_con.test File 5.42 KB 0644
hostcache_ipv6_nameinfo_again_allow-master.opt File 15 B 0644
hostcache_ipv6_nameinfo_again_allow.test File 1.88 KB 0644
hostcache_ipv6_nameinfo_again_deny-master.opt File 15 B 0644
hostcache_ipv6_nameinfo_again_deny.test File 1.58 KB 0644
hostcache_ipv6_nameinfo_noname_allow-master.opt File 15 B 0644
hostcache_ipv6_nameinfo_noname_allow.test File 1.25 KB 0644
hostcache_ipv6_nameinfo_noname_deny-master.opt File 15 B 0644
hostcache_ipv6_nameinfo_noname_deny.test File 1.13 KB 0644
hostcache_ipv6_passwd-master.opt File 15 B 0644
hostcache_ipv6_passwd.test File 2.19 KB 0644
hostcache_ipv6_ssl-master.opt File 15 B 0644
hostcache_ipv6_ssl.test File 1.91 KB 0644
hostcache_peer_addr.test File 1.12 KB 0644
indexed_table_io.test File 4.13 KB 0644
information_schema.test File 1.6 KB 0644
innodb_table_io.test File 794 B 0644
memory_table_io.test File 794 B 0644
merge_table_io.test File 1.44 KB 0644
misc.test File 7.62 KB 0644
multi_table_io.test File 1.52 KB 0644
myisam_file_io.opt File 57 B 0644
myisam_file_io.test File 1.87 KB 0644
myisam_table_io.test File 794 B 0644
nesting.test File 6.03 KB 0644
no_threads-master.opt File 140 B 0644
no_threads.test File 1.55 KB 0644
one_thread_per_con-master.opt File 44 B 0644
one_thread_per_con.test File 1.71 KB 0644
ortho_iter.test File 4.86 KB 0644
part_table_io.test File 864 B 0644
pfs_upgrade_event.test File 988 B 0644
pfs_upgrade_func.test File 956 B 0644
pfs_upgrade_proc.test File 968 B 0644
pfs_upgrade_table.test File 1.12 KB 0644
pfs_upgrade_view.test File 1.13 KB 0644
pool_of_threads-master.opt File 24 B 0644
privilege.test File 11.38 KB 0644
privilege_table_io.test File 1.73 KB 0644
query_cache-master.opt File 21 B 0644
query_cache.test File 1.49 KB 0644
read_only.test File 1.93 KB 0644
relaylog-slave.opt File 16 B 0644
relaylog.test File 6.47 KB 0644
rollback_table_io.test File 1.13 KB 0644
rpl_gtid_func.test File 2.37 KB 0644
rpl_statements-master.opt File 22 B 0644
rpl_statements-slave.opt File 22 B 0644
rpl_statements.test File 8.78 KB 0644
schema.test File 200 B 0644
selects-master.opt File 18 B 0644
selects.test File 4.53 KB 0644
server_init.test File 5.95 KB 0644
setup_actors.test File 8.71 KB 0644
setup_consumers_defaults-master.opt File 702 B 0644
setup_consumers_defaults.test File 486 B 0644
setup_instruments_defaults-master.opt File 1.67 KB 0644
setup_instruments_defaults.test File 2.51 KB 0644
setup_objects.test File 5.46 KB 0644
short_option_1-master.opt File 43 B 0644
short_option_1.test File 424 B 0644
short_option_2-master.opt File 5 B 0644
short_option_2.test File 458 B 0644
sizing_default.cnf File 1.31 KB 0644
sizing_default.test File 844 B 0644
sizing_growth-master.opt File 43 B 0644
sizing_growth.test File 11.49 KB 0644
sizing_high.cnf File 1.92 KB 0644
sizing_high.test File 220 B 0644
sizing_low.cnf File 1.06 KB 0644
sizing_low.test File 316 B 0644
sizing_med.cnf File 1.06 KB 0644
sizing_med.test File 220 B 0644
sizing_off.cnf File 1.2 KB 0644
sizing_off.test File 252 B 0644
socket_connect.test File 8.91 KB 0644
socket_instances_func-master.opt File 20 B 0644
socket_instances_func.test File 12.2 KB 0644
socket_instances_func_win-master.opt File 20 B 0644
socket_instances_func_win.test File 8.92 KB 0644
socket_summary_by_event_name_func.test File 11.86 KB 0644
socket_summary_by_instance_func.test File 62.35 KB 0644
socket_summary_by_instance_func_win.test File 62.54 KB 0644
stage_mdl_function.test File 1.37 KB 0644
stage_mdl_global-master.opt File 21 B 0644
stage_mdl_global.test File 1.24 KB 0644
stage_mdl_procedure.test File 1.63 KB 0644
stage_mdl_table.test File 1.3 KB 0644
start_server_1_digest-master.opt File 36 B 0644
start_server_1_digest.test File 484 B 0644
start_server_disable_idle-master.opt File 49 B 0644
start_server_disable_idle.test File 965 B 0644
start_server_disable_stages-master.opt File 52 B 0644
start_server_disable_stages.test File 841 B 0644
start_server_disable_statements-master.opt File 56 B 0644
start_server_disable_statements.test File 873 B 0644
start_server_disable_waits-master.opt File 51 B 0644
start_server_disable_waits.test File 978 B 0644
start_server_innodb-master.opt File 34 B 0644
start_server_innodb.test File 272 B 0644
start_server_low_digest-master.opt File 23 B 0644
start_server_low_digest.test File 996 B 0644
start_server_no_account-master.opt File 77 B 0644
start_server_no_account.test File 428 B 0644
start_server_no_cond_class-master.opt File 80 B 0644
start_server_no_cond_class.test File 651 B 0644
start_server_no_cond_inst-master.opt File 82 B 0644
start_server_no_cond_inst.test File 709 B 0644
start_server_no_digests-master.opt File 42 B 0644
start_server_no_digests.test File 1 KB 0644
start_server_no_file_class-master.opt File 80 B 0644
start_server_no_file_class.test File 648 B 0644
start_server_no_file_inst-master.opt File 82 B 0644
start_server_no_file_inst.test File 706 B 0644
start_server_no_host-master.opt File 74 B 0644
start_server_no_host.test File 419 B 0644
start_server_no_mutex_class-master.opt File 81 B 0644
start_server_no_mutex_class.test File 656 B 0644
start_server_no_mutex_inst-master.opt File 83 B 0644
start_server_no_mutex_inst.test File 715 B 0644
start_server_no_rwlock_class-master.opt File 82 B 0644
start_server_no_rwlock_class.test File 661 B 0644
start_server_no_rwlock_inst-master.opt File 84 B 0644
start_server_no_rwlock_inst.test File 721 B 0644
start_server_no_setup_actors-master.opt File 81 B 0644
start_server_no_setup_actors.test File 315 B 0644
start_server_no_setup_objects-master.opt File 82 B 0644
start_server_no_setup_objects.test File 319 B 0644
start_server_no_socket_class-master.opt File 82 B 0644
start_server_no_socket_class.test File 658 B 0644
start_server_no_socket_inst-master.opt File 84 B 0644
start_server_no_socket_inst.test File 718 B 0644
start_server_no_stage_class-master.opt File 81 B 0644
start_server_no_stage_class.test File 890 B 0644
start_server_no_stages_history-master.opt File 90 B 0644
start_server_no_stages_history.test File 389 B 0644
start_server_no_stages_history_long-master.opt File 95 B 0644
start_server_no_stages_history_long.test File 409 B 0644
start_server_no_statement_class-master.opt File 85 B 0644
start_server_no_statement_class.test File 930 B 0644
start_server_no_statements_history-master.opt File 94 B 0644
start_server_no_statements_history.test File 401 B 0644
start_server_no_statements_history_long-master.opt File 99 B 0644
start_server_no_statements_history_long.test File 421 B 0644
start_server_no_table_hdl-master.opt File 81 B 0644
start_server_no_table_hdl.test File 830 B 0644
start_server_no_table_inst-master.opt File 83 B 0644
start_server_no_table_inst.test File 827 B 0644
start_server_no_thread_class-master.opt File 82 B 0644
start_server_no_thread_class.test File 641 B 0644
start_server_no_thread_inst-master.opt File 84 B 0644
start_server_no_thread_inst.test File 726 B 0644
start_server_no_user-master.opt File 74 B 0644
start_server_no_user.test File 419 B 0644
start_server_no_waits_history-master.opt File 89 B 0644
start_server_no_waits_history.test File 386 B 0644
start_server_no_waits_history_long-master.opt File 94 B 0644
start_server_no_waits_history_long.test File 406 B 0644
start_server_nothing-master.opt File 1.45 KB 0644
start_server_nothing.test File 3.09 KB 0644
start_server_off-master.opt File 35 B 0644
start_server_off.test File 1.48 KB 0644
start_server_on-master.opt File 34 B 0644
start_server_on.test File 239 B 0644
statement_digest.test File 826 B 0644
statement_digest_charset.test File 995 B 0644
statement_digest_consumers-master.opt File 120 B 0644
statement_digest_consumers.test File 1.21 KB 0644
statement_digest_consumers2-master.opt File 120 B 0644
statement_digest_consumers2.test File 1.3 KB 0644
statement_digest_long_query-master.opt File 22 B 0644
statement_digest_long_query.test File 1.98 KB 0644
table_aggregate_global_2u_2t.test File 495 B 0644
table_aggregate_global_2u_3t.test File 435 B 0644
table_aggregate_global_4u_2t.test File 426 B 0644
table_aggregate_global_4u_3t.test File 366 B 0644
table_aggregate_hist_2u_2t.test File 406 B 0644
table_aggregate_hist_2u_3t.test File 346 B 0644
table_aggregate_hist_4u_2t.test File 337 B 0644
table_aggregate_hist_4u_3t.test File 277 B 0644
table_aggregate_off.test File 320 B 0644
table_aggregate_thread_2u_2t.test File 484 B 0644
table_aggregate_thread_2u_3t.test File 424 B 0644
table_aggregate_thread_4u_2t.test File 415 B 0644
table_aggregate_thread_4u_3t.test File 355 B 0644
table_io_aggregate_global_2u_2t.test File 574 B 0644
table_io_aggregate_global_2u_3t.test File 514 B 0644
table_io_aggregate_global_4u_2t.test File 505 B 0644
table_io_aggregate_global_4u_3t.test File 445 B 0644
table_io_aggregate_hist_2u_2t.test File 485 B 0644
table_io_aggregate_hist_2u_3t.test File 425 B 0644
table_io_aggregate_hist_4u_2t.test File 416 B 0644
table_io_aggregate_hist_4u_3t.test File 356 B 0644
table_io_aggregate_thread_2u_2t.test File 563 B 0644
table_io_aggregate_thread_2u_3t.test File 503 B 0644
table_io_aggregate_thread_4u_2t.test File 494 B 0644
table_io_aggregate_thread_4u_3t.test File 434 B 0644
table_lock_aggregate_global_2u_2t.test File 574 B 0644
table_lock_aggregate_global_2u_3t.test File 514 B 0644
table_lock_aggregate_global_4u_2t.test File 505 B 0644
table_lock_aggregate_global_4u_3t.test File 445 B 0644
table_lock_aggregate_hist_2u_2t.test File 485 B 0644
table_lock_aggregate_hist_2u_3t.test File 425 B 0644
table_lock_aggregate_hist_4u_2t.test File 416 B 0644
table_lock_aggregate_hist_4u_3t.test File 356 B 0644
table_lock_aggregate_thread_2u_2t.test File 563 B 0644
table_lock_aggregate_thread_2u_3t.test File 503 B 0644
table_lock_aggregate_thread_4u_2t.test File 494 B 0644
table_lock_aggregate_thread_4u_3t.test File 434 B 0644
table_name.test File 5.22 KB 0644
table_schema.test File 2.05 KB 0644
tampered_perfschema_table1-master.opt File 44 B 0644
tampered_perfschema_table1.test File 776 B 0644
temp_table_io.test File 826 B 0644
thread_cache-master.opt File 48 B 0644
thread_cache.test File 4.41 KB 0644
threads_innodb.test File 776 B 0644
threads_insert_delayed.test File 1.28 KB 0644
threads_mysql-master.opt File 40 B 0644
threads_mysql.test File 4.55 KB 0644
trigger_table_io.test File 1.92 KB 0644
unary_digest.test File 3.32 KB 0644
view_table_io.test File 1.19 KB 0644