# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mysql57-server/ # mysql57-server/files # mysql57-server/files/mysql-server.in # mysql57-server/files/patch-sql_conn_handler_socket_connection.cc # mysql57-server/files/patch-sql_CMakeLists.txt # mysql57-server/pkg-plist # mysql57-server/pkg-descr # mysql57-server/pkg-message # mysql57-server/Makefile # mysql57-server/distinfo # echo c - mysql57-server/ mkdir -p mysql57-server/ > /dev/null 2>&1 echo c - mysql57-server/files mkdir -p mysql57-server/files > /dev/null 2>&1 echo x - mysql57-server/files/mysql-server.in sed 's/^X//' >mysql57-server/files/mysql-server.in << '02e7fcb834082cb3f0bf422cdf48118a' X#!/bin/sh X# X# $FreeBSD: tags/RELEASE_10_1_0/databases/mysql56-server/files/mysql-server.in 340872 2014-01-24 00:14:07Z mat $ X# X X# PROVIDE: mysql X# REQUIRE: LOGIN X# KEYWORD: shutdown X X# X# Add the following line to /etc/rc.conf to enable mysql: X# mysql_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable MySQL. X# mysql_limits (bool): Set to "NO" by default. X# Set it to yes to run `limits -e -U mysql` X# just before mysql starts. X# mysql_dbdir (str): Default to "/var/db/mysql" X# Base database directory. X# mysql_optfile (str): Server-specific option file. X# Default to "${mysql_dbdir}/my.cnf". X# mysql_pidfile (str): Custum PID file path and name. X# Default to "${mysql_dbdir}/${hostname}.pid". X# mysql_args (str): Custom additional arguments to be passed X# to mysqld_safe (default empty). X# X X. /etc/rc.subr X Xname="mysql" Xrcvar=mysql_enable X Xload_rc_config $name X X: ${mysql_enable="NO"} X: ${mysql_limits="NO"} X: ${mysql_dbdir="/var/db/mysql"} X: ${mysql_optfile="${mysql_dbdir}/my.cnf"} X Xmysql_user="mysql" Xmysql_limits_args="-e -U ${mysql_user}" X: ${hostname:=`/bin/hostname`} Xpidfile=${mysql_pidfile:-"${mysql_dbdir}/${hostname}.pid"} Xcommand="/usr/sbin/daemon" Xcommand_args="-c -f %%PREFIX%%/bin/mysqld_safe --defaults-extra-file=${mysql_optfile} --user=${mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} ${mysql_args}" Xprocname="%%PREFIX%%/libexec/mysqld" Xstart_precmd="${name}_prestart" Xstart_postcmd="${name}_poststart" Xmysql_install_db="%%PREFIX%%/bin/mysql_install_db" Xmysql_install_db_args="--basedir=%%PREFIX%% --defaults-extra-file=${mysql_optfile} --datadir=${mysql_dbdir} --force" X Xmysql_create_auth_tables() X{ X eval $mysql_install_db $mysql_install_db_args >/dev/null 2>/dev/null X [ $? -eq 0 ] && chown -R ${mysql_user}:${mysql_user} ${mysql_dbdir} X} X Xmysql_prestart() X{ X if [ ! -d "${mysql_dbdir}/mysql/." ]; then X mysql_create_auth_tables || return 1 X fi X if checkyesno mysql_limits; then X eval `/usr/bin/limits ${mysql_limits_args}` 2>/dev/null X else X return 0 X fi X} X Xmysql_poststart() X{ X local timeout=15 X while [ ! -f "${pidfile}" -a ${timeout} -gt 0 ]; do X timeout=$(( timeout - 1 )) X sleep 1 X done X return 0 X} X Xrun_rc_command "$1" 02e7fcb834082cb3f0bf422cdf48118a echo x - mysql57-server/files/patch-sql_conn_handler_socket_connection.cc sed 's/^X//' >mysql57-server/files/patch-sql_conn_handler_socket_connection.cc << 'cad5ff0105328a2a41038e2a6aa5913e' X--- sql/conn_handler/socket_connection.cc.orig 2015-07-20 16:55:10.000000000 +0430 X+++ sql/conn_handler/socket_connection.cc 2015-11-14 20:53:36.000000000 +0330 X@@ -939,20 +939,23 @@ X signal(SIGCHLD, SIG_DFL); X request_init(&req, RQ_DAEMON, m_libwrap_name, RQ_FILE, X mysql_socket_getfd(connect_sock), NULL); X- fromhost(&req); X+ void (*my_fromhost) (void *) = (void (*)(void *)) fromhost; X+ my_fromhost(&req); X X- if (!hosts_access(&req)) X+ int (*my_hosts_access) (void *) = (int (*) (void *)) hosts_access; X+ if (!my_hosts_access(&req)) X { X /* X This may be stupid but refuse() includes an exit(0) X which we surely don't want... X clean_exit() - same stupid thing ... X */ X+ char *(*my_eval_client) (void *) = (char *(*) (void *)) eval_client; X syslog(LOG_AUTH | m_deny_severity, X- "refused connect from %s", eval_client(&req)); X+ "refused connect from %s", my_eval_client(&req)); X X if (req.sink) X- (req.sink)(req.fd); X+ ((void (*)(int)) (req.sink))(req.fd); X X mysql_socket_shutdown(listen_sock, SHUT_RDWR); X mysql_socket_close(listen_sock); cad5ff0105328a2a41038e2a6aa5913e echo x - mysql57-server/files/patch-sql_CMakeLists.txt sed 's/^X//' >mysql57-server/files/patch-sql_CMakeLists.txt << '47e0fb5f1c28039cebf37e5eccd609fd' X--- sql/CMakeLists.txt.orig 2015-10-12 09:51:35.000000000 +0330 X+++ sql/CMakeLists.txt 2015-11-25 18:47:33.000000000 +0330 X@@ -24,6 +24,8 @@ X ${ZLIB_INCLUDE_DIR} X ${SSL_INCLUDE_DIRS} X ${CMAKE_BINARY_DIR}/sql X+ ${CMAKE_BINARY_DIR}/include X+ ${CMAKE_BINARY_DIR} X ) X X SET(CONF_SOURCES 47e0fb5f1c28039cebf37e5eccd609fd echo x - mysql57-server/pkg-plist sed 's/^X//' >mysql57-server/pkg-plist << 'c720504b3bbaf7844ffeba66fa0acd55' Xbin/innochecksum Xbin/myisam_ftdump Xbin/myisamchk Xbin/myisamlog Xbin/myisampack Xbin/mysql_client_test Xbin/mysql_client_test_embedded Xbin/mysql_embedded Xbin/mysql_install_db Xbin/mysql_tzinfo_to_sql Xbin/mysql_upgrade Xbin/mysqltest_embedded Xetc/rc.d/mysql-server Xlib/mysql/libmysqld.a Xlib/mysql/plugin/adt_null.so Xlib/mysql/plugin/auth.so Xlib/mysql/plugin/auth_test_plugin.so Xlib/mysql/plugin/daemon_example.ini Xlib/mysql/plugin/ha_example.so Xlib/mysql/plugin/libdaemon_example.so Xlib/mysql/plugin/libtest_framework.so Xlib/mysql/plugin/libtest_services.so Xlib/mysql/plugin/libtest_services_threaded.so Xlib/mysql/plugin/libtest_session_detach.so Xlib/mysql/plugin/libtest_session_in_thd.so Xlib/mysql/plugin/libtest_session_info.so Xlib/mysql/plugin/libtest_sql_2_sessions.so Xlib/mysql/plugin/libtest_sql_all_col_types.so Xlib/mysql/plugin/libtest_sql_cmds_1.so Xlib/mysql/plugin/libtest_sql_commit.so Xlib/mysql/plugin/libtest_sql_complex.so Xlib/mysql/plugin/libtest_sql_errors.so Xlib/mysql/plugin/libtest_sql_lock.so Xlib/mysql/plugin/libtest_sql_processlist.so Xlib/mysql/plugin/libtest_sql_replication.so Xlib/mysql/plugin/libtest_sql_shutdown.so Xlib/mysql/plugin/libtest_sql_sqlmode.so Xlib/mysql/plugin/libtest_sql_stored_procedures_functions.so Xlib/mysql/plugin/libtest_sql_views_triggers.so Xlib/mysql/plugin/libtest_x_sessions_deinit.so Xlib/mysql/plugin/libtest_x_sessions_init.so Xlib/mysql/plugin/locking_service.so Xlib/mysql/plugin/mypluglib.so Xlib/mysql/plugin/mysql_no_login.so Xlib/mysql/plugin/qa_auth_client.so Xlib/mysql/plugin/qa_auth_interface.so Xlib/mysql/plugin/qa_auth_server.so Xlib/mysql/plugin/replication_observers_example_plugin.so Xlib/mysql/plugin/rewrite_example.so Xlib/mysql/plugin/rewriter.so Xlib/mysql/plugin/semisync_master.so Xlib/mysql/plugin/semisync_slave.so Xlib/mysql/plugin/test_security_context.so Xlib/mysql/plugin/validate_password.so Xlib/mysql/plugin/version_token.so Xlibexec/mysqld Xshare/aclocal/mysql.m4 X%%PORTDOCS%%%%DOCSDIR%%/COPYING X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog X%%PORTDOCS%%%%DOCSDIR%%/INFO_BIN X%%PORTDOCS%%%%DOCSDIR%%/INFO_SRC X%%PORTDOCS%%%%DOCSDIR%%/INSTALL-BINARY X%%PORTDOCS%%%%DOCSDIR%%/README X%%DATADIR%%/bulgarian/errmsg.sys X%%DATADIR%%/charsets/Index.xml X%%DATADIR%%/charsets/README X%%DATADIR%%/charsets/armscii8.xml X%%DATADIR%%/charsets/ascii.xml X%%DATADIR%%/charsets/cp1250.xml X%%DATADIR%%/charsets/cp1251.xml X%%DATADIR%%/charsets/cp1256.xml X%%DATADIR%%/charsets/cp1257.xml X%%DATADIR%%/charsets/cp850.xml X%%DATADIR%%/charsets/cp852.xml X%%DATADIR%%/charsets/cp866.xml X%%DATADIR%%/charsets/dec8.xml X%%DATADIR%%/charsets/geostd8.xml X%%DATADIR%%/charsets/greek.xml X%%DATADIR%%/charsets/hebrew.xml X%%DATADIR%%/charsets/hp8.xml X%%DATADIR%%/charsets/keybcs2.xml X%%DATADIR%%/charsets/koi8r.xml X%%DATADIR%%/charsets/koi8u.xml X%%DATADIR%%/charsets/latin1.xml X%%DATADIR%%/charsets/latin2.xml X%%DATADIR%%/charsets/latin5.xml X%%DATADIR%%/charsets/latin7.xml X%%DATADIR%%/charsets/macce.xml X%%DATADIR%%/charsets/macroman.xml X%%DATADIR%%/charsets/swe7.xml X%%DATADIR%%/czech/errmsg.sys X%%DATADIR%%/danish/errmsg.sys X%%DATADIR%%/dictionary.txt X%%DATADIR%%/dutch/errmsg.sys X%%DATADIR%%/english/errmsg.sys X%%DATADIR%%/errmsg-utf8.txt X%%DATADIR%%/estonian/errmsg.sys X%%DATADIR%%/fill_help_tables.sql X%%DATADIR%%/french/errmsg.sys X%%DATADIR%%/german/errmsg.sys X%%DATADIR%%/greek/errmsg.sys X%%DATADIR%%/hungarian/errmsg.sys X%%DATADIR%%/innodb_memcached_config.sql X%%DATADIR%%/install_rewriter.sql X%%DATADIR%%/italian/errmsg.sys X%%DATADIR%%/japanese/errmsg.sys X%%DATADIR%%/korean/errmsg.sys X%%DATADIR%%/magic X%%DATADIR%%/my-default.cnf X%%DATADIR%%/mysql-log-rotate X%%DATADIR%%/mysql.server X%%DATADIR%%/mysql_security_commands.sql X%%DATADIR%%/mysql_sys_schema.sql X%%DATADIR%%/mysql_system_tables.sql X%%DATADIR%%/mysql_system_tables_data.sql X%%DATADIR%%/mysql_test_data_timezone.sql X%%DATADIR%%/mysqld_multi.server X%%DATADIR%%/norwegian-ny/errmsg.sys X%%DATADIR%%/norwegian/errmsg.sys X%%DATADIR%%/polish/errmsg.sys X%%DATADIR%%/portuguese/errmsg.sys X%%DATADIR%%/romanian/errmsg.sys X%%DATADIR%%/russian/errmsg.sys X%%DATADIR%%/serbian/errmsg.sys X%%DATADIR%%/slovak/errmsg.sys X%%DATADIR%%/spanish/errmsg.sys X%%DATADIR%%/swedish/errmsg.sys X%%DATADIR%%/tests/README X%%DATADIR%%/tests/README.gcov X%%DATADIR%%/tests/README.stress X%%DATADIR%%/tests/collections/README X%%DATADIR%%/tests/collections/README.experimental X%%DATADIR%%/tests/collections/default.daily X%%DATADIR%%/tests/collections/default.daily-valgrind X%%DATADIR%%/tests/collections/default.experimental X%%DATADIR%%/tests/collections/default.push X%%DATADIR%%/tests/collections/default.push-ndbcluster X%%DATADIR%%/tests/collections/default.push-valgrind X%%DATADIR%%/tests/collections/default.%%CMAKE_BUILD_TYPE%% X%%DATADIR%%/tests/collections/default.%%CMAKE_BUILD_TYPE%%.done X%%DATADIR%%/tests/collections/default.weekly X%%DATADIR%%/tests/collections/default.weekly-ndbcluster X%%DATADIR%%/tests/collections/default.weekly-valgrind X%%DATADIR%%/tests/collections/default.weekly.basic X%%DATADIR%%/tests/collections/disabled-daily.list X%%DATADIR%%/tests/collections/disabled-gtid-on.list X%%DATADIR%%/tests/collections/disabled-per-push.list X%%DATADIR%%/tests/collections/disabled-weekly.list X%%DATADIR%%/tests/collections/mysql-5.7-stage.push X%%DATADIR%%/tests/collections/mysql-trunk-protocol.weekly X%%DATADIR%%/tests/collections/mysql-trunk-stage.push X%%DATADIR%%/tests/extra/binlog_tests/binlog.test X%%DATADIR%%/tests/extra/binlog_tests/binlog_cache_stat.test X%%DATADIR%%/tests/extra/binlog_tests/binlog_gtid_mode_permissive_set_gtid_next.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_gtid_mode_set_gtid_next.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_implicit_commit.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_innodb.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_mysqlbinlog_fill.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_mysqlbinlog_row.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_mysqlbinlog_start_stop.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_row_kill_create_select.test X%%DATADIR%%/tests/extra/binlog_tests/binlog_truncate.test X%%DATADIR%%/tests/extra/binlog_tests/binlog_xa_prepare_connection.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_xa_prepare_disconnect.inc X%%DATADIR%%/tests/extra/binlog_tests/binlog_xa_prepared.test X%%DATADIR%%/tests/extra/binlog_tests/binlog_xa_prepared_do_and_restart.inc X%%DATADIR%%/tests/extra/binlog_tests/blackhole.test X%%DATADIR%%/tests/extra/binlog_tests/ctype_cp932.test X%%DATADIR%%/tests/extra/binlog_tests/ctype_cp932_binlog.test X%%DATADIR%%/tests/extra/binlog_tests/ctype_ucs_binlog.test X%%DATADIR%%/tests/extra/binlog_tests/database.test X%%DATADIR%%/tests/extra/binlog_tests/drop_table.test X%%DATADIR%%/tests/extra/binlog_tests/drop_temp_table.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_create_select_consistent.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_create_select_violation.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_statement.inc X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_tmp_consistent.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_tmp_violation.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_trx_nontrx_consistent.test X%%DATADIR%%/tests/extra/binlog_tests/enforce_gtid_consistency_trx_nontrx_violation.test X%%DATADIR%%/tests/extra/binlog_tests/gtid_next_single_stmt_trx_rollback_with_non-trans_table.test X%%DATADIR%%/tests/extra/binlog_tests/gtid_next_single_stmt_trx_rollback_with_trans_table.test X%%DATADIR%%/tests/extra/binlog_tests/gtid_next_xa.test X%%DATADIR%%/tests/extra/binlog_tests/implicit.test X%%DATADIR%%/tests/extra/binlog_tests/insert_select-binlog.test X%%DATADIR%%/tests/extra/binlog_tests/logical_timestamping.inc X%%DATADIR%%/tests/extra/binlog_tests/mix_innodb_myisam_binlog.test X%%DATADIR%%/tests/extra/binlog_tests/mix_innodb_myisam_side_effects.test X%%DATADIR%%/tests/extra/binlog_tests/mysqlbinlog_rewrite_db.test X%%DATADIR%%/tests/extra/binlog_tests/mysqlbinlog_row_engine.inc X%%DATADIR%%/tests/extra/binlog_tests/mysqlbinlog_start_stop_1.inc X%%DATADIR%%/tests/extra/binlog_tests/mysqlbinlog_start_stop_2.inc X%%DATADIR%%/tests/extra/rpl_tests/check_type.inc X%%DATADIR%%/tests/extra/rpl_tests/create_recursive_construct.inc X%%DATADIR%%/tests/extra/rpl_tests/delayed_slave_wait_on_query.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_EE_err.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_auto_increment.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_auto_increment_insert_view.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_auto_increment_invoke_trigger.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_autoinc_func_invokes_trigger.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_binlog_max_cache_size.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_blackhole.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_change_master.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_change_master_bind.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_charset.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_check_gtid.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_commit_after_flush.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_conflicts.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_crash_safe.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_crash_safe.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_ddl.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_deadlock.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_delete_no_where.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_do_table_filter_insensitive.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_do_table_filter_sensitive.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_drop_create_temp_table.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_drop_create_temp_table.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_drop_multiple_tables.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_drop_multiple_tables_in_multiple_ways.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_extra_col_master.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_extra_col_slave.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_failed_optimize.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_filters.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_flsh_tbls.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_foreign_key.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_get_master_version_and_clock.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_gtid_drop_table.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_gtid_mts_relay_log_recovery.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_gtids_restart_slave_io_lost_trx.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_heartbeat_2slaves.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_ignore_table_filter_insensitive.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_ignore_table_filter_sensitive.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_implicit_commit_binlog.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_innodb.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_insert_id.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_insert_id_pk.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_insert_ignore.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_kill_query.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_loaddata.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_loaddata_s.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_loadfile.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_log.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_lower_case_table_names.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_max_relay_size.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_mixing_engines.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_mixing_engines.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_mts_crash_safe.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_mts_crash_safe.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_mts_execute_partial_trx_in_relay_log.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_mts_transaction_retry.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_multi_query.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_multi_update.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_multi_update2.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_multi_update3.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_not_null.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_parallel_ddl.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_parallel_load.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_parallel_load_innodb.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_parallel_recovery_core.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_partition.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_record_compare.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_relayrotate.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_replication_observers_example_plugin_server_startup.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_reset_slave.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_rollback_to_savepoint.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_001.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_UUID.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_basic.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_blob.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_empty_imgs.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_event_max_size.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_func003.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_idempotency.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_img.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_img_blobs.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_img_diff_indexes.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_sp002.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_sp003.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_sp006.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_sp007.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_row_tabledefs.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_semi_sync_ack_thread.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_semi_sync_after_sync.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_semi_sync_deadlock.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_semi_sync_group_commit_deadlock.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_set_null.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_sp.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_split_statements.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_start_stop_slave.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_stm_EE_err2.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_stm_create_if_not_exists.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_stop_middle_group.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_stop_slave.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_stress_test.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_sv_relay_space.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_sync_relay_log_info.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_sync_relay_log_info_assert_pos.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_temp_error.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_temporary.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_test_framework.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_tmp_table_and_DDL.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_trig004.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_truncate.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_truncate_helper.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_trx_boundary_parser.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_trx_boundary_parser_all_steps.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_trx_boundary_parser_one_step.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_trx_boundary_parser_warning.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_user.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_variables_stm.test X%%DATADIR%%/tests/extra/rpl_tests/rpl_wait_for_executed_gtid_set_no_timeout.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_wait_for_executed_gtid_set_with_sleep.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_xa_gtid_next.inc X%%DATADIR%%/tests/extra/rpl_tests/rpl_xa_mixed_engines.inc X%%DATADIR%%/tests/extra/rpl_tests/type_conversions.test X%%DATADIR%%/tests/include/Load_data.inc X%%DATADIR%%/tests/include/add_anonymous_users.inc X%%DATADIR%%/tests/include/add_debug_point.inc X%%DATADIR%%/tests/include/analyze-sync_with_master.test X%%DATADIR%%/tests/include/analyze-timeout.test X%%DATADIR%%/tests/include/assert.inc X%%DATADIR%%/tests/include/assert_binlog_events.inc X%%DATADIR%%/tests/include/assert_command_output.inc X%%DATADIR%%/tests/include/assert_grep.inc X%%DATADIR%%/tests/include/assert_gtid_mode_on.inc X%%DATADIR%%/tests/include/assert_logical_timestamps.inc X%%DATADIR%%/tests/include/assert_no_warnings.inc X%%DATADIR%%/tests/include/assert_semisync_master_status_off.inc X%%DATADIR%%/tests/include/assert_semisync_master_status_on.inc X%%DATADIR%%/tests/include/assert_semisync_yesno_tx_increment.inc X%%DATADIR%%/tests/include/assert_status.inc X%%DATADIR%%/tests/include/assert_variable.inc X%%DATADIR%%/tests/include/begin_include_file.inc X%%DATADIR%%/tests/include/begin_replace_gtid_combination.inc X%%DATADIR%%/tests/include/big_test.inc X%%DATADIR%%/tests/include/binlog_inject_error.inc X%%DATADIR%%/tests/include/bug13581713.inc X%%DATADIR%%/tests/include/bug38347.inc X%%DATADIR%%/tests/include/change_file_perms.inc X%%DATADIR%%/tests/include/check-testcase.test X%%DATADIR%%/tests/include/check-warnings.test X%%DATADIR%%/tests/include/check_charset.inc X%%DATADIR%%/tests/include/check_concurrent_insert.inc X%%DATADIR%%/tests/include/check_events_off.inc X%%DATADIR%%/tests/include/check_ftwrl_compatible.inc X%%DATADIR%%/tests/include/check_ftwrl_incompatible.inc X%%DATADIR%%/tests/include/check_ipv4_mapped.inc X%%DATADIR%%/tests/include/check_ipv6.inc X%%DATADIR%%/tests/include/check_key_reads.inc X%%DATADIR%%/tests/include/check_key_req.inc X%%DATADIR%%/tests/include/check_no_concurrent_insert.inc X%%DATADIR%%/tests/include/check_no_row_lock.inc X%%DATADIR%%/tests/include/check_qep.inc X%%DATADIR%%/tests/include/check_shared_row_lock.inc X%%DATADIR%%/tests/include/check_slave_is_running.inc X%%DATADIR%%/tests/include/check_slave_no_error.inc X%%DATADIR%%/tests/include/check_slave_param.inc X%%DATADIR%%/tests/include/check_var_limit.inc X%%DATADIR%%/tests/include/cleanup_fake_relay_log.inc X%%DATADIR%%/tests/include/commandline_option_test.inc X%%DATADIR%%/tests/include/commit.inc X%%DATADIR%%/tests/include/commit_crash_restart.inc X%%DATADIR%%/tests/include/common-tests.inc X%%DATADIR%%/tests/include/concurrent.inc X%%DATADIR%%/tests/include/cond_filter_queries.inc X%%DATADIR%%/tests/include/config_file_option_test.inc X%%DATADIR%%/tests/include/connect2.inc X%%DATADIR%%/tests/include/count_sessions.inc X%%DATADIR%%/tests/include/create_575_part_table.inc X%%DATADIR%%/tests/include/create_table.inc X%%DATADIR%%/tests/include/ctype_8bit.inc X%%DATADIR%%/tests/include/ctype_ascii_order.inc X%%DATADIR%%/tests/include/ctype_common.inc X%%DATADIR%%/tests/include/ctype_czech.inc X%%DATADIR%%/tests/include/ctype_datetime.inc X%%DATADIR%%/tests/include/ctype_filesort.inc X%%DATADIR%%/tests/include/ctype_filesort2.inc X%%DATADIR%%/tests/include/ctype_german.inc X%%DATADIR%%/tests/include/ctype_heap.inc X%%DATADIR%%/tests/include/ctype_inet.inc X%%DATADIR%%/tests/include/ctype_innodb_like.inc X%%DATADIR%%/tests/include/ctype_like.inc X%%DATADIR%%/tests/include/ctype_like_escape.inc X%%DATADIR%%/tests/include/ctype_like_ignorable.inc X%%DATADIR%%/tests/include/ctype_like_range_f1f2.inc X%%DATADIR%%/tests/include/ctype_numconv.inc X%%DATADIR%%/tests/include/ctype_pad_space.inc X%%DATADIR%%/tests/include/ctype_regex.inc X%%DATADIR%%/tests/include/ctype_unicode520.inc X%%DATADIR%%/tests/include/ctype_unicode_latin.inc X%%DATADIR%%/tests/include/ctype_utf8_table.inc X%%DATADIR%%/tests/include/ctype_utf8mb4.inc X%%DATADIR%%/tests/include/daemon_example_bad_format.ini X%%DATADIR%%/tests/include/daemon_example_bad_soname.ini X%%DATADIR%%/tests/include/ddl_i18n.check_events.inc X%%DATADIR%%/tests/include/ddl_i18n.check_sp.inc X%%DATADIR%%/tests/include/ddl_i18n.check_triggers.inc X%%DATADIR%%/tests/include/ddl_i18n.check_views.inc X%%DATADIR%%/tests/include/deadlock.inc X%%DATADIR%%/tests/include/default_client.cnf X%%DATADIR%%/tests/include/default_my.cnf X%%DATADIR%%/tests/include/default_mysqld.cnf X%%DATADIR%%/tests/include/default_mysqld_autosize.cnf X%%DATADIR%%/tests/include/default_ndbd.cnf X%%DATADIR%%/tests/include/delete_all_rows.inc X%%DATADIR%%/tests/include/delete_anonymous_users.inc X%%DATADIR%%/tests/include/diff_servers.inc X%%DATADIR%%/tests/include/diff_tables.inc X%%DATADIR%%/tests/include/end_include_file.inc X%%DATADIR%%/tests/include/end_replace_gtid_combination.inc X%%DATADIR%%/tests/include/endspace.inc X%%DATADIR%%/tests/include/eval.inc X%%DATADIR%%/tests/include/execute_at_sync_point.inc X%%DATADIR%%/tests/include/execute_from_sync_point.inc X%%DATADIR%%/tests/include/execute_to_sync_point.inc X%%DATADIR%%/tests/include/execute_with_statistics.inc X%%DATADIR%%/tests/include/expect_crash.inc X%%DATADIR%%/tests/include/expect_qep.inc X%%DATADIR%%/tests/include/explain.inc X%%DATADIR%%/tests/include/explain_for_connection.inc X%%DATADIR%%/tests/include/explain_for_connection_rqg.inc X%%DATADIR%%/tests/include/explain_for_connection_small.inc X%%DATADIR%%/tests/include/explain_json.inc X%%DATADIR%%/tests/include/explain_non_select.inc X%%DATADIR%%/tests/include/explain_other.inc X%%DATADIR%%/tests/include/explain_run_count.inc X%%DATADIR%%/tests/include/explain_utils.inc X%%DATADIR%%/tests/include/file_does_not_exist.inc X%%DATADIR%%/tests/include/filter_file.inc X%%DATADIR%%/tests/include/finish_option_test.inc X%%DATADIR%%/tests/include/force_binlog_format_statement.inc X%%DATADIR%%/tests/include/force_myisam_default.inc X%%DATADIR%%/tests/include/force_restart.inc X%%DATADIR%%/tests/include/force_restart_if_skipped.inc X%%DATADIR%%/tests/include/freebsd.inc X%%DATADIR%%/tests/include/func_aes_block.inc X%%DATADIR%%/tests/include/func_in.inc X%%DATADIR%%/tests/include/function_defaults.inc X%%DATADIR%%/tests/include/get_file_permissions.inc X%%DATADIR%%/tests/include/get_frm_info.inc X%%DATADIR%%/tests/include/get_handler_status_counts.inc X%%DATADIR%%/tests/include/get_ndb_epochs.inc X%%DATADIR%%/tests/include/get_relay_log_pos.inc X%%DATADIR%%/tests/include/get_row_count.inc X%%DATADIR%%/tests/include/gis_debug.inc X%%DATADIR%%/tests/include/gis_generic.inc X%%DATADIR%%/tests/include/gis_keys.inc X%%DATADIR%%/tests/include/grant_cache.inc X%%DATADIR%%/tests/include/greedy_search_drop_tables.inc X%%DATADIR%%/tests/include/greedy_search_load_tables.inc X%%DATADIR%%/tests/include/grep_pattern.inc X%%DATADIR%%/tests/include/group_by_fd.inc X%%DATADIR%%/tests/include/gtid_prepare_and_execute_stmt.inc X%%DATADIR%%/tests/include/gtid_step_assert.inc X%%DATADIR%%/tests/include/gtid_step_assert_on_retrieved.inc X%%DATADIR%%/tests/include/gtid_step_reset.inc X%%DATADIR%%/tests/include/gtid_step_reset_on_retrieved.inc X%%DATADIR%%/tests/include/gtid_utils.inc X%%DATADIR%%/tests/include/gtid_utils_end.inc X%%DATADIR%%/tests/include/handler.inc X%%DATADIR%%/tests/include/have_32bit.inc X%%DATADIR%%/tests/include/have_64bit.inc X%%DATADIR%%/tests/include/have_QC_Disabled.inc X%%DATADIR%%/tests/include/have_archive.inc X%%DATADIR%%/tests/include/have_archive_plugin.inc X%%DATADIR%%/tests/include/have_audit_log_plugin.inc X%%DATADIR%%/tests/include/have_big5.inc X%%DATADIR%%/tests/include/have_binlog_checksum_off.inc X%%DATADIR%%/tests/include/have_binlog_format_mixed.inc X%%DATADIR%%/tests/include/have_binlog_format_mixed_or_row.inc X%%DATADIR%%/tests/include/have_binlog_format_mixed_or_statement.inc X%%DATADIR%%/tests/include/have_binlog_format_row.inc X%%DATADIR%%/tests/include/have_binlog_format_row_or_statement.inc X%%DATADIR%%/tests/include/have_binlog_format_statement.inc X%%DATADIR%%/tests/include/have_binlog_order_commits.test X%%DATADIR%%/tests/include/have_blackhole.inc X%%DATADIR%%/tests/include/have_blackhole_plugin.inc X%%DATADIR%%/tests/include/have_case_insensitive_file_system.inc X%%DATADIR%%/tests/include/have_case_sensitive_file_system.inc X%%DATADIR%%/tests/include/have_compress.inc X%%DATADIR%%/tests/include/have_cp1250_ch.inc X%%DATADIR%%/tests/include/have_cp1251.inc X%%DATADIR%%/tests/include/have_cp866.inc X%%DATADIR%%/tests/include/have_cp932.inc X%%DATADIR%%/tests/include/have_crypt.inc X%%DATADIR%%/tests/include/have_daemon_example_plugin.inc X%%DATADIR%%/tests/include/have_debug.inc X%%DATADIR%%/tests/include/have_debug_sync.inc X%%DATADIR%%/tests/include/have_dynamic_loading.inc X%%DATADIR%%/tests/include/have_engine_condition_pushdown.inc X%%DATADIR%%/tests/include/have_eucjpms.inc X%%DATADIR%%/tests/include/have_euckr.inc X%%DATADIR%%/tests/include/have_example_plugin.inc X%%DATADIR%%/tests/include/have_exampledb.inc X%%DATADIR%%/tests/include/have_expect.inc X%%DATADIR%%/tests/include/have_federated_plugin.inc X%%DATADIR%%/tests/include/have_firstmatch.inc X%%DATADIR%%/tests/include/have_gb18030.inc X%%DATADIR%%/tests/include/have_gb2312.inc X%%DATADIR%%/tests/include/have_gbk.inc X%%DATADIR%%/tests/include/have_geometry.inc X%%DATADIR%%/tests/include/have_grep.inc X%%DATADIR%%/tests/include/have_group_replication_plugin.inc X%%DATADIR%%/tests/include/have_gtid.inc X%%DATADIR%%/tests/include/have_index_condition_pushdown.inc X%%DATADIR%%/tests/include/have_innochecksum_debug.inc X%%DATADIR%%/tests/include/have_innodb.inc X%%DATADIR%%/tests/include/have_innodb_16k.inc X%%DATADIR%%/tests/include/have_innodb_32k.inc X%%DATADIR%%/tests/include/have_innodb_4k.inc X%%DATADIR%%/tests/include/have_innodb_64k.inc X%%DATADIR%%/tests/include/have_innodb_8k.inc X%%DATADIR%%/tests/include/have_innodb_max_16k.inc X%%DATADIR%%/tests/include/have_innodb_zip.inc X%%DATADIR%%/tests/include/have_ipv4_mapped.inc X%%DATADIR%%/tests/include/have_ipv6.inc X%%DATADIR%%/tests/include/have_koi8r.inc X%%DATADIR%%/tests/include/have_latin2_ch.inc X%%DATADIR%%/tests/include/have_local_infile.inc X%%DATADIR%%/tests/include/have_log_bin.inc X%%DATADIR%%/tests/include/have_loosescan.inc X%%DATADIR%%/tests/include/have_lowercase0.inc X%%DATADIR%%/tests/include/have_lowercase1.inc X%%DATADIR%%/tests/include/have_lowercase2.inc X%%DATADIR%%/tests/include/have_materialization.inc X%%DATADIR%%/tests/include/have_max_indexes_128.inc X%%DATADIR%%/tests/include/have_max_indexes_64.inc X%%DATADIR%%/tests/include/have_mecab.inc X%%DATADIR%%/tests/include/have_memcached_plugin.inc X%%DATADIR%%/tests/include/have_mrr.inc X%%DATADIR%%/tests/include/have_multi_ndb.inc X%%DATADIR%%/tests/include/have_myisam.inc X%%DATADIR%%/tests/include/have_mysql_no_login_plugin.inc X%%DATADIR%%/tests/include/have_mysql_upgrade.inc X%%DATADIR%%/tests/include/have_mysqld_safe.inc X%%DATADIR%%/tests/include/have_ndb.inc X%%DATADIR%%/tests/include/have_ndb_debug.inc X%%DATADIR%%/tests/include/have_ndb_extra.inc X%%DATADIR%%/tests/include/have_ndbapi_examples.inc X%%DATADIR%%/tests/include/have_ngram.inc X%%DATADIR%%/tests/include/have_no_undo_tablespaces.inc X%%DATADIR%%/tests/include/have_nodebug.inc X%%DATADIR%%/tests/include/have_not_innodb_plugin.inc X%%DATADIR%%/tests/include/have_null_audit_plugin.inc X%%DATADIR%%/tests/include/have_numa.inc X%%DATADIR%%/tests/include/have_openssl.inc X%%DATADIR%%/tests/include/have_openssl_binary.inc X%%DATADIR%%/tests/include/have_optimizer_trace.inc X%%DATADIR%%/tests/include/have_outfile.inc X%%DATADIR%%/tests/include/have_partition.inc X%%DATADIR%%/tests/include/have_partition_open_file_limit.inc X%%DATADIR%%/tests/include/have_perfschema.inc X%%DATADIR%%/tests/include/have_plugin_auth.inc X%%DATADIR%%/tests/include/have_plugin_interface.inc X%%DATADIR%%/tests/include/have_plugin_server.inc X%%DATADIR%%/tests/include/have_profiling.inc X%%DATADIR%%/tests/include/have_query_cache.inc X%%DATADIR%%/tests/include/have_query_cache_disabled.inc X%%DATADIR%%/tests/include/have_replication_observers_example_plugin.inc X%%DATADIR%%/tests/include/have_semijoin.inc X%%DATADIR%%/tests/include/have_semisync_plugin.inc X%%DATADIR%%/tests/include/have_sha256_rsa_auth.inc X%%DATADIR%%/tests/include/have_simple_parser.inc X%%DATADIR%%/tests/include/have_sjis.inc X%%DATADIR%%/tests/include/have_slave_parallel_type_database.inc X%%DATADIR%%/tests/include/have_slave_parallel_type_logical_clock.inc X%%DATADIR%%/tests/include/have_slave_repository_type_file.inc X%%DATADIR%%/tests/include/have_ssl.inc X%%DATADIR%%/tests/include/have_ssl_communication.inc X%%DATADIR%%/tests/include/have_ssl_crypto_functs.inc X%%DATADIR%%/tests/include/have_statement_timeout.inc X%%DATADIR%%/tests/include/have_symlink.inc X%%DATADIR%%/tests/include/have_tis620.inc X%%DATADIR%%/tests/include/have_ucs2.inc X%%DATADIR%%/tests/include/have_udf.inc X%%DATADIR%%/tests/include/have_ujis.inc X%%DATADIR%%/tests/include/have_undo_tablespaces.inc X%%DATADIR%%/tests/include/have_utf16.inc X%%DATADIR%%/tests/include/have_utf32.inc X%%DATADIR%%/tests/include/have_utf8.inc X%%DATADIR%%/tests/include/have_utf8mb4.inc X%%DATADIR%%/tests/include/have_util_nc.inc X%%DATADIR%%/tests/include/have_util_unzip.inc X%%DATADIR%%/tests/include/have_valgrind.inc X%%DATADIR%%/tests/include/have_validate_password_plugin.inc X%%DATADIR%%/tests/include/have_yassl.inc X%%DATADIR%%/tests/include/ib_logfile_size_check.inc X%%DATADIR%%/tests/include/icp_tests.inc X%%DATADIR%%/tests/include/implicit_commit_helper.inc X%%DATADIR%%/tests/include/index_merge1.inc X%%DATADIR%%/tests/include/index_merge2.inc X%%DATADIR%%/tests/include/index_merge_2sweeps.inc X%%DATADIR%%/tests/include/index_merge_delete.inc X%%DATADIR%%/tests/include/index_merge_insert-and-replace.inc X%%DATADIR%%/tests/include/index_merge_intersect_dml.inc X%%DATADIR%%/tests/include/index_merge_multi_col_setup.inc X%%DATADIR%%/tests/include/index_merge_ror.inc X%%DATADIR%%/tests/include/index_merge_ror_cpk.inc X%%DATADIR%%/tests/include/index_merge_single_col_setup.inc X%%DATADIR%%/tests/include/index_merge_update.inc X%%DATADIR%%/tests/include/init_option_test.inc X%%DATADIR%%/tests/include/innodb-index.inc X%%DATADIR%%/tests/include/innodb-util.inc X%%DATADIR%%/tests/include/innodb_gis_row_format_basic.inc X%%DATADIR%%/tests/include/innodb_gis_undo.inc X%%DATADIR%%/tests/include/innodb_pk_extension.inc X%%DATADIR%%/tests/include/innodb_rollback_on_timeout.inc X%%DATADIR%%/tests/include/innodb_trx_weight.inc X%%DATADIR%%/tests/include/install_replication_observers_example.inc X%%DATADIR%%/tests/include/install_semisync.inc X%%DATADIR%%/tests/include/install_semisync_master.inc X%%DATADIR%%/tests/include/install_semisync_slave.inc X%%DATADIR%%/tests/include/io_thd_fault_injection.inc X%%DATADIR%%/tests/include/ipv6.inc X%%DATADIR%%/tests/include/ipv6_clients.inc X%%DATADIR%%/tests/include/ipv6_func.inc X%%DATADIR%%/tests/include/is_embedded.inc X%%DATADIR%%/tests/include/join_cache.inc X%%DATADIR%%/tests/include/json_vs_json_comparator.inc X%%DATADIR%%/tests/include/kill_and_restart_mysqld.inc X%%DATADIR%%/tests/include/kill_at_sync_point.inc X%%DATADIR%%/tests/include/kill_mysqld.inc X%%DATADIR%%/tests/include/kill_query.inc X%%DATADIR%%/tests/include/kill_query_and_diff_master_slave.inc X%%DATADIR%%/tests/include/kill_wait_for_executed_gtid_set.inc X%%DATADIR%%/tests/include/libdaemon_example.ini X%%DATADIR%%/tests/include/linux.inc X%%DATADIR%%/tests/include/linux_sys_vars.inc X%%DATADIR%%/tests/include/list_files_with_size_and_hash.inc X%%DATADIR%%/tests/include/load_sysvars.inc X%%DATADIR%%/tests/include/loaddata_autocom.inc X%%DATADIR%%/tests/include/log_builtin_as_identified_by_password.inc X%%DATADIR%%/tests/include/m_i_db_common.inc X%%DATADIR%%/tests/include/m_i_db_startsvr.inc X%%DATADIR%%/tests/include/master-slave.inc X%%DATADIR%%/tests/include/max_indexes.inc X%%DATADIR%%/tests/include/memcache_config.inc X%%DATADIR%%/tests/include/min_null_cond.inc X%%DATADIR%%/tests/include/mix1.inc X%%DATADIR%%/tests/include/mix2.inc X%%DATADIR%%/tests/include/mix2_ucs2.inc X%%DATADIR%%/tests/include/mrr_innodb_tests.inc X%%DATADIR%%/tests/include/mrr_tests.inc X%%DATADIR%%/tests/include/mtr_check.sql X%%DATADIR%%/tests/include/mtr_system_tables_data.sql X%%DATADIR%%/tests/include/mtr_test_data_timezone.sql X%%DATADIR%%/tests/include/mtr_warnings.sql X%%DATADIR%%/tests/include/mysql_upgrade_cleanup.inc X%%DATADIR%%/tests/include/mysql_upgrade_preparation.inc X%%DATADIR%%/tests/include/mysqlbinlog.inc X%%DATADIR%%/tests/include/mysqlbinlog_have_debug.inc X%%DATADIR%%/tests/include/mysqlbinlog_raw_mode.inc X%%DATADIR%%/tests/include/mysqld--help.inc X%%DATADIR%%/tests/include/mysqldump.inc X%%DATADIR%%/tests/include/mysqlpump_stmt.inc X%%DATADIR%%/tests/include/mysqltest-x.inc X%%DATADIR%%/tests/include/ndb_backup.inc X%%DATADIR%%/tests/include/ndb_backup_id.inc X%%DATADIR%%/tests/include/ndb_backup_print.inc X%%DATADIR%%/tests/include/ndb_not_readonly.inc X%%DATADIR%%/tests/include/ndb_restore_master.inc X%%DATADIR%%/tests/include/ndb_restore_slave_eoption.inc X%%DATADIR%%/tests/include/ndb_setup_slave.inc X%%DATADIR%%/tests/include/ndb_wait_connected.inc X%%DATADIR%%/tests/include/no_checkpoint_end.inc X%%DATADIR%%/tests/include/no_checkpoint_start.inc X%%DATADIR%%/tests/include/no_protocol.inc X%%DATADIR%%/tests/include/no_running_event_scheduler.inc X%%DATADIR%%/tests/include/no_running_events.inc X%%DATADIR%%/tests/include/no_valgrind_without_big.inc X%%DATADIR%%/tests/include/not_as_root.inc X%%DATADIR%%/tests/include/not_asan.inc X%%DATADIR%%/tests/include/not_binlog_format_row.inc X%%DATADIR%%/tests/include/not_blackhole.inc X%%DATADIR%%/tests/include/not_crashrep.inc X%%DATADIR%%/tests/include/not_embedded.inc X%%DATADIR%%/tests/include/not_group_replication_plugin.inc X%%DATADIR%%/tests/include/not_gtid_enabled.inc X%%DATADIR%%/tests/include/not_log_bin.inc X%%DATADIR%%/tests/include/not_lowercase1.inc X%%DATADIR%%/tests/include/not_master_info_table.inc X%%DATADIR%%/tests/include/not_mts_slave_parallel_workers.inc X%%DATADIR%%/tests/include/not_ndb.inc X%%DATADIR%%/tests/include/not_ndb_default.inc X%%DATADIR%%/tests/include/not_ndb_is.inc X%%DATADIR%%/tests/include/not_openssl.inc X%%DATADIR%%/tests/include/not_parallel.inc X%%DATADIR%%/tests/include/not_relay_log_info_table.inc X%%DATADIR%%/tests/include/not_sha256_rsa_auth.inc X%%DATADIR%%/tests/include/not_ssl.inc X%%DATADIR%%/tests/include/not_threadpool.inc X%%DATADIR%%/tests/include/not_valgrind.inc X%%DATADIR%%/tests/include/not_var_link.inc X%%DATADIR%%/tests/include/not_windows.inc X%%DATADIR%%/tests/include/not_windows_embedded.inc X%%DATADIR%%/tests/include/null_key.inc X%%DATADIR%%/tests/include/one_thread_per_connection.inc X%%DATADIR%%/tests/include/only_mts_slave_parallel_type_database.inc X%%DATADIR%%/tests/include/only_mts_slave_parallel_type_logical_clock.inc X%%DATADIR%%/tests/include/only_mts_slave_parallel_workers.inc X%%DATADIR%%/tests/include/openssl_cert_generation_debug_test.inc X%%DATADIR%%/tests/include/order_by.inc X%%DATADIR%%/tests/include/parser-big.inc X%%DATADIR%%/tests/include/parser_bug21114.inc X%%DATADIR%%/tests/include/partition_date_range.inc X%%DATADIR%%/tests/include/partition_default_functions.inc X%%DATADIR%%/tests/include/plugin.defs X%%DATADIR%%/tests/include/plugin_auth_check_non_default_users.inc X%%DATADIR%%/tests/include/print_greedy_search_count.inc X%%DATADIR%%/tests/include/ps_conv.inc X%%DATADIR%%/tests/include/ps_create.inc X%%DATADIR%%/tests/include/ps_ddl_1.inc X%%DATADIR%%/tests/include/ps_modify.inc X%%DATADIR%%/tests/include/ps_modify1.inc X%%DATADIR%%/tests/include/ps_query.inc X%%DATADIR%%/tests/include/ps_query_explain_select.inc X%%DATADIR%%/tests/include/ps_renew.inc X%%DATADIR%%/tests/include/purge_first_log.inc X%%DATADIR%%/tests/include/python_with_json.inc X%%DATADIR%%/tests/include/query_cache.inc X%%DATADIR%%/tests/include/query_cache_sql_prepare.inc X%%DATADIR%%/tests/include/rand.inc X%%DATADIR%%/tests/include/range.inc X%%DATADIR%%/tests/include/read_file_to_var.inc X%%DATADIR%%/tests/include/read_many_rows.inc X%%DATADIR%%/tests/include/relocate_binlogs.inc X%%DATADIR%%/tests/include/remove_debug_point.inc X%%DATADIR%%/tests/include/report-features.test X%%DATADIR%%/tests/include/restart_mysqld.inc X%%DATADIR%%/tests/include/restart_slave_sql.inc X%%DATADIR%%/tests/include/restore_default_binlog_format.inc X%%DATADIR%%/tests/include/restore_group_replication_auto_increment.inc X%%DATADIR%%/tests/include/restore_sql_mode_after_turn_off_only_full_group_by.inc X%%DATADIR%%/tests/include/restore_strict_mode.inc X%%DATADIR%%/tests/include/rowid_order.inc X%%DATADIR%%/tests/include/rpl_change_topology.inc X%%DATADIR%%/tests/include/rpl_change_topology_helper.inc X%%DATADIR%%/tests/include/rpl_connect.inc X%%DATADIR%%/tests/include/rpl_connection.inc X%%DATADIR%%/tests/include/rpl_connection_master.inc X%%DATADIR%%/tests/include/rpl_connection_master1.inc X%%DATADIR%%/tests/include/rpl_connection_slave.inc X%%DATADIR%%/tests/include/rpl_connection_slave1.inc X%%DATADIR%%/tests/include/rpl_default_connections.inc X%%DATADIR%%/tests/include/rpl_diff.inc X%%DATADIR%%/tests/include/rpl_end.inc X%%DATADIR%%/tests/include/rpl_events.inc X%%DATADIR%%/tests/include/rpl_for_each_connection.inc X%%DATADIR%%/tests/include/rpl_for_each_server.inc X%%DATADIR%%/tests/include/rpl_generate_sync_chain.inc X%%DATADIR%%/tests/include/rpl_get_end_of_relay_log.inc X%%DATADIR%%/tests/include/rpl_group_replication_default_connections.inc X%%DATADIR%%/tests/include/rpl_group_replication_plugin_installed.inc X%%DATADIR%%/tests/include/rpl_hash_scan_assertion.inc X%%DATADIR%%/tests/include/rpl_init.inc X%%DATADIR%%/tests/include/rpl_ip_mix.inc X%%DATADIR%%/tests/include/rpl_ip_mix2.inc X%%DATADIR%%/tests/include/rpl_ipv6.inc X%%DATADIR%%/tests/include/rpl_loaddata_charset.inc X%%DATADIR%%/tests/include/rpl_multi_engine.inc X%%DATADIR%%/tests/include/rpl_multi_engine3.inc X%%DATADIR%%/tests/include/rpl_read_binlog_index_into_table.inc X%%DATADIR%%/tests/include/rpl_receive_event_count.inc X%%DATADIR%%/tests/include/rpl_reconnect.inc X%%DATADIR%%/tests/include/rpl_reset.inc X%%DATADIR%%/tests/include/rpl_reset_master_helper.inc X%%DATADIR%%/tests/include/rpl_reset_slave_helper.inc X%%DATADIR%%/tests/include/rpl_restart_server.inc X%%DATADIR%%/tests/include/rpl_row_img_general_loop.inc X%%DATADIR%%/tests/include/rpl_row_img_parts_assertion.inc X%%DATADIR%%/tests/include/rpl_row_img_parts_master_slave.inc X%%DATADIR%%/tests/include/rpl_row_img_set.inc X%%DATADIR%%/tests/include/rpl_set_gtid_mode.inc X%%DATADIR%%/tests/include/rpl_skip_to_end_of_relay_log.inc X%%DATADIR%%/tests/include/rpl_start_server.inc X%%DATADIR%%/tests/include/rpl_start_slaves.inc X%%DATADIR%%/tests/include/rpl_stmt_seq.inc X%%DATADIR%%/tests/include/rpl_stop_server.inc X%%DATADIR%%/tests/include/rpl_stop_slaves.inc X%%DATADIR%%/tests/include/rpl_sync.inc X%%DATADIR%%/tests/include/rpl_udf.inc X%%DATADIR%%/tests/include/running_event_scheduler.inc X%%DATADIR%%/tests/include/safe_set_to_maybe_ro_var.inc X%%DATADIR%%/tests/include/save_binlog_position.inc X%%DATADIR%%/tests/include/save_io_thread_pos.inc X%%DATADIR%%/tests/include/save_master_pos.inc X%%DATADIR%%/tests/include/save_semisync_yesno_tx.inc X%%DATADIR%%/tests/include/search_pattern.inc X%%DATADIR%%/tests/include/search_pattern_in_file.inc X%%DATADIR%%/tests/include/select.inc X%%DATADIR%%/tests/include/server_option_test.pm X%%DATADIR%%/tests/include/set_binlog_format_mixed.sql X%%DATADIR%%/tests/include/set_binlog_format_row.sql X%%DATADIR%%/tests/include/set_binlog_format_statement.sql X%%DATADIR%%/tests/include/set_gtid_next_gtid_mode_agnostic.inc X%%DATADIR%%/tests/include/setup_fake_relay_log.inc X%%DATADIR%%/tests/include/show_all_binlogs.inc X%%DATADIR%%/tests/include/show_all_relay_logs.inc X%%DATADIR%%/tests/include/show_binary_logs.inc X%%DATADIR%%/tests/include/show_binlog_events.inc X%%DATADIR%%/tests/include/show_binlog_events_server_id.inc X%%DATADIR%%/tests/include/show_delayed_slave_state.inc X%%DATADIR%%/tests/include/show_events.inc X%%DATADIR%%/tests/include/show_json_object.inc X%%DATADIR%%/tests/include/show_master_logs.inc X%%DATADIR%%/tests/include/show_master_status.inc X%%DATADIR%%/tests/include/show_msg.inc X%%DATADIR%%/tests/include/show_msg80.inc X%%DATADIR%%/tests/include/show_relaylog_events.inc X%%DATADIR%%/tests/include/show_rpl_debug_info.inc X%%DATADIR%%/tests/include/show_slave_hosts.inc X%%DATADIR%%/tests/include/show_slave_status.inc X%%DATADIR%%/tests/include/shutdown_mysqld.inc X%%DATADIR%%/tests/include/sp-vars.inc X%%DATADIR%%/tests/include/sql_vs_json_equalto.inc X%%DATADIR%%/tests/include/sql_vs_json_greaterthan.inc X%%DATADIR%%/tests/include/sql_vs_json_greaterthanequalto.inc X%%DATADIR%%/tests/include/sql_vs_json_lessthan.inc X%%DATADIR%%/tests/include/sql_vs_json_lessthanequalto.inc X%%DATADIR%%/tests/include/sql_vs_json_notequal.inc X%%DATADIR%%/tests/include/sql_vs_json_null_safe_equal_to.inc X%%DATADIR%%/tests/include/start_group_replication.inc X%%DATADIR%%/tests/include/start_mysqld.inc X%%DATADIR%%/tests/include/start_slave.inc X%%DATADIR%%/tests/include/start_slave_io.inc X%%DATADIR%%/tests/include/start_slave_sql.inc X%%DATADIR%%/tests/include/start_transaction_high_prio.inc X%%DATADIR%%/tests/include/stop_dump_threads.inc X%%DATADIR%%/tests/include/stop_group_replication.inc X%%DATADIR%%/tests/include/stop_slave.inc X%%DATADIR%%/tests/include/stop_slave_io.inc X%%DATADIR%%/tests/include/stop_slave_sql.inc X%%DATADIR%%/tests/include/store_group_replication_auto_increment.inc X%%DATADIR%%/tests/include/strict_autoinc.inc X%%DATADIR%%/tests/include/subquery.inc X%%DATADIR%%/tests/include/subquery_mat.inc X%%DATADIR%%/tests/include/subquery_sj.inc X%%DATADIR%%/tests/include/subquery_sj_innodb.inc X%%DATADIR%%/tests/include/sync_slave_io.inc X%%DATADIR%%/tests/include/sync_slave_io_with_master.inc X%%DATADIR%%/tests/include/sync_slave_sql.inc X%%DATADIR%%/tests/include/sync_slave_sql_with_io.inc X%%DATADIR%%/tests/include/sync_slave_sql_with_master.inc X%%DATADIR%%/tests/include/system_db_struct.inc X%%DATADIR%%/tests/include/test_fieldsize.inc X%%DATADIR%%/tests/include/test_outfile.inc X%%DATADIR%%/tests/include/testdb_only.inc X%%DATADIR%%/tests/include/tpcb.inc X%%DATADIR%%/tests/include/tpcb_disk_data.inc X%%DATADIR%%/tests/include/trigger_17864349.inc X%%DATADIR%%/tests/include/truncate_file.inc X%%DATADIR%%/tests/include/turn_off_only_full_group_by.inc X%%DATADIR%%/tests/include/turn_off_strict_mode.inc X%%DATADIR%%/tests/include/uninstall_replication_observers_example.inc X%%DATADIR%%/tests/include/uninstall_semisync.inc X%%DATADIR%%/tests/include/uninstall_semisync_master.inc X%%DATADIR%%/tests/include/uninstall_semisync_slave.inc X%%DATADIR%%/tests/include/unsafe_binlog.inc X%%DATADIR%%/tests/include/user_57_to_56.inc X%%DATADIR%%/tests/include/uses_vardir.inc X%%DATADIR%%/tests/include/varchar.inc X%%DATADIR%%/tests/include/vardir_size_check.inc X%%DATADIR%%/tests/include/view_alias.inc X%%DATADIR%%/tests/include/wait_condition.inc X%%DATADIR%%/tests/include/wait_condition_or_abort.inc X%%DATADIR%%/tests/include/wait_condition_sp.inc X%%DATADIR%%/tests/include/wait_for_binlog_event.inc X%%DATADIR%%/tests/include/wait_for_ndb_committed_to_binlog.inc X%%DATADIR%%/tests/include/wait_for_query_to_fail.inc X%%DATADIR%%/tests/include/wait_for_query_to_succeed.inc X%%DATADIR%%/tests/include/wait_for_semisync_master_status_off.inc X%%DATADIR%%/tests/include/wait_for_semisync_master_status_on.inc X%%DATADIR%%/tests/include/wait_for_slave_io_error.inc X%%DATADIR%%/tests/include/wait_for_slave_io_to_start.inc X%%DATADIR%%/tests/include/wait_for_slave_io_to_stop.inc X%%DATADIR%%/tests/include/wait_for_slave_param.inc X%%DATADIR%%/tests/include/wait_for_slave_sql_error.inc X%%DATADIR%%/tests/include/wait_for_slave_sql_error_and_skip.inc X%%DATADIR%%/tests/include/wait_for_slave_sql_to_start.inc X%%DATADIR%%/tests/include/wait_for_slave_sql_to_stop.inc X%%DATADIR%%/tests/include/wait_for_slave_to_start.inc X%%DATADIR%%/tests/include/wait_for_slave_to_stop.inc X%%DATADIR%%/tests/include/wait_for_slave_to_sync_with_master.inc X%%DATADIR%%/tests/include/wait_for_status_var.inc X%%DATADIR%%/tests/include/wait_for_wait_for_executed_gtid_set.inc X%%DATADIR%%/tests/include/wait_innodb_all_purged.inc X%%DATADIR%%/tests/include/wait_show_condition.inc X%%DATADIR%%/tests/include/wait_time_until_connected_again.inc X%%DATADIR%%/tests/include/wait_until_connected_again.inc X%%DATADIR%%/tests/include/wait_until_count_sessions.inc X%%DATADIR%%/tests/include/wait_until_disconnected.inc X%%DATADIR%%/tests/include/wait_until_rows_count.inc X%%DATADIR%%/tests/include/weight_string.inc X%%DATADIR%%/tests/include/weight_string_81309D30.inc X%%DATADIR%%/tests/include/weight_string_8140.inc X%%DATADIR%%/tests/include/weight_string_8EA1.inc X%%DATADIR%%/tests/include/weight_string_8FA2C3.inc X%%DATADIR%%/tests/include/weight_string_A1A1.inc X%%DATADIR%%/tests/include/weight_string_A2A9.inc X%%DATADIR%%/tests/include/weight_string_chde.inc X%%DATADIR%%/tests/include/weight_string_euro.inc X%%DATADIR%%/tests/include/weight_string_l1.inc X%%DATADIR%%/tests/include/weight_string_l12.inc X%%DATADIR%%/tests/include/weight_string_l14.inc X%%DATADIR%%/tests/include/weight_string_l2.inc X%%DATADIR%%/tests/include/weight_string_l3.inc X%%DATADIR%%/tests/include/weight_string_l4.inc X%%DATADIR%%/tests/include/windows.inc X%%DATADIR%%/tests/include/windows_sys_vars.inc X%%DATADIR%%/tests/include/wl6219-engine.test X%%DATADIR%%/tests/include/wl6301.inc X%%DATADIR%%/tests/include/world.inc X%%DATADIR%%/tests/include/world_schema.inc X%%DATADIR%%/tests/include/world_schema1.inc X%%DATADIR%%/tests/include/write_result_to_file.inc X%%DATADIR%%/tests/include/write_var_to_file.inc X%%DATADIR%%/tests/lib/My/Config.pm X%%DATADIR%%/tests/lib/My/ConfigFactory.pm X%%DATADIR%%/tests/lib/My/CoreDump.pm X%%DATADIR%%/tests/lib/My/Exec.pm X%%DATADIR%%/tests/lib/My/File/Path.pm X%%DATADIR%%/tests/lib/My/Find.pm X%%DATADIR%%/tests/lib/My/Handles.pm X%%DATADIR%%/tests/lib/My/Memcache.pm X%%DATADIR%%/tests/lib/My/Options.pm X%%DATADIR%%/tests/lib/My/Platform.pm X%%DATADIR%%/tests/lib/My/SafeProcess.pm X%%DATADIR%%/tests/lib/My/SafeProcess/Base.pm X%%DATADIR%%/tests/lib/My/SafeProcess/my_safe_process X%%DATADIR%%/tests/lib/My/SysInfo.pm X%%DATADIR%%/tests/lib/My/Test.pm X%%DATADIR%%/tests/lib/mtr_cases.pm X%%DATADIR%%/tests/lib/mtr_cases_from_list.pm X%%DATADIR%%/tests/lib/mtr_gcov.pl X%%DATADIR%%/tests/lib/mtr_gprof.pl X%%DATADIR%%/tests/lib/mtr_io.pl X%%DATADIR%%/tests/lib/mtr_match.pm X%%DATADIR%%/tests/lib/mtr_misc.pl X%%DATADIR%%/tests/lib/mtr_process.pl X%%DATADIR%%/tests/lib/mtr_report.pm X%%DATADIR%%/tests/lib/mtr_results.pm X%%DATADIR%%/tests/lib/mtr_stress.pl X%%DATADIR%%/tests/lib/mtr_unique.pm X%%DATADIR%%/tests/lib/v1/My/Config.pm X%%DATADIR%%/tests/lib/v1/incompatible.tests X%%DATADIR%%/tests/lib/v1/mtr_cases.pl X%%DATADIR%%/tests/lib/v1/mtr_gcov.pl X%%DATADIR%%/tests/lib/v1/mtr_gprof.pl X%%DATADIR%%/tests/lib/v1/mtr_im.pl X%%DATADIR%%/tests/lib/v1/mtr_io.pl X%%DATADIR%%/tests/lib/v1/mtr_match.pl X%%DATADIR%%/tests/lib/v1/mtr_misc.pl X%%DATADIR%%/tests/lib/v1/mtr_process.pl X%%DATADIR%%/tests/lib/v1/mtr_report.pl X%%DATADIR%%/tests/lib/v1/mtr_stress.pl X%%DATADIR%%/tests/lib/v1/mtr_timer.pl X%%DATADIR%%/tests/lib/v1/mtr_unique.pl X%%DATADIR%%/tests/lib/v1/mysql-test-run.pl X%%DATADIR%%/tests/lib/v1/ndb_config_1_node.ini X%%DATADIR%%/tests/lib/v1/ndb_config_2_node.ini X%%DATADIR%%/tests/mtr X%%DATADIR%%/tests/mysql-stress-test.pl X%%DATADIR%%/tests/mysql-test-run X%%DATADIR%%/tests/mysql-test-run.pl X%%DATADIR%%/tests/r/1st.result X%%DATADIR%%/tests/r/acl_tables_errors_debug.result X%%DATADIR%%/tests/r/alias.result X%%DATADIR%%/tests/r/almost_full.result X%%DATADIR%%/tests/r/alter_table-big.result X%%DATADIR%%/tests/r/alter_table.result X%%DATADIR%%/tests/r/analyze.result X%%DATADIR%%/tests/r/ansi.result X%%DATADIR%%/tests/r/archive-big.result X%%DATADIR%%/tests/r/archive.result X%%DATADIR%%/tests/r/archive_bitfield.result X%%DATADIR%%/tests/r/archive_debug.result X%%DATADIR%%/tests/r/archive_gis.result X%%DATADIR%%/tests/r/archive_no_symlink.result X%%DATADIR%%/tests/r/archive_plugin.result X%%DATADIR%%/tests/r/archive_symlink.result X%%DATADIR%%/tests/r/audit_plugin.result X%%DATADIR%%/tests/r/audit_plugin_2.result X%%DATADIR%%/tests/r/auth_rpl.result X%%DATADIR%%/tests/r/auto_increment.result X%%DATADIR%%/tests/r/backup.result X%%DATADIR%%/tests/r/bench_count_distinct.result X%%DATADIR%%/tests/r/big_test.require X%%DATADIR%%/tests/r/bigint.result X%%DATADIR%%/tests/r/binary.result X%%DATADIR%%/tests/r/binlog_tx_isolation.result X%%DATADIR%%/tests/r/blackhole.result X%%DATADIR%%/tests/r/blackhole_plugin.result X%%DATADIR%%/tests/r/bool.result X%%DATADIR%%/tests/r/bootstrap.result X%%DATADIR%%/tests/r/bug12368203.result X%%DATADIR%%/tests/r/bug12427262.result X%%DATADIR%%/tests/r/bug12969156.result X%%DATADIR%%/tests/r/bug17076131.result X%%DATADIR%%/tests/r/bug33509.result X%%DATADIR%%/tests/r/bug39022.result X%%DATADIR%%/tests/r/bug46080.result X%%DATADIR%%/tests/r/bug46261.result X%%DATADIR%%/tests/r/bug46760.result X%%DATADIR%%/tests/r/bug47671.result X%%DATADIR%%/tests/r/bug58669.result X%%DATADIR%%/tests/r/bulk_replace.result X%%DATADIR%%/tests/r/cache_innodb.result X%%DATADIR%%/tests/r/case.result X%%DATADIR%%/tests/r/case_insensitive_file_system.require X%%DATADIR%%/tests/r/case_sensitive_file_system.require X%%DATADIR%%/tests/r/cast.result X%%DATADIR%%/tests/r/change_user.result X%%DATADIR%%/tests/r/check.result X%%DATADIR%%/tests/r/check_auto_permission.result X%%DATADIR%%/tests/r/check_var_limit.require X%%DATADIR%%/tests/r/client_xml.result X%%DATADIR%%/tests/r/comment_column.result X%%DATADIR%%/tests/r/comment_column2.result X%%DATADIR%%/tests/r/comment_index.result X%%DATADIR%%/tests/r/comment_table.result X%%DATADIR%%/tests/r/comments.result X%%DATADIR%%/tests/r/commit.result X%%DATADIR%%/tests/r/commit_1innodb.result X%%DATADIR%%/tests/r/compare.result X%%DATADIR%%/tests/r/compress.result X%%DATADIR%%/tests/r/concurrent_innodb_safelog.result X%%DATADIR%%/tests/r/concurrent_innodb_unsafelog.result X%%DATADIR%%/tests/r/condition_filter.result X%%DATADIR%%/tests/r/connect.result X%%DATADIR%%/tests/r/consistent_snapshot.result X%%DATADIR%%/tests/r/constraints.result X%%DATADIR%%/tests/r/count_distinct.result X%%DATADIR%%/tests/r/count_distinct2.result X%%DATADIR%%/tests/r/count_distinct3.result X%%DATADIR%%/tests/r/create-big.result X%%DATADIR%%/tests/r/create.result X%%DATADIR%%/tests/r/create_not_windows.result X%%DATADIR%%/tests/r/create_select_tmp.result X%%DATADIR%%/tests/r/create_w_max_indexes_64.result X%%DATADIR%%/tests/r/csv.result X%%DATADIR%%/tests/r/csv_alter_table.result X%%DATADIR%%/tests/r/csv_not_null.result X%%DATADIR%%/tests/r/ctype_ascii.result X%%DATADIR%%/tests/r/ctype_big5.result X%%DATADIR%%/tests/r/ctype_binary.result X%%DATADIR%%/tests/r/ctype_collate.result X%%DATADIR%%/tests/r/ctype_cp1250_ch.result X%%DATADIR%%/tests/r/ctype_cp1251.result X%%DATADIR%%/tests/r/ctype_cp932.result X%%DATADIR%%/tests/r/ctype_cp932_binlog_row.result X%%DATADIR%%/tests/r/ctype_cp932_binlog_stm.result X%%DATADIR%%/tests/r/ctype_create.result X%%DATADIR%%/tests/r/ctype_errors.result X%%DATADIR%%/tests/r/ctype_eucjpms.result X%%DATADIR%%/tests/r/ctype_euckr.result X%%DATADIR%%/tests/r/ctype_filename.result X%%DATADIR%%/tests/r/ctype_filesystem.result X%%DATADIR%%/tests/r/ctype_gb18030.result X%%DATADIR%%/tests/r/ctype_gb18030_binlog.result X%%DATADIR%%/tests/r/ctype_gb18030_conversion.result X%%DATADIR%%/tests/r/ctype_gb18030_encoding_cn.result X%%DATADIR%%/tests/r/ctype_gb18030_encoding_utf8.result X%%DATADIR%%/tests/r/ctype_gb18030_ligatures.result X%%DATADIR%%/tests/r/ctype_gb2312.result X%%DATADIR%%/tests/r/ctype_gbk.result X%%DATADIR%%/tests/r/ctype_gbk_binlog.result X%%DATADIR%%/tests/r/ctype_hebrew.result X%%DATADIR%%/tests/r/ctype_latin1.result X%%DATADIR%%/tests/r/ctype_latin1_de.result X%%DATADIR%%/tests/r/ctype_latin2.result X%%DATADIR%%/tests/r/ctype_latin2_ch.result X%%DATADIR%%/tests/r/ctype_ldml.result X%%DATADIR%%/tests/r/ctype_like_range.result X%%DATADIR%%/tests/r/ctype_many.result X%%DATADIR%%/tests/r/ctype_mb.result X%%DATADIR%%/tests/r/ctype_recoding.result X%%DATADIR%%/tests/r/ctype_sjis.result X%%DATADIR%%/tests/r/ctype_tis620.result X%%DATADIR%%/tests/r/ctype_uca.result X%%DATADIR%%/tests/r/ctype_ucs.result X%%DATADIR%%/tests/r/ctype_ucs2_def.result X%%DATADIR%%/tests/r/ctype_ujis.result X%%DATADIR%%/tests/r/ctype_ujis_ucs2.result X%%DATADIR%%/tests/r/ctype_utf16.result X%%DATADIR%%/tests/r/ctype_utf16_def.result X%%DATADIR%%/tests/r/ctype_utf16_uca.result X%%DATADIR%%/tests/r/ctype_utf16le.result X%%DATADIR%%/tests/r/ctype_utf32.result X%%DATADIR%%/tests/r/ctype_utf32_uca.result X%%DATADIR%%/tests/r/ctype_utf8.result X%%DATADIR%%/tests/r/ctype_utf8mb4.result X%%DATADIR%%/tests/r/ctype_utf8mb4_heap.result X%%DATADIR%%/tests/r/ctype_utf8mb4_innodb.result X%%DATADIR%%/tests/r/ctype_utf8mb4_myisam.result X%%DATADIR%%/tests/r/ctype_utf8mb4_uca.result X%%DATADIR%%/tests/r/daemonize_opt.result X%%DATADIR%%/tests/r/datadir_permission.result X%%DATADIR%%/tests/r/date_formats.result X%%DATADIR%%/tests/r/ddl_i18n_koi8r.result X%%DATADIR%%/tests/r/ddl_i18n_utf8.result X%%DATADIR%%/tests/r/deadlock_innodb.result X%%DATADIR%%/tests/r/debug_sync.result X%%DATADIR%%/tests/r/debug_sync2.result X%%DATADIR%%/tests/r/default.result X%%DATADIR%%/tests/r/delete.result X%%DATADIR%%/tests/r/delete_all_rows.result X%%DATADIR%%/tests/r/deprecate_eof.result X%%DATADIR%%/tests/r/deprecated_features.result X%%DATADIR%%/tests/r/derived.result X%%DATADIR%%/tests/r/dirty_close.result X%%DATADIR%%/tests/r/disabled_replication.result X%%DATADIR%%/tests/r/disabled_storage_engines.result X%%DATADIR%%/tests/r/disconnect_on_expired_password_default.result X%%DATADIR%%/tests/r/disconnect_on_expired_password_off.result X%%DATADIR%%/tests/r/distinct.result X%%DATADIR%%/tests/r/drop-no_root.result X%%DATADIR%%/tests/r/drop.result X%%DATADIR%%/tests/r/drop_debug.result X%%DATADIR%%/tests/r/ds_mrr-big.result X%%DATADIR%%/tests/r/dynamic_tracing.result X%%DATADIR%%/tests/r/empty_table.result X%%DATADIR%%/tests/r/endspace.result X%%DATADIR%%/tests/r/eq_range_idx_stat.result X%%DATADIR%%/tests/r/error_simulation.result X%%DATADIR%%/tests/r/errors.result X%%DATADIR%%/tests/r/events_1.result X%%DATADIR%%/tests/r/events_2.result X%%DATADIR%%/tests/r/events_and_binlog.result X%%DATADIR%%/tests/r/events_bugs.result X%%DATADIR%%/tests/r/events_embedded.result X%%DATADIR%%/tests/r/events_grant.result X%%DATADIR%%/tests/r/events_logs_tests.result X%%DATADIR%%/tests/r/events_microsec.result X%%DATADIR%%/tests/r/events_restart.result X%%DATADIR%%/tests/r/events_scheduling.result X%%DATADIR%%/tests/r/events_stress.result X%%DATADIR%%/tests/r/events_time_zone.result X%%DATADIR%%/tests/r/events_trans.result X%%DATADIR%%/tests/r/events_trans_notembedded.result X%%DATADIR%%/tests/r/examined_rows.result X%%DATADIR%%/tests/r/execution_constants.result X%%DATADIR%%/tests/r/explain.result X%%DATADIR%%/tests/r/explain_for_connection_crash.result X%%DATADIR%%/tests/r/explain_for_connection_rqg_json.result X%%DATADIR%%/tests/r/explain_for_connection_rqg_trad.result X%%DATADIR%%/tests/r/explain_for_connection_small_json.result X%%DATADIR%%/tests/r/explain_for_connection_small_trad.result X%%DATADIR%%/tests/r/explain_json_all.result X%%DATADIR%%/tests/r/explain_json_none.result X%%DATADIR%%/tests/r/explain_other.result X%%DATADIR%%/tests/r/file_contents.result X%%DATADIR%%/tests/r/filesort_debug.result X%%DATADIR%%/tests/r/filesort_merge.result X%%DATADIR%%/tests/r/filesort_pack.result X%%DATADIR%%/tests/r/filter_single_col_idx_big.result X%%DATADIR%%/tests/r/filter_single_col_idx_small.result X%%DATADIR%%/tests/r/fix_priv_tables.result X%%DATADIR%%/tests/r/flush.result X%%DATADIR%%/tests/r/flush2.result X%%DATADIR%%/tests/r/flush_block_commit.result X%%DATADIR%%/tests/r/flush_block_commit_notembedded.result X%%DATADIR%%/tests/r/flush_read_lock.result X%%DATADIR%%/tests/r/flush_read_lock_kill.result X%%DATADIR%%/tests/r/flush_table.result X%%DATADIR%%/tests/r/foreign_key.result X%%DATADIR%%/tests/r/fulltext.result X%%DATADIR%%/tests/r/fulltext2.result X%%DATADIR%%/tests/r/fulltext3.result X%%DATADIR%%/tests/r/fulltext_cache.result X%%DATADIR%%/tests/r/fulltext_distinct.result X%%DATADIR%%/tests/r/fulltext_left_join.result X%%DATADIR%%/tests/r/fulltext_multi.result X%%DATADIR%%/tests/r/fulltext_order_by.result X%%DATADIR%%/tests/r/fulltext_plugin.result X%%DATADIR%%/tests/r/fulltext_update.result X%%DATADIR%%/tests/r/fulltext_var.result X%%DATADIR%%/tests/r/func_aes.result X%%DATADIR%%/tests/r/func_aes_cfb1.result X%%DATADIR%%/tests/r/func_aes_cfb128.result X%%DATADIR%%/tests/r/func_aes_cfb8.result X%%DATADIR%%/tests/r/func_aes_misc.result X%%DATADIR%%/tests/r/func_aes_ofb.result X%%DATADIR%%/tests/r/func_analyse.result X%%DATADIR%%/tests/r/func_compress.result X%%DATADIR%%/tests/r/func_concat.result X%%DATADIR%%/tests/r/func_crypt.result X%%DATADIR%%/tests/r/func_date_add.result X%%DATADIR%%/tests/r/func_default.result X%%DATADIR%%/tests/r/func_des_encrypt.result X%%DATADIR%%/tests/r/func_digest.result X%%DATADIR%%/tests/r/func_encrypt.result X%%DATADIR%%/tests/r/func_encrypt_nossl.result X%%DATADIR%%/tests/r/func_encrypt_ucs2.result X%%DATADIR%%/tests/r/func_equal.result X%%DATADIR%%/tests/r/func_gconcat.result X%%DATADIR%%/tests/r/func_group.result X%%DATADIR%%/tests/r/func_group_innodb.result X%%DATADIR%%/tests/r/func_group_innodb_16k.result X%%DATADIR%%/tests/r/func_if.result X%%DATADIR%%/tests/r/func_in_all.result X%%DATADIR%%/tests/r/func_in_icp.result X%%DATADIR%%/tests/r/func_in_icp_mrr.result X%%DATADIR%%/tests/r/func_in_mrr.result X%%DATADIR%%/tests/r/func_in_mrr_cost.result X%%DATADIR%%/tests/r/func_in_none.result X%%DATADIR%%/tests/r/func_isnull.result X%%DATADIR%%/tests/r/func_like.result X%%DATADIR%%/tests/r/func_math.result X%%DATADIR%%/tests/r/func_misc.result X%%DATADIR%%/tests/r/func_op.result X%%DATADIR%%/tests/r/func_regexp.result X%%DATADIR%%/tests/r/func_rollback.result X%%DATADIR%%/tests/r/func_sapdb.result X%%DATADIR%%/tests/r/func_set.result X%%DATADIR%%/tests/r/func_str.result X%%DATADIR%%/tests/r/func_str_debug.result X%%DATADIR%%/tests/r/func_str_no_ps.result X%%DATADIR%%/tests/r/func_system.result X%%DATADIR%%/tests/r/func_test.result X%%DATADIR%%/tests/r/func_time.result X%%DATADIR%%/tests/r/func_timestamp.result X%%DATADIR%%/tests/r/func_weight_string.result X%%DATADIR%%/tests/r/function_defaults.result X%%DATADIR%%/tests/r/gcc296.result X%%DATADIR%%/tests/r/get_diagnostics.result X%%DATADIR%%/tests/r/get_table_share.result X%%DATADIR%%/tests/r/gis-debug.result X%%DATADIR%%/tests/r/gis-precise.result X%%DATADIR%%/tests/r/gis-rt-precise.result X%%DATADIR%%/tests/r/gis-rtree.result X%%DATADIR%%/tests/r/gis.result X%%DATADIR%%/tests/r/grant.result X%%DATADIR%%/tests/r/grant2.result X%%DATADIR%%/tests/r/grant3.result X%%DATADIR%%/tests/r/grant4.result X%%DATADIR%%/tests/r/grant_alter_user.result X%%DATADIR%%/tests/r/grant_alter_user_qa.result X%%DATADIR%%/tests/r/grant_cache.result X%%DATADIR%%/tests/r/grant_explain_non_select.result X%%DATADIR%%/tests/r/grant_lowercase_fs.result X%%DATADIR%%/tests/r/grant_user_lock.result X%%DATADIR%%/tests/r/grant_user_lock_qa.result X%%DATADIR%%/tests/r/greedy_optimizer.result X%%DATADIR%%/tests/r/greedy_search.result X%%DATADIR%%/tests/r/group_by.result X%%DATADIR%%/tests/r/group_by_fd_no_prot.result X%%DATADIR%%/tests/r/group_by_fd_ps_prot.result X%%DATADIR%%/tests/r/group_min_max.result X%%DATADIR%%/tests/r/group_min_max_innodb.result X%%DATADIR%%/tests/r/gtids_anonymous_trxs_violations.result X%%DATADIR%%/tests/r/handler_innodb.result X%%DATADIR%%/tests/r/handler_myisam.result X%%DATADIR%%/tests/r/handler_read_last.result X%%DATADIR%%/tests/r/have_big5.require X%%DATADIR%%/tests/r/have_binlog_format_mixed.require X%%DATADIR%%/tests/r/have_binlog_format_row.require X%%DATADIR%%/tests/r/have_binlog_format_statement.require X%%DATADIR%%/tests/r/have_compress.require X%%DATADIR%%/tests/r/have_cp1250_ch.require X%%DATADIR%%/tests/r/have_cp1251.require X%%DATADIR%%/tests/r/have_cp866.require X%%DATADIR%%/tests/r/have_cp932.require X%%DATADIR%%/tests/r/have_crypt.require X%%DATADIR%%/tests/r/have_debug.require X%%DATADIR%%/tests/r/have_debug_sync.require X%%DATADIR%%/tests/r/have_eucjpms.require X%%DATADIR%%/tests/r/have_euckr.require X%%DATADIR%%/tests/r/have_gb18030.require X%%DATADIR%%/tests/r/have_gb2312.require X%%DATADIR%%/tests/r/have_gbk.require X%%DATADIR%%/tests/r/have_geometry.require X%%DATADIR%%/tests/r/have_koi8r.require X%%DATADIR%%/tests/r/have_latin2_ch.require X%%DATADIR%%/tests/r/have_local_infile.require X%%DATADIR%%/tests/r/have_log_bin.require X%%DATADIR%%/tests/r/have_met_timezone.require X%%DATADIR%%/tests/r/have_moscow_leap_timezone.require X%%DATADIR%%/tests/r/have_mysql_upgrade.result X%%DATADIR%%/tests/r/have_ndb_debug.require X%%DATADIR%%/tests/r/have_ndb_extra.require X%%DATADIR%%/tests/r/have_ndbapi_examples.require X%%DATADIR%%/tests/r/have_nodebug.require X%%DATADIR%%/tests/r/have_optimizer_switch.require X%%DATADIR%%/tests/r/have_outfile.require X%%DATADIR%%/tests/r/have_partition.require X%%DATADIR%%/tests/r/have_perror.require X%%DATADIR%%/tests/r/have_profiling.require X%%DATADIR%%/tests/r/have_query_cache.require X%%DATADIR%%/tests/r/have_sjis.require X%%DATADIR%%/tests/r/have_ssl.require X%%DATADIR%%/tests/r/have_ssl_is_yes_or_disabled_only.require X%%DATADIR%%/tests/r/have_statement_timeout.require X%%DATADIR%%/tests/r/have_symlink.require X%%DATADIR%%/tests/r/have_tis620.require X%%DATADIR%%/tests/r/have_ucs2.require X%%DATADIR%%/tests/r/have_ujis.require X%%DATADIR%%/tests/r/have_utf16.require X%%DATADIR%%/tests/r/have_utf32.require X%%DATADIR%%/tests/r/have_utf8.require X%%DATADIR%%/tests/r/have_utf8mb4.require X%%DATADIR%%/tests/r/having.result X%%DATADIR%%/tests/r/heap.result X%%DATADIR%%/tests/r/heap_auto_increment.result X%%DATADIR%%/tests/r/heap_btree.result X%%DATADIR%%/tests/r/heap_hash.result X%%DATADIR%%/tests/r/help.result X%%DATADIR%%/tests/r/help_verbose.result X%%DATADIR%%/tests/r/host_cache_size_functionality.result X%%DATADIR%%/tests/r/ignore_strict.result X%%DATADIR%%/tests/r/implicit_char_to_num_conversion.result X%%DATADIR%%/tests/r/implicit_commit.result X%%DATADIR%%/tests/r/index_merge_delete.result X%%DATADIR%%/tests/r/index_merge_innodb.result X%%DATADIR%%/tests/r/index_merge_insert-and-replace.result X%%DATADIR%%/tests/r/index_merge_intersect_dml.result X%%DATADIR%%/tests/r/index_merge_myisam.result X%%DATADIR%%/tests/r/index_merge_update.result X%%DATADIR%%/tests/r/information_schema-big.result X%%DATADIR%%/tests/r/information_schema.result X%%DATADIR%%/tests/r/information_schema_chmod.result X%%DATADIR%%/tests/r/information_schema_db.result X%%DATADIR%%/tests/r/information_schema_inno.result X%%DATADIR%%/tests/r/information_schema_parameters.result X%%DATADIR%%/tests/r/information_schema_part.result X%%DATADIR%%/tests/r/information_schema_routines.result X%%DATADIR%%/tests/r/init_connect.result X%%DATADIR%%/tests/r/init_file.result X%%DATADIR%%/tests/r/initialize-bug20350099.result X%%DATADIR%%/tests/r/initialize-bug20504142.result X%%DATADIR%%/tests/r/initialize-bug21335821.result X%%DATADIR%%/tests/r/initialize-errors.result X%%DATADIR%%/tests/r/initialize-init-acls.result X%%DATADIR%%/tests/r/initialize-sha256.result X%%DATADIR%%/tests/r/initialize-yassl-warning.result X%%DATADIR%%/tests/r/initialize.result X%%DATADIR%%/tests/r/innodb_deadlock.result X%%DATADIR%%/tests/r/innodb_disabled.result X%%DATADIR%%/tests/r/innodb_explain_json_non_select_all.result X%%DATADIR%%/tests/r/innodb_explain_json_non_select_none.result X%%DATADIR%%/tests/r/innodb_explain_non_select_all.result X%%DATADIR%%/tests/r/innodb_explain_non_select_none.result X%%DATADIR%%/tests/r/innodb_icp.result X%%DATADIR%%/tests/r/innodb_icp_all.result X%%DATADIR%%/tests/r/innodb_icp_none.result X%%DATADIR%%/tests/r/innodb_ignore_builtin.result X%%DATADIR%%/tests/r/innodb_log_file_size_functionality.result X%%DATADIR%%/tests/r/innodb_mrr.result X%%DATADIR%%/tests/r/innodb_mrr_all.result X%%DATADIR%%/tests/r/innodb_mrr_cost.result X%%DATADIR%%/tests/r/innodb_mrr_cost_all.result X%%DATADIR%%/tests/r/innodb_mrr_cost_icp.result X%%DATADIR%%/tests/r/innodb_mrr_icp.result X%%DATADIR%%/tests/r/innodb_mrr_none.result X%%DATADIR%%/tests/r/innodb_mysql_lock.result X%%DATADIR%%/tests/r/innodb_mysql_lock2.result X%%DATADIR%%/tests/r/innodb_mysql_sync.result X%%DATADIR%%/tests/r/innodb_pk_extension_off.result X%%DATADIR%%/tests/r/innodb_pk_extension_on.result X%%DATADIR%%/tests/r/innodb_recovery_with_upper_case_names.result X%%DATADIR%%/tests/r/insert.result X%%DATADIR%%/tests/r/insert_notembedded.result X%%DATADIR%%/tests/r/insert_select.result X%%DATADIR%%/tests/r/insert_update.result X%%DATADIR%%/tests/r/installdb-bad-cipher.result X%%DATADIR%%/tests/r/internal_tmp_disk_storage_engine.result X%%DATADIR%%/tests/r/ipv4_as_ipv6.result X%%DATADIR%%/tests/r/ipv6.result X%%DATADIR%%/tests/r/is_debug_build.require X%%DATADIR%%/tests/r/is_embedded.require X%%DATADIR%%/tests/r/isam.result X%%DATADIR%%/tests/r/join.result X%%DATADIR%%/tests/r/join_cache_bka.result X%%DATADIR%%/tests/r/join_cache_bka_nixbnl.result X%%DATADIR%%/tests/r/join_cache_bkaunique.result X%%DATADIR%%/tests/r/join_cache_bnl.result X%%DATADIR%%/tests/r/join_cache_nojb.result X%%DATADIR%%/tests/r/join_crash.result X%%DATADIR%%/tests/r/join_nested.result X%%DATADIR%%/tests/r/join_nested_bka.result X%%DATADIR%%/tests/r/join_nested_bka_nixbnl.result X%%DATADIR%%/tests/r/join_optimizer.result X%%DATADIR%%/tests/r/join_outer.result X%%DATADIR%%/tests/r/join_outer_bka.result X%%DATADIR%%/tests/r/join_outer_bka_nixbnl.result X%%DATADIR%%/tests/r/join_outer_innodb.result X%%DATADIR%%/tests/r/json.result X%%DATADIR%%/tests/r/json_client.result X%%DATADIR%%/tests/r/json_conversions.result X%%DATADIR%%/tests/r/json_index.result X%%DATADIR%%/tests/r/key.result X%%DATADIR%%/tests/r/key_cache.result X%%DATADIR%%/tests/r/key_diff.result X%%DATADIR%%/tests/r/key_primary.result X%%DATADIR%%/tests/r/keywords.result X%%DATADIR%%/tests/r/kill.result X%%DATADIR%%/tests/r/kill_debug.result X%%DATADIR%%/tests/r/limit.result X%%DATADIR%%/tests/r/loaddata.result X%%DATADIR%%/tests/r/loaddata_autocom_innodb.result X%%DATADIR%%/tests/r/loadxml.result X%%DATADIR%%/tests/r/locale.result X%%DATADIR%%/tests/r/lock.result X%%DATADIR%%/tests/r/lock_multi.result X%%DATADIR%%/tests/r/lock_multi_bug38499.result X%%DATADIR%%/tests/r/lock_multi_bug38691.result X%%DATADIR%%/tests/r/lock_sync.result X%%DATADIR%%/tests/r/lock_tables_lost_commit.result X%%DATADIR%%/tests/r/locking_service.result X%%DATADIR%%/tests/r/log_errchk.result X%%DATADIR%%/tests/r/log_state.result X%%DATADIR%%/tests/r/log_state_bug33693.result X%%DATADIR%%/tests/r/log_tables-big.result X%%DATADIR%%/tests/r/log_tables.result X%%DATADIR%%/tests/r/log_tables_debug.result X%%DATADIR%%/tests/r/log_tables_upgrade.result X%%DATADIR%%/tests/r/log_timestamps.result X%%DATADIR%%/tests/r/long_tmpdir.result X%%DATADIR%%/tests/r/lowercase0.require X%%DATADIR%%/tests/r/lowercase1.require X%%DATADIR%%/tests/r/lowercase2.require X%%DATADIR%%/tests/r/lowercase_fs_off.result X%%DATADIR%%/tests/r/lowercase_fs_on.result X%%DATADIR%%/tests/r/lowercase_mixed_tmpdir.result X%%DATADIR%%/tests/r/lowercase_mixed_tmpdir_innodb.result X%%DATADIR%%/tests/r/lowercase_table.result X%%DATADIR%%/tests/r/lowercase_table2.result X%%DATADIR%%/tests/r/lowercase_table4.result X%%DATADIR%%/tests/r/lowercase_table5.result X%%DATADIR%%/tests/r/lowercase_table_grant.result X%%DATADIR%%/tests/r/lowercase_table_qcache.result X%%DATADIR%%/tests/r/lowercase_utf8.result X%%DATADIR%%/tests/r/lowercase_view.result X%%DATADIR%%/tests/r/m_i_db.result X%%DATADIR%%/tests/r/max_statement_time.result X%%DATADIR%%/tests/r/mdl_sync.result X%%DATADIR%%/tests/r/mdl_tablespace.result X%%DATADIR%%/tests/r/merge-big.result X%%DATADIR%%/tests/r/merge.result X%%DATADIR%%/tests/r/merge_innodb.result X%%DATADIR%%/tests/r/merge_mmap.result X%%DATADIR%%/tests/r/metadata.result X%%DATADIR%%/tests/r/mix2_myisam.result X%%DATADIR%%/tests/r/mix2_myisam_ucs2.result X%%DATADIR%%/tests/r/multi_plugin_load.result X%%DATADIR%%/tests/r/multi_plugin_load_add.result X%%DATADIR%%/tests/r/multi_plugin_load_add2.result X%%DATADIR%%/tests/r/multi_statement.result X%%DATADIR%%/tests/r/multi_update.result X%%DATADIR%%/tests/r/multi_update2.result X%%DATADIR%%/tests/r/multi_update_innodb.result X%%DATADIR%%/tests/r/multi_update_tiny_hash.result X%%DATADIR%%/tests/r/myisam-blob.result X%%DATADIR%%/tests/r/myisam-system.result X%%DATADIR%%/tests/r/myisam.result X%%DATADIR%%/tests/r/myisam_crash_before_flush_keys.result X%%DATADIR%%/tests/r/myisam_debug.result X%%DATADIR%%/tests/r/myisam_explain_json_non_select_all.result X%%DATADIR%%/tests/r/myisam_explain_json_non_select_none.result X%%DATADIR%%/tests/r/myisam_explain_non_select_all.result X%%DATADIR%%/tests/r/myisam_explain_non_select_none.result X%%DATADIR%%/tests/r/myisam_icp.result X%%DATADIR%%/tests/r/myisam_icp_all.result X%%DATADIR%%/tests/r/myisam_icp_none.result X%%DATADIR%%/tests/r/myisam_mrr.result X%%DATADIR%%/tests/r/myisam_mrr_all.result X%%DATADIR%%/tests/r/myisam_mrr_cost.result X%%DATADIR%%/tests/r/myisam_mrr_cost_all.result X%%DATADIR%%/tests/r/myisam_mrr_cost_icp.result X%%DATADIR%%/tests/r/myisam_mrr_icp.result X%%DATADIR%%/tests/r/myisam_mrr_none.result X%%DATADIR%%/tests/r/myisam_recover.result X%%DATADIR%%/tests/r/myisam_row_rpl.result X%%DATADIR%%/tests/r/myisampack.result X%%DATADIR%%/tests/r/mysql-bug41486.result X%%DATADIR%%/tests/r/mysql-bug45236.result X%%DATADIR%%/tests/r/mysql.result X%%DATADIR%%/tests/r/mysql_binary_mode.result X%%DATADIR%%/tests/r/mysql_client_test.result X%%DATADIR%%/tests/r/mysql_client_test_embedded.result X%%DATADIR%%/tests/r/mysql_comments.result X%%DATADIR%%/tests/r/mysql_config_editor.result X%%DATADIR%%/tests/r/mysql_cp932.result X%%DATADIR%%/tests/r/mysql_embedded.result X%%DATADIR%%/tests/r/mysql_embedded_client_test.result X%%DATADIR%%/tests/r/mysql_locale_posix.result X%%DATADIR%%/tests/r/mysql_not_windows.result X%%DATADIR%%/tests/r/mysql_plugin.result X%%DATADIR%%/tests/r/mysql_protocols.result X%%DATADIR%%/tests/r/mysql_ssl.result X%%DATADIR%%/tests/r/mysql_ssl_default.result X%%DATADIR%%/tests/r/mysql_tzinfo_to_sql.result X%%DATADIR%%/tests/r/mysql_tzinfo_to_sql_sys.result X%%DATADIR%%/tests/r/mysql_upgrade.result X%%DATADIR%%/tests/r/mysql_upgrade_ssl.result X%%DATADIR%%/tests/r/mysqladmin.result X%%DATADIR%%/tests/r/mysqlbinlog.result X%%DATADIR%%/tests/r/mysqlbinlog_debug.result X%%DATADIR%%/tests/r/mysqlbinlog_mixed_or_statment.result X%%DATADIR%%/tests/r/mysqlbinlog_raw_mode.result X%%DATADIR%%/tests/r/mysqlbinlog_raw_mode_win.result X%%DATADIR%%/tests/r/mysqlbinlog_row_big.result X%%DATADIR%%/tests/r/mysqlcheck.result X%%DATADIR%%/tests/r/mysqld--defaults-file.result X%%DATADIR%%/tests/r/mysqld--help-notwin.result X%%DATADIR%%/tests/r/mysqld--help-win.result X%%DATADIR%%/tests/r/mysqld_daemon.result X%%DATADIR%%/tests/r/mysqld_safe.result X%%DATADIR%%/tests/r/mysqldump-compat.result X%%DATADIR%%/tests/r/mysqldump-max.result X%%DATADIR%%/tests/r/mysqldump-no-binlog.result X%%DATADIR%%/tests/r/mysqldump.result X%%DATADIR%%/tests/r/mysqldump_restore.result X%%DATADIR%%/tests/r/mysqlimport.result X%%DATADIR%%/tests/r/mysqlpump.result X%%DATADIR%%/tests/r/mysqlpump_basic.result X%%DATADIR%%/tests/r/mysqlpump_charset.result X%%DATADIR%%/tests/r/mysqlpump_concurrency.result X%%DATADIR%%/tests/r/mysqlpump_extended.result X%%DATADIR%%/tests/r/mysqlpump_filters.result X%%DATADIR%%/tests/r/mysqlpump_multi_thread.result X%%DATADIR%%/tests/r/mysqlshow.result X%%DATADIR%%/tests/r/mysqlslap.result X%%DATADIR%%/tests/r/mysqltest.result X%%DATADIR%%/tests/r/named_pipe.result X%%DATADIR%%/tests/r/negation_elimination.result X%%DATADIR%%/tests/r/no-threads.result X%%DATADIR%%/tests/r/no_binlog.result X%%DATADIR%%/tests/r/no_binlog_gtid_empty_transaction.result X%%DATADIR%%/tests/r/no_binlog_gtid_mode_on.result X%%DATADIR%%/tests/r/no_binlog_gtid_mode_on_explicit_prepared_stmts.result X%%DATADIR%%/tests/r/no_binlog_gtid_next_single_stmt_trx_rollback.result X%%DATADIR%%/tests/r/no_binlog_gtid_next_temporary_table.result X%%DATADIR%%/tests/r/not_asan.require X%%DATADIR%%/tests/r/not_embedded.require X%%DATADIR%%/tests/r/not_embedded_server.result X%%DATADIR%%/tests/r/not_ndb.require X%%DATADIR%%/tests/r/not_openssl.require X%%DATADIR%%/tests/r/not_partition.result X%%DATADIR%%/tests/r/not_ssl.require X%%DATADIR%%/tests/r/not_true.require X%%DATADIR%%/tests/r/not_valgrind.require X%%DATADIR%%/tests/r/not_windows.require X%%DATADIR%%/tests/r/null.result X%%DATADIR%%/tests/r/null_key_all.result X%%DATADIR%%/tests/r/null_key_icp.result X%%DATADIR%%/tests/r/null_key_none.result X%%DATADIR%%/tests/r/odbc.result X%%DATADIR%%/tests/r/olap.result X%%DATADIR%%/tests/r/one_thread_per_connection.require X%%DATADIR%%/tests/r/openssl.require X%%DATADIR%%/tests/r/openssl_1.result X%%DATADIR%%/tests/r/opt_costmodel.result X%%DATADIR%%/tests/r/opt_costmodel_flush.result X%%DATADIR%%/tests/r/opt_costmodel_pfs.result X%%DATADIR%%/tests/r/opt_costmodel_restart.result X%%DATADIR%%/tests/r/opt_costmodel_tables.result X%%DATADIR%%/tests/r/opt_costmodel_warnings.result X%%DATADIR%%/tests/r/opt_hint_timeout.result X%%DATADIR%%/tests/r/opt_hints.result X%%DATADIR%%/tests/r/opt_hints_lowercase.result X%%DATADIR%%/tests/r/opt_hints_pfs.result X%%DATADIR%%/tests/r/opt_hints_subquery.result X%%DATADIR%%/tests/r/optimizer_bug12837084.result X%%DATADIR%%/tests/r/optimizer_debug_sync.result X%%DATADIR%%/tests/r/optimizer_switch.result X%%DATADIR%%/tests/r/order_by_all.result X%%DATADIR%%/tests/r/order_by_icp_mrr.result X%%DATADIR%%/tests/r/order_by_limit.result X%%DATADIR%%/tests/r/order_by_none.result X%%DATADIR%%/tests/r/order_by_sortkey.result X%%DATADIR%%/tests/r/order_fill_sortbuf.result X%%DATADIR%%/tests/r/outfile.result X%%DATADIR%%/tests/r/outfile_loaddata.result X%%DATADIR%%/tests/r/overflow.result X%%DATADIR%%/tests/r/packet.result X%%DATADIR%%/tests/r/parser-big-32bit.result X%%DATADIR%%/tests/r/parser-big-64bit.result X%%DATADIR%%/tests/r/parser.result X%%DATADIR%%/tests/r/parser_bug21114_innodb.result X%%DATADIR%%/tests/r/parser_not_embedded.result X%%DATADIR%%/tests/r/parser_precedence.result X%%DATADIR%%/tests/r/parser_stack.result X%%DATADIR%%/tests/r/partition.result X%%DATADIR%%/tests/r/partition_archive.result X%%DATADIR%%/tests/r/partition_binlog.result X%%DATADIR%%/tests/r/partition_binlog_stmt.result X%%DATADIR%%/tests/r/partition_blackhole.result X%%DATADIR%%/tests/r/partition_bug18198.result X%%DATADIR%%/tests/r/partition_cache.result X%%DATADIR%%/tests/r/partition_charset.result X%%DATADIR%%/tests/r/partition_column.result X%%DATADIR%%/tests/r/partition_column_prune.result X%%DATADIR%%/tests/r/partition_csv.result X%%DATADIR%%/tests/r/partition_datatype.result X%%DATADIR%%/tests/r/partition_debug.result X%%DATADIR%%/tests/r/partition_debug_sync.result X%%DATADIR%%/tests/r/partition_debug_sync_stmt.result X%%DATADIR%%/tests/r/partition_error.result X%%DATADIR%%/tests/r/partition_exchange.result X%%DATADIR%%/tests/r/partition_explicit_prune.result X%%DATADIR%%/tests/r/partition_federated.result X%%DATADIR%%/tests/r/partition_grant.result X%%DATADIR%%/tests/r/partition_hash.result X%%DATADIR%%/tests/r/partition_index_innodb.result X%%DATADIR%%/tests/r/partition_index_myisam.result X%%DATADIR%%/tests/r/partition_innodb.result X%%DATADIR%%/tests/r/partition_innodb_plugin.result X%%DATADIR%%/tests/r/partition_innodb_semi_consistent.result X%%DATADIR%%/tests/r/partition_innodb_stmt.result X%%DATADIR%%/tests/r/partition_innodb_tablespace.result X%%DATADIR%%/tests/r/partition_key_cache.result X%%DATADIR%%/tests/r/partition_list.result X%%DATADIR%%/tests/r/partition_locking.result X%%DATADIR%%/tests/r/partition_locking_4.result X%%DATADIR%%/tests/r/partition_mgm.result X%%DATADIR%%/tests/r/partition_mgm_err.result X%%DATADIR%%/tests/r/partition_mgm_err2.result X%%DATADIR%%/tests/r/partition_myisam.result X%%DATADIR%%/tests/r/partition_not_blackhole.result X%%DATADIR%%/tests/r/partition_not_windows.result X%%DATADIR%%/tests/r/partition_order.result X%%DATADIR%%/tests/r/partition_plugin.result X%%DATADIR%%/tests/r/partition_pruning.result X%%DATADIR%%/tests/r/partition_range.result X%%DATADIR%%/tests/r/partition_rename_longfilename.result X%%DATADIR%%/tests/r/partition_symlink.result X%%DATADIR%%/tests/r/partition_sync.result X%%DATADIR%%/tests/r/partition_truncate.result X%%DATADIR%%/tests/r/partition_utf8.result X%%DATADIR%%/tests/r/partition_windows.result X%%DATADIR%%/tests/r/per_thread_connection_handler.result X%%DATADIR%%/tests/r/perror-win.result X%%DATADIR%%/tests/r/perror.result X%%DATADIR%%/tests/r/plugin.result X%%DATADIR%%/tests/r/plugin_auth.result X%%DATADIR%%/tests/r/plugin_auth_qa.result X%%DATADIR%%/tests/r/plugin_auth_qa_1.result X%%DATADIR%%/tests/r/plugin_auth_qa_2.result X%%DATADIR%%/tests/r/plugin_auth_qa_3.result X%%DATADIR%%/tests/r/plugin_auth_sha256.result X%%DATADIR%%/tests/r/plugin_auth_sha256_2.result X%%DATADIR%%/tests/r/plugin_auth_sha256_server_default.result X%%DATADIR%%/tests/r/plugin_auth_sha256_server_default_tls.result X%%DATADIR%%/tests/r/plugin_auth_sha256_tls.result X%%DATADIR%%/tests/r/plugin_auth_user_lock.result X%%DATADIR%%/tests/r/plugin_load.result X%%DATADIR%%/tests/r/plugin_load_option.result X%%DATADIR%%/tests/r/plugin_not_embedded.result X%%DATADIR%%/tests/r/preload.result X%%DATADIR%%/tests/r/profiling.result X%%DATADIR%%/tests/r/ps.result X%%DATADIR%%/tests/r/ps_10nestset.result X%%DATADIR%%/tests/r/ps_11bugs.result X%%DATADIR%%/tests/r/ps_1general.result X%%DATADIR%%/tests/r/ps_2myisam.result X%%DATADIR%%/tests/r/ps_3innodb.result X%%DATADIR%%/tests/r/ps_4heap.result X%%DATADIR%%/tests/r/ps_5merge.result X%%DATADIR%%/tests/r/ps_ddl.result X%%DATADIR%%/tests/r/ps_ddl1.result X%%DATADIR%%/tests/r/ps_grant.result X%%DATADIR%%/tests/r/ps_not_windows.result X%%DATADIR%%/tests/r/ps_w_max_indexes_64.result X%%DATADIR%%/tests/r/python_with_json.require X%%DATADIR%%/tests/r/query_cache.result X%%DATADIR%%/tests/r/query_cache_28249.result X%%DATADIR%%/tests/r/query_cache_debug.result X%%DATADIR%%/tests/r/query_cache_disabled.result X%%DATADIR%%/tests/r/query_cache_merge.result X%%DATADIR%%/tests/r/query_cache_notembedded.result X%%DATADIR%%/tests/r/query_cache_ps_no_prot.result X%%DATADIR%%/tests/r/query_cache_ps_ps_prot.result X%%DATADIR%%/tests/r/query_cache_size_functionality.result X%%DATADIR%%/tests/r/query_cache_type_functionality.result X%%DATADIR%%/tests/r/query_cache_with_views.result X%%DATADIR%%/tests/r/range_all.result X%%DATADIR%%/tests/r/range_icp.result X%%DATADIR%%/tests/r/range_icp_mrr.result X%%DATADIR%%/tests/r/range_mrr.result X%%DATADIR%%/tests/r/range_mrr_cost.result X%%DATADIR%%/tests/r/range_none.result X%%DATADIR%%/tests/r/range_with_memory_limit.result X%%DATADIR%%/tests/r/read_many_rows_innodb.result X%%DATADIR%%/tests/r/read_only.result X%%DATADIR%%/tests/r/read_only_innodb.result X%%DATADIR%%/tests/r/rename.result X%%DATADIR%%/tests/r/renamedb.result X%%DATADIR%%/tests/r/repair.result X%%DATADIR%%/tests/r/replace.result X%%DATADIR%%/tests/r/reset_connection.result X%%DATADIR%%/tests/r/rewrite_general_log.result X%%DATADIR%%/tests/r/rewrite_slow_log.result X%%DATADIR%%/tests/r/rollback.result X%%DATADIR%%/tests/r/round.result X%%DATADIR%%/tests/r/row.result X%%DATADIR%%/tests/r/rowid_order_innodb.result X%%DATADIR%%/tests/r/rpl_colSize.result X%%DATADIR%%/tests/r/rpl_connect_attr.result X%%DATADIR%%/tests/r/rpl_extraColmaster_innodb.result X%%DATADIR%%/tests/r/rpl_extraColmaster_myisam.result X%%DATADIR%%/tests/r/rpl_mysqldump_slave.result X%%DATADIR%%/tests/r/schema.result X%%DATADIR%%/tests/r/secure_file_priv_win.result X%%DATADIR%%/tests/r/select_all.result X%%DATADIR%%/tests/r/select_all_bka.result X%%DATADIR%%/tests/r/select_all_bka_nixbnl.result X%%DATADIR%%/tests/r/select_for_update.result X%%DATADIR%%/tests/r/select_found.result X%%DATADIR%%/tests/r/select_icp_mrr.result X%%DATADIR%%/tests/r/select_icp_mrr_bka.result X%%DATADIR%%/tests/r/select_icp_mrr_bka_nixbnl.result X%%DATADIR%%/tests/r/select_none.result X%%DATADIR%%/tests/r/select_none_bka.result X%%DATADIR%%/tests/r/select_none_bka_nixbnl.result X%%DATADIR%%/tests/r/select_safe.result X%%DATADIR%%/tests/r/server_id.require X%%DATADIR%%/tests/r/server_id1.require X%%DATADIR%%/tests/r/server_offline_1.result X%%DATADIR%%/tests/r/server_offline_2.result X%%DATADIR%%/tests/r/server_offline_3.result X%%DATADIR%%/tests/r/server_offline_4.result X%%DATADIR%%/tests/r/server_offline_5.result X%%DATADIR%%/tests/r/server_offline_6.result X%%DATADIR%%/tests/r/server_startup_shutdown_time.result X%%DATADIR%%/tests/r/server_uuid.result X%%DATADIR%%/tests/r/server_uuid_embedded.result X%%DATADIR%%/tests/r/session_tracker.result X%%DATADIR%%/tests/r/session_tracker_trx_state.result X%%DATADIR%%/tests/r/shm.result X%%DATADIR%%/tests/r/show_check.result X%%DATADIR%%/tests/r/show_profile.result X%%DATADIR%%/tests/r/show_variables.result X%%DATADIR%%/tests/r/shutdown.result X%%DATADIR%%/tests/r/signal.result X%%DATADIR%%/tests/r/signal_code.result X%%DATADIR%%/tests/r/signal_demo1.result X%%DATADIR%%/tests/r/signal_demo2.result X%%DATADIR%%/tests/r/signal_demo3.result X%%DATADIR%%/tests/r/signal_sqlmode.result X%%DATADIR%%/tests/r/single_delete_update.result X%%DATADIR%%/tests/r/skip_grants.result X%%DATADIR%%/tests/r/skip_log_bin.result X%%DATADIR%%/tests/r/skip_name_resolve.result X%%DATADIR%%/tests/r/slave-running.result X%%DATADIR%%/tests/r/slave-stopped.result X%%DATADIR%%/tests/r/sort_buffer_size_functionality.result X%%DATADIR%%/tests/r/sp-big.result X%%DATADIR%%/tests/r/sp-bugs.result X%%DATADIR%%/tests/r/sp-code.result X%%DATADIR%%/tests/r/sp-destruct.result X%%DATADIR%%/tests/r/sp-dynamic.result X%%DATADIR%%/tests/r/sp-error.result X%%DATADIR%%/tests/r/sp-fib.result X%%DATADIR%%/tests/r/sp-lock.result X%%DATADIR%%/tests/r/sp-no-code.result X%%DATADIR%%/tests/r/sp-prelocking.result X%%DATADIR%%/tests/r/sp-security.result X%%DATADIR%%/tests/r/sp-threads.result X%%DATADIR%%/tests/r/sp-ucs2.result X%%DATADIR%%/tests/r/sp-vars.result X%%DATADIR%%/tests/r/sp.result X%%DATADIR%%/tests/r/sp_gis.result X%%DATADIR%%/tests/r/sp_notembedded.result X%%DATADIR%%/tests/r/sp_stress_case.result X%%DATADIR%%/tests/r/sp_sync.result X%%DATADIR%%/tests/r/sp_trans.result X%%DATADIR%%/tests/r/sp_trans_log.result X%%DATADIR%%/tests/r/sp_validation.result X%%DATADIR%%/tests/r/sql_mode.result X%%DATADIR%%/tests/r/sql_mode_default.result X%%DATADIR%%/tests/r/ssl-big.result X%%DATADIR%%/tests/r/ssl-crl-revoked-crl.result X%%DATADIR%%/tests/r/ssl-sha512.result X%%DATADIR%%/tests/r/ssl.result X%%DATADIR%%/tests/r/ssl_8k_key.result X%%DATADIR%%/tests/r/ssl_and_innodb.result X%%DATADIR%%/tests/r/ssl_auto_detect_openssl.result X%%DATADIR%%/tests/r/ssl_cipher.result X%%DATADIR%%/tests/r/ssl_compress.result X%%DATADIR%%/tests/r/ssl_connect.result X%%DATADIR%%/tests/r/ssl_crl.result X%%DATADIR%%/tests/r/ssl_crl_clients-valid.result X%%DATADIR%%/tests/r/ssl_crl_clients.result X%%DATADIR%%/tests/r/ssl_crl_clients_valid.result X%%DATADIR%%/tests/r/ssl_crl_crlpath.result X%%DATADIR%%/tests/r/status.result X%%DATADIR%%/tests/r/status2.result X%%DATADIR%%/tests/r/status_bug17954.result X%%DATADIR%%/tests/r/status_debug.result X%%DATADIR%%/tests/r/strict.result X%%DATADIR%%/tests/r/strict_autoinc_1myisam.result X%%DATADIR%%/tests/r/strict_autoinc_2innodb.result X%%DATADIR%%/tests/r/strict_autoinc_3heap.result X%%DATADIR%%/tests/r/subquery_all.result X%%DATADIR%%/tests/r/subquery_all_bka.result X%%DATADIR%%/tests/r/subquery_all_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_mat.result X%%DATADIR%%/tests/r/subquery_mat_all.result X%%DATADIR%%/tests/r/subquery_mat_none.result X%%DATADIR%%/tests/r/subquery_nomat_nosj.result X%%DATADIR%%/tests/r/subquery_nomat_nosj_bka.result X%%DATADIR%%/tests/r/subquery_nomat_nosj_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_none.result X%%DATADIR%%/tests/r/subquery_none_bka.result X%%DATADIR%%/tests/r/subquery_none_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_all.result X%%DATADIR%%/tests/r/subquery_sj_all_bka.result X%%DATADIR%%/tests/r/subquery_sj_all_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_all_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_dupsweed.result X%%DATADIR%%/tests/r/subquery_sj_dupsweed_bka.result X%%DATADIR%%/tests/r/subquery_sj_dupsweed_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_dupsweed_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_firstmatch.result X%%DATADIR%%/tests/r/subquery_sj_firstmatch_bka.result X%%DATADIR%%/tests/r/subquery_sj_firstmatch_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_firstmatch_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_innodb_all.result X%%DATADIR%%/tests/r/subquery_sj_innodb_all_bka.result X%%DATADIR%%/tests/r/subquery_sj_innodb_all_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_innodb_all_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_innodb_none.result X%%DATADIR%%/tests/r/subquery_sj_innodb_none_bka.result X%%DATADIR%%/tests/r/subquery_sj_innodb_none_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_innodb_none_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_loosescan.result X%%DATADIR%%/tests/r/subquery_sj_loosescan_bka.result X%%DATADIR%%/tests/r/subquery_sj_loosescan_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_loosescan_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_mat.result X%%DATADIR%%/tests/r/subquery_sj_mat_bka.result X%%DATADIR%%/tests/r/subquery_sj_mat_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_mat_bkaunique.result X%%DATADIR%%/tests/r/subquery_sj_mat_nosj.result X%%DATADIR%%/tests/r/subquery_sj_none.result X%%DATADIR%%/tests/r/subquery_sj_none_bka.result X%%DATADIR%%/tests/r/subquery_sj_none_bka_nixbnl.result X%%DATADIR%%/tests/r/subquery_sj_none_bkaunique.result X%%DATADIR%%/tests/r/subselect_debug.result X%%DATADIR%%/tests/r/subselect_gis.result X%%DATADIR%%/tests/r/subselect_innodb.result X%%DATADIR%%/tests/r/subselect_notembedded.result X%%DATADIR%%/tests/r/sum_distinct-big.result X%%DATADIR%%/tests/r/sum_distinct.result X%%DATADIR%%/tests/r/symlink.result X%%DATADIR%%/tests/r/synchronization.result X%%DATADIR%%/tests/r/sysdate_is_now.result X%%DATADIR%%/tests/r/system_mysql_db.result X%%DATADIR%%/tests/r/system_mysql_db_refs.result X%%DATADIR%%/tests/r/table_definition_cache_functionality.result X%%DATADIR%%/tests/r/table_open_cache_functionality.result X%%DATADIR%%/tests/r/tablelock.result X%%DATADIR%%/tests/r/tablespace.result X%%DATADIR%%/tests/r/temp_pool.result X%%DATADIR%%/tests/r/temp_table.result X%%DATADIR%%/tests/r/temporal_literal.result X%%DATADIR%%/tests/r/test_security_context.result X%%DATADIR%%/tests/r/testdb_only.require X%%DATADIR%%/tests/r/timezone.result X%%DATADIR%%/tests/r/timezone2.result X%%DATADIR%%/tests/r/timezone3.result X%%DATADIR%%/tests/r/timezone4.result X%%DATADIR%%/tests/r/timezone_debug.result X%%DATADIR%%/tests/r/timezone_grant.result X%%DATADIR%%/tests/r/trans_read_only.result X%%DATADIR%%/tests/r/trigger-compat.result X%%DATADIR%%/tests/r/trigger-trans.result X%%DATADIR%%/tests/r/trigger.result X%%DATADIR%%/tests/r/trigger_notembedded.result X%%DATADIR%%/tests/r/trigger_wl3253.result X%%DATADIR%%/tests/r/trigger_wl6030.result X%%DATADIR%%/tests/r/true.require X%%DATADIR%%/tests/r/truncate.result X%%DATADIR%%/tests/r/truncate_coverage.result X%%DATADIR%%/tests/r/type_binary.result X%%DATADIR%%/tests/r/type_bit.result X%%DATADIR%%/tests/r/type_bit_innodb.result X%%DATADIR%%/tests/r/type_blob.result X%%DATADIR%%/tests/r/type_date.result X%%DATADIR%%/tests/r/type_datetime.result X%%DATADIR%%/tests/r/type_decimal.result X%%DATADIR%%/tests/r/type_enum.result X%%DATADIR%%/tests/r/type_float.result X%%DATADIR%%/tests/r/type_nchar.result X%%DATADIR%%/tests/r/type_newdecimal-big.result X%%DATADIR%%/tests/r/type_newdecimal.result X%%DATADIR%%/tests/r/type_ranges.result X%%DATADIR%%/tests/r/type_set.result X%%DATADIR%%/tests/r/type_string.result X%%DATADIR%%/tests/r/type_temporal_fractional.result X%%DATADIR%%/tests/r/type_temporal_upgrade.result X%%DATADIR%%/tests/r/type_time.result X%%DATADIR%%/tests/r/type_timestamp.result X%%DATADIR%%/tests/r/type_timestamp_explicit.result X%%DATADIR%%/tests/r/type_uint.result X%%DATADIR%%/tests/r/type_varchar.result X%%DATADIR%%/tests/r/type_year.result X%%DATADIR%%/tests/r/udf.result X%%DATADIR%%/tests/r/udf_skip_grants.result X%%DATADIR%%/tests/r/union.result X%%DATADIR%%/tests/r/unsafe_binlog_innodb.result X%%DATADIR%%/tests/r/update.result X%%DATADIR%%/tests/r/upgrade.result X%%DATADIR%%/tests/r/user_if_exists.result X%%DATADIR%%/tests/r/user_limits.result X%%DATADIR%%/tests/r/user_lock.result X%%DATADIR%%/tests/r/user_var-binlog.result X%%DATADIR%%/tests/r/user_var.result X%%DATADIR%%/tests/r/validate_password_plugin.result X%%DATADIR%%/tests/r/varbinary.result X%%DATADIR%%/tests/r/variables-big.result X%%DATADIR%%/tests/r/variables-notembedded.result X%%DATADIR%%/tests/r/variables.result X%%DATADIR%%/tests/r/variables_community.result X%%DATADIR%%/tests/r/variables_debug.result X%%DATADIR%%/tests/r/version_token.result X%%DATADIR%%/tests/r/version_token_bug21280801.result X%%DATADIR%%/tests/r/version_token_errors.result X%%DATADIR%%/tests/r/view.result X%%DATADIR%%/tests/r/view_alias.result X%%DATADIR%%/tests/r/view_grant.result X%%DATADIR%%/tests/r/wait_timeout.result X%%DATADIR%%/tests/r/warnings.result X%%DATADIR%%/tests/r/warnings_engine_disabled.result X%%DATADIR%%/tests/r/windows.require X%%DATADIR%%/tests/r/windows.result X%%DATADIR%%/tests/r/wl3836.result X%%DATADIR%%/tests/r/wl5928.result X%%DATADIR%%/tests/r/wl6219-csv.result X%%DATADIR%%/tests/r/wl6219-innodb.result X%%DATADIR%%/tests/r/wl6219-memory.result X%%DATADIR%%/tests/r/wl6219-merge.result X%%DATADIR%%/tests/r/wl6219-myisam.result X%%DATADIR%%/tests/r/wl6219-upgrade.result X%%DATADIR%%/tests/r/wl6301_1_not_windows.result X%%DATADIR%%/tests/r/wl6301_2_not_windows.result X%%DATADIR%%/tests/r/wl6301_3.result X%%DATADIR%%/tests/r/wl6443_deprecation.result X%%DATADIR%%/tests/r/wl6661.result X%%DATADIR%%/tests/r/wl6711_heap_to_disk.result X%%DATADIR%%/tests/r/wl6978.result X%%DATADIR%%/tests/r/xa.result X%%DATADIR%%/tests/r/xa_debug.result X%%DATADIR%%/tests/r/xa_prepared_binlog_off.result X%%DATADIR%%/tests/r/xml.result X%%DATADIR%%/tests/std_data/.mylogin.cnf X%%DATADIR%%/tests/std_data/14897.frm X%%DATADIR%%/tests/std_data/55_temporal.MYD X%%DATADIR%%/tests/std_data/55_temporal.MYI X%%DATADIR%%/tests/std_data/55_temporal.frm X%%DATADIR%%/tests/std_data/Europe/Berlin X%%DATADIR%%/tests/std_data/Europe/London X%%DATADIR%%/tests/std_data/Europe/Paris X%%DATADIR%%/tests/std_data/Factory X%%DATADIR%%/tests/std_data/Index.xml X%%DATADIR%%/tests/std_data/Japan X%%DATADIR%%/tests/std_data/Moscow_leap X%%DATADIR%%/tests/std_data/bad_gis_data.dat X%%DATADIR%%/tests/std_data/binlog_no_fd_event.000001 X%%DATADIR%%/tests/std_data/binlog_savepoint.000001 X%%DATADIR%%/tests/std_data/binlog_transaction.000001 X%%DATADIR%%/tests/std_data/binlog_transaction_with_GTID.000001 X%%DATADIR%%/tests/std_data/binlog_transaction_with_anonymous_GTID.000001 X%%DATADIR%%/tests/std_data/binlog_truncated_event.000001 X%%DATADIR%%/tests/std_data/binlog_truncated_prev_gtid_event.000001 X%%DATADIR%%/tests/std_data/bug15328.cnf X%%DATADIR%%/tests/std_data/bug16171518_1.dat X%%DATADIR%%/tests/std_data/bug16171518_2.dat X%%DATADIR%%/tests/std_data/bug16266.000001 X%%DATADIR%%/tests/std_data/bug17532932.MYD X%%DATADIR%%/tests/std_data/bug17532932.MYI X%%DATADIR%%/tests/std_data/bug17532932.frm X%%DATADIR%%/tests/std_data/bug18311187_account.TRG X%%DATADIR%%/tests/std_data/bug18311187_ins_sum.TRN X%%DATADIR%%/tests/std_data/bug19371.MYD X%%DATADIR%%/tests/std_data/bug19371.MYI X%%DATADIR%%/tests/std_data/bug19371.frm X%%DATADIR%%/tests/std_data/bug20444737.sql X%%DATADIR%%/tests/std_data/bug20683959loaddata.txt X%%DATADIR%%/tests/std_data/bug21542698.dat X%%DATADIR%%/tests/std_data/bug30435_10k_items.txt X%%DATADIR%%/tests/std_data/bug30435_5k.txt X%%DATADIR%%/tests/std_data/bug33029-slave-relay-bin.000001 X%%DATADIR%%/tests/std_data/bug35469.dat X%%DATADIR%%/tests/std_data/bug36055.MYD X%%DATADIR%%/tests/std_data/bug36055.MYI X%%DATADIR%%/tests/std_data/bug36055.frm X%%DATADIR%%/tests/std_data/bug37631.MYD X%%DATADIR%%/tests/std_data/bug37631.MYI X%%DATADIR%%/tests/std_data/bug37631.frm X%%DATADIR%%/tests/std_data/bug40482-bin.000001 X%%DATADIR%%/tests/std_data/bug46565.ARZ X%%DATADIR%%/tests/std_data/bug46565.frm X%%DATADIR%%/tests/std_data/bug47012.ARM X%%DATADIR%%/tests/std_data/bug47012.ARZ X%%DATADIR%%/tests/std_data/bug47012.frm X%%DATADIR%%/tests/std_data/bug47205.frm X%%DATADIR%%/tests/std_data/bug48265.frm X%%DATADIR%%/tests/std_data/bug48449.frm X%%DATADIR%%/tests/std_data/bug48633.ARM X%%DATADIR%%/tests/std_data/bug48633.ARZ X%%DATADIR%%/tests/std_data/bug48633.frm X%%DATADIR%%/tests/std_data/bug49823.CSM X%%DATADIR%%/tests/std_data/bug49823.CSV X%%DATADIR%%/tests/std_data/bug49823.frm X%%DATADIR%%/tests/std_data/ca-sha512.pem X%%DATADIR%%/tests/std_data/cacert.pem X%%DATADIR%%/tests/std_data/cat_file.txt X%%DATADIR%%/tests/std_data/charset_utf8.txt X%%DATADIR%%/tests/std_data/client-cert.pem X%%DATADIR%%/tests/std_data/client-key.pem X%%DATADIR%%/tests/std_data/cluster_7022_table.MYD X%%DATADIR%%/tests/std_data/cluster_7022_table.MYI X%%DATADIR%%/tests/std_data/cluster_7022_table.frm X%%DATADIR%%/tests/std_data/corrupt-relay-bin.000624 X%%DATADIR%%/tests/std_data/corrupt_t1#P#p1.MYI X%%DATADIR%%/tests/std_data/corrupt_t1.MYI X%%DATADIR%%/tests/std_data/crl-ca-cert.pem X%%DATADIR%%/tests/std_data/crl-certificate-readme.txt X%%DATADIR%%/tests/std_data/crl-client-cert.pem X%%DATADIR%%/tests/std_data/crl-client-key.pem X%%DATADIR%%/tests/std_data/crl-client-revoked-cert.pem X%%DATADIR%%/tests/std_data/crl-client-revoked-key.pem X%%DATADIR%%/tests/std_data/crl-client-revoked.crl X%%DATADIR%%/tests/std_data/crl-server-cert.pem X%%DATADIR%%/tests/std_data/crl-server-key.pem X%%DATADIR%%/tests/std_data/crldir/ab8a3803.r0 X%%DATADIR%%/tests/std_data/des_key_file X%%DATADIR%%/tests/std_data/dtrace.d X%%DATADIR%%/tests/std_data/funcs_1/innodb_tb1.txt X%%DATADIR%%/tests/std_data/funcs_1/innodb_tb2.txt X%%DATADIR%%/tests/std_data/funcs_1/innodb_tb3.txt X%%DATADIR%%/tests/std_data/funcs_1/innodb_tb4.txt X%%DATADIR%%/tests/std_data/funcs_1/load_file.txt X%%DATADIR%%/tests/std_data/funcs_1/memory_tb1.txt X%%DATADIR%%/tests/std_data/funcs_1/memory_tb2.txt X%%DATADIR%%/tests/std_data/funcs_1/memory_tb3.txt X%%DATADIR%%/tests/std_data/funcs_1/memory_tb4.txt X%%DATADIR%%/tests/std_data/funcs_1/myisam_tb1.txt X%%DATADIR%%/tests/std_data/funcs_1/myisam_tb2.txt X%%DATADIR%%/tests/std_data/funcs_1/myisam_tb3.txt X%%DATADIR%%/tests/std_data/funcs_1/myisam_tb4.txt X%%DATADIR%%/tests/std_data/funcs_1/ndb_tb1.txt X%%DATADIR%%/tests/std_data/funcs_1/ndb_tb2.txt X%%DATADIR%%/tests/std_data/funcs_1/ndb_tb3.txt X%%DATADIR%%/tests/std_data/funcs_1/ndb_tb4.txt X%%DATADIR%%/tests/std_data/funcs_1/t3.txt X%%DATADIR%%/tests/std_data/funcs_1/t4.txt X%%DATADIR%%/tests/std_data/funcs_1/t7.txt X%%DATADIR%%/tests/std_data/funcs_1/t9.txt X%%DATADIR%%/tests/std_data/init-file-rpl-filter.dat X%%DATADIR%%/tests/std_data/init_file.dat X%%DATADIR%%/tests/std_data/intersect-bug50389.tsv X%%DATADIR%%/tests/std_data/latin1.xml X%%DATADIR%%/tests/std_data/loaddata1.dat X%%DATADIR%%/tests/std_data/loaddata2.dat X%%DATADIR%%/tests/std_data/loaddata3.dat X%%DATADIR%%/tests/std_data/loaddata4.dat X%%DATADIR%%/tests/std_data/loaddata5.dat X%%DATADIR%%/tests/std_data/loaddata6.dat X%%DATADIR%%/tests/std_data/loaddata_dq.dat X%%DATADIR%%/tests/std_data/loaddata_pair.dat X%%DATADIR%%/tests/std_data/loaddata_utf8.dat X%%DATADIR%%/tests/std_data/loadxml.dat X%%DATADIR%%/tests/std_data/loadxml2.dat X%%DATADIR%%/tests/std_data/master-bin.000001 X%%DATADIR%%/tests/std_data/mylogin-bad-cipher.cnf X%%DATADIR%%/tests/std_data/numbers.txt X%%DATADIR%%/tests/std_data/old-format-relay-log-win.info X%%DATADIR%%/tests/std_data/old-format-relay-log.info X%%DATADIR%%/tests/std_data/old_table-323.frm X%%DATADIR%%/tests/std_data/onerow.xml X%%DATADIR%%/tests/std_data/parts/part_supported_sql_funcs_int_ch1.inc X%%DATADIR%%/tests/std_data/parts/part_supported_sql_funcs_int_date.inc X%%DATADIR%%/tests/std_data/parts/part_supported_sql_funcs_int_float.inc X%%DATADIR%%/tests/std_data/parts/part_supported_sql_funcs_int_int.inc X%%DATADIR%%/tests/std_data/parts/part_supported_sql_funcs_int_time.inc X%%DATADIR%%/tests/std_data/parts/t1.frm X%%DATADIR%%/tests/std_data/parts/t1TIMESTAMP.frm X%%DATADIR%%/tests/std_data/parts/t1_blackhole.frm X%%DATADIR%%/tests/std_data/parts/t1_blackhole.par X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p1_first_1024.MYD X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p2.MYD X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p2.MYI X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p3.MYI X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p4.MYI X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p6.MYD X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p6_2.MYD X%%DATADIR%%/tests/std_data/parts/t1_will_crash#P#p6_3.MYD X%%DATADIR%%/tests/std_data/parts/t575.frm X%%DATADIR%%/tests/std_data/parts/t575.par X%%DATADIR%%/tests/std_data/rpl_bug28618.dat X%%DATADIR%%/tests/std_data/rpl_loaddata.dat X%%DATADIR%%/tests/std_data/rpl_loaddata2.dat X%%DATADIR%%/tests/std_data/rpl_mixed.dat X%%DATADIR%%/tests/std_data/rpl_timezone.dat X%%DATADIR%%/tests/std_data/rpl_timezone2.dat X%%DATADIR%%/tests/std_data/rsa_private_key.pem X%%DATADIR%%/tests/std_data/rsa_public_key.pem X%%DATADIR%%/tests/std_data/server-cert-sha512.pem X%%DATADIR%%/tests/std_data/server-cert.pem X%%DATADIR%%/tests/std_data/server-key-sha512.pem X%%DATADIR%%/tests/std_data/server-key.pem X%%DATADIR%%/tests/std_data/server8k-cert.pem X%%DATADIR%%/tests/std_data/server8k-key.pem X%%DATADIR%%/tests/std_data/shutdown.sql X%%DATADIR%%/tests/std_data/slave-relay-bin_linux.index X%%DATADIR%%/tests/std_data/slave-relay-bin_win.index X%%DATADIR%%/tests/std_data/system_tap.stp X%%DATADIR%%/tests/std_data/trunc_binlog.000001 X%%DATADIR%%/tests/std_data/untrusted-cacert.pem X%%DATADIR%%/tests/std_data/vchar.frm X%%DATADIR%%/tests/std_data/warnings_loaddata.dat X%%DATADIR%%/tests/std_data/wl5766_data.txt X%%DATADIR%%/tests/std_data/wl6030.dat X%%DATADIR%%/tests/std_data/wl6030_2.dat X%%DATADIR%%/tests/std_data/wl6219_41.MYD X%%DATADIR%%/tests/std_data/wl6219_41.MYI X%%DATADIR%%/tests/std_data/wl6219_41.frm X%%DATADIR%%/tests/std_data/wl6219_55.MYD X%%DATADIR%%/tests/std_data/wl6219_55.MYI X%%DATADIR%%/tests/std_data/wl6219_55.frm X%%DATADIR%%/tests/std_data/wl6219_55_innodb.frm X%%DATADIR%%/tests/std_data/wl7957_1.MYD X%%DATADIR%%/tests/std_data/wl7957_1.MYI X%%DATADIR%%/tests/std_data/wl7957_1.frm X%%DATADIR%%/tests/std_data/words.dat X%%DATADIR%%/tests/std_data/words2.dat X%%DATADIR%%/tests/suite/auth_sec/include/have_openssl.inc X%%DATADIR%%/tests/suite/auth_sec/include/have_sha256_rsa_auth.inc X%%DATADIR%%/tests/suite/auth_sec/include/have_ssl.inc X%%DATADIR%%/tests/suite/auth_sec/include/have_ssl_communication.inc X%%DATADIR%%/tests/suite/auth_sec/include/mysql_upgrade_preparation.inc X%%DATADIR%%/tests/suite/auth_sec/include/not_embedded.inc X%%DATADIR%%/tests/suite/auth_sec/include/not_openssl.inc X%%DATADIR%%/tests/suite/auth_sec/include/not_sha256_rsa_auth.inc X%%DATADIR%%/tests/suite/auth_sec/include/not_ssl.inc X%%DATADIR%%/tests/suite/auth_sec/r/access_credential_control.result X%%DATADIR%%/tests/suite/auth_sec/r/have_mysql_upgrade.result X%%DATADIR%%/tests/suite/auth_sec/r/have_ssl.require X%%DATADIR%%/tests/suite/auth_sec/r/key_value_auth.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_native_plugin.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_no_login.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_protocol_types.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_protocol_types_windows.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_sha256_plugin.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_ssl_connection.result X%%DATADIR%%/tests/suite/auth_sec/r/mysql_ssl_rsa_setup.result X%%DATADIR%%/tests/suite/auth_sec/r/named_pipe_ssl.result X%%DATADIR%%/tests/suite/auth_sec/r/not_embedded.require X%%DATADIR%%/tests/suite/auth_sec/r/not_openssl.require X%%DATADIR%%/tests/suite/auth_sec/r/not_ssl.require X%%DATADIR%%/tests/suite/auth_sec/r/openssl.require X%%DATADIR%%/tests/suite/auth_sec/r/openssl_cert_generation.result X%%DATADIR%%/tests/suite/auth_sec/r/openssl_cert_generation_debug.result X%%DATADIR%%/tests/suite/auth_sec/r/openssl_cert_generation_subject.result X%%DATADIR%%/tests/suite/auth_sec/r/openssl_cert_validity.result X%%DATADIR%%/tests/suite/auth_sec/r/openssl_skip_cert_generation.result X%%DATADIR%%/tests/suite/auth_sec/r/password_expired.result X%%DATADIR%%/tests/suite/auth_sec/r/password_expiry.result X%%DATADIR%%/tests/suite/auth_sec/r/require_secure_transport.result X%%DATADIR%%/tests/suite/auth_sec/r/require_secure_transport_windows.result X%%DATADIR%%/tests/suite/auth_sec/r/secure_file_priv_error.result X%%DATADIR%%/tests/suite/auth_sec/r/secure_file_priv_null.result X%%DATADIR%%/tests/suite/auth_sec/r/secure_file_priv_warnings.result X%%DATADIR%%/tests/suite/auth_sec/r/secure_file_priv_warnings_not_win.result X%%DATADIR%%/tests/suite/auth_sec/r/secure_file_priv_warnings_win.result X%%DATADIR%%/tests/suite/auth_sec/r/server_withssl_client_withoutssl.result X%%DATADIR%%/tests/suite/auth_sec/r/server_withssl_client_withssl.result X%%DATADIR%%/tests/suite/auth_sec/r/set_password_deprecated.result X%%DATADIR%%/tests/suite/auth_sec/r/ssl_auto_detect.result X%%DATADIR%%/tests/suite/auth_sec/r/ssl_auto_detect_openssl.result X%%DATADIR%%/tests/suite/auth_sec/t/access_credential_control-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/access_credential_control.test X%%DATADIR%%/tests/suite/auth_sec/t/key_value_auth-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/key_value_auth.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_native_plugin.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_no_login-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/mysql_no_login.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_protocol_types.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_protocol_types_windows-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/mysql_protocol_types_windows.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_sha256_plugin-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/mysql_sha256_plugin.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_ssl_connection-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/mysql_ssl_connection.test X%%DATADIR%%/tests/suite/auth_sec/t/mysql_ssl_rsa_setup.test X%%DATADIR%%/tests/suite/auth_sec/t/named_pipe_ssl-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/named_pipe_ssl.test X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_generation-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_generation.test X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_generation_debug.test X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_generation_subject-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_generation_subject.test X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_validity-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/openssl_cert_validity.test X%%DATADIR%%/tests/suite/auth_sec/t/openssl_skip_cert_generation-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/openssl_skip_cert_generation.test X%%DATADIR%%/tests/suite/auth_sec/t/password_expired-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/password_expired.test X%%DATADIR%%/tests/suite/auth_sec/t/password_expiry.test X%%DATADIR%%/tests/suite/auth_sec/t/require_secure_transport.test X%%DATADIR%%/tests/suite/auth_sec/t/require_secure_transport_windows-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/require_secure_transport_windows.test X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_error.test X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_null-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_null.test X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_warnings-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_warnings.test X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_warnings_not_win.test X%%DATADIR%%/tests/suite/auth_sec/t/secure_file_priv_warnings_win.test X%%DATADIR%%/tests/suite/auth_sec/t/server_withssl_client_withoutssl-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/server_withssl_client_withoutssl.test X%%DATADIR%%/tests/suite/auth_sec/t/server_withssl_client_withssl-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/server_withssl_client_withssl.test X%%DATADIR%%/tests/suite/auth_sec/t/set_password_deprecated.test X%%DATADIR%%/tests/suite/auth_sec/t/ssl_auto_detect-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/ssl_auto_detect.test X%%DATADIR%%/tests/suite/auth_sec/t/ssl_auto_detect_openssl-master.opt X%%DATADIR%%/tests/suite/auth_sec/t/ssl_auto_detect_openssl.test X%%DATADIR%%/tests/suite/binlog/combinations X%%DATADIR%%/tests/suite/binlog/include/binlog_gtid_mix_response_packet.inc X%%DATADIR%%/tests/suite/binlog/r/binlog_anonymous_ownership.result X%%DATADIR%%/tests/suite/binlog/r/binlog_base64_flag.result X%%DATADIR%%/tests/suite/binlog/r/binlog_bug23533.result X%%DATADIR%%/tests/suite/binlog/r/binlog_bug36391.result X%%DATADIR%%/tests/suite/binlog/r/binlog_check_flush_log_assertion.result X%%DATADIR%%/tests/suite/binlog/r/binlog_checksum.result X%%DATADIR%%/tests/suite/binlog/r/binlog_crash_safe_master_checksum.result X%%DATADIR%%/tests/suite/binlog/r/binlog_database.result X%%DATADIR%%/tests/suite/binlog/r/binlog_delete_and_flush_index.result X%%DATADIR%%/tests/suite/binlog/r/binlog_drop_if_exists.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_consistent.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_violation.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_multiple_warnings.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_option.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_consistent.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_violation.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_consistent.result X%%DATADIR%%/tests/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_violation.result X%%DATADIR%%/tests/suite/binlog/r/binlog_error_action.result X%%DATADIR%%/tests/suite/binlog/r/binlog_format_switch_in_tmp_table.result X%%DATADIR%%/tests/suite/binlog/r/binlog_grant.result X%%DATADIR%%/tests/suite/binlog/r/binlog_grant_alter_user.result X%%DATADIR%%/tests/suite/binlog/r/binlog_group_commit_flush_crash.result X%%DATADIR%%/tests/suite/binlog/r/binlog_group_commit_gtid_order.result X%%DATADIR%%/tests/suite/binlog/r/binlog_group_commit_sync_delay.result X%%DATADIR%%/tests/suite/binlog/r/binlog_group_commit_sync_no_delay_count.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_cache.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_errors.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_implicit_commit.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_innodb.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mix_ok_packet_all_gtids.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mix_response_packet.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mode_set_gtid_next.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mysqlbinlog_row.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mysqlbinlog_row_innodb.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mysqlbinlog_row_myisam.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_mysqlbinlog_start_stop.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_next_single_stmt_trx_rollback.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_next_temporary_table.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_next_xa.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_row_ctype_ucs.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_simple_recovery.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_state_update_deadlock.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_stm_ctype_ucs.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtid_utils.result X%%DATADIR%%/tests/suite/binlog/r/binlog_gtids_table_gcov.result X%%DATADIR%%/tests/suite/binlog/r/binlog_hexdump.result X%%DATADIR%%/tests/suite/binlog/r/binlog_implicit_commit.result X%%DATADIR%%/tests/suite/binlog/r/binlog_incident.result X%%DATADIR%%/tests/suite/binlog/r/binlog_incident_ignore.result X%%DATADIR%%/tests/suite/binlog/r/binlog_index.result X%%DATADIR%%/tests/suite/binlog/r/binlog_innodb.result X%%DATADIR%%/tests/suite/binlog/r/binlog_innodb_row.result X%%DATADIR%%/tests/suite/binlog/r/binlog_killed.result X%%DATADIR%%/tests/suite/binlog/r/binlog_killed_simulate.result X%%DATADIR%%/tests/suite/binlog/r/binlog_max_extension.result X%%DATADIR%%/tests/suite/binlog/r/binlog_max_flush_queue_time_warn.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mixed_cache_stat.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mixed_load_data.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mts_logical_clock.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mts_logical_clock_gtid.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog-cp932.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_base64.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_concat.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_filter.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_rewrite_db.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_row.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_row_innodb.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_row_myisam.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_row_trans.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_start_stop.result X%%DATADIR%%/tests/suite/binlog/r/binlog_mysqlbinlog_start_stop_slave_server_id.result X%%DATADIR%%/tests/suite/binlog/r/binlog_nogtid_mix_response_packet.result X%%DATADIR%%/tests/suite/binlog/r/binlog_old_versions.result X%%DATADIR%%/tests/suite/binlog/r/binlog_query_filter_rules.result X%%DATADIR%%/tests/suite/binlog/r/binlog_reset_master.result X%%DATADIR%%/tests/suite/binlog/r/binlog_rewrite.result X%%DATADIR%%/tests/suite/binlog/r/binlog_rewrite_db_noleak.result X%%DATADIR%%/tests/suite/binlog/r/binlog_rewrite_order.result X%%DATADIR%%/tests/suite/binlog/r/binlog_rewrite_suppress_use.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_binlog.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_cache_stat.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_create_select_crash.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_ctype_cp932.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_ctype_ucs.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_delete_all_rows.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_drop_tbl.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_drop_tmp_tbl.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_insert_select.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_kill_create_select.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_mix_innodb_myisam.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_mysqlbinlog_db_filter.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_mysqlbinlog_verbose.result X%%DATADIR%%/tests/suite/binlog/r/binlog_row_query_log_events.result X%%DATADIR%%/tests/suite/binlog/r/binlog_server_id.result X%%DATADIR%%/tests/suite/binlog/r/binlog_server_start_options.result X%%DATADIR%%/tests/suite/binlog/r/binlog_set_gtid_mode_ongoing_transaction_errors.result X%%DATADIR%%/tests/suite/binlog/r/binlog_sf.result X%%DATADIR%%/tests/suite/binlog/r/binlog_simulate_crash_and_error_on_compress_gtid_table.result X%%DATADIR%%/tests/suite/binlog/r/binlog_spurious_ddl_errors.result X%%DATADIR%%/tests/suite/binlog/r/binlog_sql_mode.result X%%DATADIR%%/tests/suite/binlog/r/binlog_start_comment.result X%%DATADIR%%/tests/suite/binlog/r/binlog_start_slave_heartbeat.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_binlog.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_blackhole.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_cache_stat.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_ctype_cp932.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_ctype_ucs.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_delete_all_rows.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_do_db.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_drop_tbl.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_drop_tmp_tbl.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_insert_select.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_mix_innodb_myisam.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_ps.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_row.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_unsafe_warning.result X%%DATADIR%%/tests/suite/binlog/r/binlog_stm_user_variables.result X%%DATADIR%%/tests/suite/binlog/r/binlog_switch_inside_trans.result X%%DATADIR%%/tests/suite/binlog/r/binlog_tmp_table.result X%%DATADIR%%/tests/suite/binlog/r/binlog_truncate_kill.result X%%DATADIR%%/tests/suite/binlog/r/binlog_truncate_myisam.result X%%DATADIR%%/tests/suite/binlog/r/binlog_trx_empty_assertions.result X%%DATADIR%%/tests/suite/binlog/r/binlog_unsafe.result X%%DATADIR%%/tests/suite/binlog/r/binlog_user_if_exists.result X%%DATADIR%%/tests/suite/binlog/r/binlog_variables_log_bin.result X%%DATADIR%%/tests/suite/binlog/r/binlog_variables_log_bin_index.result X%%DATADIR%%/tests/suite/binlog/r/binlog_variables_relay_log.result X%%DATADIR%%/tests/suite/binlog/r/binlog_variables_relay_log_index.result X%%DATADIR%%/tests/suite/binlog/r/binlog_wait_for_executed_gtid_set_interrupted.result X%%DATADIR%%/tests/suite/binlog/r/binlog_wait_for_executed_gtid_set_invalid_input.result X%%DATADIR%%/tests/suite/binlog/r/binlog_wait_for_executed_gtid_set_no_gtid.result X%%DATADIR%%/tests/suite/binlog/r/binlog_wait_for_executed_gtid_set_unsafe_statement.result X%%DATADIR%%/tests/suite/binlog/r/binlog_write_error.result X%%DATADIR%%/tests/suite/binlog/r/binlog_xa_handling.result X%%DATADIR%%/tests/suite/binlog/r/binlog_xa_prepared_disconnect.result X%%DATADIR%%/tests/suite/binlog/r/binlog_xa_trx_gtid_response_packet.result X%%DATADIR%%/tests/suite/binlog/r/log_builtin_as_identified_by_password.result X%%DATADIR%%/tests/suite/binlog/r/show_binlog_events_no_lock.result X%%DATADIR%%/tests/suite/binlog/std_data/binlog_old_version_4_1.000001 X%%DATADIR%%/tests/suite/binlog/std_data/bug11747887-bin.000003 X%%DATADIR%%/tests/suite/binlog/std_data/bug32407.001 X%%DATADIR%%/tests/suite/binlog/std_data/update-full-row.binlog X%%DATADIR%%/tests/suite/binlog/std_data/update-partial-row.binlog X%%DATADIR%%/tests/suite/binlog/std_data/ver_5_1-wl2325_r.001 X%%DATADIR%%/tests/suite/binlog/std_data/ver_5_1-wl2325_s.001 X%%DATADIR%%/tests/suite/binlog/std_data/ver_5_1_23.001 X%%DATADIR%%/tests/suite/binlog/std_data/ver_trunk_row_v2.001 X%%DATADIR%%/tests/suite/binlog/std_data/write-full-row.binlog X%%DATADIR%%/tests/suite/binlog/std_data/write-partial-row.binlog X%%DATADIR%%/tests/suite/binlog/t/binlog_anonymous_ownership.test X%%DATADIR%%/tests/suite/binlog/t/binlog_base64_flag.test X%%DATADIR%%/tests/suite/binlog/t/binlog_bug23533.test X%%DATADIR%%/tests/suite/binlog/t/binlog_bug36391-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_bug36391.test X%%DATADIR%%/tests/suite/binlog/t/binlog_check_flush_log_assertion.test X%%DATADIR%%/tests/suite/binlog/t/binlog_checksum.test X%%DATADIR%%/tests/suite/binlog/t/binlog_crash_safe_master_checksum-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_crash_safe_master_checksum.test X%%DATADIR%%/tests/suite/binlog/t/binlog_database.test X%%DATADIR%%/tests/suite/binlog/t/binlog_delete_and_flush_index.test X%%DATADIR%%/tests/suite/binlog/t/binlog_drop_if_exists.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_consistent.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_violation.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_multiple_warnings.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_option.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_consistent.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_violation.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_consistent.test X%%DATADIR%%/tests/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_violation.test X%%DATADIR%%/tests/suite/binlog/t/binlog_error_action.test X%%DATADIR%%/tests/suite/binlog/t/binlog_format_switch_in_tmp_table.test X%%DATADIR%%/tests/suite/binlog/t/binlog_grant.test X%%DATADIR%%/tests/suite/binlog/t/binlog_grant_alter_user.test X%%DATADIR%%/tests/suite/binlog/t/binlog_group_commit_flush_crash-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_group_commit_flush_crash.test X%%DATADIR%%/tests/suite/binlog/t/binlog_group_commit_gtid_order.test X%%DATADIR%%/tests/suite/binlog/t/binlog_group_commit_sync_delay.test X%%DATADIR%%/tests/suite/binlog/t/binlog_group_commit_sync_no_delay_count.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_cache-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_cache.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_errors-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_errors.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_implicit_commit.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_innodb.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mix_ok_packet_all_gtids-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mix_ok_packet_all_gtids.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mix_response_packet-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mix_response_packet.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mode_set_gtid_next.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mysqlbinlog_row.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mysqlbinlog_row_innodb.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mysqlbinlog_row_myisam.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_mysqlbinlog_start_stop.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_next_single_stmt_trx_rollback.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_next_temporary_table.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_next_xa.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_row_ctype_ucs.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_simple_recovery.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_state_update_deadlock.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_stm_ctype_ucs.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtid_utils.test X%%DATADIR%%/tests/suite/binlog/t/binlog_gtids_table_gcov.test X%%DATADIR%%/tests/suite/binlog/t/binlog_hexdump.test X%%DATADIR%%/tests/suite/binlog/t/binlog_implicit_commit.test X%%DATADIR%%/tests/suite/binlog/t/binlog_incident-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_incident.test X%%DATADIR%%/tests/suite/binlog/t/binlog_incident_ignore-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_incident_ignore.test X%%DATADIR%%/tests/suite/binlog/t/binlog_index-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_index.test X%%DATADIR%%/tests/suite/binlog/t/binlog_innodb-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_innodb.test X%%DATADIR%%/tests/suite/binlog/t/binlog_innodb_row.test X%%DATADIR%%/tests/suite/binlog/t/binlog_killed.test X%%DATADIR%%/tests/suite/binlog/t/binlog_killed_simulate-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_killed_simulate.test X%%DATADIR%%/tests/suite/binlog/t/binlog_max_extension.test X%%DATADIR%%/tests/suite/binlog/t/binlog_max_flush_queue_time_warn-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_max_flush_queue_time_warn.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mixed_cache_stat.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mixed_load_data.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mts_logical_clock.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mts_logical_clock_gtid.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog-cp932-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog-cp932.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_base64.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_concat.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_filter.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_rewrite_db.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_row.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_row_innodb.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_row_myisam.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_row_trans.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_start_stop.test X%%DATADIR%%/tests/suite/binlog/t/binlog_mysqlbinlog_start_stop_slave_server_id.test X%%DATADIR%%/tests/suite/binlog/t/binlog_nogtid_mix_response_packet.test X%%DATADIR%%/tests/suite/binlog/t/binlog_old_versions.test X%%DATADIR%%/tests/suite/binlog/t/binlog_query_filter_rules-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_query_filter_rules.test X%%DATADIR%%/tests/suite/binlog/t/binlog_reset_master.test X%%DATADIR%%/tests/suite/binlog/t/binlog_rewrite.test X%%DATADIR%%/tests/suite/binlog/t/binlog_rewrite_db_noleak.test X%%DATADIR%%/tests/suite/binlog/t/binlog_rewrite_order.test X%%DATADIR%%/tests/suite/binlog/t/binlog_rewrite_suppress_use.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_binlog-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_row_binlog.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_cache_stat.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_create_select_crash.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_ctype_cp932.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_ctype_ucs.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_delete_all_rows.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_drop_tbl.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_drop_tmp_tbl.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_innodb_stat-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_row_insert_select.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_kill_create_select.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_row_mix_innodb_myisam.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_mysqlbinlog_db_filter.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_mysqlbinlog_verbose.test X%%DATADIR%%/tests/suite/binlog/t/binlog_row_query_log_events.test X%%DATADIR%%/tests/suite/binlog/t/binlog_server_id.test X%%DATADIR%%/tests/suite/binlog/t/binlog_server_start_options-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_server_start_options.test X%%DATADIR%%/tests/suite/binlog/t/binlog_set_gtid_mode_ongoing_transaction_errors.test X%%DATADIR%%/tests/suite/binlog/t/binlog_sf.test X%%DATADIR%%/tests/suite/binlog/t/binlog_simulate_crash_and_error_on_compress_gtid_table.test X%%DATADIR%%/tests/suite/binlog/t/binlog_spurious_ddl_errors-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_spurious_ddl_errors.test X%%DATADIR%%/tests/suite/binlog/t/binlog_sql_mode.test X%%DATADIR%%/tests/suite/binlog/t/binlog_start_comment.test X%%DATADIR%%/tests/suite/binlog/t/binlog_start_slave_heartbeat-slave.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_start_slave_heartbeat.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_binlog-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_binlog.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_blackhole.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_cache_stat.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_ctype_cp932.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_ctype_ucs.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_delete_all_rows.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_do_db-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_do_db.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_drop_tbl.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_drop_tmp_tbl.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_innodb_stat-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_insert_select.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_mix_innodb_myisam-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_mix_innodb_myisam.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_ps.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_row.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_unsafe_warning-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_unsafe_warning.test X%%DATADIR%%/tests/suite/binlog/t/binlog_stm_user_variables.test X%%DATADIR%%/tests/suite/binlog/t/binlog_switch_inside_trans.test X%%DATADIR%%/tests/suite/binlog/t/binlog_tmp_table.test X%%DATADIR%%/tests/suite/binlog/t/binlog_truncate_kill.test X%%DATADIR%%/tests/suite/binlog/t/binlog_truncate_myisam.test X%%DATADIR%%/tests/suite/binlog/t/binlog_unsafe-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_unsafe.test X%%DATADIR%%/tests/suite/binlog/t/binlog_user_if_exists.test X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_log_bin-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_log_bin.test X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_log_bin_index-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_log_bin_index.test X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_relay_log-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_relay_log.test X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_relay_log_index-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_variables_relay_log_index.test X%%DATADIR%%/tests/suite/binlog/t/binlog_wait_for_executed_gtid_set_interrupted.test X%%DATADIR%%/tests/suite/binlog/t/binlog_wait_for_executed_gtid_set_invalid_input.test X%%DATADIR%%/tests/suite/binlog/t/binlog_wait_for_executed_gtid_set_no_gtid.test X%%DATADIR%%/tests/suite/binlog/t/binlog_wait_for_executed_gtid_set_unsafe_statement.test X%%DATADIR%%/tests/suite/binlog/t/binlog_write_error.test X%%DATADIR%%/tests/suite/binlog/t/binlog_xa_handling.test X%%DATADIR%%/tests/suite/binlog/t/binlog_xa_prepared_disconnect.test X%%DATADIR%%/tests/suite/binlog/t/binlog_xa_trx_gtid_response_packet-master.opt X%%DATADIR%%/tests/suite/binlog/t/binlog_xa_trx_gtid_response_packet.test X%%DATADIR%%/tests/suite/binlog/t/disabled.def X%%DATADIR%%/tests/suite/binlog/t/log_builtin_as_identified_by_password-master.opt X%%DATADIR%%/tests/suite/binlog/t/log_builtin_as_identified_by_password.test X%%DATADIR%%/tests/suite/binlog/t/show_binlog_events_no_lock.test X%%DATADIR%%/tests/suite/engines/README X%%DATADIR%%/tests/suite/engines/funcs/r/ai_init_alter_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_init_create_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_init_insert.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_init_insert_id.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_overflow_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_reset_by_truncate.result X%%DATADIR%%/tests/suite/engines/funcs/r/ai_sql_auto_is_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/an_calendar.result X%%DATADIR%%/tests/suite/engines/funcs/r/an_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/an_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/comment_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/comment_column2.result X%%DATADIR%%/tests/suite/engines/funcs/r/comment_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/comment_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manycolumns_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manycolumns_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manyindexes_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manyindexes_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manytables_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/crash_manytables_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/date_function.result X%%DATADIR%%/tests/suite/engines/funcs/r/datetime_function.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_alter_character_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_alter_character_set_collate.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_alter_collate_ascii.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_alter_collate_utf8.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_character_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_character_set_collate.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_drop.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_error_reserved.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_create_if_not_exists.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_drop_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/db_use_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_autoinc.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_calendar_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_limit.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_multi_db_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_multi_db_table_using.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_multi_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_multi_table_using.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_number_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_quick.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_string_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_truncate.result X%%DATADIR%%/tests/suite/engines/funcs/r/de_truncate_autoinc.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_avg_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_count_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_max_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_max_subquery.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_min_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/fu_aggregate_sum_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/general_no_data.result X%%DATADIR%%/tests/suite/engines/funcs/r/general_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/general_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_2_unique_constraints_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_calendar_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_enum_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_enum_null_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_enum_null_large_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_insert_select.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_insert_select_autoinc.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_insert_select_unique_violation.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_lob_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_calendar_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_number_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_multicolumn_string_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_2_unique_constraints_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_decimal_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_number_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_set_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_set_null_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_set_null_large.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_2_unique_constraints_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_boundary_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_pk_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_pk_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_pk_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_set_enum_fail.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_unique_constraint_duplicate_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_unique_constraint_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/in_string_unique_constraint_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_drop.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_drop_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_index_decimals.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_index_lob.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_index_non_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_index_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_index_string_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_unique_decimals.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_unique_lob.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_unique_non_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_unique_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_unique_string_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/ix_using_order.result X%%DATADIR%%/tests/suite/engines/funcs/r/jp_comment_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/jp_comment_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/jp_comment_older_compatibility1.result X%%DATADIR%%/tests/suite/engines/funcs/r/jp_comment_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_all_number_string_calendar_types.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_bit.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_enum_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_less_columns.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_more_columns_truncated.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_quote.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_simple.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_starting.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error1.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error1_local.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error2_local.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error3.result X%%DATADIR%%/tests/suite/engines/funcs/r/ld_unique_error3_local.result X%%DATADIR%%/tests/suite/engines/funcs/r/ps_number_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/ps_number_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ps_string_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ps_string_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/re_number_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/re_number_range_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/re_number_select.result X%%DATADIR%%/tests/suite/engines/funcs/r/re_string_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/re_string_range_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_000015.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_REDIRECT.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_empty_master_crash.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_insert_select.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_loaddata2.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_row_stop_middle.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_row_until.result X%%DATADIR%%/tests/suite/engines/funcs/r/rpl_stm_mystery22.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_cross.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_default.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_inner.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_left.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_left_outer.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_natural_left.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_natural_left_outer.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_natural_right.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_natural_right_outer.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_right.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_right_outer.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_join_straight.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_rowid.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_distinct.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_from.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_groupby.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_having.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_limit.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_orderby.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_union.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_where.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_where_and.result X%%DATADIR%%/tests/suite/engines/funcs/r/se_string_where_or.result X%%DATADIR%%/tests/suite/engines/funcs/r/sf_alter.result X%%DATADIR%%/tests/suite/engines/funcs/r/sf_cursor.result X%%DATADIR%%/tests/suite/engines/funcs/r/sf_simple1.result X%%DATADIR%%/tests/suite/engines/funcs/r/sp_alter.result X%%DATADIR%%/tests/suite/engines/funcs/r/sp_cursor.result X%%DATADIR%%/tests/suite/engines/funcs/r/sp_simple1.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_all.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_any.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_corr.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_exists.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_from.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_in.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_row.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_scalar.result X%%DATADIR%%/tests/suite/engines/funcs/r/sq_some.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_2part_column_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_2part_diff_string_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_2part_diff_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_2part_string_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_3part_column_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_3part_string_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column_first.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column_first2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column_middle.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_column_middle2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string_first.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string_first2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string_middle.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string_middle2.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_string_unique_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_add_unique_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_from_unsigned.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_from_zerofill.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_unsigned.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_column_to_zerofill.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_pk_autoincrement.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_pk_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_pk_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_drop_string_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_orderby.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_rename.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_set_drop_default.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_string_drop_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_string_to_index.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_string_to_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_string_to_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/ta_string_to_pk.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_autoincrement.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_comment.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_comment_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_default_decimal.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_default_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_default_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_enum.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_enum_long.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_key_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_length_decimals.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_length_zero.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_not_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_null.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_primary_key_number.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_primary_key_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_serial.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_set.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_set_long.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_unique_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_unique_key_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_unsigned.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_column_zerofill.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_drop_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_multicolumn_different.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_multicolumn_same.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_multicolumn_same_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_analyze.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_change_from_range_to_hash_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_check.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_hash.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_hash_date_function.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_linear_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_list_directory.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_list_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_optimize.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_rebuild.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_remove.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_reorg_divide.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_reorg_hash_key.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_reorg_merge.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_repair.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_sub1.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_sub2.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_value.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_value_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_partition_value_specific.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_rename.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_rename_across_database.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_rename_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_comment.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_create_like.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_create_like_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_create_select.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_create_select_string.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_structure_string_comment.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_temporary_column.result X%%DATADIR%%/tests/suite/engines/funcs/r/tc_temporary_column_length.result X%%DATADIR%%/tests/suite/engines/funcs/r/time_function.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_all_type_triggers.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_delete.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_delete_new_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_insert.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_insert_after_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_insert_old_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_update.result X%%DATADIR%%/tests/suite/engines/funcs/r/tr_update_after_error.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_calendar_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_ignore.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_limit.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_multi_db_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_multi_table.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_nullcheck.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_number_range.result X%%DATADIR%%/tests/suite/engines/funcs/r/up_string_range.result X%%DATADIR%%/tests/suite/engines/funcs/t/ai_init_alter_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_init_create_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_init_insert.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_init_insert_id.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_overflow_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_reset_by_truncate.test X%%DATADIR%%/tests/suite/engines/funcs/t/ai_sql_auto_is_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/an_calendar.test X%%DATADIR%%/tests/suite/engines/funcs/t/an_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/an_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/comment_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/comment_column2.test X%%DATADIR%%/tests/suite/engines/funcs/t/comment_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/comment_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manycolumns_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manycolumns_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manyindexes_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manyindexes_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manytables_number.cnf X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manytables_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manytables_string.cnf X%%DATADIR%%/tests/suite/engines/funcs/t/crash_manytables_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/data1.inc X%%DATADIR%%/tests/suite/engines/funcs/t/data2.inc X%%DATADIR%%/tests/suite/engines/funcs/t/date_function.test X%%DATADIR%%/tests/suite/engines/funcs/t/datetime_function.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_alter_character_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_alter_character_set_collate.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_alter_collate_ascii.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_alter_collate_utf8.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_character_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_character_set_collate.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_drop.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_error_reserved.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_create_if_not_exists.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_drop_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/db_use_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_autoinc.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_calendar_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_limit.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_multi_db_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_multi_db_table_using.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_multi_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_multi_table_using.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_number_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_quick.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_string_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_truncate.test X%%DATADIR%%/tests/suite/engines/funcs/t/de_truncate_autoinc.test X%%DATADIR%%/tests/suite/engines/funcs/t/disabled.def X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_avg_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_count_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_max_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_max_subquery.test X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_min_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/fu_aggregate_sum_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/general_no_data.test X%%DATADIR%%/tests/suite/engines/funcs/t/general_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/general_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_2_unique_constraints_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_calendar_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_enum_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_enum_null_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_enum_null_large_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_insert_select.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_insert_select_autoinc.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_insert_select_unique_violation.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_lob_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_calendar_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_number_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_multicolumn_string_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_2_unique_constraints_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_decimal_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_number_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_set_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_set_null_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_set_null_large.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_2_unique_constraints_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_boundary_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_pk_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_pk_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_pk_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_set_enum_fail.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_unique_constraint_duplicate_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_unique_constraint_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/in_string_unique_constraint_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_drop.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_drop_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_index_decimals.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_index_lob.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_index_non_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_index_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_index_string_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_unique_decimals.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_unique_lob.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_unique_non_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_unique_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_unique_string_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/ix_using_order.test X%%DATADIR%%/tests/suite/engines/funcs/t/jp_comment_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/jp_comment_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/jp_comment_older_compatibility1.test X%%DATADIR%%/tests/suite/engines/funcs/t/jp_comment_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_all_number_string_calendar_types.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_bit.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_enum_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_less_columns.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_more_columns_truncated.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_quote.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_simple.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_starting.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error1.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error1_local.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error2_local.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error3.test X%%DATADIR%%/tests/suite/engines/funcs/t/ld_unique_error3_local.test X%%DATADIR%%/tests/suite/engines/funcs/t/load_bit.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_enum_set.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_less_columns.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_more_columns.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_null.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_null2.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_quote.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_simple.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_starting.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_unique_error1.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_unique_error2.inc X%%DATADIR%%/tests/suite/engines/funcs/t/load_unique_error3.inc X%%DATADIR%%/tests/suite/engines/funcs/t/ps_number_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/ps_number_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ps_string_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ps_string_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/re_number_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/re_number_range_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/re_number_select.test X%%DATADIR%%/tests/suite/engines/funcs/t/re_string_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/re_string_range_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl000010-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl000017-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_000015.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_REDIRECT.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_create_database-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_create_database-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_dual_pos_advance-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_empty_master_crash-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_empty_master_crash.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_err_ignoredtable-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_free_items-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_ignore_grant-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_ignore_revoke-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_ignore_table_update-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_init_slave-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_insert_select.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_loaddata2.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_loaddata_m-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_loaddata_s-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_multi_delete-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_multi_delete2-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_multi_update4-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_relayspace-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_replicate_ignore_db-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_row_inexist_tbl-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_row_stop_middle.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_row_until.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_server_id2-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_skip_error-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_sp-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_sp-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_sp_effects-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_sp_effects-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_stm_mystery22.test X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_variables-master.opt X%%DATADIR%%/tests/suite/engines/funcs/t/rpl_view-slave.opt X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_cross.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_default.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_inner.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_left.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_left_outer.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_natural_left.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_natural_left_outer.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_natural_right.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_natural_right_outer.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_right.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_right_outer.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_join_straight.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_rowid.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_distinct.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_from.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_groupby.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_having.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_limit.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_orderby.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_union.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_where.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_where_and.test X%%DATADIR%%/tests/suite/engines/funcs/t/se_string_where_or.test X%%DATADIR%%/tests/suite/engines/funcs/t/sf_alter.test X%%DATADIR%%/tests/suite/engines/funcs/t/sf_cursor.test X%%DATADIR%%/tests/suite/engines/funcs/t/sf_simple1.test X%%DATADIR%%/tests/suite/engines/funcs/t/sp_alter.test X%%DATADIR%%/tests/suite/engines/funcs/t/sp_cursor.test X%%DATADIR%%/tests/suite/engines/funcs/t/sp_simple1.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_all.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_any.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_corr.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_exists.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_from.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_in.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_row.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_scalar.test X%%DATADIR%%/tests/suite/engines/funcs/t/sq_some.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_2part_column_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_2part_diff_string_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_2part_diff_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_2part_string_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_3part_column_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_3part_string_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column_first.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column_first2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column_middle.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_column_middle2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string_first.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string_first2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string_middle.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string_middle2.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_string_unique_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_add_unique_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_from_unsigned.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_from_zerofill.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_unsigned.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_column_to_zerofill.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_pk_autoincrement.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_pk_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_pk_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_drop_string_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_orderby.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_rename.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_set_drop_default.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_string_drop_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_string_to_index.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_string_to_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_string_to_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/ta_string_to_pk.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_autoincrement.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_comment.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_comment_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_default_decimal.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_default_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_default_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_enum.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_enum_long.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_key_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_length_decimals.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_length_zero.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_not_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_null.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_primary_key_number.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_primary_key_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_serial.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_set.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_set_long.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_unique_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_unique_key_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_unsigned.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_column_zerofill.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_drop_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_multicolumn_different.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_multicolumn_same.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_multicolumn_same_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_analyze.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_change_from_range_to_hash_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_check.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_hash.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_hash_date_function.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_linear_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_list_directory.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_list_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_optimize.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_rebuild.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_remove.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_reorg_divide.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_reorg_hash_key.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_reorg_merge.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_repair.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_sub1.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_sub2.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_value.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_value_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_partition_value_specific.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_rename.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_rename_across_database.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_rename_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_comment.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_create_like.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_create_like_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_create_select.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_create_select_string.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_structure_string_comment.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_temporary_column.test X%%DATADIR%%/tests/suite/engines/funcs/t/tc_temporary_column_length.test X%%DATADIR%%/tests/suite/engines/funcs/t/time_function.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_all_type_triggers.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_delete.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_delete_new_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_insert.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_insert_after_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_insert_old_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_update.test X%%DATADIR%%/tests/suite/engines/funcs/t/tr_update_after_error.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_calendar_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_ignore.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_limit.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_multi_db_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_multi_table.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_nullcheck.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_number_range.test X%%DATADIR%%/tests/suite/engines/funcs/t/up_string_range.test X%%DATADIR%%/tests/suite/engines/iuds/r/delete_decimal.result X%%DATADIR%%/tests/suite/engines/iuds/r/delete_time.result X%%DATADIR%%/tests/suite/engines/iuds/r/delete_year.result X%%DATADIR%%/tests/suite/engines/iuds/r/insert_calendar.result X%%DATADIR%%/tests/suite/engines/iuds/r/insert_decimal.result X%%DATADIR%%/tests/suite/engines/iuds/r/insert_number.result X%%DATADIR%%/tests/suite/engines/iuds/r/insert_time.result X%%DATADIR%%/tests/suite/engines/iuds/r/insert_year.result X%%DATADIR%%/tests/suite/engines/iuds/r/strings_charsets_update_delete.result X%%DATADIR%%/tests/suite/engines/iuds/r/strings_update_delete.result X%%DATADIR%%/tests/suite/engines/iuds/r/type_bit_iuds.result X%%DATADIR%%/tests/suite/engines/iuds/r/update_decimal.result X%%DATADIR%%/tests/suite/engines/iuds/r/update_delete_calendar.result X%%DATADIR%%/tests/suite/engines/iuds/r/update_delete_number.result X%%DATADIR%%/tests/suite/engines/iuds/r/update_time.result X%%DATADIR%%/tests/suite/engines/iuds/r/update_year.result X%%DATADIR%%/tests/suite/engines/iuds/t/delete_decimal.test X%%DATADIR%%/tests/suite/engines/iuds/t/delete_time.test X%%DATADIR%%/tests/suite/engines/iuds/t/delete_year.test X%%DATADIR%%/tests/suite/engines/iuds/t/disabled.def X%%DATADIR%%/tests/suite/engines/iuds/t/hindi.txt X%%DATADIR%%/tests/suite/engines/iuds/t/insert_calendar.test X%%DATADIR%%/tests/suite/engines/iuds/t/insert_decimal.test X%%DATADIR%%/tests/suite/engines/iuds/t/insert_number.test X%%DATADIR%%/tests/suite/engines/iuds/t/insert_time.test X%%DATADIR%%/tests/suite/engines/iuds/t/insert_year.test X%%DATADIR%%/tests/suite/engines/iuds/t/sample.txt X%%DATADIR%%/tests/suite/engines/iuds/t/strings_charsets_update_delete.test X%%DATADIR%%/tests/suite/engines/iuds/t/strings_update_delete.test X%%DATADIR%%/tests/suite/engines/iuds/t/type_bit_iuds.test X%%DATADIR%%/tests/suite/engines/iuds/t/update_decimal.test X%%DATADIR%%/tests/suite/engines/iuds/t/update_delete_calendar.test X%%DATADIR%%/tests/suite/engines/iuds/t/update_delete_number.test X%%DATADIR%%/tests/suite/engines/iuds/t/update_time.test X%%DATADIR%%/tests/suite/engines/iuds/t/update_year.test X%%DATADIR%%/tests/suite/engines/rr_trx/check_consistency.sql X%%DATADIR%%/tests/suite/engines/rr_trx/include/check_for_error_rollback.inc X%%DATADIR%%/tests/suite/engines/rr_trx/include/check_for_error_rollback_skip.inc X%%DATADIR%%/tests/suite/engines/rr_trx/include/check_repeatable_read_all_columns.inc X%%DATADIR%%/tests/suite/engines/rr_trx/include/record_query_all_columns.inc X%%DATADIR%%/tests/suite/engines/rr_trx/include/rr_init.test X%%DATADIR%%/tests/suite/engines/rr_trx/init_innodb.txt X%%DATADIR%%/tests/suite/engines/rr_trx/r/init_innodb.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_c_count_not_zero.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_c_stats.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_i_40-44.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_id_3.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_id_900.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_insert_select_2.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_iud_rollback-multi-50.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_replace_7-8.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_s_select-uncommitted.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_sc_select-limit-nolimit_4.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_sc_select-same_2.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_sc_sum_total.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_u_10-19.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_u_10-19_nolimit.result X%%DATADIR%%/tests/suite/engines/rr_trx/r/rr_u_4.result X%%DATADIR%%/tests/suite/engines/rr_trx/run.txt X%%DATADIR%%/tests/suite/engines/rr_trx/run_stress_tx_rr.pl X%%DATADIR%%/tests/suite/engines/rr_trx/t/init_innodb.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_c_count_not_zero.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_c_stats.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_i_40-44.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_id_3.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_id_900.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_insert_select_2.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_iud_rollback-multi-50.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_replace_7-8.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_s_select-uncommitted.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_sc_select-limit-nolimit_4.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_sc_select-same_2.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_sc_sum_total.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_u_10-19.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_u_10-19_nolimit.test X%%DATADIR%%/tests/suite/engines/rr_trx/t/rr_u_4.test X%%DATADIR%%/tests/suite/federated/disabled.def X%%DATADIR%%/tests/suite/federated/federated.result X%%DATADIR%%/tests/suite/federated/federated.test X%%DATADIR%%/tests/suite/federated/federated_archive.result X%%DATADIR%%/tests/suite/federated/federated_archive.test X%%DATADIR%%/tests/suite/federated/federated_bug_13118.result X%%DATADIR%%/tests/suite/federated/federated_bug_13118.test X%%DATADIR%%/tests/suite/federated/federated_bug_25714.result X%%DATADIR%%/tests/suite/federated/federated_bug_25714.test X%%DATADIR%%/tests/suite/federated/federated_bug_35333.result X%%DATADIR%%/tests/suite/federated/federated_bug_35333.test X%%DATADIR%%/tests/suite/federated/federated_connection_attrs.result X%%DATADIR%%/tests/suite/federated/federated_connection_attrs.test X%%DATADIR%%/tests/suite/federated/federated_debug-master.opt X%%DATADIR%%/tests/suite/federated/federated_debug.result X%%DATADIR%%/tests/suite/federated/federated_debug.test X%%DATADIR%%/tests/suite/federated/federated_get_table_share.result X%%DATADIR%%/tests/suite/federated/federated_get_table_share.test X%%DATADIR%%/tests/suite/federated/federated_innodb.result X%%DATADIR%%/tests/suite/federated/federated_innodb.test X%%DATADIR%%/tests/suite/federated/federated_plugin-master.opt X%%DATADIR%%/tests/suite/federated/federated_plugin.result X%%DATADIR%%/tests/suite/federated/federated_plugin.test X%%DATADIR%%/tests/suite/federated/federated_server.result X%%DATADIR%%/tests/suite/federated/federated_server.test X%%DATADIR%%/tests/suite/federated/federated_transactions.result X%%DATADIR%%/tests/suite/federated/federated_transactions.test X%%DATADIR%%/tests/suite/federated/include/federated.inc X%%DATADIR%%/tests/suite/federated/include/federated_cleanup.inc X%%DATADIR%%/tests/suite/federated/include/have_federated_db.inc X%%DATADIR%%/tests/suite/federated/my.cnf X%%DATADIR%%/tests/suite/funcs_1/README.txt X%%DATADIR%%/tests/suite/funcs_1/bitdata/bitdata_master.test X%%DATADIR%%/tests/suite/funcs_1/cursors/cursors_master.test X%%DATADIR%%/tests/suite/funcs_1/datadict/basics_mixed1.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/basics_mixed2.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/basics_mixed3.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/columns.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/datadict.pre X%%DATADIR%%/tests/suite/funcs_1/datadict/datadict_bug_12777.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/datadict_load.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/datadict_priv.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_key_column_usage.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_routines.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_schemata.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_table_query.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_tables.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_triggers.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/is_views.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/processlist_priv.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/processlist_val.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/statistics.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/table_constraints.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/tables.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/tables1.inc X%%DATADIR%%/tests/suite/funcs_1/datadict/tables2.inc X%%DATADIR%%/tests/suite/funcs_1/include/bug28309_skip.inc X%%DATADIR%%/tests/suite/funcs_1/include/cleanup.inc X%%DATADIR%%/tests/suite/funcs_1/include/innodb_tb1.inc X%%DATADIR%%/tests/suite/funcs_1/include/innodb_tb2.inc X%%DATADIR%%/tests/suite/funcs_1/include/innodb_tb3.inc X%%DATADIR%%/tests/suite/funcs_1/include/innodb_tb4.inc X%%DATADIR%%/tests/suite/funcs_1/include/memory_tb1.inc X%%DATADIR%%/tests/suite/funcs_1/include/memory_tb2.inc X%%DATADIR%%/tests/suite/funcs_1/include/memory_tb3.inc X%%DATADIR%%/tests/suite/funcs_1/include/memory_tb4.inc X%%DATADIR%%/tests/suite/funcs_1/include/myisam_tb1.inc X%%DATADIR%%/tests/suite/funcs_1/include/myisam_tb2.inc X%%DATADIR%%/tests/suite/funcs_1/include/myisam_tb3.inc X%%DATADIR%%/tests/suite/funcs_1/include/myisam_tb4.inc X%%DATADIR%%/tests/suite/funcs_1/include/ndb_tb1.inc X%%DATADIR%%/tests/suite/funcs_1/include/ndb_tb2.inc X%%DATADIR%%/tests/suite/funcs_1/include/ndb_tb3.inc X%%DATADIR%%/tests/suite/funcs_1/include/ndb_tb4.inc X%%DATADIR%%/tests/suite/funcs_1/include/show_connection.inc X%%DATADIR%%/tests/suite/funcs_1/include/sp_tb.inc X%%DATADIR%%/tests/suite/funcs_1/include/tb3.inc X%%DATADIR%%/tests/suite/funcs_1/lib/DataGen_local.pl X%%DATADIR%%/tests/suite/funcs_1/lib/DataGen_modify.pl X%%DATADIR%%/tests/suite/funcs_1/r/charset_collation.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_bitdata.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_cursors.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_func_view.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_02.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_03.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_06.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_07.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_08.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_storedproc_10.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_0102.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_03.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_03e.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_0407.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_08.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_09.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_1011ext.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_trig_frkey.result X%%DATADIR%%/tests/suite/funcs_1/r/innodb_views.result X%%DATADIR%%/tests/suite/funcs_1/r/is_basics_mixed.result X%%DATADIR%%/tests/suite/funcs_1/r/is_character_sets.result X%%DATADIR%%/tests/suite/funcs_1/r/is_cml_innodb.result X%%DATADIR%%/tests/suite/funcs_1/r/is_cml_memory.result X%%DATADIR%%/tests/suite/funcs_1/r/is_cml_myisam.result X%%DATADIR%%/tests/suite/funcs_1/r/is_coll_char_set_appl.result X%%DATADIR%%/tests/suite/funcs_1/r/is_collations.result X%%DATADIR%%/tests/suite/funcs_1/r/is_column_privileges.result X%%DATADIR%%/tests/suite/funcs_1/r/is_column_privileges_is_mysql_test.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_innodb.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_is.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_is_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_memory.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_myisam.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_myisam_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_mysql.result X%%DATADIR%%/tests/suite/funcs_1/r/is_columns_mysql_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_archive.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_blackhole.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_csv.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_federated.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_innodb.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_memory.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_merge.result X%%DATADIR%%/tests/suite/funcs_1/r/is_engines_myisam.result X%%DATADIR%%/tests/suite/funcs_1/r/is_events.result X%%DATADIR%%/tests/suite/funcs_1/r/is_key_column_usage.result X%%DATADIR%%/tests/suite/funcs_1/r/is_key_column_usage_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_routines.result X%%DATADIR%%/tests/suite/funcs_1/r/is_routines_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_schema_privileges.result X%%DATADIR%%/tests/suite/funcs_1/r/is_schema_privileges_is_mysql_test.result X%%DATADIR%%/tests/suite/funcs_1/r/is_schemata.result X%%DATADIR%%/tests/suite/funcs_1/r/is_schemata_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_schemata_is_mysql_test.result X%%DATADIR%%/tests/suite/funcs_1/r/is_statistics.result X%%DATADIR%%/tests/suite/funcs_1/r/is_statistics_is.result X%%DATADIR%%/tests/suite/funcs_1/r/is_statistics_mysql.result X%%DATADIR%%/tests/suite/funcs_1/r/is_statistics_mysql_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_table_constraints.result X%%DATADIR%%/tests/suite/funcs_1/r/is_table_constraints_is.result X%%DATADIR%%/tests/suite/funcs_1/r/is_table_constraints_mysql.result X%%DATADIR%%/tests/suite/funcs_1/r/is_table_constraints_mysql_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_table_privileges.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_innodb.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_is.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_memory.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_myisam.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_myisam_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_mysql.result X%%DATADIR%%/tests/suite/funcs_1/r/is_tables_mysql_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_triggers.result X%%DATADIR%%/tests/suite/funcs_1/r/is_triggers_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/is_user_privileges.result X%%DATADIR%%/tests/suite/funcs_1/r/is_views.result X%%DATADIR%%/tests/suite/funcs_1/r/is_views_embedded.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_bitdata.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_cursors.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_func_view.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_02.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_03.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_06.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_07.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_08.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_storedproc_10.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_0102.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_03.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_03e.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_0407.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_08.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_09.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_trig_1011ext.result X%%DATADIR%%/tests/suite/funcs_1/r/memory_views.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_bitdata.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_cursors.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_func_view.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_02.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_03.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_06.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_07.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_08.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_storedproc_10.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_0102.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_03.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_03e.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_0407.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_08.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_09.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_trig_1011ext.result X%%DATADIR%%/tests/suite/funcs_1/r/myisam_views-big.result X%%DATADIR%%/tests/suite/funcs_1/r/processlist_priv_no_prot.result X%%DATADIR%%/tests/suite/funcs_1/r/processlist_priv_ps.result X%%DATADIR%%/tests/suite/funcs_1/r/processlist_val_no_prot.result X%%DATADIR%%/tests/suite/funcs_1/r/processlist_val_ps.result X%%DATADIR%%/tests/suite/funcs_1/r/row_count_func.result X%%DATADIR%%/tests/suite/funcs_1/r/storedproc.result X%%DATADIR%%/tests/suite/funcs_1/storedproc/cleanup_sp_tb.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/load_sp_tb.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/param_check.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_02.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_03.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_06.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_07.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_08.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_08_show.inc X%%DATADIR%%/tests/suite/funcs_1/storedproc/storedproc_10.inc X%%DATADIR%%/tests/suite/funcs_1/t/charset_collation.test X%%DATADIR%%/tests/suite/funcs_1/t/disabled.def X%%DATADIR%%/tests/suite/funcs_1/t/innodb_bitdata.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_cursors.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_func_view.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_02.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_03.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_06.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_07.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_08.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_storedproc_10.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_0102.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_03.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_03e.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_0407.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_08.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_09.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_1011ext-master.opt X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_1011ext.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_trig_frkey.test X%%DATADIR%%/tests/suite/funcs_1/t/innodb_views.test X%%DATADIR%%/tests/suite/funcs_1/t/is_basics_mixed.test X%%DATADIR%%/tests/suite/funcs_1/t/is_character_sets.test X%%DATADIR%%/tests/suite/funcs_1/t/is_cml_innodb.test X%%DATADIR%%/tests/suite/funcs_1/t/is_cml_memory.test X%%DATADIR%%/tests/suite/funcs_1/t/is_cml_myisam.test X%%DATADIR%%/tests/suite/funcs_1/t/is_coll_char_set_appl.test X%%DATADIR%%/tests/suite/funcs_1/t/is_collations.test X%%DATADIR%%/tests/suite/funcs_1/t/is_column_privileges.test X%%DATADIR%%/tests/suite/funcs_1/t/is_column_privileges_is_mysql_test.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_innodb.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_is.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_is_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_memory.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_myisam.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_myisam_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_mysql.test X%%DATADIR%%/tests/suite/funcs_1/t/is_columns_mysql_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_archive.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_blackhole.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_csv.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_federated.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_innodb.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_memory.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_merge.test X%%DATADIR%%/tests/suite/funcs_1/t/is_engines_myisam.test X%%DATADIR%%/tests/suite/funcs_1/t/is_events.test X%%DATADIR%%/tests/suite/funcs_1/t/is_key_column_usage.test X%%DATADIR%%/tests/suite/funcs_1/t/is_key_column_usage_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_routines.test X%%DATADIR%%/tests/suite/funcs_1/t/is_routines_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_schema_privileges.test X%%DATADIR%%/tests/suite/funcs_1/t/is_schema_privileges_is_mysql_test.test X%%DATADIR%%/tests/suite/funcs_1/t/is_schemata.test X%%DATADIR%%/tests/suite/funcs_1/t/is_schemata_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_schemata_is_mysql_test.test X%%DATADIR%%/tests/suite/funcs_1/t/is_statistics.test X%%DATADIR%%/tests/suite/funcs_1/t/is_statistics_is.test X%%DATADIR%%/tests/suite/funcs_1/t/is_statistics_mysql.test X%%DATADIR%%/tests/suite/funcs_1/t/is_statistics_mysql_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_table_constraints.test X%%DATADIR%%/tests/suite/funcs_1/t/is_table_constraints_is.test X%%DATADIR%%/tests/suite/funcs_1/t/is_table_constraints_mysql.test X%%DATADIR%%/tests/suite/funcs_1/t/is_table_constraints_mysql_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_table_privileges.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_innodb.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_is.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_memory.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_myisam.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_myisam_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_mysql.test X%%DATADIR%%/tests/suite/funcs_1/t/is_tables_mysql_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_triggers.test X%%DATADIR%%/tests/suite/funcs_1/t/is_triggers_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/is_user_privileges.test X%%DATADIR%%/tests/suite/funcs_1/t/is_views.test X%%DATADIR%%/tests/suite/funcs_1/t/is_views_embedded.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_bitdata.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_cursors.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_func_view.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_02.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_03.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_06.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_07.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_08.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_storedproc_10.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_0102.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_03.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_03e.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_0407.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_08.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_09.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_1011ext-master.opt X%%DATADIR%%/tests/suite/funcs_1/t/memory_trig_1011ext.test X%%DATADIR%%/tests/suite/funcs_1/t/memory_views.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_bitdata.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_cursors.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_func_view.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_02.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_03.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_06.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_07.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_08.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_storedproc_10.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_0102.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_03.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_03e.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_0407.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_08.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_09.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_1011ext-master.opt X%%DATADIR%%/tests/suite/funcs_1/t/myisam_trig_1011ext.test X%%DATADIR%%/tests/suite/funcs_1/t/myisam_views-big.test X%%DATADIR%%/tests/suite/funcs_1/t/processlist_priv_no_prot.test X%%DATADIR%%/tests/suite/funcs_1/t/processlist_priv_ps.test X%%DATADIR%%/tests/suite/funcs_1/t/processlist_val_no_prot.test X%%DATADIR%%/tests/suite/funcs_1/t/processlist_val_ps.test X%%DATADIR%%/tests/suite/funcs_1/t/row_count_func-master.opt X%%DATADIR%%/tests/suite/funcs_1/t/row_count_func.test X%%DATADIR%%/tests/suite/funcs_1/t/storedproc.test X%%DATADIR%%/tests/suite/funcs_1/t/suite.opt X%%DATADIR%%/tests/suite/funcs_1/triggers/trig_frkey.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/trig_frkey2.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_0102.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_columns.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_db_level.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_db_table_mix.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_definer.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_global_db_mix.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_prepare.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_table_level.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_03e_transaction.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_0407.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_08.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_09.inc X%%DATADIR%%/tests/suite/funcs_1/triggers/triggers_1011ext.inc X%%DATADIR%%/tests/suite/funcs_1/views/func_view.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv1.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv2.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv_cast.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv_if1.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv_if2.inc X%%DATADIR%%/tests/suite/funcs_1/views/fv_ifnull.inc X%%DATADIR%%/tests/suite/funcs_1/views/views_master.inc X%%DATADIR%%/tests/suite/funcs_2/charset/charset_master.test X%%DATADIR%%/tests/suite/funcs_2/data/charset_utf8.txt X%%DATADIR%%/tests/suite/funcs_2/include/check_charset.inc X%%DATADIR%%/tests/suite/funcs_2/include/check_charset_ucs2.inc X%%DATADIR%%/tests/suite/funcs_2/include/check_charset_utf8.inc X%%DATADIR%%/tests/suite/funcs_2/lib/gen_charset_utf8.pl X%%DATADIR%%/tests/suite/funcs_2/r/innodb_charset.result X%%DATADIR%%/tests/suite/funcs_2/r/memory_charset.result X%%DATADIR%%/tests/suite/funcs_2/r/myisam_charset.result X%%DATADIR%%/tests/suite/funcs_2/readme.txt X%%DATADIR%%/tests/suite/funcs_2/t/disabled.def X%%DATADIR%%/tests/suite/funcs_2/t/innodb_charset.test X%%DATADIR%%/tests/suite/funcs_2/t/memory_charset.test X%%DATADIR%%/tests/suite/funcs_2/t/myisam_charset.test X%%DATADIR%%/tests/suite/funcs_2/t/suite.opt X%%DATADIR%%/tests/suite/gcol/inc/gcol_blocked_sql_funcs_main.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_cleanup.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_column_def_options.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_dependancies_on_vcol.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_handler.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_init_vars.pre X%%DATADIR%%/tests/suite/gcol/inc/gcol_ins_upd.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_keys.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_non_stored_columns.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_partition.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_rejected.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_select.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_supported_sql_funcs.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_supported_sql_funcs_main.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_trigger_sp.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_unsupported_storage_engines.inc X%%DATADIR%%/tests/suite/gcol/inc/gcol_view.inc X%%DATADIR%%/tests/suite/gcol/r/federated_gcol.result X%%DATADIR%%/tests/suite/gcol/r/gcol_archive.result X%%DATADIR%%/tests/suite/gcol/r/gcol_blackhole.result X%%DATADIR%%/tests/suite/gcol/r/gcol_blocked_sql_funcs_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_blocked_sql_funcs_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_bug20746926.result X%%DATADIR%%/tests/suite/gcol/r/gcol_bugfixes.result X%%DATADIR%%/tests/suite/gcol/r/gcol_column_def_options_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_column_def_options_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_csv.result X%%DATADIR%%/tests/suite/gcol/r/gcol_falcon.result X%%DATADIR%%/tests/suite/gcol/r/gcol_handler_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_handler_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_ins_upd_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_ins_upd_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_keys_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_keys_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_memory.result X%%DATADIR%%/tests/suite/gcol/r/gcol_merge.result X%%DATADIR%%/tests/suite/gcol/r/gcol_ndb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_non_stored_columns_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_non_stored_columns_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_partition_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_partition_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_rejected_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_rejected_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_select_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_select_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_supported_sql_funcs_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_supported_sql_funcs_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_trigger_sp_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_trigger_sp_myisam.result X%%DATADIR%%/tests/suite/gcol/r/gcol_view_innodb.result X%%DATADIR%%/tests/suite/gcol/r/gcol_view_myisam.result X%%DATADIR%%/tests/suite/gcol/r/rpl_gcol.result X%%DATADIR%%/tests/suite/gcol/t/gcol_archive.test X%%DATADIR%%/tests/suite/gcol/t/gcol_blackhole.test X%%DATADIR%%/tests/suite/gcol/t/gcol_blocked_sql_funcs_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_blocked_sql_funcs_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_bug20746926.test X%%DATADIR%%/tests/suite/gcol/t/gcol_bugfixes.test X%%DATADIR%%/tests/suite/gcol/t/gcol_column_def_options_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_column_def_options_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_handler_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_handler_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_ins_upd_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_ins_upd_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_keys_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_keys_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_memory.test X%%DATADIR%%/tests/suite/gcol/t/gcol_merge.test X%%DATADIR%%/tests/suite/gcol/t/gcol_ndb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_non_stored_columns_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_non_stored_columns_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_partition_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_partition_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_rejected_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_rejected_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_select_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_select_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_supported_sql_funcs_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_supported_sql_funcs_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_trigger_sp_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_trigger_sp_myisam.test X%%DATADIR%%/tests/suite/gcol/t/gcol_view_innodb.test X%%DATADIR%%/tests/suite/gcol/t/gcol_view_myisam.test X%%DATADIR%%/tests/suite/gcol/t/rpl_gcol.test X%%DATADIR%%/tests/suite/gis/r/all_geometry_types_instantiable.result X%%DATADIR%%/tests/suite/gis/r/deprecated_functions.result X%%DATADIR%%/tests/suite/gis/r/geohash_functions.result X%%DATADIR%%/tests/suite/gis/r/geojson_functions.result X%%DATADIR%%/tests/suite/gis/r/geometry_class_attri_prop.result X%%DATADIR%%/tests/suite/gis/r/geometry_property_function_issimple.result X%%DATADIR%%/tests/suite/gis/r/geometry_property_functions.result X%%DATADIR%%/tests/suite/gis/r/gis_bugs_crashes.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_area.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_buffer.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_centroid.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_convexhull.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_distance.result X%%DATADIR%%/tests/suite/gis/r/spatial_analysis_functions_envelope.result X%%DATADIR%%/tests/suite/gis/r/spatial_indexing.result X%%DATADIR%%/tests/suite/gis/r/spatial_op_testingfunc_mix.result X%%DATADIR%%/tests/suite/gis/r/spatial_operators_difference.result X%%DATADIR%%/tests/suite/gis/r/spatial_operators_intersection.result X%%DATADIR%%/tests/suite/gis/r/spatial_operators_symdifference.result X%%DATADIR%%/tests/suite/gis/r/spatial_operators_union.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_contains.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_coveredby.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_covers.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_crosses.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_disjoint.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_equals.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_intersects.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_overlaps.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_touches.result X%%DATADIR%%/tests/suite/gis/r/spatial_testing_functions_within.result X%%DATADIR%%/tests/suite/gis/r/spatial_utility_function_distance_sphere.result X%%DATADIR%%/tests/suite/gis/r/spatial_utility_function_isvalid.result X%%DATADIR%%/tests/suite/gis/r/spatial_utility_function_make_envelope.result X%%DATADIR%%/tests/suite/gis/r/spatial_utility_function_simplify.result X%%DATADIR%%/tests/suite/gis/r/spatial_utility_function_validate.result X%%DATADIR%%/tests/suite/gis/t/all_geometry_types_instantiable.test X%%DATADIR%%/tests/suite/gis/t/deprecated_functions.test X%%DATADIR%%/tests/suite/gis/t/disabled.def X%%DATADIR%%/tests/suite/gis/t/geohash_functions.test X%%DATADIR%%/tests/suite/gis/t/geojson_functions.test X%%DATADIR%%/tests/suite/gis/t/geometry_class_attri_prop.test X%%DATADIR%%/tests/suite/gis/t/geometry_property_function_issimple.test X%%DATADIR%%/tests/suite/gis/t/geometry_property_functions.test X%%DATADIR%%/tests/suite/gis/t/gis_bugs_crashes.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_area.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_buffer.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_centroid.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_convexhull.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_distance.test X%%DATADIR%%/tests/suite/gis/t/spatial_analysis_functions_envelope.test X%%DATADIR%%/tests/suite/gis/t/spatial_indexing.test X%%DATADIR%%/tests/suite/gis/t/spatial_op_testingfunc_mix.test X%%DATADIR%%/tests/suite/gis/t/spatial_operators_difference.test X%%DATADIR%%/tests/suite/gis/t/spatial_operators_intersection.test X%%DATADIR%%/tests/suite/gis/t/spatial_operators_symdifference.test X%%DATADIR%%/tests/suite/gis/t/spatial_operators_union.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_contains.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_coveredby.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_covers.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_crosses.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_disjoint.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_equals.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_intersects.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_overlaps.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_touches.test X%%DATADIR%%/tests/suite/gis/t/spatial_testing_functions_within.test X%%DATADIR%%/tests/suite/gis/t/spatial_utility_function_distance_sphere.test X%%DATADIR%%/tests/suite/gis/t/spatial_utility_function_isvalid.test X%%DATADIR%%/tests/suite/gis/t/spatial_utility_function_make_envelope.test X%%DATADIR%%/tests/suite/gis/t/spatial_utility_function_simplify.test X%%DATADIR%%/tests/suite/gis/t/spatial_utility_function_validate.test X%%DATADIR%%/tests/suite/innodb/include/alter_table_pk_no_sort.inc X%%DATADIR%%/tests/suite/innodb/include/check_pfs_mem_other_is_zero.inc X%%DATADIR%%/tests/suite/innodb/include/checksum_not_strict.inc X%%DATADIR%%/tests/suite/innodb/include/cleanup_folder.inc X%%DATADIR%%/tests/suite/innodb/include/create_options_invalid.inc X%%DATADIR%%/tests/suite/innodb/include/create_workload_itt.inc X%%DATADIR%%/tests/suite/innodb/include/default_row_format_alter.inc X%%DATADIR%%/tests/suite/innodb/include/default_row_format_create.inc X%%DATADIR%%/tests/suite/innodb/include/default_row_format_large.inc X%%DATADIR%%/tests/suite/innodb/include/default_row_format_show.inc X%%DATADIR%%/tests/suite/innodb/include/default_row_format_tablespace.inc X%%DATADIR%%/tests/suite/innodb/include/drop_workload_itt.inc X%%DATADIR%%/tests/suite/innodb/include/import.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_bulk_create_index.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_bulk_create_index_debug.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_dict.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_import.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_merge_threshold_delete.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_merge_threshold_secondary.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_merge_threshold_update.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_stats.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_stats_table_flag.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_stats_table_flag_analyze.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_undo_logs_action.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_v_large_col.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_wl6501_crash.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_wl6501_crash_temp.inc X%%DATADIR%%/tests/suite/innodb/include/innodb_wl6742_selects.inc X%%DATADIR%%/tests/suite/innodb/include/log_file_cleanup.inc X%%DATADIR%%/tests/suite/innodb/include/query_workload_itt.inc X%%DATADIR%%/tests/suite/innodb/include/show_i_s_tables.inc X%%DATADIR%%/tests/suite/innodb/include/show_i_s_tablespaces.inc X%%DATADIR%%/tests/suite/innodb/include/tablespace_filenames.inc X%%DATADIR%%/tests/suite/innodb/include/tablespace_portability.inc X%%DATADIR%%/tests/suite/innodb/include/wl5522_oom.inc X%%DATADIR%%/tests/suite/innodb/r/add_foreign_key.result X%%DATADIR%%/tests/suite/innodb/r/alter_crash.result X%%DATADIR%%/tests/suite/innodb/r/alter_foreign_crash.result X%%DATADIR%%/tests/suite/innodb/r/alter_kill.result X%%DATADIR%%/tests/suite/innodb/r/alter_missing_tablespace.result X%%DATADIR%%/tests/suite/innodb/r/alter_page_size.result X%%DATADIR%%/tests/suite/innodb/r/alter_rename_files.result X%%DATADIR%%/tests/suite/innodb/r/alter_table_redundant.result X%%DATADIR%%/tests/suite/innodb/r/alter_table_stage_progress.result X%%DATADIR%%/tests/suite/innodb/r/attachable_trx.result X%%DATADIR%%/tests/suite/innodb/r/blob-crash-16k.result X%%DATADIR%%/tests/suite/innodb/r/blob-crash-4k.result X%%DATADIR%%/tests/suite/innodb/r/blob-crash.result X%%DATADIR%%/tests/suite/innodb/r/blob-update-debug.result X%%DATADIR%%/tests/suite/innodb/r/blob_page_reserve.result X%%DATADIR%%/tests/suite/innodb/r/blob_redo.result X%%DATADIR%%/tests/suite/innodb/r/buf_pool_resize_oom.result X%%DATADIR%%/tests/suite/innodb/r/bulk_create_index_online.result X%%DATADIR%%/tests/suite/innodb/r/cascade_lock_wait.result X%%DATADIR%%/tests/suite/innodb/r/checksum.result X%%DATADIR%%/tests/suite/innodb/r/crc32_endianness.result X%%DATADIR%%/tests/suite/innodb/r/create-index.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_16k.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_32k.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_4k.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_64k.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_8k.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_debug.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_notembedded.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_partition.result X%%DATADIR%%/tests/suite/innodb/r/create_tablespace_replication.result X%%DATADIR%%/tests/suite/innodb/r/default_row_format.result X%%DATADIR%%/tests/suite/innodb/r/default_row_format_16k.result X%%DATADIR%%/tests/suite/innodb/r/default_row_format_compatibility.result X%%DATADIR%%/tests/suite/innodb/r/default_row_format_tablespace.result X%%DATADIR%%/tests/suite/innodb/r/doublewrite.result X%%DATADIR%%/tests/suite/innodb/r/dropdb.result X%%DATADIR%%/tests/suite/innodb/r/file_format_defaults.result X%%DATADIR%%/tests/suite/innodb/r/file_format_upgrade_16k.result X%%DATADIR%%/tests/suite/innodb/r/foreign_key.result X%%DATADIR%%/tests/suite/innodb/r/help_verbose.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_1.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_2.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_3.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_4.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_5.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_6.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_7.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_commit_crash.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_debug.result X%%DATADIR%%/tests/suite/innodb/r/high_prio_trx_rpl.result X%%DATADIR%%/tests/suite/innodb/r/import.result X%%DATADIR%%/tests/suite/innodb/r/import_export_4k.result X%%DATADIR%%/tests/suite/innodb/r/import_update_stats.result X%%DATADIR%%/tests/suite/innodb/r/index_merge_threshold.result X%%DATADIR%%/tests/suite/innodb/r/index_tree_operation.result X%%DATADIR%%/tests/suite/innodb/r/innodb-2byte-collation.result X%%DATADIR%%/tests/suite/innodb/r/innodb-ac-non-locking-select.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter-autoinc.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter-debug-wl6554.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter-debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter-nullable.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter-wl6554.result X%%DATADIR%%/tests/suite/innodb/r/innodb-alter.result X%%DATADIR%%/tests/suite/innodb/r/innodb-analyze.result X%%DATADIR%%/tests/suite/innodb/r/innodb-autoinc-18274.result X%%DATADIR%%/tests/suite/innodb/r/innodb-autoinc-44030.result X%%DATADIR%%/tests/suite/innodb/r/innodb-autoinc-56228.result X%%DATADIR%%/tests/suite/innodb/r/innodb-autoinc-optimize.result X%%DATADIR%%/tests/suite/innodb/r/innodb-autoinc.result X%%DATADIR%%/tests/suite/innodb/r/innodb-blob.result X%%DATADIR%%/tests/suite/innodb/r/innodb-bug-14068765.result X%%DATADIR%%/tests/suite/innodb/r/innodb-bug-14084530.result X%%DATADIR%%/tests/suite/innodb/r/innodb-bug12552164.result X%%DATADIR%%/tests/suite/innodb/r/innodb-bug14219515.result X%%DATADIR%%/tests/suite/innodb/r/innodb-change-buffer-recovery.result X%%DATADIR%%/tests/suite/innodb/r/innodb-consistent.result X%%DATADIR%%/tests/suite/innodb/r/innodb-import-partition-rpl.result X%%DATADIR%%/tests/suite/innodb/r/innodb-import-partition.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index-debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index-online-delete.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index-online-fk.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index-online-purge.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index-online.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index.result X%%DATADIR%%/tests/suite/innodb/r/innodb-index_ucs2.result X%%DATADIR%%/tests/suite/innodb/r/innodb-large-prefix.result X%%DATADIR%%/tests/suite/innodb/r/innodb-lock-inherit-read_commited.result X%%DATADIR%%/tests/suite/innodb/r/innodb-lock.result X%%DATADIR%%/tests/suite/innodb/r/innodb-multiple-tablespaces.result X%%DATADIR%%/tests/suite/innodb/r/innodb-read-view.result X%%DATADIR%%/tests/suite/innodb/r/innodb-replace-debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb-semi-consistent.result X%%DATADIR%%/tests/suite/innodb/r/innodb-status-output.result X%%DATADIR%%/tests/suite/innodb/r/innodb-system-table-view.result X%%DATADIR%%/tests/suite/innodb/r/innodb-table-online.result X%%DATADIR%%/tests/suite/innodb/r/innodb-timeout.result X%%DATADIR%%/tests/suite/innodb/r/innodb-truncate.result X%%DATADIR%%/tests/suite/innodb/r/innodb-ucs2.result X%%DATADIR%%/tests/suite/innodb/r/innodb-update-insert.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5522-1.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5522-debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5522.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5980-alter.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5980-debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5980-discard.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5980-linux.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl5980-windows.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6045-1.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6045-linux.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6445-1.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6445-2.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6445.result X%%DATADIR%%/tests/suite/innodb/r/innodb-wl6742.result X%%DATADIR%%/tests/suite/innodb/r/innodb.result X%%DATADIR%%/tests/suite/innodb/r/innodb_32k.result X%%DATADIR%%/tests/suite/innodb/r/innodb_64k.result X%%DATADIR%%/tests/suite/innodb/r/innodb_autoinc_lock_mode_zero.result X%%DATADIR%%/tests/suite/innodb/r/innodb_autoinc_reset.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_dump_pct.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_load.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_load_now.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_resize.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_resize_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_buffer_pool_resize_with_chunks.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug-13628249.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug11754376.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug11766634.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug11789106.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug11933790.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug12400341.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug12429573.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug12661768.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14006907.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14007109.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14007649.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14147491.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14169459.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14676111.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug14704286.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug19164038.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug21704.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug30423.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug30919.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug34053.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug34300.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug35220.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug38231.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug39438.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug40360.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug40565.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug41904.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug42101-nonzero.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug42101.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug42419.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug44032.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug44369.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug44571.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug45357.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug46000.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug46676.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug47167.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug47621.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug47622.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug47777.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug48024.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug49164.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug51378.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug51920.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug52199.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug52663.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug53046.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug53290.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug53592.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug53674.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug53756.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug54044.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug56143.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug56716.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug56947.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug57252.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug57255.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug57904.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug59307.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug59410.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug59641.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug59733.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug60049.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug60196.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug60229.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bug70867.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bulk_create_index.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bulk_create_index_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bulk_create_index_flush.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bulk_create_index_replication.result X%%DATADIR%%/tests/suite/innodb/r/innodb_bulk_create_index_small.result X%%DATADIR%%/tests/suite/innodb/r/innodb_corrupt_bit.result X%%DATADIR%%/tests/suite/innodb/r/innodb_ctype_ldml.result X%%DATADIR%%/tests/suite/innodb/r/innodb_file_format.result X%%DATADIR%%/tests/suite/innodb/r/innodb_force_recovery.result X%%DATADIR%%/tests/suite/innodb/r/innodb_high_prio_commit_crash.result X%%DATADIR%%/tests/suite/innodb/r/innodb_high_prio_rpl.result X%%DATADIR%%/tests/suite/innodb/r/innodb_i_s_innodb_locks.result X%%DATADIR%%/tests/suite/innodb/r/innodb_i_s_innodb_trx.result X%%DATADIR%%/tests/suite/innodb/r/innodb_information_schema_buffer.result X%%DATADIR%%/tests/suite/innodb/r/innodb_lock_wait_timeout_1.result X%%DATADIR%%/tests/suite/innodb/r/innodb_misc1.result X%%DATADIR%%/tests/suite/innodb/r/innodb_multi_update.result X%%DATADIR%%/tests/suite/innodb/r/innodb_mysql.result X%%DATADIR%%/tests/suite/innodb/r/innodb_mysql_rbk.result X%%DATADIR%%/tests/suite/innodb/r/innodb_notembedded.result X%%DATADIR%%/tests/suite/innodb/r/innodb_page_size_func.result X%%DATADIR%%/tests/suite/innodb/r/innodb_pagesize_max_recordsize.result X%%DATADIR%%/tests/suite/innodb/r/innodb_prefix_index_restart_server.result X%%DATADIR%%/tests/suite/innodb/r/innodb_rename_index.result X%%DATADIR%%/tests/suite/innodb/r/innodb_rename_index_err.result X%%DATADIR%%/tests/suite/innodb/r/innodb_replace.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_auto_recalc.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_auto_recalc_ddl.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_auto_recalc_lots.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_auto_recalc_on_nonexistent.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_create_on_corrupted.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_create_table.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_drop_locked.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_external_pages.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_fetch.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_fetch_corrupted.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_fetch_nonexistent.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_flag_global_off.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_flag_global_on.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_rename_table.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_rename_table_if_exists.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_sample_pages.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_table_flag_auto_recalc.result X%%DATADIR%%/tests/suite/innodb/r/innodb_stats_table_flag_sample_pages.result X%%DATADIR%%/tests/suite/innodb/r/innodb_tablespace.result X%%DATADIR%%/tests/suite/innodb/r/innodb_tablespace_zip.result X%%DATADIR%%/tests/suite/innodb/r/innodb_thread_concurrency_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_timeout_rollback.result X%%DATADIR%%/tests/suite/innodb/r/innodb_trx_weight.result X%%DATADIR%%/tests/suite/innodb/r/innodb_upd_stats_if_needed_not_inited.result X%%DATADIR%%/tests/suite/innodb/r/innodb_ut_format_name.result X%%DATADIR%%/tests/suite/innodb/r/innodb_v_basic.result X%%DATADIR%%/tests/suite/innodb/r/innodb_v_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_v_purge.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6326.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6326_big.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6469_1.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6469_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6470.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6470_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6501_crash_1.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6501_crash_2.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6501_crash_6.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6501_crash_7.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6501_crash_8.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6560_1.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6560_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6915.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl6915_debug.result X%%DATADIR%%/tests/suite/innodb/r/innodb_wl8114.result X%%DATADIR%%/tests/suite/innodb/r/insert_debug.result X%%DATADIR%%/tests/suite/innodb/r/log_alter_table.result X%%DATADIR%%/tests/suite/innodb/r/log_corruption.result X%%DATADIR%%/tests/suite/innodb/r/log_file.result X%%DATADIR%%/tests/suite/innodb/r/log_file_name.result X%%DATADIR%%/tests/suite/innodb/r/log_file_name_debug.result X%%DATADIR%%/tests/suite/innodb/r/log_file_size.result X%%DATADIR%%/tests/suite/innodb/r/log_file_size_1.result X%%DATADIR%%/tests/suite/innodb/r/log_file_size_checkpoint.result X%%DATADIR%%/tests/suite/innodb/r/missing_tablespaces.result X%%DATADIR%%/tests/suite/innodb/r/monitor.result X%%DATADIR%%/tests/suite/innodb/r/monitor_debug.result X%%DATADIR%%/tests/suite/innodb/r/mysqldump_max_recordsize.result X%%DATADIR%%/tests/suite/innodb/r/optimizer_temporary_table.result X%%DATADIR%%/tests/suite/innodb/r/page_reorganize.result X%%DATADIR%%/tests/suite/innodb/r/partition-blob.result X%%DATADIR%%/tests/suite/innodb/r/partition-upgrade.result X%%DATADIR%%/tests/suite/innodb/r/partition.result X%%DATADIR%%/tests/suite/innodb/r/readonly.result X%%DATADIR%%/tests/suite/innodb/r/records_in_range.result X%%DATADIR%%/tests/suite/innodb/r/sp_temp_table.result X%%DATADIR%%/tests/suite/innodb/r/strict_checksum.result X%%DATADIR%%/tests/suite/innodb/r/strict_mode.result X%%DATADIR%%/tests/suite/innodb/r/table_compress.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_crash.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_embedded.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_embedded_windows.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_per_table.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_per_table_not_windows.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_per_table_windows.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_portability.result X%%DATADIR%%/tests/suite/innodb/r/tablespace_portability_windows.result X%%DATADIR%%/tests/suite/innodb/r/trx_id_future.result X%%DATADIR%%/tests/suite/innodb/r/undo.result X%%DATADIR%%/tests/suite/innodb/r/update-cascade.result X%%DATADIR%%/tests/suite/innodb/r/update_time.result X%%DATADIR%%/tests/suite/innodb/r/update_time_wl6658.result X%%DATADIR%%/tests/suite/innodb/r/virtual_purge.result X%%DATADIR%%/tests/suite/innodb/r/xa_recovery.result X%%DATADIR%%/tests/suite/innodb/r/xa_recovery_debug.result X%%DATADIR%%/tests/suite/innodb/t/add_foreign_key.test X%%DATADIR%%/tests/suite/innodb/t/alter_crash.test X%%DATADIR%%/tests/suite/innodb/t/alter_foreign_crash.test X%%DATADIR%%/tests/suite/innodb/t/alter_kill-master.opt X%%DATADIR%%/tests/suite/innodb/t/alter_kill.test X%%DATADIR%%/tests/suite/innodb/t/alter_missing_tablespace.test X%%DATADIR%%/tests/suite/innodb/t/alter_page_size.test X%%DATADIR%%/tests/suite/innodb/t/alter_rename_files.test X%%DATADIR%%/tests/suite/innodb/t/alter_table_redundant.test X%%DATADIR%%/tests/suite/innodb/t/alter_table_stage_progress-master.opt X%%DATADIR%%/tests/suite/innodb/t/alter_table_stage_progress.test X%%DATADIR%%/tests/suite/innodb/t/attachable_trx.test X%%DATADIR%%/tests/suite/innodb/t/blob-crash-16k.test X%%DATADIR%%/tests/suite/innodb/t/blob-crash-4k.test X%%DATADIR%%/tests/suite/innodb/t/blob-crash.test X%%DATADIR%%/tests/suite/innodb/t/blob-update-debug.test X%%DATADIR%%/tests/suite/innodb/t/blob_page_reserve.test X%%DATADIR%%/tests/suite/innodb/t/blob_redo-master.opt X%%DATADIR%%/tests/suite/innodb/t/blob_redo.test X%%DATADIR%%/tests/suite/innodb/t/buf_pool_resize_oom-master.opt X%%DATADIR%%/tests/suite/innodb/t/buf_pool_resize_oom.test X%%DATADIR%%/tests/suite/innodb/t/bulk_create_index_online.test X%%DATADIR%%/tests/suite/innodb/t/cascade_lock_wait.test X%%DATADIR%%/tests/suite/innodb/t/checksum.test X%%DATADIR%%/tests/suite/innodb/t/crc32_endianness.test X%%DATADIR%%/tests/suite/innodb/t/crc32_endianness.zip X%%DATADIR%%/tests/suite/innodb/t/create-index.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_16k.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_32k.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_4k.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_64k.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_8k.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_debug.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_notembedded.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_partition.test X%%DATADIR%%/tests/suite/innodb/t/create_tablespace_replication.test X%%DATADIR%%/tests/suite/innodb/t/default_row_format.test X%%DATADIR%%/tests/suite/innodb/t/default_row_format_16k.test X%%DATADIR%%/tests/suite/innodb/t/default_row_format_compatibility.test X%%DATADIR%%/tests/suite/innodb/t/default_row_format_tablespace.test X%%DATADIR%%/tests/suite/innodb/t/disabled.def X%%DATADIR%%/tests/suite/innodb/t/doublewrite.test X%%DATADIR%%/tests/suite/innodb/t/dropdb.test X%%DATADIR%%/tests/suite/innodb/t/file_format_defaults-master.opt X%%DATADIR%%/tests/suite/innodb/t/file_format_defaults.test X%%DATADIR%%/tests/suite/innodb/t/file_format_upgrade_16k.test X%%DATADIR%%/tests/suite/innodb/t/foreign_key.test X%%DATADIR%%/tests/suite/innodb/t/help_verbose.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_1.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_2.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_3.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_4.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_5.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_6.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_7.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_commit_crash.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_debug.test X%%DATADIR%%/tests/suite/innodb/t/high_prio_trx_rpl.test X%%DATADIR%%/tests/suite/innodb/t/import.test X%%DATADIR%%/tests/suite/innodb/t/import_export_4k.test X%%DATADIR%%/tests/suite/innodb/t/import_update_stats.test X%%DATADIR%%/tests/suite/innodb/t/index_merge_threshold.test X%%DATADIR%%/tests/suite/innodb/t/index_tree_operation.test X%%DATADIR%%/tests/suite/innodb/t/innodb-2byte-collation-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-2byte-collation.test X%%DATADIR%%/tests/suite/innodb/t/innodb-ac-non-locking-select.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-autoinc.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-debug-wl6554-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-debug-wl6554.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-nullable.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter-wl6554.test X%%DATADIR%%/tests/suite/innodb/t/innodb-alter.test X%%DATADIR%%/tests/suite/innodb/t/innodb-analyze.test X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-18274.test X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-44030-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-44030.test X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-56228-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-56228.test X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc-optimize.test X%%DATADIR%%/tests/suite/innodb/t/innodb-autoinc.test X%%DATADIR%%/tests/suite/innodb/t/innodb-blob.test X%%DATADIR%%/tests/suite/innodb/t/innodb-bug-14068765.test X%%DATADIR%%/tests/suite/innodb/t/innodb-bug-14084530.test X%%DATADIR%%/tests/suite/innodb/t/innodb-bug12552164.test X%%DATADIR%%/tests/suite/innodb/t/innodb-bug14219515.test X%%DATADIR%%/tests/suite/innodb/t/innodb-change-buffer-recovery-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-change-buffer-recovery.test X%%DATADIR%%/tests/suite/innodb/t/innodb-consistent-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-consistent.test X%%DATADIR%%/tests/suite/innodb/t/innodb-import-partition-rpl.test X%%DATADIR%%/tests/suite/innodb/t/innodb-import-partition.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index-debug-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-index-debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-index-online-delete.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index-online-fk.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index-online-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-index-online-purge.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index-online.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index.test X%%DATADIR%%/tests/suite/innodb/t/innodb-index_ucs2.test X%%DATADIR%%/tests/suite/innodb/t/innodb-large-prefix.test X%%DATADIR%%/tests/suite/innodb/t/innodb-lock-inherit-read_commited.test X%%DATADIR%%/tests/suite/innodb/t/innodb-lock.test X%%DATADIR%%/tests/suite/innodb/t/innodb-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-multiple-tablespaces.test X%%DATADIR%%/tests/suite/innodb/t/innodb-read-view.test X%%DATADIR%%/tests/suite/innodb/t/innodb-replace-debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb-semi-consistent-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-semi-consistent.test X%%DATADIR%%/tests/suite/innodb/t/innodb-status-output.test X%%DATADIR%%/tests/suite/innodb/t/innodb-system-table-view.test X%%DATADIR%%/tests/suite/innodb/t/innodb-table-online-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-table-online.test X%%DATADIR%%/tests/suite/innodb/t/innodb-timeout.test X%%DATADIR%%/tests/suite/innodb/t/innodb-truncate.test X%%DATADIR%%/tests/suite/innodb/t/innodb-ucs2.test X%%DATADIR%%/tests/suite/innodb/t/innodb-update-insert.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5522-1.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5522-debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5522.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-alter.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-discard.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-linux-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-linux.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-windows-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-wl5980-windows.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6045-1-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6045-1.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6045-linux.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6445-1.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6445-2.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6445.test X%%DATADIR%%/tests/suite/innodb/t/innodb-wl6742.test X%%DATADIR%%/tests/suite/innodb/t/innodb.test X%%DATADIR%%/tests/suite/innodb/t/innodb_32k.test X%%DATADIR%%/tests/suite/innodb/t/innodb_64k.test X%%DATADIR%%/tests/suite/innodb/t/innodb_autoinc_lock_mode_zero-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_autoinc_lock_mode_zero.test X%%DATADIR%%/tests/suite/innodb/t/innodb_autoinc_reset.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_dump_pct.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_load-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_load.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_load_now-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_load_now.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize_debug-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize_with_chunks-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_buffer_pool_resize_with_chunks.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug-13628249.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug11754376.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug11766634-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug11766634.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug11789106.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug11933790.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug12400341-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug12400341.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug12429573.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug12661768.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14006907.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14007109.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14007649.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14147491-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14147491.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14169459.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14676111.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug14704286.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug19164038-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug19164038.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug21704.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug30423.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug30919-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug30919.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug34053.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug34300.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug35220.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug38231.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug39438-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug39438.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug40360.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug40565.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug41904.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug42101-nonzero-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug42101-nonzero.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug42101.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug42419.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug44032.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug44369.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug44571.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug45357.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug46000.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug46676.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug47167-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug47167.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug47621.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug47622.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug47777.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug48024.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug49164.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug51378.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug51920.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug52199.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug52663.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53046.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53290.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53592.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53674-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53674.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53756-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug53756.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug54044.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug56143.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug56716.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug56947.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug57252.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug57255.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug57904.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug59307.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug59410.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug59641.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug59733.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug60049-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug60049.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug60196-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_bug60196.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug60229.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bug70867.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bulk_create_index.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bulk_create_index_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bulk_create_index_flush.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bulk_create_index_replication.test X%%DATADIR%%/tests/suite/innodb/t/innodb_bulk_create_index_small.test X%%DATADIR%%/tests/suite/innodb/t/innodb_corrupt_bit.test X%%DATADIR%%/tests/suite/innodb/t/innodb_ctype_ldml-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_ctype_ldml.test X%%DATADIR%%/tests/suite/innodb/t/innodb_file_format-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_file_format.test X%%DATADIR%%/tests/suite/innodb/t/innodb_force_recovery.test X%%DATADIR%%/tests/suite/innodb/t/innodb_i_s_innodb_locks.test X%%DATADIR%%/tests/suite/innodb/t/innodb_i_s_innodb_trx.test X%%DATADIR%%/tests/suite/innodb/t/innodb_information_schema_buffer.test X%%DATADIR%%/tests/suite/innodb/t/innodb_lock_wait_timeout_1-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_lock_wait_timeout_1.test X%%DATADIR%%/tests/suite/innodb/t/innodb_misc1-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_misc1.test X%%DATADIR%%/tests/suite/innodb/t/innodb_multi_update.test X%%DATADIR%%/tests/suite/innodb/t/innodb_mysql-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_mysql.test X%%DATADIR%%/tests/suite/innodb/t/innodb_mysql_rbk-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_mysql_rbk.test X%%DATADIR%%/tests/suite/innodb/t/innodb_notembedded.test X%%DATADIR%%/tests/suite/innodb/t/innodb_page_size_func.test X%%DATADIR%%/tests/suite/innodb/t/innodb_pagesize_max_recordsize.test X%%DATADIR%%/tests/suite/innodb/t/innodb_prefix_index_restart_server.test X%%DATADIR%%/tests/suite/innodb/t/innodb_rename_index.test X%%DATADIR%%/tests/suite/innodb/t/innodb_rename_index_err.test X%%DATADIR%%/tests/suite/innodb/t/innodb_replace.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_auto_recalc.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_auto_recalc_ddl.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_auto_recalc_lots.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_auto_recalc_on_nonexistent.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_create_on_corrupted.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_create_table.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_drop_locked.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_external_pages.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_fetch.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_fetch_corrupted.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_fetch_nonexistent.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_flag_global_off-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_flag_global_off.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_flag_global_on-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_flag_global_on.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_rename_table.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_rename_table_if_exists.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_sample_pages.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_table_flag_auto_recalc.test X%%DATADIR%%/tests/suite/innodb/t/innodb_stats_table_flag_sample_pages.test X%%DATADIR%%/tests/suite/innodb/t/innodb_tablespace.test X%%DATADIR%%/tests/suite/innodb/t/innodb_tablespace_zip.test X%%DATADIR%%/tests/suite/innodb/t/innodb_thread_concurrency_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_timeout_rollback-master.opt X%%DATADIR%%/tests/suite/innodb/t/innodb_timeout_rollback.test X%%DATADIR%%/tests/suite/innodb/t/innodb_trx_weight.test X%%DATADIR%%/tests/suite/innodb/t/innodb_upd_stats_if_needed_not_inited.test X%%DATADIR%%/tests/suite/innodb/t/innodb_ut_format_name.test X%%DATADIR%%/tests/suite/innodb/t/innodb_v_basic.test X%%DATADIR%%/tests/suite/innodb/t/innodb_v_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_v_purge.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6326.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6326_big.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6469_1.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6469_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6470.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6470_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6501_crash_1.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6501_crash_2.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6501_crash_6.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6501_crash_7.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6501_crash_8.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6560_1.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6560_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6915.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl6915_debug.test X%%DATADIR%%/tests/suite/innodb/t/innodb_wl8114.test X%%DATADIR%%/tests/suite/innodb/t/insert_debug.test X%%DATADIR%%/tests/suite/innodb/t/log_alter_table.test X%%DATADIR%%/tests/suite/innodb/t/log_corruption.test X%%DATADIR%%/tests/suite/innodb/t/log_corruption.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption0.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption1.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption2.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption3.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption4.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption4a.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption5.zip X%%DATADIR%%/tests/suite/innodb/t/log_corruption6.zip X%%DATADIR%%/tests/suite/innodb/t/log_file.test X%%DATADIR%%/tests/suite/innodb/t/log_file_name.test X%%DATADIR%%/tests/suite/innodb/t/log_file_name_debug.test X%%DATADIR%%/tests/suite/innodb/t/log_file_size.test X%%DATADIR%%/tests/suite/innodb/t/log_file_size_1-master.opt X%%DATADIR%%/tests/suite/innodb/t/log_file_size_1.test X%%DATADIR%%/tests/suite/innodb/t/log_file_size_checkpoint.test X%%DATADIR%%/tests/suite/innodb/t/missing_tablespaces.test X%%DATADIR%%/tests/suite/innodb/t/monitor.test X%%DATADIR%%/tests/suite/innodb/t/monitor_debug.test X%%DATADIR%%/tests/suite/innodb/t/mysqldump_max_recordsize.test X%%DATADIR%%/tests/suite/innodb/t/optimizer_temporary_table-master.opt X%%DATADIR%%/tests/suite/innodb/t/optimizer_temporary_table.test X%%DATADIR%%/tests/suite/innodb/t/page_reorganize.test X%%DATADIR%%/tests/suite/innodb/t/partition-blob.test X%%DATADIR%%/tests/suite/innodb/t/partition-upgrade.test X%%DATADIR%%/tests/suite/innodb/t/partition.test X%%DATADIR%%/tests/suite/innodb/t/portability_wl5980_linux.zip X%%DATADIR%%/tests/suite/innodb/t/portability_wl5980_windows.zip X%%DATADIR%%/tests/suite/innodb/t/readonly.test X%%DATADIR%%/tests/suite/innodb/t/records_in_range.test X%%DATADIR%%/tests/suite/innodb/t/sp_temp_table.test X%%DATADIR%%/tests/suite/innodb/t/strict_checksum.test X%%DATADIR%%/tests/suite/innodb/t/strict_mode.test X%%DATADIR%%/tests/suite/innodb/t/table_compress.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_crash.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_embedded.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_embedded_windows.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_per_table.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_per_table_not_windows.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_per_table_windows.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_portability.test X%%DATADIR%%/tests/suite/innodb/t/tablespace_portability_windows.test X%%DATADIR%%/tests/suite/innodb/t/trx_id_future.test X%%DATADIR%%/tests/suite/innodb/t/undo.test X%%DATADIR%%/tests/suite/innodb/t/update-cascade.test X%%DATADIR%%/tests/suite/innodb/t/update_time-master.opt X%%DATADIR%%/tests/suite/innodb/t/update_time.test X%%DATADIR%%/tests/suite/innodb/t/update_time_wl6658.test X%%DATADIR%%/tests/suite/innodb/t/virtual_purge.test X%%DATADIR%%/tests/suite/innodb/t/xa_recovery.test X%%DATADIR%%/tests/suite/innodb/t/xa_recovery_debug.test X%%DATADIR%%/tests/suite/innodb_fts/include/mecab.inc X%%DATADIR%%/tests/suite/innodb_fts/include/ngram.inc X%%DATADIR%%/tests/suite/innodb_fts/include/ngram_token_size.inc X%%DATADIR%%/tests/suite/innodb_fts/include/tablespace_location.inc X%%DATADIR%%/tests/suite/innodb_fts/include/tablespace_location_alter.inc X%%DATADIR%%/tests/suite/innodb_fts/include/tablespace_location_error.inc X%%DATADIR%%/tests/suite/innodb_fts/r/basic.result X%%DATADIR%%/tests/suite/innodb_fts/r/compatibility.result X%%DATADIR%%/tests/suite/innodb_fts/r/compatibility_win.result X%%DATADIR%%/tests/suite/innodb_fts/r/ddl.result X%%DATADIR%%/tests/suite/innodb_fts/r/fic.result X%%DATADIR%%/tests/suite/innodb_fts/r/foreign_key_update.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext2.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext3.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_cache.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_distinct.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_left_join.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_misc.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_multi.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_order_by.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_update.result X%%DATADIR%%/tests/suite/innodb_fts/r/fulltext_var.result X%%DATADIR%%/tests/suite/innodb_fts/r/index_table.result X%%DATADIR%%/tests/suite/innodb_fts/r/innobase_drop_fts_index_table.result X%%DATADIR%%/tests/suite/innodb_fts/r/large_records.result X%%DATADIR%%/tests/suite/innodb_fts/r/mecab_sjis.result X%%DATADIR%%/tests/suite/innodb_fts/r/mecab_ujis.result X%%DATADIR%%/tests/suite/innodb_fts/r/mecab_utf8.result X%%DATADIR%%/tests/suite/innodb_fts/r/misc.result X%%DATADIR%%/tests/suite/innodb_fts/r/misc_1.result X%%DATADIR%%/tests/suite/innodb_fts/r/misc_debug.result X%%DATADIR%%/tests/suite/innodb_fts/r/multiple_index.result X%%DATADIR%%/tests/suite/innodb_fts/r/ngram.result X%%DATADIR%%/tests/suite/innodb_fts/r/ngram_1.result X%%DATADIR%%/tests/suite/innodb_fts/r/ngram_2.result X%%DATADIR%%/tests/suite/innodb_fts/r/ngram_debug.result X%%DATADIR%%/tests/suite/innodb_fts/r/opt.result X%%DATADIR%%/tests/suite/innodb_fts/r/phrase.result X%%DATADIR%%/tests/suite/innodb_fts/r/plugin.result X%%DATADIR%%/tests/suite/innodb_fts/r/plugin_1.result X%%DATADIR%%/tests/suite/innodb_fts/r/plugin_debug.result X%%DATADIR%%/tests/suite/innodb_fts/r/proximity.result X%%DATADIR%%/tests/suite/innodb_fts/r/result_cache_limit.result X%%DATADIR%%/tests/suite/innodb_fts/r/savepoint.result X%%DATADIR%%/tests/suite/innodb_fts/r/stopword.result X%%DATADIR%%/tests/suite/innodb_fts/r/stopword_charset.result X%%DATADIR%%/tests/suite/innodb_fts/r/subexpr.result X%%DATADIR%%/tests/suite/innodb_fts/r/tablespace_location.result X%%DATADIR%%/tests/suite/innodb_fts/r/tablespace_location_error.result X%%DATADIR%%/tests/suite/innodb_fts/r/transaction.result X%%DATADIR%%/tests/suite/innodb_fts/t/basic.test X%%DATADIR%%/tests/suite/innodb_fts/t/compatibility.test X%%DATADIR%%/tests/suite/innodb_fts/t/compatibility_win.test X%%DATADIR%%/tests/suite/innodb_fts/t/ddl.test X%%DATADIR%%/tests/suite/innodb_fts/t/disabled.def X%%DATADIR%%/tests/suite/innodb_fts/t/fic.test X%%DATADIR%%/tests/suite/innodb_fts/t/foreign_key_update.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext2.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext3.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_cache.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_distinct.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_left_join.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_misc.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_multi.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_order_by.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_plugin-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_update.test X%%DATADIR%%/tests/suite/innodb_fts/t/fulltext_var.test X%%DATADIR%%/tests/suite/innodb_fts/t/index_table.test X%%DATADIR%%/tests/suite/innodb_fts/t/innobase_drop_fts_index_table.test X%%DATADIR%%/tests/suite/innodb_fts/t/large_records.test X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_sjis-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_sjis.test X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_ujis-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_ujis.test X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_utf8-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/mecab_utf8.test X%%DATADIR%%/tests/suite/innodb_fts/t/misc.test X%%DATADIR%%/tests/suite/innodb_fts/t/misc_1.test X%%DATADIR%%/tests/suite/innodb_fts/t/misc_debug.test X%%DATADIR%%/tests/suite/innodb_fts/t/multiple_index.test X%%DATADIR%%/tests/suite/innodb_fts/t/ngram-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/ngram.test X%%DATADIR%%/tests/suite/innodb_fts/t/ngram_1.test X%%DATADIR%%/tests/suite/innodb_fts/t/ngram_2-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/ngram_2.test X%%DATADIR%%/tests/suite/innodb_fts/t/ngram_debug.test X%%DATADIR%%/tests/suite/innodb_fts/t/opt-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/opt.test X%%DATADIR%%/tests/suite/innodb_fts/t/phrase.test X%%DATADIR%%/tests/suite/innodb_fts/t/plugin-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/plugin.test X%%DATADIR%%/tests/suite/innodb_fts/t/plugin_1-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/plugin_1.test X%%DATADIR%%/tests/suite/innodb_fts/t/plugin_debug-master.opt X%%DATADIR%%/tests/suite/innodb_fts/t/plugin_debug.test X%%DATADIR%%/tests/suite/innodb_fts/t/proximity.test X%%DATADIR%%/tests/suite/innodb_fts/t/result_cache_limit.test X%%DATADIR%%/tests/suite/innodb_fts/t/savepoint.test X%%DATADIR%%/tests/suite/innodb_fts/t/stopword.test X%%DATADIR%%/tests/suite/innodb_fts/t/subexpr.test X%%DATADIR%%/tests/suite/innodb_fts/t/tablespace_location.test X%%DATADIR%%/tests/suite/innodb_fts/t/tablespace_location_error.test X%%DATADIR%%/tests/suite/innodb_fts/t/transaction.test X%%DATADIR%%/tests/suite/innodb_gis/r/0.result X%%DATADIR%%/tests/suite/innodb_gis/r/1.result X%%DATADIR%%/tests/suite/innodb_gis/r/alter_spatial_index.result X%%DATADIR%%/tests/suite/innodb_gis/r/bug16236208.result X%%DATADIR%%/tests/suite/innodb_gis/r/bug16266012.result X%%DATADIR%%/tests/suite/innodb_gis/r/bug17057168.result X%%DATADIR%%/tests/suite/innodb_gis/r/check_rtree.result X%%DATADIR%%/tests/suite/innodb_gis/r/create_spatial_index.result X%%DATADIR%%/tests/suite/innodb_gis/r/geometry.result X%%DATADIR%%/tests/suite/innodb_gis/r/gis.result X%%DATADIR%%/tests/suite/innodb_gis/r/gis_split_inf.result X%%DATADIR%%/tests/suite/innodb_gis/r/gis_split_nan.result X%%DATADIR%%/tests/suite/innodb_gis/r/kill_server.result X%%DATADIR%%/tests/suite/innodb_gis/r/multi_pk.result X%%DATADIR%%/tests/suite/innodb_gis/r/point_basic.result X%%DATADIR%%/tests/suite/innodb_gis/r/point_big.result X%%DATADIR%%/tests/suite/innodb_gis/r/precise.result X%%DATADIR%%/tests/suite/innodb_gis/r/repeatable_spatial.result X%%DATADIR%%/tests/suite/innodb_gis/r/rollback.result X%%DATADIR%%/tests/suite/innodb_gis/r/row_format.result X%%DATADIR%%/tests/suite/innodb_gis/r/rt_precise.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_compress.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_compress2.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_concurrent_srch.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_crash.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_create_inplace.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_debug.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_estimate.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_multi_pk.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_old.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_recovery.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_rollback1.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_rollback2.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_search.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_split.result X%%DATADIR%%/tests/suite/innodb_gis/r/rtree_undo.result X%%DATADIR%%/tests/suite/innodb_gis/r/types.result X%%DATADIR%%/tests/suite/innodb_gis/r/update_root.result X%%DATADIR%%/tests/suite/innodb_gis/t/0.test X%%DATADIR%%/tests/suite/innodb_gis/t/1.test X%%DATADIR%%/tests/suite/innodb_gis/t/alter_spatial_index.test X%%DATADIR%%/tests/suite/innodb_gis/t/bug16236208.test X%%DATADIR%%/tests/suite/innodb_gis/t/bug16266012.test X%%DATADIR%%/tests/suite/innodb_gis/t/bug17057168.test X%%DATADIR%%/tests/suite/innodb_gis/t/check_rtree.test X%%DATADIR%%/tests/suite/innodb_gis/t/create_spatial_index.test X%%DATADIR%%/tests/suite/innodb_gis/t/geometry.test X%%DATADIR%%/tests/suite/innodb_gis/t/gis.test X%%DATADIR%%/tests/suite/innodb_gis/t/gis_split_inf.test X%%DATADIR%%/tests/suite/innodb_gis/t/gis_split_nan.test X%%DATADIR%%/tests/suite/innodb_gis/t/kill_server.test X%%DATADIR%%/tests/suite/innodb_gis/t/multi_pk.test X%%DATADIR%%/tests/suite/innodb_gis/t/point_basic.test X%%DATADIR%%/tests/suite/innodb_gis/t/point_big.test X%%DATADIR%%/tests/suite/innodb_gis/t/precise.test X%%DATADIR%%/tests/suite/innodb_gis/t/repeatable_spatial.test X%%DATADIR%%/tests/suite/innodb_gis/t/rollback.test X%%DATADIR%%/tests/suite/innodb_gis/t/row_format.test X%%DATADIR%%/tests/suite/innodb_gis/t/rt_precise.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_compress.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_compress2.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_concurrent_srch.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_create_inplace.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_debug.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_estimate.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_multi_pk.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_old.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_recovery.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_rollback1.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_rollback2.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_search.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_split.test X%%DATADIR%%/tests/suite/innodb_gis/t/rtree_undo.test X%%DATADIR%%/tests/suite/innodb_gis/t/types.test X%%DATADIR%%/tests/suite/innodb_gis/t/update_root.test X%%DATADIR%%/tests/suite/innodb_stress/include/innodb_stress.inc X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_crash.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_crash_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_crash_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_crash_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_bigstress_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_crash.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_crash_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_crash_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_crash_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_hugestress_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_crash.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_crash_blob.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_crash_blob_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_crash_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/r/innodb_stress_nocompress.result X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_crash_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_bigstress_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_crash_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_hugestress_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_blob_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_crash_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_nocompress-master.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_nocompress-slave.opt X%%DATADIR%%/tests/suite/innodb_stress/t/innodb_stress_nocompress.test X%%DATADIR%%/tests/suite/innodb_stress/t/load_generator.py X%%DATADIR%%/tests/suite/innodb_undo/include/i_s_files.inc X%%DATADIR%%/tests/suite/innodb_undo/include/undo_log_trunc_recv.inc X%%DATADIR%%/tests/suite/innodb_undo/include/undo_trunc_multi_client.inc X%%DATADIR%%/tests/suite/innodb_undo/r/i_s_files_16k.result X%%DATADIR%%/tests/suite/innodb_undo/r/i_s_files_32k.result X%%DATADIR%%/tests/suite/innodb_undo/r/i_s_files_4k.result X%%DATADIR%%/tests/suite/innodb_undo/r/i_s_files_64k.result X%%DATADIR%%/tests/suite/innodb_undo/r/i_s_files_8k.result X%%DATADIR%%/tests/suite/innodb_undo/r/trunc_multi_client_01.result X%%DATADIR%%/tests/suite/innodb_undo/r/trunc_multi_client_02.result X%%DATADIR%%/tests/suite/innodb_undo/r/truncate.result X%%DATADIR%%/tests/suite/innodb_undo/r/truncate_recover.result X%%DATADIR%%/tests/suite/innodb_undo/t/i_s_files_16k.test X%%DATADIR%%/tests/suite/innodb_undo/t/i_s_files_32k.test X%%DATADIR%%/tests/suite/innodb_undo/t/i_s_files_4k.test X%%DATADIR%%/tests/suite/innodb_undo/t/i_s_files_64k.test X%%DATADIR%%/tests/suite/innodb_undo/t/i_s_files_8k.test X%%DATADIR%%/tests/suite/innodb_undo/t/noop-master.opt X%%DATADIR%%/tests/suite/innodb_undo/t/noop.test X%%DATADIR%%/tests/suite/innodb_undo/t/trunc_multi_client_01-master.opt X%%DATADIR%%/tests/suite/innodb_undo/t/trunc_multi_client_01.test X%%DATADIR%%/tests/suite/innodb_undo/t/trunc_multi_client_02-master.opt X%%DATADIR%%/tests/suite/innodb_undo/t/trunc_multi_client_02.test X%%DATADIR%%/tests/suite/innodb_undo/t/truncate-master.opt X%%DATADIR%%/tests/suite/innodb_undo/t/truncate.test X%%DATADIR%%/tests/suite/innodb_undo/t/truncate_recover-master.opt X%%DATADIR%%/tests/suite/innodb_undo/t/truncate_recover.test X%%DATADIR%%/tests/suite/innodb_zip/include/innodb-wl6045.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_create_tab_indx.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_dml_ops.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_fetch_records.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_load_data.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_stats_comp_index.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_stats_restart.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_temp_table_dml.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_wl6501_crash_stripped.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_wl6501_error.inc X%%DATADIR%%/tests/suite/innodb_zip/include/innodb_wl6501_scale.inc X%%DATADIR%%/tests/suite/innodb_zip/r/16k.result X%%DATADIR%%/tests/suite/innodb_zip/r/4k.result X%%DATADIR%%/tests/suite/innodb_zip/r/8k.result X%%DATADIR%%/tests/suite/innodb_zip/r/bug36169.result X%%DATADIR%%/tests/suite/innodb_zip/r/bug36172.result X%%DATADIR%%/tests/suite/innodb_zip/r/bug52745.result X%%DATADIR%%/tests/suite/innodb_zip/r/bug53591.result X%%DATADIR%%/tests/suite/innodb_zip/r/bug56680.result X%%DATADIR%%/tests/suite/innodb_zip/r/cmp_drop_table.result X%%DATADIR%%/tests/suite/innodb_zip/r/cmp_per_index.result X%%DATADIR%%/tests/suite/innodb_zip/r/create_options.result X%%DATADIR%%/tests/suite/innodb_zip/r/index_large_prefix.result X%%DATADIR%%/tests/suite/innodb_zip/r/index_large_prefix_4k.result X%%DATADIR%%/tests/suite/innodb_zip/r/index_large_prefix_8k.result X%%DATADIR%%/tests/suite/innodb_zip/r/innochecksum.result X%%DATADIR%%/tests/suite/innodb_zip/r/innochecksum_2.result X%%DATADIR%%/tests/suite/innodb_zip/r/innochecksum_3.result X%%DATADIR%%/tests/suite/innodb_zip/r/large_blob.result X%%DATADIR%%/tests/suite/innodb_zip/r/prefix_index_liftedlimit.result X%%DATADIR%%/tests/suite/innodb_zip/r/restart.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl5522_debug_zip.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl5522_zip.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6344_compress_level.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6347_comp_indx_stat.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6469.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6470_1.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6470_2.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_1.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_crash_3.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_crash_4.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_crash_5.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_debug.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_error_1.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6501_scale_1.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6560.result X%%DATADIR%%/tests/suite/innodb_zip/r/wl6915_1.result X%%DATADIR%%/tests/suite/innodb_zip/r/zip.result X%%DATADIR%%/tests/suite/innodb_zip/t/16k.test X%%DATADIR%%/tests/suite/innodb_zip/t/4k.test X%%DATADIR%%/tests/suite/innodb_zip/t/8k.test X%%DATADIR%%/tests/suite/innodb_zip/t/bug36169.test X%%DATADIR%%/tests/suite/innodb_zip/t/bug36172.test X%%DATADIR%%/tests/suite/innodb_zip/t/bug52745.test X%%DATADIR%%/tests/suite/innodb_zip/t/bug53591.test X%%DATADIR%%/tests/suite/innodb_zip/t/bug56680.test X%%DATADIR%%/tests/suite/innodb_zip/t/cmp_drop_table-master.opt X%%DATADIR%%/tests/suite/innodb_zip/t/cmp_drop_table.test X%%DATADIR%%/tests/suite/innodb_zip/t/cmp_per_index.test X%%DATADIR%%/tests/suite/innodb_zip/t/create_options.test X%%DATADIR%%/tests/suite/innodb_zip/t/disabled.def X%%DATADIR%%/tests/suite/innodb_zip/t/index_large_prefix.test X%%DATADIR%%/tests/suite/innodb_zip/t/index_large_prefix_4k.test X%%DATADIR%%/tests/suite/innodb_zip/t/index_large_prefix_8k.test X%%DATADIR%%/tests/suite/innodb_zip/t/innochecksum.test X%%DATADIR%%/tests/suite/innodb_zip/t/innochecksum_2.test X%%DATADIR%%/tests/suite/innodb_zip/t/innochecksum_3.test X%%DATADIR%%/tests/suite/innodb_zip/t/large_blob-master.opt X%%DATADIR%%/tests/suite/innodb_zip/t/large_blob.test X%%DATADIR%%/tests/suite/innodb_zip/t/prefix_index_liftedlimit.test X%%DATADIR%%/tests/suite/innodb_zip/t/restart.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl5522_debug_zip.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl5522_zip.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6344_compress_level.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6347_comp_indx_stat.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6469.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6470_1.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6470_2.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_1.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_crash_3.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_crash_4.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_crash_5.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_debug.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_error_1.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6501_scale_1.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6560.test X%%DATADIR%%/tests/suite/innodb_zip/t/wl6915_1.test X%%DATADIR%%/tests/suite/innodb_zip/t/zip.test X%%DATADIR%%/tests/suite/interactive_utilities/r/mysql_secure_installation.result X%%DATADIR%%/tests/suite/interactive_utilities/r/mysql_secure_installation_ssl.result X%%DATADIR%%/tests/suite/interactive_utilities/t/mysql_secure_installation-master.opt X%%DATADIR%%/tests/suite/interactive_utilities/t/mysql_secure_installation.test X%%DATADIR%%/tests/suite/interactive_utilities/t/mysql_secure_installation_ssl-master.opt X%%DATADIR%%/tests/suite/interactive_utilities/t/mysql_secure_installation_ssl.test X%%DATADIR%%/tests/suite/jp/include/trim_sjis.inc X%%DATADIR%%/tests/suite/jp/r/jp_alter_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_alter_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_alter_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_alter_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_charlength_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_charlength_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_charlength_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_charlength_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_charset_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_charset_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_charset_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_charset_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_convert_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_convert_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_convert_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_convert_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_create_db_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_create_db_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_create_db_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_create_db_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_create_tbl_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_create_tbl_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_create_tbl_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_create_tbl_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_enum_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_enum_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_enum_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_enum_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_insert_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_insert_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_insert_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_insert_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_instr_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_instr_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_instr_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_instr_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_join_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_join_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_join_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_join_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_left_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_left_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_left_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_left_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_length_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_length_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_length_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_length_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_like_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_like_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_like_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_like_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_locate_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_locate_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_locate_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_locate_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_lpad_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_lpad_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_lpad_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_lpad_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_ltrim_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_ltrim_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_ltrim_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_ltrim_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_ps_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_ps_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_replace_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_replace_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_replace_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_replace_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_reverse_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_reverse_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_reverse_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_reverse_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_right_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_right_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_right_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_right_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_rpad_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_rpad_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_rpad_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_rpad_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_rtrim_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_rtrim_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_rtrim_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_rtrim_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_select_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_select_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_select_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_select_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_subquery_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_subquery_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_subquery_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_subquery_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_substring_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_substring_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_substring_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_substring_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_trim_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_trim_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_trim_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_trim_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_union_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_update_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_update_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_update_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_update_utf8.result X%%DATADIR%%/tests/suite/jp/r/jp_where_sjis.result X%%DATADIR%%/tests/suite/jp/r/jp_where_ucs2.result X%%DATADIR%%/tests/suite/jp/r/jp_where_ujis.result X%%DATADIR%%/tests/suite/jp/r/jp_where_utf8.result X%%DATADIR%%/tests/suite/jp/std_data/jisx0201_sjis.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0201_ucs2.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0201_ujis.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0201_utf8.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_sjis.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_sjis2.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_sjis3.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_ucs2.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_ujis.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0208_utf8.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0212_ucs2.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0212_ujis.dat X%%DATADIR%%/tests/suite/jp/std_data/jisx0212_utf8.dat X%%DATADIR%%/tests/suite/jp/t/disabled.def X%%DATADIR%%/tests/suite/jp/t/jp_alter_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_alter_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_alter_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_alter_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_charlength_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_charlength_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_charlength_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_charlength_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_charset_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_charset_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_charset_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_charset_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_convert_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_convert_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_convert_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_convert_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_create_db_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_create_db_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_create_db_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_create_db_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_create_tbl_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_create_tbl_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_create_tbl_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_create_tbl_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_enum_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_enum_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_enum_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_enum_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_insert_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_insert_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_insert_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_insert_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_instr_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_instr_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_instr_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_instr_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_join_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_join_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_join_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_join_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_left_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_left_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_left_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_left_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_length_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_length_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_length_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_length_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_like_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_like_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_like_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_like_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_locate_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_locate_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_locate_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_locate_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_lpad_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_lpad_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_lpad_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_lpad_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_ltrim_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_ltrim_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_ltrim_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_ltrim_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_ps_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_ps_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_replace_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_replace_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_replace_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_replace_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_reverse_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_reverse_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_reverse_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_reverse_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_right_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_right_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_right_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_right_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_rpad_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_rpad_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_rpad_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_rpad_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_rtrim_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_rtrim_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_rtrim_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_rtrim_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_select_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_select_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_select_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_select_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_subquery_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_subquery_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_subquery_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_subquery_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_substring_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_substring_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_substring_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_substring_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_trim_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_trim_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_trim_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_trim_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_union_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_update_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_update_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_update_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_update_utf8.test X%%DATADIR%%/tests/suite/jp/t/jp_where_sjis.test X%%DATADIR%%/tests/suite/jp/t/jp_where_ucs2.test X%%DATADIR%%/tests/suite/jp/t/jp_where_ujis.test X%%DATADIR%%/tests/suite/jp/t/jp_where_utf8.test X%%DATADIR%%/tests/suite/large_tests/README.TXT X%%DATADIR%%/tests/suite/large_tests/r/alter_table.result X%%DATADIR%%/tests/suite/large_tests/r/innodb_innochecksum_3gb.result X%%DATADIR%%/tests/suite/large_tests/r/lock_tables_big.result X%%DATADIR%%/tests/suite/large_tests/r/rpl_slave_net_timeout.result X%%DATADIR%%/tests/suite/large_tests/t/alter_table.test X%%DATADIR%%/tests/suite/large_tests/t/innodb_innochecksum_3gb.test X%%DATADIR%%/tests/suite/large_tests/t/lock_tables_big.test X%%DATADIR%%/tests/suite/large_tests/t/rpl_slave_net_timeout-slave.opt X%%DATADIR%%/tests/suite/large_tests/t/rpl_slave_net_timeout.test X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_parts_hash.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_parts_inv.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_parts_key.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_parts_list.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_parts_range.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_sub_parts_key_list.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_sub_parts_key_range.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_sub_parts_list.inc X%%DATADIR%%/tests/suite/max_parts/inc/partition_max_sub_parts_range.inc X%%DATADIR%%/tests/suite/max_parts/r/innodb-import-partition-1.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_hash_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_hash_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_inv_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_inv_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_key_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_key_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_list_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_list_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_range_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_parts_range_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_key_list_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_key_list_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_key_range_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_key_range_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_list_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_list_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_range_innodb.result X%%DATADIR%%/tests/suite/max_parts/r/partition_max_sub_parts_range_myisam.result X%%DATADIR%%/tests/suite/max_parts/r/partition_open_files_limit.result X%%DATADIR%%/tests/suite/max_parts/t/innodb-import-partition-1.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_hash_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_hash_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_hash_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_hash_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_inv_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_inv_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_inv_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_inv_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_key_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_key_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_key_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_key_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_list_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_list_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_list_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_list_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_range_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_range_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_range_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_parts_range_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_list_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_list_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_list_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_list_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_range_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_range_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_range_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_key_range_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_list_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_list_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_list_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_list_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_range_innodb-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_range_innodb.test X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_range_myisam-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_max_sub_parts_range_myisam.test X%%DATADIR%%/tests/suite/max_parts/t/partition_open_files_limit-master.opt X%%DATADIR%%/tests/suite/max_parts/t/partition_open_files_limit.test X%%DATADIR%%/tests/suite/memcached/README X%%DATADIR%%/tests/suite/memcached/r/memc212_2_cols.result X%%DATADIR%%/tests/suite/memcached/r/memc213_2_intcols.result X%%DATADIR%%/tests/suite/memcached/r/memc214_5_cols.result X%%DATADIR%%/tests/suite/memcached/r/memc215_50_cols.result X%%DATADIR%%/tests/suite/memcached/r/memc216_5_utf8.result X%%DATADIR%%/tests/suite/memcached/r/memc217_add.result X%%DATADIR%%/tests/suite/memcached/r/memc218_decr.result X%%DATADIR%%/tests/suite/memcached/r/memc219_delete.result X%%DATADIR%%/tests/suite/memcached/r/memc220_fkey_1.result X%%DATADIR%%/tests/suite/memcached/r/memc221_get.result X%%DATADIR%%/tests/suite/memcached/r/memc222_incr.result X%%DATADIR%%/tests/suite/memcached/r/memc223_index_1.result X%%DATADIR%%/tests/suite/memcached/r/memc224_index_2.result X%%DATADIR%%/tests/suite/memcached/r/memc225_index_3.result X%%DATADIR%%/tests/suite/memcached/r/memc226_index_4.result X%%DATADIR%%/tests/suite/memcached/r/memc227_lock.result X%%DATADIR%%/tests/suite/memcached/r/memc228_mdl_1.result X%%DATADIR%%/tests/suite/memcached/r/memc229_mdl_2.result X%%DATADIR%%/tests/suite/memcached/r/memc230_mdl_3.result X%%DATADIR%%/tests/suite/memcached/r/memc231_mdl_4.result X%%DATADIR%%/tests/suite/memcached/r/memc232_NULL_cols.result X%%DATADIR%%/tests/suite/memcached/r/memc233_option.result X%%DATADIR%%/tests/suite/memcached/r/memc234_r_batch_1.result X%%DATADIR%%/tests/suite/memcached/r/memc235_r_batch_2.result X%%DATADIR%%/tests/suite/memcached/r/memc236_r_batch_3.result X%%DATADIR%%/tests/suite/memcached/r/memc237_sep_1.result X%%DATADIR%%/tests/suite/memcached/r/memc238_sep_2.result X%%DATADIR%%/tests/suite/memcached/r/memc239_sep_3.result X%%DATADIR%%/tests/suite/memcached/r/memc240_sep_4.result X%%DATADIR%%/tests/suite/memcached/r/memc241_replace.result X%%DATADIR%%/tests/suite/memcached/r/memc242_set.result X%%DATADIR%%/tests/suite/memcached/r/memc243_view.result X%%DATADIR%%/tests/suite/memcached/r/memc244_w_batch_1.result X%%DATADIR%%/tests/suite/memcached/r/memc245_w_batch_2.result X%%DATADIR%%/tests/suite/memcached/r/memc246_w_batch_3.result X%%DATADIR%%/tests/suite/memcached/r/memc247_cache_policy.result X%%DATADIR%%/tests/suite/memcached/r/memc248_fkey_2.result X%%DATADIR%%/tests/suite/memcached/r/memc250_container.result X%%DATADIR%%/tests/suite/memcached/r/memc251_w_batch_6.result X%%DATADIR%%/tests/suite/memcached/r/memc261_container_errs.result X%%DATADIR%%/tests/suite/memcached/r/memc263_r_batch_4.result X%%DATADIR%%/tests/suite/memcached/r/memc265_r_batch_5.result X%%DATADIR%%/tests/suite/memcached/r/memc266_w_batch_4.result X%%DATADIR%%/tests/suite/memcached/r/memc267_w_batch_5.result X%%DATADIR%%/tests/suite/memcached/r/memc268_w_batch_7.result X%%DATADIR%%/tests/suite/memcached/r/memc269_funcs_1.result X%%DATADIR%%/tests/suite/memcached/r/memc272_2_tables.result X%%DATADIR%%/tests/suite/memcached/r/memc273_5_tables.result X%%DATADIR%%/tests/suite/memcached/r/memc274_5_tables_uml.result X%%DATADIR%%/tests/suite/memcached/r/memc275_5_tables_index.result X%%DATADIR%%/tests/suite/memcached/r/memc276_1_table.result X%%DATADIR%%/tests/suite/memcached/r/memc277_default_table.result X%%DATADIR%%/tests/suite/memcached/r/memc278_view.result X%%DATADIR%%/tests/suite/memcached/r/memc280_misc.result X%%DATADIR%%/tests/suite/memcached/r/memc281_set_utf8.result X%%DATADIR%%/tests/suite/memcached/r/memc282_time_expire.result X%%DATADIR%%/tests/suite/memcached/r/memc283_misc.result X%%DATADIR%%/tests/suite/memcached/r/memc284_misc.result X%%DATADIR%%/tests/suite/memcached/r/memc285_FTWRL.result X%%DATADIR%%/tests/suite/memcached/r/rpl_memc270_1.result X%%DATADIR%%/tests/suite/memcached/r/rpl_memc271_2.result X%%DATADIR%%/tests/suite/memcached/t/memc212_2_cols-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc212_2_cols.test X%%DATADIR%%/tests/suite/memcached/t/memc213_2_intcols-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc213_2_intcols.test X%%DATADIR%%/tests/suite/memcached/t/memc214_5_cols-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc214_5_cols.test X%%DATADIR%%/tests/suite/memcached/t/memc215_50_cols-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc215_50_cols.test X%%DATADIR%%/tests/suite/memcached/t/memc216_5_utf8-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc216_5_utf8.test X%%DATADIR%%/tests/suite/memcached/t/memc217_add-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc217_add.test X%%DATADIR%%/tests/suite/memcached/t/memc218_decr-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc218_decr.test X%%DATADIR%%/tests/suite/memcached/t/memc219_delete-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc219_delete.test X%%DATADIR%%/tests/suite/memcached/t/memc220_fkey_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc220_fkey_1.test X%%DATADIR%%/tests/suite/memcached/t/memc221_get-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc221_get.test X%%DATADIR%%/tests/suite/memcached/t/memc222_incr-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc222_incr.test X%%DATADIR%%/tests/suite/memcached/t/memc223_index_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc223_index_1.test X%%DATADIR%%/tests/suite/memcached/t/memc224_index_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc224_index_2.test X%%DATADIR%%/tests/suite/memcached/t/memc225_index_3-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc225_index_3.test X%%DATADIR%%/tests/suite/memcached/t/memc226_index_4-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc226_index_4.test X%%DATADIR%%/tests/suite/memcached/t/memc227_lock-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc227_lock.test X%%DATADIR%%/tests/suite/memcached/t/memc228_mdl_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc228_mdl_1.test X%%DATADIR%%/tests/suite/memcached/t/memc229_mdl_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc229_mdl_2.test X%%DATADIR%%/tests/suite/memcached/t/memc230_mdl_3-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc230_mdl_3.test X%%DATADIR%%/tests/suite/memcached/t/memc231_mdl_4-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc231_mdl_4.test X%%DATADIR%%/tests/suite/memcached/t/memc232_NULL_cols-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc232_NULL_cols.test X%%DATADIR%%/tests/suite/memcached/t/memc233_option-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc233_option.test X%%DATADIR%%/tests/suite/memcached/t/memc234_r_batch_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc234_r_batch_1.test X%%DATADIR%%/tests/suite/memcached/t/memc235_r_batch_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc235_r_batch_2.test X%%DATADIR%%/tests/suite/memcached/t/memc236_r_batch_3-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc236_r_batch_3.test X%%DATADIR%%/tests/suite/memcached/t/memc237_sep_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc237_sep_1.test X%%DATADIR%%/tests/suite/memcached/t/memc238_sep_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc238_sep_2.test X%%DATADIR%%/tests/suite/memcached/t/memc239_sep_3-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc239_sep_3.test X%%DATADIR%%/tests/suite/memcached/t/memc240_sep_4-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc240_sep_4.test X%%DATADIR%%/tests/suite/memcached/t/memc241_replace-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc241_replace.test X%%DATADIR%%/tests/suite/memcached/t/memc242_set-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc242_set.test X%%DATADIR%%/tests/suite/memcached/t/memc243_view-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc243_view.test X%%DATADIR%%/tests/suite/memcached/t/memc244_w_batch_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc244_w_batch_1.test X%%DATADIR%%/tests/suite/memcached/t/memc245_w_batch_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc245_w_batch_2.test X%%DATADIR%%/tests/suite/memcached/t/memc246_w_batch_3-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc246_w_batch_3.test X%%DATADIR%%/tests/suite/memcached/t/memc247_cache_policy-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc247_cache_policy.test X%%DATADIR%%/tests/suite/memcached/t/memc248_fkey_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc248_fkey_2.test X%%DATADIR%%/tests/suite/memcached/t/memc250_container-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc250_container.test X%%DATADIR%%/tests/suite/memcached/t/memc251_w_batch_6-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc251_w_batch_6.test X%%DATADIR%%/tests/suite/memcached/t/memc261_container_errs-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc261_container_errs.test X%%DATADIR%%/tests/suite/memcached/t/memc263_r_batch_4-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc263_r_batch_4.test X%%DATADIR%%/tests/suite/memcached/t/memc265_r_batch_5-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc265_r_batch_5.test X%%DATADIR%%/tests/suite/memcached/t/memc266_w_batch_4-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc266_w_batch_4.test X%%DATADIR%%/tests/suite/memcached/t/memc267_w_batch_5-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc267_w_batch_5.test X%%DATADIR%%/tests/suite/memcached/t/memc268_w_batch_7-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc268_w_batch_7.test X%%DATADIR%%/tests/suite/memcached/t/memc269_funcs_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc269_funcs_1.test X%%DATADIR%%/tests/suite/memcached/t/memc272_2_tables-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc272_2_tables.test X%%DATADIR%%/tests/suite/memcached/t/memc273_5_tables-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc273_5_tables.test X%%DATADIR%%/tests/suite/memcached/t/memc274_5_tables_uml-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc274_5_tables_uml.test X%%DATADIR%%/tests/suite/memcached/t/memc275_5_tables_index-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc275_5_tables_index.test X%%DATADIR%%/tests/suite/memcached/t/memc276_1_table-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc276_1_table.test X%%DATADIR%%/tests/suite/memcached/t/memc277_default_table-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc277_default_table.test X%%DATADIR%%/tests/suite/memcached/t/memc278_view-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc278_view.test X%%DATADIR%%/tests/suite/memcached/t/memc280_misc-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc280_misc.test X%%DATADIR%%/tests/suite/memcached/t/memc281_set_utf8-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc281_set_utf8.test X%%DATADIR%%/tests/suite/memcached/t/memc282_time_expire-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc282_time_expire.test X%%DATADIR%%/tests/suite/memcached/t/memc283_misc-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc283_misc.test X%%DATADIR%%/tests/suite/memcached/t/memc284_misc-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc284_misc.test X%%DATADIR%%/tests/suite/memcached/t/memc285_FTWRL-master.opt X%%DATADIR%%/tests/suite/memcached/t/memc285_FTWRL.test X%%DATADIR%%/tests/suite/memcached/t/rpl_memc270_1-master.opt X%%DATADIR%%/tests/suite/memcached/t/rpl_memc270_1-slave.opt X%%DATADIR%%/tests/suite/memcached/t/rpl_memc270_1.test X%%DATADIR%%/tests/suite/memcached/t/rpl_memc271_2-master.opt X%%DATADIR%%/tests/suite/memcached/t/rpl_memc271_2-slave.opt X%%DATADIR%%/tests/suite/memcached/t/rpl_memc271_2.test X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2.1.log X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/50/BACKUP-2.2.log X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_d2_be/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_d2_le/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_data_be/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_data_le/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_dd/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_be/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/51_undolog_le/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/before_native_default/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/bug17275798/BACKUP-1-0.21.Data X%%DATADIR%%/tests/suite/ndb/backups/bug17275798/BACKUP-1.21.ctl X%%DATADIR%%/tests/suite/ndb/backups/bug17275798/BACKUP-1.21.log X%%DATADIR%%/tests/suite/ndb/backups/bug54613/BACKUP-2.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/hashmap/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/packed/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/packed/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/packed/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1-0.1.Data X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1-0.2.Data X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1.1.ctl X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1.1.log X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1.2.ctl X%%DATADIR%%/tests/suite/ndb/backups/wl946_pre/BACKUP-1.2.log X%%DATADIR%%/tests/suite/ndb/bug12712109.ini X%%DATADIR%%/tests/suite/ndb/bug49400.ini X%%DATADIR%%/tests/suite/ndb/bug56185.ini X%%DATADIR%%/tests/suite/ndb/data/table_data10000.dat X%%DATADIR%%/tests/suite/ndb/data/table_data100000.dat X%%DATADIR%%/tests/suite/ndb/data/wl946_main3.dat X%%DATADIR%%/tests/suite/ndb/data/wl946_main6.dat X%%DATADIR%%/tests/suite/ndb/data/wl946_pre.dat X%%DATADIR%%/tests/suite/ndb/include/have_clusterj.inc X%%DATADIR%%/tests/suite/ndb/include/have_clusterj_jpa.inc X%%DATADIR%%/tests/suite/ndb/include/have_connectorj.inc X%%DATADIR%%/tests/suite/ndb/include/have_java.inc X%%DATADIR%%/tests/suite/ndb/include/have_little_endian.inc X%%DATADIR%%/tests/suite/ndb/include/have_ndb_rqg.inc X%%DATADIR%%/tests/suite/ndb/include/have_ndbjtie_junit.inc X%%DATADIR%%/tests/suite/ndb/include/have_openjpa.inc X%%DATADIR%%/tests/suite/ndb/include/memory_usage.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_add_node.cnf X%%DATADIR%%/tests/suite/ndb/include/ndb_add_node_mysqld.cnf X%%DATADIR%%/tests/suite/ndb/include/ndb_addnode_restart_setup.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_check_blob_tables.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_check_unique_index.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_desc_print.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_diff_tables.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_error_reporter.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_execute_count.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_find_index_stat_tool.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_find_print_file_tool.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_get_blob_tables.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_info.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_init_execute_count.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_init_scan_counts.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_scan_counts.inc X%%DATADIR%%/tests/suite/ndb/include/ndb_share_check_shares.inc X%%DATADIR%%/tests/suite/ndb/include/restart_cluster.inc X%%DATADIR%%/tests/suite/ndb/include/restart_cluster_rolling.inc X%%DATADIR%%/tests/suite/ndb/include/restart_node.inc X%%DATADIR%%/tests/suite/ndb/include/restart_random_node.inc X%%DATADIR%%/tests/suite/ndb/include/restore_sql_mode_after_turn_off_strict.inc X%%DATADIR%%/tests/suite/ndb/include/run_java.inc X%%DATADIR%%/tests/suite/ndb/include/run_ndbapitest.inc X%%DATADIR%%/tests/suite/ndb/include/start_mysqld.inc X%%DATADIR%%/tests/suite/ndb/include/stop_mysqld.inc X%%DATADIR%%/tests/suite/ndb/include/turn_off_strict_sql_mode.inc X%%DATADIR%%/tests/suite/ndb/my.cnf X%%DATADIR%%/tests/suite/ndb/ndb_config_config.ini X%%DATADIR%%/tests/suite/ndb/ndb_config_mycnf1.cnf X%%DATADIR%%/tests/suite/ndb/ndb_config_mycnf2.cnf X%%DATADIR%%/tests/suite/ndb/ndb_config_threadconfig.ini X%%DATADIR%%/tests/suite/ndb/r/bug36547.result X%%DATADIR%%/tests/suite/ndb/r/loaddata_autocom_ndb.result X%%DATADIR%%/tests/suite/ndb/r/ndb_add_partition.result X%%DATADIR%%/tests/suite/ndb/r/ndb_addnode_restart.result X%%DATADIR%%/tests/suite/ndb/r/ndb_addnode_restart2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table3.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_backup.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_dml.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_error.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_online.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_online2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_alter_table_online_multi.result X%%DATADIR%%/tests/suite/ndb/r/ndb_auto_increment.result X%%DATADIR%%/tests/suite/ndb/r/ndb_autoinc.result X%%DATADIR%%/tests/suite/ndb/r/ndb_backup_rate.result X%%DATADIR%%/tests/suite/ndb/r/ndb_basic.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bitfield.result X%%DATADIR%%/tests/suite/ndb/r/ndb_blob.result X%%DATADIR%%/tests/suite/ndb/r/ndb_blob_big.result X%%DATADIR%%/tests/suite/ndb/r/ndb_blob_partition.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug13563280.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug14166590.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug17624736.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug17719439.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug19390895.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug26793.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bug31477.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bulk_delete.result X%%DATADIR%%/tests/suite/ndb/r/ndb_bushy_joins.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cache.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cache2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cache_multi.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cache_multi2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cache_trans.result X%%DATADIR%%/tests/suite/ndb/r/ndb_charset.result X%%DATADIR%%/tests/suite/ndb/r/ndb_checksum.result X%%DATADIR%%/tests/suite/ndb/r/ndb_column_properties.result X%%DATADIR%%/tests/suite/ndb/r/ndb_condition_pushdown.result X%%DATADIR%%/tests/suite/ndb/r/ndb_config.result X%%DATADIR%%/tests/suite/ndb/r/ndb_config2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_create_table.result X%%DATADIR%%/tests/suite/ndb/r/ndb_cursor.result X%%DATADIR%%/tests/suite/ndb/r/ndb_database.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dbug_lock.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dbug_tc_select.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_alter.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_basic.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_bug12581213.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_ddl.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_disk2memory.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_dump.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_initial_lg.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_restore_check_tablespace_mdl.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_restore_compat.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dd_sql_features.result X%%DATADIR%%/tests/suite/ndb/r/ndb_ddl_open_trans.result X%%DATADIR%%/tests/suite/ndb/r/ndb_disconnect_ddl.result X%%DATADIR%%/tests/suite/ndb/r/ndb_discover_db.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dist_priv.result X%%DATADIR%%/tests/suite/ndb/r/ndb_dist_priv_bug_13340854.result X%%DATADIR%%/tests/suite/ndb/r/ndb_err4012.result X%%DATADIR%%/tests/suite/ndb/r/ndb_error_reporter.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fired_trigger_shortage.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_addnode.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_alter.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_bugs.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_build.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_cascade_delete.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_cascade_delete_multi.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_cascade_update.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_create_drop.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_db.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_deferred_cascade.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_disable.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_is.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_locase.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_locking.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_multi_column.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_mysqldump.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_mysqldump2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_no_fk.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_no_fk_legacy.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_noaction.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_resources.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_restore.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_restrict.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_self_ref.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_setdefault.result X%%DATADIR%%/tests/suite/ndb/r/ndb_fk_setnull.result X%%DATADIR%%/tests/suite/ndb/r/ndb_gis.result X%%DATADIR%%/tests/suite/ndb/r/ndb_global_schema_lock.result X%%DATADIR%%/tests/suite/ndb/r/ndb_global_schema_lock_error.result X%%DATADIR%%/tests/suite/ndb/r/ndb_grant.result X%%DATADIR%%/tests/suite/ndb/r/ndb_hashmap.result X%%DATADIR%%/tests/suite/ndb/r/ndb_hidden_pk.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index_ordered.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index_stat.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index_stat_partitions.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index_stat_restart.result X%%DATADIR%%/tests/suite/ndb/r/ndb_index_unique.result X%%DATADIR%%/tests/suite/ndb/r/ndb_insert.result X%%DATADIR%%/tests/suite/ndb/r/ndb_join_pushdown_bka.result X%%DATADIR%%/tests/suite/ndb/r/ndb_join_pushdown_default.result X%%DATADIR%%/tests/suite/ndb/r/ndb_join_pushdown_nobnl.result X%%DATADIR%%/tests/suite/ndb/r/ndb_join_pushdown_none.result X%%DATADIR%%/tests/suite/ndb/r/ndb_limit.result X%%DATADIR%%/tests/suite/ndb/r/ndb_load.result X%%DATADIR%%/tests/suite/ndb/r/ndb_loaddatalocal.result X%%DATADIR%%/tests/suite/ndb/r/ndb_lock.result X%%DATADIR%%/tests/suite/ndb/r/ndb_lock_table.result X%%DATADIR%%/tests/suite/ndb/r/ndb_many_fragments.result X%%DATADIR%%/tests/suite/ndb/r/ndb_mgm.result X%%DATADIR%%/tests/suite/ndb/r/ndb_mgmd.result X%%DATADIR%%/tests/suite/ndb/r/ndb_minmax.result X%%DATADIR%%/tests/suite/ndb/r/ndb_multi.result X%%DATADIR%%/tests/suite/ndb/r/ndb_multi_row.result X%%DATADIR%%/tests/suite/ndb/r/ndb_multi_update_delete.result X%%DATADIR%%/tests/suite/ndb/r/ndb_native_default_support.result X%%DATADIR%%/tests/suite/ndb/r/ndb_one_fragment.result X%%DATADIR%%/tests/suite/ndb/r/ndb_optimize_table.result X%%DATADIR%%/tests/suite/ndb/r/ndb_optimized_node_selection.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_error.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_error2.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_hash.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_key.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_list.result X%%DATADIR%%/tests/suite/ndb/r/ndb_partition_range.result X%%DATADIR%%/tests/suite/ndb/r/ndb_print_file.result X%%DATADIR%%/tests/suite/ndb/r/ndb_rbwr.result X%%DATADIR%%/tests/suite/ndb/r/ndb_read_multi_range.result X%%DATADIR%%/tests/suite/ndb/r/ndb_reconnect.result X%%DATADIR%%/tests/suite/ndb/r/ndb_rename.result X%%DATADIR%%/tests/suite/ndb/r/ndb_replace.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_bug17916243.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_compat_downward.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_compat_endianness.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_conv_lossy_charbinary.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_conv_lossy_integral.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_conv_more.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_conv_padding.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_conv_promotion.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_discover.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_misc.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_print.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_schema_blobs.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_schema_partitions.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_schema_rewrites.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_schema_subsets.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_schema_tolerance.result X%%DATADIR%%/tests/suite/ndb/r/ndb_restore_undolog.result X%%DATADIR%%/tests/suite/ndb/r/ndb_row_count.result X%%DATADIR%%/tests/suite/ndb/r/ndb_row_format.result X%%DATADIR%%/tests/suite/ndb/r/ndb_select_count.result X%%DATADIR%%/tests/suite/ndb/r/ndb_share.result X%%DATADIR%%/tests/suite/ndb/r/ndb_short_sigs.result X%%DATADIR%%/tests/suite/ndb/r/ndb_single_user.result X%%DATADIR%%/tests/suite/ndb/r/ndb_sp.result X%%DATADIR%%/tests/suite/ndb/r/ndb_spj_dict.result X%%DATADIR%%/tests/suite/ndb/r/ndb_sql_allow_batching.result X%%DATADIR%%/tests/suite/ndb/r/ndb_startup.result X%%DATADIR%%/tests/suite/ndb/r/ndb_statistics0.result X%%DATADIR%%/tests/suite/ndb/r/ndb_statistics1.result X%%DATADIR%%/tests/suite/ndb/r/ndb_subquery.result X%%DATADIR%%/tests/suite/ndb/r/ndb_suma_handover.result X%%DATADIR%%/tests/suite/ndb/r/ndb_temporary.result X%%DATADIR%%/tests/suite/ndb/r/ndb_tmp_table_and_DDL.result X%%DATADIR%%/tests/suite/ndb/r/ndb_transaction.result X%%DATADIR%%/tests/suite/ndb/r/ndb_trigger.result X%%DATADIR%%/tests/suite/ndb/r/ndb_truncate.result X%%DATADIR%%/tests/suite/ndb/r/ndb_types.result X%%DATADIR%%/tests/suite/ndb/r/ndb_update.result X%%DATADIR%%/tests/suite/ndb/r/ndb_update_no_read.result X%%DATADIR%%/tests/suite/ndb/r/ndb_view.result X%%DATADIR%%/tests/suite/ndb/r/ndb_wait_until_ready.result X%%DATADIR%%/tests/suite/ndb/r/ndb_wl946_main.result X%%DATADIR%%/tests/suite/ndb/r/ndb_wl946_post.result X%%DATADIR%%/tests/suite/ndb/r/ndb_wl946_pre.result X%%DATADIR%%/tests/suite/ndb/r/ndbapi-examples.result X%%DATADIR%%/tests/suite/ndb/r/ndbinfo.result X%%DATADIR%%/tests/suite/ndb/r/ndbinfo_cache.result X%%DATADIR%%/tests/suite/ndb/r/ndbinfo_dump.result X%%DATADIR%%/tests/suite/ndb/r/ndbinfo_upgrade.result X%%DATADIR%%/tests/suite/ndb/r/ps_7ndb.result X%%DATADIR%%/tests/suite/ndb/r/strict_autoinc_5ndb.result X%%DATADIR%%/tests/suite/ndb/t/bug36547.test X%%DATADIR%%/tests/suite/ndb/t/clusterj.cnf X%%DATADIR%%/tests/suite/ndb/t/clusterj.test X%%DATADIR%%/tests/suite/ndb/t/clusterj_jpa.test X%%DATADIR%%/tests/suite/ndb/t/disabled.def X%%DATADIR%%/tests/suite/ndb/t/have_ndb_dist_priv.inc X%%DATADIR%%/tests/suite/ndb/t/have_ndb_error_insert.inc X%%DATADIR%%/tests/suite/ndb/t/loaddata_autocom_ndb.test X%%DATADIR%%/tests/suite/ndb/t/ndb_add_partition.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_add_partition.test X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode.test X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_restart.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_restart.test X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_restart2.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_restart2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_withbinlog.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_addnode_withbinlog.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table3.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_backup.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_dml.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_error.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_online.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_online2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_alter_table_online_multi.test X%%DATADIR%%/tests/suite/ndb/t/ndb_auto_increment.test X%%DATADIR%%/tests/suite/ndb/t/ndb_autoinc.test X%%DATADIR%%/tests/suite/ndb/t/ndb_backup_rate.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_backup_rate.test X%%DATADIR%%/tests/suite/ndb/t/ndb_basic.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bitfield.test X%%DATADIR%%/tests/suite/ndb/t/ndb_blob.test X%%DATADIR%%/tests/suite/ndb/t/ndb_blob_big.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_blob_big.test X%%DATADIR%%/tests/suite/ndb/t/ndb_blob_partition.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug13563280.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug14166590.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_bug14166590.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug17624736.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_bug17624736.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug17719439.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_bug17719439.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug19390895.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_bug19390895.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug26793.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bug31477.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bulk_delete.test X%%DATADIR%%/tests/suite/ndb/t/ndb_bushy_joins.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_bushy_joins.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cache.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_cache.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cache2.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_cache2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_multi.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_multi.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_multi2.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_multi2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_trans.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_cache_trans.test X%%DATADIR%%/tests/suite/ndb/t/ndb_charset.test X%%DATADIR%%/tests/suite/ndb/t/ndb_checksum.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_checksum.test X%%DATADIR%%/tests/suite/ndb/t/ndb_column_properties.test X%%DATADIR%%/tests/suite/ndb/t/ndb_condition_pushdown.test X%%DATADIR%%/tests/suite/ndb/t/ndb_config.test X%%DATADIR%%/tests/suite/ndb/t/ndb_config2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_create_table.test X%%DATADIR%%/tests/suite/ndb/t/ndb_cursor.test X%%DATADIR%%/tests/suite/ndb/t/ndb_database.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dbug_lock.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dbug_tc_select.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dbug_tc_select_1.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_dbug_tc_select_2.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_dbug_tc_select_3.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_alter.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_basic.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_bug12581213.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_bug12581213.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_ddl.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_disk2memory.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_dump.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_initial_lg.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_initial_lg.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_restore_check_tablespace_mdl.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_restore_compat.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dd_sql_features.test X%%DATADIR%%/tests/suite/ndb/t/ndb_ddl_open_trans.test X%%DATADIR%%/tests/suite/ndb/t/ndb_disconnect_ddl.test X%%DATADIR%%/tests/suite/ndb/t/ndb_discover_db-master.opt X%%DATADIR%%/tests/suite/ndb/t/ndb_discover_db.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dist_priv.test X%%DATADIR%%/tests/suite/ndb/t/ndb_dist_priv_bug_13340854.test X%%DATADIR%%/tests/suite/ndb/t/ndb_err4012.test X%%DATADIR%%/tests/suite/ndb/t/ndb_error_reporter.ini X%%DATADIR%%/tests/suite/ndb/t/ndb_error_reporter.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fired_trigger_shortage.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_fired_trigger_shortage.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_addnode.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_addnode.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_alter.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_bugs.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_build.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_cascade_delete.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_cascade_delete_multi.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_cascade_update.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_create_drop.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_db.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_deferred_cascade.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_disable.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_is.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_is.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_locase.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_locase.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_locking.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_multi_column.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_mysqldump.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_mysqldump2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_no_fk.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_no_fk_compat.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_no_fk_legacy.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_no_fk_ndb-master.opt X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_no_fk_ndb.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_noaction.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_resources.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_resources.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_restore.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_restore.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_restrict.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_self_ref.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_setdefault.test X%%DATADIR%%/tests/suite/ndb/t/ndb_fk_setnull.test X%%DATADIR%%/tests/suite/ndb/t/ndb_gis.test X%%DATADIR%%/tests/suite/ndb/t/ndb_global_schema_lock.test X%%DATADIR%%/tests/suite/ndb/t/ndb_global_schema_lock_error.test X%%DATADIR%%/tests/suite/ndb/t/ndb_grant.later X%%DATADIR%%/tests/suite/ndb/t/ndb_hashmap.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_hashmap.test X%%DATADIR%%/tests/suite/ndb/t/ndb_hidden_pk.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index_ordered.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index_stat.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index_stat_enable.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_index_stat_partitions-master.opt X%%DATADIR%%/tests/suite/ndb/t/ndb_index_stat_partitions.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index_stat_restart.test X%%DATADIR%%/tests/suite/ndb/t/ndb_index_unique.test X%%DATADIR%%/tests/suite/ndb/t/ndb_init_schema_locks_count.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_insert.test X%%DATADIR%%/tests/suite/ndb/t/ndb_join_pushdown.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_join_pushdown_bka.test X%%DATADIR%%/tests/suite/ndb/t/ndb_join_pushdown_default.test X%%DATADIR%%/tests/suite/ndb/t/ndb_join_pushdown_nobnl.test X%%DATADIR%%/tests/suite/ndb/t/ndb_join_pushdown_none.test X%%DATADIR%%/tests/suite/ndb/t/ndb_jtie.test X%%DATADIR%%/tests/suite/ndb/t/ndb_limit.test X%%DATADIR%%/tests/suite/ndb/t/ndb_load.test X%%DATADIR%%/tests/suite/ndb/t/ndb_loaddatalocal.test X%%DATADIR%%/tests/suite/ndb/t/ndb_lock.test X%%DATADIR%%/tests/suite/ndb/t/ndb_lock_table.test X%%DATADIR%%/tests/suite/ndb/t/ndb_many_fragments.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_many_fragments.test X%%DATADIR%%/tests/suite/ndb/t/ndb_mgm.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_mgm.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_mgm.test X%%DATADIR%%/tests/suite/ndb/t/ndb_mgmd.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_mgmd.test X%%DATADIR%%/tests/suite/ndb/t/ndb_minmax.test X%%DATADIR%%/tests/suite/ndb/t/ndb_multi.test X%%DATADIR%%/tests/suite/ndb/t/ndb_multi_row.test X%%DATADIR%%/tests/suite/ndb/t/ndb_multi_update_delete.test X%%DATADIR%%/tests/suite/ndb/t/ndb_native_default_support.test X%%DATADIR%%/tests/suite/ndb/t/ndb_one_fragment.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_one_fragment.test X%%DATADIR%%/tests/suite/ndb/t/ndb_optimize_table.test X%%DATADIR%%/tests/suite/ndb/t/ndb_optimized_node_selection.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_error.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_error2.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_hash.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_key.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_list.test X%%DATADIR%%/tests/suite/ndb/t/ndb_partition_range.test X%%DATADIR%%/tests/suite/ndb/t/ndb_print_file.test X%%DATADIR%%/tests/suite/ndb/t/ndb_rbwr.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_rbwr.test X%%DATADIR%%/tests/suite/ndb/t/ndb_read_multi_range.test X%%DATADIR%%/tests/suite/ndb/t/ndb_reconnect.test X%%DATADIR%%/tests/suite/ndb/t/ndb_rename.test X%%DATADIR%%/tests/suite/ndb/t/ndb_replace.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restart_nostart.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_restart_start.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_bug17916243.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_compat_compression-master.opt X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_compat_compression.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_compat_downward.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_compat_endianness.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_conv_lossy_charbinary.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_conv_lossy_integral.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_conv_more.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_conv_padding.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_conv_promotion.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_discover.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_misc.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_misc.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_print.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_schema_blobs.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_schema_partitions.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_schema_rewrites.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_schema_subsets.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_schema_tolerance.test X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_undolog.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_restore_undolog.test X%%DATADIR%%/tests/suite/ndb/t/ndb_row_count.test X%%DATADIR%%/tests/suite/ndb/t/ndb_row_format.test X%%DATADIR%%/tests/suite/ndb/t/ndb_schema_locks_count.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_select_count.test X%%DATADIR%%/tests/suite/ndb/t/ndb_share.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_share.test X%%DATADIR%%/tests/suite/ndb/t/ndb_short_sigs.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_short_sigs.test X%%DATADIR%%/tests/suite/ndb/t/ndb_show_tables_result.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_single_user-master.opt X%%DATADIR%%/tests/suite/ndb/t/ndb_single_user.test X%%DATADIR%%/tests/suite/ndb/t/ndb_sp.test X%%DATADIR%%/tests/suite/ndb/t/ndb_spj_dict.test X%%DATADIR%%/tests/suite/ndb/t/ndb_sql_allow_batching.test X%%DATADIR%%/tests/suite/ndb/t/ndb_startup.test X%%DATADIR%%/tests/suite/ndb/t/ndb_statistics.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_statistics0.test X%%DATADIR%%/tests/suite/ndb/t/ndb_statistics1.test X%%DATADIR%%/tests/suite/ndb/t/ndb_subquery.test X%%DATADIR%%/tests/suite/ndb/t/ndb_suma_handover.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_suma_handover.test X%%DATADIR%%/tests/suite/ndb/t/ndb_temporary.test X%%DATADIR%%/tests/suite/ndb/t/ndb_tmp_table_and_DDL.test X%%DATADIR%%/tests/suite/ndb/t/ndb_transaction.test X%%DATADIR%%/tests/suite/ndb/t/ndb_trigger.test X%%DATADIR%%/tests/suite/ndb/t/ndb_truncate.test X%%DATADIR%%/tests/suite/ndb/t/ndb_types.test X%%DATADIR%%/tests/suite/ndb/t/ndb_update.test X%%DATADIR%%/tests/suite/ndb/t/ndb_update_no_read.test X%%DATADIR%%/tests/suite/ndb/t/ndb_view.test X%%DATADIR%%/tests/suite/ndb/t/ndb_wait_nostart.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wait_started.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wait_until_ready.cnf X%%DATADIR%%/tests/suite/ndb/t/ndb_wait_until_ready.test X%%DATADIR%%/tests/suite/ndb/t/ndb_waiter.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_create.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_main.test X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_main_query.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_post.test X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_pre.test X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_pre_query.inc X%%DATADIR%%/tests/suite/ndb/t/ndb_wl946_select_all.inc X%%DATADIR%%/tests/suite/ndb/t/ndbapi-examples.test X%%DATADIR%%/tests/suite/ndb/t/ndbinfo.test X%%DATADIR%%/tests/suite/ndb/t/ndbinfo_cache.cnf X%%DATADIR%%/tests/suite/ndb/t/ndbinfo_cache.test X%%DATADIR%%/tests/suite/ndb/t/ndbinfo_dump.test X%%DATADIR%%/tests/suite/ndb/t/ndbinfo_upgrade.test X%%DATADIR%%/tests/suite/ndb/t/ps_7ndb.test X%%DATADIR%%/tests/suite/ndb/t/show_attributes.inc X%%DATADIR%%/tests/suite/ndb/t/show_indexes.inc X%%DATADIR%%/tests/suite/ndb/t/show_primary_keys.inc X%%DATADIR%%/tests/suite/ndb/t/show_varpart.inc X%%DATADIR%%/tests/suite/ndb/t/strict_autoinc_5ndb.test X%%DATADIR%%/tests/suite/ndb/t/test_debugger.test X%%DATADIR%%/tests/suite/ndb/t/test_mgm.test X%%DATADIR%%/tests/suite/ndb/t/test_mgmd.cnf X%%DATADIR%%/tests/suite/ndb/t/test_mgmd.test X%%DATADIR%%/tests/suite/ndb/t/test_ndbinfo.test X%%DATADIR%%/tests/suite/ndb_big/bug13637411-master.opt X%%DATADIR%%/tests/suite/ndb_big/bug13637411.cnf X%%DATADIR%%/tests/suite/ndb_big/bug13637411.test X%%DATADIR%%/tests/suite/ndb_big/bug14000373.cnf X%%DATADIR%%/tests/suite/ndb_big/bug14000373.result X%%DATADIR%%/tests/suite/ndb_big/bug14000373.test X%%DATADIR%%/tests/suite/ndb_big/bug37983-master.opt X%%DATADIR%%/tests/suite/ndb_big/bug37983.test X%%DATADIR%%/tests/suite/ndb_big/disabled.def X%%DATADIR%%/tests/suite/ndb_big/end_timer.inc X%%DATADIR%%/tests/suite/ndb_big/my.cnf X%%DATADIR%%/tests/suite/ndb_big/ndb_big_addnode.cnf X%%DATADIR%%/tests/suite/ndb_big/ndb_big_addnode.result X%%DATADIR%%/tests/suite/ndb_big/ndb_big_addnode.test X%%DATADIR%%/tests/suite/ndb_big/ndb_multi_tc_takeover.cnf X%%DATADIR%%/tests/suite/ndb_big/ndb_multi_tc_takeover.test X%%DATADIR%%/tests/suite/ndb_big/ndb_verify_redo_log_queue.test X%%DATADIR%%/tests/suite/ndb_big/rqg_spj-master.opt X%%DATADIR%%/tests/suite/ndb_big/rqg_spj.test X%%DATADIR%%/tests/suite/ndb_big/run_query_with_retry.inc X%%DATADIR%%/tests/suite/ndb_big/smoke.test X%%DATADIR%%/tests/suite/ndb_big/start_timer.inc X%%DATADIR%%/tests/suite/ndb_big/suite.inc X%%DATADIR%%/tests/suite/ndb_binlog/my.cnf X%%DATADIR%%/tests/suite/ndb_binlog/r/binlog_multi_engine.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_basic.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_ddl_multi.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_default_format.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_discover.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_discover_multi.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_eventbuffer.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_flush_log_waits.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_flush_tables_with_read_lock.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_format.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_ignore_db.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_index.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_last_commit_epoch.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_log_apply_status.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_log_bin.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_log_reads.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_log_transaction_id.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_manual_apply.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_multi.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_purge.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_restore.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_size_based_rotate.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_test_conflict_flags.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_unique_epoch.result X%%DATADIR%%/tests/suite/ndb_binlog/r/ndb_binlog_variants.result X%%DATADIR%%/tests/suite/ndb_binlog/t/binlog_multi_engine.test X%%DATADIR%%/tests/suite/ndb_binlog/t/disabled.def X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_basic.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_check_binlog_index.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_cmp_epoch_vals.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_ddl_multi.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_default_format-master.opt X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_default_format.cnf X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_default_format.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_discover.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_discover_multi.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_eventbuffer.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_flush_log_waits.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_flush_tables_with_read_lock.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_format.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_get_binlog_stmts.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_get_binlog_stmts_basic.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_get_row_extra_data.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_ignore_db-master.opt X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_ignore_db.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_index.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_index_test_schema_independent.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_init_epoch_vals.inc X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_last_commit_epoch.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_apply_status.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_bin.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_reads.cnf X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_reads.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_transaction_id-master.opt X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_log_transaction_id.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_manual_apply.cnf X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_manual_apply.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_multi.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_purge-master.opt X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_purge.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_restore.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_size_based_rotate.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_test_conflict_flags.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_unique_epoch.cnf X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_unique_epoch.test X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_variants.cnf X%%DATADIR%%/tests/suite/ndb_binlog/t/ndb_binlog_variants.test X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename.inc X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_copying.result X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_copying.test X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_inplace_force.result X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_inplace_force.test X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_inplace_implicit.result X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_inplace_implicit.test X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_simple.result X%%DATADIR%%/tests/suite/ndb_ddl/alter_rename_simple.test X%%DATADIR%%/tests/suite/ndb_ddl/cleanup.inc X%%DATADIR%%/tests/suite/ndb_ddl/list_objects.inc X%%DATADIR%%/tests/suite/ndb_ddl/my.cnf X%%DATADIR%%/tests/suite/ndb_ddl/rename_single.result X%%DATADIR%%/tests/suite/ndb_ddl/rename_single.test X%%DATADIR%%/tests/suite/ndb_ddl/setup.inc X%%DATADIR%%/tests/suite/ndb_ddl/verify_mysql_dd.inc X%%DATADIR%%/tests/suite/ndb_memcache/include/datatypes_tables.inc X%%DATADIR%%/tests/suite/ndb_memcache/include/have_memcache.inc X%%DATADIR%%/tests/suite/ndb_memcache/include/memcached_wait_for_ready.inc X%%DATADIR%%/tests/suite/ndb_memcache/include/misc_tables.inc X%%DATADIR%%/tests/suite/ndb_memcache/include/wait_for_reconf.inc X%%DATADIR%%/tests/suite/ndb_memcache/my.cnf X%%DATADIR%%/tests/suite/ndb_memcache/r/basic.result X%%DATADIR%%/tests/suite/ndb_memcache/r/external_values.result X%%DATADIR%%/tests/suite/ndb_memcache/r/lib_ascii.result X%%DATADIR%%/tests/suite/ndb_memcache/r/lib_binary.result X%%DATADIR%%/tests/suite/ndb_memcache/r/math1.result X%%DATADIR%%/tests/suite/ndb_memcache/r/math2.result X%%DATADIR%%/tests/suite/ndb_memcache/r/math3.result X%%DATADIR%%/tests/suite/ndb_memcache/r/mpart_key.result X%%DATADIR%%/tests/suite/ndb_memcache/r/reconf1.result X%%DATADIR%%/tests/suite/ndb_memcache/r/tsv1.result X%%DATADIR%%/tests/suite/ndb_memcache/r/tsv2.result X%%DATADIR%%/tests/suite/ndb_memcache/r/ttls_flags.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_binary.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_char.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_numeric.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_signed.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_temporal.result X%%DATADIR%%/tests/suite/ndb_memcache/r/type_unsigned.result X%%DATADIR%%/tests/suite/ndb_memcache/r/unique_idx.result X%%DATADIR%%/tests/suite/ndb_memcache/t/basic.test X%%DATADIR%%/tests/suite/ndb_memcache/t/disabled.def X%%DATADIR%%/tests/suite/ndb_memcache/t/external_values.test X%%DATADIR%%/tests/suite/ndb_memcache/t/lib_ascii.test X%%DATADIR%%/tests/suite/ndb_memcache/t/lib_binary.test X%%DATADIR%%/tests/suite/ndb_memcache/t/math1.test X%%DATADIR%%/tests/suite/ndb_memcache/t/math2.test X%%DATADIR%%/tests/suite/ndb_memcache/t/math3.test X%%DATADIR%%/tests/suite/ndb_memcache/t/mpart_key.test X%%DATADIR%%/tests/suite/ndb_memcache/t/reconf1.test X%%DATADIR%%/tests/suite/ndb_memcache/t/tsv1.test X%%DATADIR%%/tests/suite/ndb_memcache/t/tsv2.test X%%DATADIR%%/tests/suite/ndb_memcache/t/ttls_flags.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_binary.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_char.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_numeric.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_signed.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_temporal.test X%%DATADIR%%/tests/suite/ndb_memcache/t/type_unsigned.test X%%DATADIR%%/tests/suite/ndb_memcache/t/unique_idx.test X%%DATADIR%%/tests/suite/ndb_rpl/my.cnf X%%DATADIR%%/tests/suite/ndb_rpl/ndb_master-slave.inc X%%DATADIR%%/tests/suite/ndb_rpl/ndb_master-slave_2ch.inc X%%DATADIR%%/tests/suite/ndb_rpl/ndb_master-slave_2ch_end.inc X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_dist_priv_common.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_2innodb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_2myisam.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_2ndb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_2other.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_add_column.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_apply_status.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_auto_inc.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_bank.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_basic.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_batch.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_batch_handling.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_binlog_format_errors.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_bitfield.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_blob.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_break_3_chain.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_bug22045.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_bug_13440282.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_check_for_mixed.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_checksum.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_circular.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_circular_2ch.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_circular_2ch_rep_status.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_circular_simplex.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_basic.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch2.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch2_extra.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch2_trans.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch_ext.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch_extended_exceptions_table.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch_trans.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_epoch_trans_ext.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_max.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_max_delete_win.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_old.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_conflict_read_tracking.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ctype_ucs2_def.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_dd_advance.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_dd_basic.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_dd_partitions.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ddl_open_trans.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_dist_priv.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_do_db.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_do_table.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_empty_epoch.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_gap_event.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_idempotent.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ignore_db.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_init_rep_status.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_innodb2ndb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_innodb_trans.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_last_conflict_epoch_var.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_load.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_logging.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_mix_eng_trans.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_mix_innodb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_mixed_tables.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_multi.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_myisam2ndb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ndbapi-examples.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_rep_error.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_rep_ignore.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_skip_gap_event.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_binlog_index.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_conflict_role_var.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_lsu.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_lsu_anyval.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_replay.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_slave_restart.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_stm_innodb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_sync.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ui.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ui2.result X%%DATADIR%%/tests/suite/ndb_rpl/r/ndb_rpl_ui3.result X%%DATADIR%%/tests/suite/ndb_rpl/r/rpl_truncate_7ndb.result X%%DATADIR%%/tests/suite/ndb_rpl/r/rpl_truncate_7ndb_2.result X%%DATADIR%%/tests/suite/ndb_rpl/t/disabled.def X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_apply_status.frm X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_conflict_info.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_conflict_info_epoch2.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_conflict_info_epoch2_init.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_conflict_info_init.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_connect_to_primary.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_connect_to_secondary.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_check.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_common.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_default-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_default.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_ndb-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_dist_priv_ndb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2innodb-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2innodb-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2innodb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2multi_basic.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2multi_eng.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2myisam-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2myisam-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2myisam.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2ndb-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2ndb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2other-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_2other.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_add_column.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_apply_status-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_apply_status.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_auto_inc.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_bank.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_basic.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_batch.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_batch_handling.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_binlog_format_errors-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_binlog_format_errors-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_binlog_format_errors.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_binlog_row_image_minimal-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_binlog_row_image_minimal.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_bitfield.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_blob.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_break_3_chain.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_break_3_chain.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_bug22045.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_bug_13440282.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_check_for_mixed.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_checksum.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular_2ch.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular_2ch.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular_2ch_rep_status.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular_2ch_rep_status.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_circular_simplex.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_1.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_basic.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2_extra.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2_extra.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2_trans.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch2_trans.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_1.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_ext.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_ext.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_extended_exceptions_table.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_extended_exceptions_table.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_trans.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_trans.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_trans.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_trans_ext.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_epoch_trans_ext.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_max-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_max.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_max_delete_win-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_max_delete_win.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_old-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_old.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_read_tracking.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_conflict_read_tracking.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ctype_ucs2_def-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ctype_ucs2_def.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dd_advance.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dd_basic.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dd_partitions-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dd_partitions-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dd_partitions.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ddl_open_trans.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_dist_priv.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_do_db-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_do_db.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_do_table-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_do_table.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_empty_epoch.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_gap_event-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_gap_event.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_get_binlog_events.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_get_server_error_log.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_idempotent.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ignore_db-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ignore_db.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_init_rep_status.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_innodb2ndb-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_innodb2ndb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_innodb_trans-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_innodb_trans.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_last_conflict_epoch_var.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_last_conflict_epoch_var.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_load.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_logging.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mix_eng_trans.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mix_innodb-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mix_innodb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mixed_tables-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mixed_tables-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_mixed_tables.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_multi.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_multi_binlog_update.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_multi_binlog_update.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_multi_engine2.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_multi_update2-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_myisam2ndb-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_myisam2ndb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ndbapi-examples.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_rep_error.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_rep_ignore-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_rep_ignore.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_skip_gap_event-slave.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_skip_gap_event.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_binlog_index.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_conflict_role_var.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_lsu.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_lsu.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_lsu_anyval.cnf X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_lsu_anyval.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_replay.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_slave_restart.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_stm_innodb-master.opt X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_stm_innodb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_sync.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ui.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ui2.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_ui3.test X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_rpl_xxx_innodb.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_slave_exec_info_init.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_sync_primary_to_secondary.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_sync_secondary_to_primary.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_trans_conflict_info.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_trans_conflict_info_init.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_trans_conflict_info_stable.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/ndb_wait_for_zero_commit_ack_markers.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/rpl_truncate_7ndb.test X%%DATADIR%%/tests/suite/ndb_rpl/t/rpl_truncate_7ndb_2.test X%%DATADIR%%/tests/suite/ndb_rpl/t/select_ndb_apply_status.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/show_binlog_using_logname.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/show_mysqld_warnings.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/show_slave_max_replicated_epoch.inc X%%DATADIR%%/tests/suite/ndb_rpl/t/wait_schema_logging.inc X%%DATADIR%%/tests/suite/ndb_team/my.cnf X%%DATADIR%%/tests/suite/ndb_team/r/ndb_autodiscover.result X%%DATADIR%%/tests/suite/ndb_team/r/ndb_autodiscover2.result X%%DATADIR%%/tests/suite/ndb_team/r/ndb_autodiscover3.result X%%DATADIR%%/tests/suite/ndb_team/r/ndb_backup_print.result X%%DATADIR%%/tests/suite/ndb_team/r/ndb_dd_backuprestore.result X%%DATADIR%%/tests/suite/ndb_team/r/ndb_restart.result X%%DATADIR%%/tests/suite/ndb_team/t/disabled.def X%%DATADIR%%/tests/suite/ndb_team/t/ndb_autodiscover.test X%%DATADIR%%/tests/suite/ndb_team/t/ndb_autodiscover2-master.opt X%%DATADIR%%/tests/suite/ndb_team/t/ndb_autodiscover2.test X%%DATADIR%%/tests/suite/ndb_team/t/ndb_autodiscover3-master.opt X%%DATADIR%%/tests/suite/ndb_team/t/ndb_autodiscover3.test X%%DATADIR%%/tests/suite/ndb_team/t/ndb_backup_print.test X%%DATADIR%%/tests/suite/ndb_team/t/ndb_dd_backuprestore.test X%%DATADIR%%/tests/suite/ndb_team/t/ndb_restart.test X%%DATADIR%%/tests/suite/ndbcluster/basic.result X%%DATADIR%%/tests/suite/ndbcluster/basic.test X%%DATADIR%%/tests/suite/ndbcluster/drop_table.result X%%DATADIR%%/tests/suite/ndbcluster/drop_table.test X%%DATADIR%%/tests/suite/ndbcluster/my.cnf X%%DATADIR%%/tests/suite/ndbcluster/pushed_join.inc X%%DATADIR%%/tests/suite/ndbcluster/pushed_join.result X%%DATADIR%%/tests/suite/ndbcluster/pushed_join.test X%%DATADIR%%/tests/suite/opt_trace/include/bugs.inc X%%DATADIR%%/tests/suite/opt_trace/include/filesort_pq.inc X%%DATADIR%%/tests/suite/opt_trace/include/general.inc X%%DATADIR%%/tests/suite/opt_trace/include/general2.inc X%%DATADIR%%/tests/suite/opt_trace/include/range.inc X%%DATADIR%%/tests/suite/opt_trace/include/security.inc X%%DATADIR%%/tests/suite/opt_trace/include/subquery.inc X%%DATADIR%%/tests/suite/opt_trace/r/bugs_no_prot_all.result X%%DATADIR%%/tests/suite/opt_trace/r/bugs_no_prot_none.result X%%DATADIR%%/tests/suite/opt_trace/r/bugs_ps_prot_all.result X%%DATADIR%%/tests/suite/opt_trace/r/bugs_ps_prot_none.result X%%DATADIR%%/tests/suite/opt_trace/r/charset.result X%%DATADIR%%/tests/suite/opt_trace/r/debug.result X%%DATADIR%%/tests/suite/opt_trace/r/eq_range_statistics.result X%%DATADIR%%/tests/suite/opt_trace/r/filesort_pack.result X%%DATADIR%%/tests/suite/opt_trace/r/filesort_pq.result X%%DATADIR%%/tests/suite/opt_trace/r/fulltext.result X%%DATADIR%%/tests/suite/opt_trace/r/general2_no_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/general2_ps_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/general_no_prot_all.result X%%DATADIR%%/tests/suite/opt_trace/r/general_no_prot_none.result X%%DATADIR%%/tests/suite/opt_trace/r/general_ps_prot_all.result X%%DATADIR%%/tests/suite/opt_trace/r/general_ps_prot_none.result X%%DATADIR%%/tests/suite/opt_trace/r/range_no_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/range_ps_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/security_no_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/security_ps_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/subquery_no_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/subquery_ps_prot.result X%%DATADIR%%/tests/suite/opt_trace/r/temp_table.result X%%DATADIR%%/tests/suite/opt_trace/t/bugs_no_prot_all.test X%%DATADIR%%/tests/suite/opt_trace/t/bugs_no_prot_none.test X%%DATADIR%%/tests/suite/opt_trace/t/bugs_ps_prot_all.test X%%DATADIR%%/tests/suite/opt_trace/t/bugs_ps_prot_none.test X%%DATADIR%%/tests/suite/opt_trace/t/charset.test X%%DATADIR%%/tests/suite/opt_trace/t/debug.test X%%DATADIR%%/tests/suite/opt_trace/t/eq_range_statistics.test X%%DATADIR%%/tests/suite/opt_trace/t/filesort_pack-master.opt X%%DATADIR%%/tests/suite/opt_trace/t/filesort_pack.test X%%DATADIR%%/tests/suite/opt_trace/t/filesort_pq-master.opt X%%DATADIR%%/tests/suite/opt_trace/t/filesort_pq.test X%%DATADIR%%/tests/suite/opt_trace/t/fulltext.test X%%DATADIR%%/tests/suite/opt_trace/t/general2_no_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/general2_ps_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/general_no_prot_all-master.opt X%%DATADIR%%/tests/suite/opt_trace/t/general_no_prot_all.test X%%DATADIR%%/tests/suite/opt_trace/t/general_no_prot_none-master.opt X%%DATADIR%%/tests/suite/opt_trace/t/general_no_prot_none.test X%%DATADIR%%/tests/suite/opt_trace/t/general_ps_prot_all.test X%%DATADIR%%/tests/suite/opt_trace/t/general_ps_prot_none.test X%%DATADIR%%/tests/suite/opt_trace/t/range_no_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/range_ps_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/security_no_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/security_ps_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/subquery_no_prot-master.opt X%%DATADIR%%/tests/suite/opt_trace/t/subquery_no_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/subquery_ps_prot.test X%%DATADIR%%/tests/suite/opt_trace/t/temp_table.test X%%DATADIR%%/tests/suite/opt_trace/validate_json.py X%%DATADIR%%/tests/suite/parts/inc/methods1.inc X%%DATADIR%%/tests/suite/parts/inc/part_blocked_sql_funcs_main.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_drop_ext_tabs.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_drop_tabs.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_ext_sel.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_ext_tabs.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_1.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_13.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_4.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_5.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_7.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_qa_8.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_tabs.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_valid_hash.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_valid_key.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_valid_list.inc X%%DATADIR%%/tests/suite/parts/inc/part_exch_valid_range.inc X%%DATADIR%%/tests/suite/parts/inc/part_supported_sql_funcs_delete.inc X%%DATADIR%%/tests/suite/parts/inc/part_supported_sql_funcs_main.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-1-modes.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-1.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-10.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-11.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-12.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-2.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-3.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-4.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-5.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-6.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-7.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-8.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml-1-9.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml_cr_tab.inc X%%DATADIR%%/tests/suite/parts/inc/partition-dml_ins_tab.inc X%%DATADIR%%/tests/suite/parts/inc/partition.pre X%%DATADIR%%/tests/suite/parts/inc/partition_10.inc X%%DATADIR%%/tests/suite/parts/inc/partition_11.inc X%%DATADIR%%/tests/suite/parts/inc/partition_12.inc X%%DATADIR%%/tests/suite/parts/inc/partition_20.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter1_1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter1_1_2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter1_2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter2_1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter2_2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter3.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter4.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter_1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter_11.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter_12.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter_13.inc X%%DATADIR%%/tests/suite/parts/inc/partition_alter_41.inc X%%DATADIR%%/tests/suite/parts/inc/partition_auto_increment.inc X%%DATADIR%%/tests/suite/parts/inc/partition_auto_increment_import.inc X%%DATADIR%%/tests/suite/parts/inc/partition_basic.inc X%%DATADIR%%/tests/suite/parts/inc/partition_basic_symlink.inc X%%DATADIR%%/tests/suite/parts/inc/partition_bigint.inc X%%DATADIR%%/tests/suite/parts/inc/partition_binary.inc X%%DATADIR%%/tests/suite/parts/inc/partition_bit.inc X%%DATADIR%%/tests/suite/parts/inc/partition_blob.inc X%%DATADIR%%/tests/suite/parts/inc/partition_blocked_sql_funcs.inc X%%DATADIR%%/tests/suite/parts/inc/partition_char.inc X%%DATADIR%%/tests/suite/parts/inc/partition_check.inc X%%DATADIR%%/tests/suite/parts/inc/partition_check_drop.inc X%%DATADIR%%/tests/suite/parts/inc/partition_check_read.inc X%%DATADIR%%/tests/suite/parts/inc/partition_check_read1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_check_read2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_cleanup.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_add.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_change.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_drop.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_exchange.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_old_frm.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_t2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_crash_upgrade.inc X%%DATADIR%%/tests/suite/parts/inc/partition_date.inc X%%DATADIR%%/tests/suite/parts/inc/partition_datetime.inc X%%DATADIR%%/tests/suite/parts/inc/partition_decimal.inc X%%DATADIR%%/tests/suite/parts/inc/partition_directory.inc X%%DATADIR%%/tests/suite/parts/inc/partition_double.inc X%%DATADIR%%/tests/suite/parts/inc/partition_engine.inc X%%DATADIR%%/tests/suite/parts/inc/partition_enum.inc X%%DATADIR%%/tests/suite/parts/inc/partition_exchange.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_add.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_change.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_drop.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_exchange.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_old_frm.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_t2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_fail_upgrade.inc X%%DATADIR%%/tests/suite/parts/inc/partition_float.inc X%%DATADIR%%/tests/suite/parts/inc/partition_int.inc X%%DATADIR%%/tests/suite/parts/inc/partition_key_16col.inc X%%DATADIR%%/tests/suite/parts/inc/partition_key_32col.inc X%%DATADIR%%/tests/suite/parts/inc/partition_key_4col.inc X%%DATADIR%%/tests/suite/parts/inc/partition_key_8col.inc X%%DATADIR%%/tests/suite/parts/inc/partition_layout.inc X%%DATADIR%%/tests/suite/parts/inc/partition_layout_check1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_layout_check2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_mediumint.inc X%%DATADIR%%/tests/suite/parts/inc/partition_methods1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_methods2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_mgm.inc X%%DATADIR%%/tests/suite/parts/inc/partition_mgm_crash.inc X%%DATADIR%%/tests/suite/parts/inc/partition_set.inc X%%DATADIR%%/tests/suite/parts/inc/partition_smallint.inc X%%DATADIR%%/tests/suite/parts/inc/partition_supported_sql_funcs.inc X%%DATADIR%%/tests/suite/parts/inc/partition_syntax.inc X%%DATADIR%%/tests/suite/parts/inc/partition_syntax_1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_syntax_2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_text.inc X%%DATADIR%%/tests/suite/parts/inc/partition_time.inc X%%DATADIR%%/tests/suite/parts/inc/partition_timestamp.inc X%%DATADIR%%/tests/suite/parts/inc/partition_tinyint.inc X%%DATADIR%%/tests/suite/parts/inc/partition_trigg1.inc X%%DATADIR%%/tests/suite/parts/inc/partition_trigg2.inc X%%DATADIR%%/tests/suite/parts/inc/partition_trigg3.inc X%%DATADIR%%/tests/suite/parts/inc/partition_value.inc X%%DATADIR%%/tests/suite/parts/inc/partition_varbinary.inc X%%DATADIR%%/tests/suite/parts/inc/partition_varchar.inc X%%DATADIR%%/tests/suite/parts/inc/partition_year.inc X%%DATADIR%%/tests/suite/parts/inc/rpl-partition-dml-1-1.inc X%%DATADIR%%/tests/suite/parts/r/part_blocked_sql_func_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_blocked_sql_func_myisam.result X%%DATADIR%%/tests/suite/parts/r/part_ctype_utf32.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_hash_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_hash_myisam.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_key_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_key_myisam.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_list_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_list_myisam.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_range_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_exch_valid_range_myisam.result X%%DATADIR%%/tests/suite/parts/r/part_supported_sql_func_innodb.result X%%DATADIR%%/tests/suite/parts/r/part_supported_sql_func_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-1-innodb-modes.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-1-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-1-myisam-modes.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-1-myisam.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-10-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-10-myisam.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-11-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-11-myisam.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-12-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-2-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-2-myisam.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-3-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-4-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-5-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-6-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-7-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-8-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-9-innodb.result X%%DATADIR%%/tests/suite/parts/r/partition-dml-1-9-myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_1_2_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_1_2_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_1_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_1_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_2_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter1_2_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_1_1_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_1_2_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_1_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_2_1_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_2_2_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter2_2_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter3_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter3_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_alter4_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_alter4_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_auto_increment_archive.result X%%DATADIR%%/tests/suite/parts/r/partition_auto_increment_blackhole.result X%%DATADIR%%/tests/suite/parts/r/partition_auto_increment_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_auto_increment_memory.result X%%DATADIR%%/tests/suite/parts/r/partition_auto_increment_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_basic_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_basic_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_basic_symlink_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_basic_symlink_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_bit_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_bit_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_char_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_char_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_datetime_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_datetime_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_debug.result X%%DATADIR%%/tests/suite/parts/r/partition_debug_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_debug_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_debug_sync_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_decimal_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_decimal_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_engine_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_engine_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_myisam_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_10.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_11.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_12.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_13.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_14.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_15.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_1_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_1_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_2.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_3.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_4_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_4_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_5_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_5_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_6.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_7_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_7_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_8_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exch_qa_8_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_exchange_archive.result X%%DATADIR%%/tests/suite/parts/r/partition_exchange_blackhole.result X%%DATADIR%%/tests/suite/parts/r/partition_exchange_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_exchange_memory.result X%%DATADIR%%/tests/suite/parts/r/partition_exchange_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_float_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_float_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_icp.result X%%DATADIR%%/tests/suite/parts/r/partition_innodb_status_file.result X%%DATADIR%%/tests/suite/parts/r/partition_int_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_int_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc0_archive.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc0_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc0_memory.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc0_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc1_archive.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc1_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc1_memory.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc1_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc2_archive.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc2_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc2_memory.result X%%DATADIR%%/tests/suite/parts/r/partition_mgm_lc2_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_recover_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_reorganize_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_reorganize_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_repair_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_special_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_special_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_syntax_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_syntax_myisam.result X%%DATADIR%%/tests/suite/parts/r/partition_t55.out X%%DATADIR%%/tests/suite/parts/r/partition_value_innodb.result X%%DATADIR%%/tests/suite/parts/r/partition_value_myisam.result X%%DATADIR%%/tests/suite/parts/r/rpl-partition-dml-1-1-innodb.result X%%DATADIR%%/tests/suite/parts/r/rpl-partition-dml-1-1-myisam.result X%%DATADIR%%/tests/suite/parts/r/rpl_partition.result X%%DATADIR%%/tests/suite/parts/t/disabled.def X%%DATADIR%%/tests/suite/parts/t/part_blocked_sql_func_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_blocked_sql_func_myisam.test X%%DATADIR%%/tests/suite/parts/t/part_ctype_utf32.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_hash_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_hash_myisam.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_key_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_key_myisam.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_list_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_list_myisam.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_range_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_exch_valid_range_myisam.test X%%DATADIR%%/tests/suite/parts/t/part_supported_sql_func_innodb.test X%%DATADIR%%/tests/suite/parts/t/part_supported_sql_func_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-1-innodb-modes.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-1-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-1-myisam-modes.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-1-myisam.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-10-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-10-myisam.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-11-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-11-myisam.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-12-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-2-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-2-myisam.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-3-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-4-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-5-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-6-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-7-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-8-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-9-innodb.test X%%DATADIR%%/tests/suite/parts/t/partition-dml-1-9-myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_1_2_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_1_2_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_1_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_1_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_2_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter1_2_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_1_1_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_1_2_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_1_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_2_1_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_2_2_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter2_2_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter3_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter3_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_alter4_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_alter4_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_auto_increment_archive.test X%%DATADIR%%/tests/suite/parts/t/partition_auto_increment_blackhole.test X%%DATADIR%%/tests/suite/parts/t/partition_auto_increment_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_auto_increment_memory.test X%%DATADIR%%/tests/suite/parts/t/partition_auto_increment_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_basic_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_basic_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_basic_symlink_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_basic_symlink_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_bit_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_bit_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_char_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_char_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_datetime_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_datetime_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_debug.test X%%DATADIR%%/tests/suite/parts/t/partition_debug_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_debug_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_debug_sync_innodb-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_debug_sync_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_decimal_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_decimal_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_engine_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_engine_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_myisam_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_10.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_11.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_12.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_13.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_14.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_15.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_1_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_1_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_2.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_3.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_4_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_4_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_5_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_5_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_6.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_7_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_7_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_8_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exch_qa_8_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_exchange_archive-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_exchange_archive.test X%%DATADIR%%/tests/suite/parts/t/partition_exchange_blackhole.test X%%DATADIR%%/tests/suite/parts/t/partition_exchange_innodb-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_exchange_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_exchange_memory-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_exchange_memory.test X%%DATADIR%%/tests/suite/parts/t/partition_exchange_myisam-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_exchange_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_float_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_float_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_icp.test X%%DATADIR%%/tests/suite/parts/t/partition_innodb_status_file-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_innodb_status_file.test X%%DATADIR%%/tests/suite/parts/t/partition_int_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_int_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc0_archive.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc0_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc0_memory.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc0_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_archive-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_archive.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_innodb-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_memory-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_memory.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_myisam-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc1_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_archive-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_archive.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_innodb-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_memory-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_memory.test X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_myisam-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_mgm_lc2_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_recover_myisam-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_recover_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_reorganize_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_reorganize_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_repair_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_special_innodb-master.opt X%%DATADIR%%/tests/suite/parts/t/partition_special_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_special_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_syntax_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_syntax_myisam.test X%%DATADIR%%/tests/suite/parts/t/partition_value_innodb.test X%%DATADIR%%/tests/suite/parts/t/partition_value_myisam.test X%%DATADIR%%/tests/suite/parts/t/rpl-partition-dml-1-1-innodb.test X%%DATADIR%%/tests/suite/parts/t/rpl-partition-dml-1-1-myisam.test X%%DATADIR%%/tests/suite/parts/t/rpl_partition.test X%%DATADIR%%/tests/suite/perfschema/include/binlog_edge_common.inc X%%DATADIR%%/tests/suite/perfschema/include/binlog_ok_common.inc X%%DATADIR%%/tests/suite/perfschema/include/cleanup_helper.inc X%%DATADIR%%/tests/suite/perfschema/include/connection_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/connection_load.inc X%%DATADIR%%/tests/suite/perfschema/include/connection_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/digest_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/digest_execution.inc X%%DATADIR%%/tests/suite/perfschema/include/digest_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/disable_instruments.inc X%%DATADIR%%/tests/suite/perfschema/include/enable_instruments.inc X%%DATADIR%%/tests/suite/perfschema/include/event_aggregate_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/event_aggregate_load.inc X%%DATADIR%%/tests/suite/perfschema/include/event_aggregate_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/have_aligned_memory.inc X%%DATADIR%%/tests/suite/perfschema/include/hostcache_dump.inc X%%DATADIR%%/tests/suite/perfschema/include/hostcache_set_state.inc X%%DATADIR%%/tests/suite/perfschema/include/memory_aggregate_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/memory_aggregate_load.inc X%%DATADIR%%/tests/suite/perfschema/include/memory_aggregate_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/prepared_stmts_deallocation.inc X%%DATADIR%%/tests/suite/perfschema/include/prepared_stmts_execution.inc X%%DATADIR%%/tests/suite/perfschema/include/prepared_stmts_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/privilege.inc X%%DATADIR%%/tests/suite/perfschema/include/program_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/program_execution.inc X%%DATADIR%%/tests/suite/perfschema/include/program_nested_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/program_nested_execution.inc X%%DATADIR%%/tests/suite/perfschema/include/program_nested_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/program_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/reset_transaction_gtid.inc X%%DATADIR%%/tests/suite/perfschema/include/rpl_statements_truncate.inc X%%DATADIR%%/tests/suite/perfschema/include/schema.inc X%%DATADIR%%/tests/suite/perfschema/include/setup_helper.inc X%%DATADIR%%/tests/suite/perfschema/include/show_aggregate.inc X%%DATADIR%%/tests/suite/perfschema/include/show_plugin_verifier.inc X%%DATADIR%%/tests/suite/perfschema/include/show_transaction_gtid.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_check1.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_event.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_event_dbg.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_ipv6.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_summary_check.inc X%%DATADIR%%/tests/suite/perfschema/include/socket_summary_check_dbg.inc X%%DATADIR%%/tests/suite/perfschema/include/stage_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/stage_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/start_server_common.inc X%%DATADIR%%/tests/suite/perfschema/include/table_aggregate_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/table_aggregate_load.inc X%%DATADIR%%/tests/suite/perfschema/include/table_aggregate_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/table_io_basic_dml.inc X%%DATADIR%%/tests/suite/perfschema/include/table_io_cleanup_helper.inc X%%DATADIR%%/tests/suite/perfschema/include/table_io_result_helper.inc X%%DATADIR%%/tests/suite/perfschema/include/table_io_setup_helper.inc X%%DATADIR%%/tests/suite/perfschema/include/transaction_cleanup.inc X%%DATADIR%%/tests/suite/perfschema/include/transaction_nested_events_verifier.inc X%%DATADIR%%/tests/suite/perfschema/include/transaction_setup.inc X%%DATADIR%%/tests/suite/perfschema/include/upgrade_check.inc X%%DATADIR%%/tests/suite/perfschema/include/wait_for_pfs_thread_count.inc X%%DATADIR%%/tests/suite/perfschema/include/wait_till_sleep.inc X%%DATADIR%%/tests/suite/perfschema/r/aggregate.result X%%DATADIR%%/tests/suite/perfschema/r/all_tests.result X%%DATADIR%%/tests/suite/perfschema/r/alter_table_progress.result X%%DATADIR%%/tests/suite/perfschema/r/bad_option.result X%%DATADIR%%/tests/suite/perfschema/r/batch_table_io_func.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_edge_mix.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_edge_row.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_edge_stmt.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_ok_mix.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_ok_row.result X%%DATADIR%%/tests/suite/perfschema/r/binlog_ok_stmt.result X%%DATADIR%%/tests/suite/perfschema/r/checksum.result X%%DATADIR%%/tests/suite/perfschema/r/cnf_option.result X%%DATADIR%%/tests/suite/perfschema/r/column_privilege.result X%%DATADIR%%/tests/suite/perfschema/r/connect_attrs.result X%%DATADIR%%/tests/suite/perfschema/r/connection.result X%%DATADIR%%/tests/suite/perfschema/r/connection_3a.result X%%DATADIR%%/tests/suite/perfschema/r/connection_3a_3u.result X%%DATADIR%%/tests/suite/perfschema/r/connection_3u.result X%%DATADIR%%/tests/suite/perfschema/r/connection_type_notwin.result X%%DATADIR%%/tests/suite/perfschema/r/connection_type_win.result X%%DATADIR%%/tests/suite/perfschema/r/csv_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_accounts.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_cond_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esgs_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esgs_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esgs_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esgs_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esgs_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_digest.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_program.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_esms_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ets_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ets_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ets_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ets_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ets_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_stages_current.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_stages_history.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_stages_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_statements_current.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_statements_history.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_statements_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_transactions_current.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_transactions_history.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_transactions_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_waits_current.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_waits_history.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_events_waits_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_ews_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_file_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_fs_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_fs_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_global_status.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_global_variables.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_host_cache.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_hosts.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mems_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mems_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mems_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mems_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mems_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_metadata_locks.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_mutex_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_os_global_by_type.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_performance_timers.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_prepared_statements_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_applier_configuration.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_applier_status.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_applier_status_by_coordinator.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_applier_status_by_worker.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_connection_configuration.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_connection_status.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_group_member_stats.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_replication_group_members.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_rwlock_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_session_account_connect_attrs.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_session_connect_attrs.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_session_status.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_session_variables.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_setup_actors.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_setup_consumers.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_setup_instruments.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_setup_objects.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_setup_timers.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_socket_instances.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_socket_summary_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_socket_summary_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_status_by_account.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_status_by_host.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_status_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_status_by_user.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_table_handles.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_threads.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_tiws_by_index_usage.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_tiws_by_table.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_tlws_by_table.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_users.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_uvar_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/ddl_variables_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/digest_null_literal.result X%%DATADIR%%/tests/suite/perfschema/r/digest_table_full.result X%%DATADIR%%/tests/suite/perfschema/r/dml_accounts.result X%%DATADIR%%/tests/suite/perfschema/r/dml_cond_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esgs_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esgs_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esgs_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esgs_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esgs_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_digest.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_program.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_esms_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ets_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ets_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ets_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ets_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ets_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_stages_current.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_stages_history.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_stages_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_statements_current.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_statements_history.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_statements_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_transactions_current.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_transactions_history.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_transactions_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_waits_current.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_waits_history.result X%%DATADIR%%/tests/suite/perfschema/r/dml_events_waits_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_ews_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_file_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_fs_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_fs_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/dml_global_status.result X%%DATADIR%%/tests/suite/perfschema/r/dml_global_variables.result X%%DATADIR%%/tests/suite/perfschema/r/dml_handler.result X%%DATADIR%%/tests/suite/perfschema/r/dml_host_cache.result X%%DATADIR%%/tests/suite/perfschema/r/dml_hosts.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mems_by_account_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mems_by_host_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mems_by_thread_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mems_by_user_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mems_global_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_metadata_locks.result X%%DATADIR%%/tests/suite/perfschema/r/dml_mutex_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_os_global_by_type.result X%%DATADIR%%/tests/suite/perfschema/r/dml_performance_timers.result X%%DATADIR%%/tests/suite/perfschema/r/dml_prepared_statements_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_applier_configuration.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_applier_status.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_applier_status_by_coordinator.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_applier_status_by_worker.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_connection_configuration.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_connection_status.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_group_member_stats.result X%%DATADIR%%/tests/suite/perfschema/r/dml_replication_group_members.result X%%DATADIR%%/tests/suite/perfschema/r/dml_rwlock_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_session_account_connect_attrs.result X%%DATADIR%%/tests/suite/perfschema/r/dml_session_connect_attrs.result X%%DATADIR%%/tests/suite/perfschema/r/dml_session_status.result X%%DATADIR%%/tests/suite/perfschema/r/dml_session_variables.result X%%DATADIR%%/tests/suite/perfschema/r/dml_setup_actors.result X%%DATADIR%%/tests/suite/perfschema/r/dml_setup_consumers.result X%%DATADIR%%/tests/suite/perfschema/r/dml_setup_instruments.result X%%DATADIR%%/tests/suite/perfschema/r/dml_setup_objects.result X%%DATADIR%%/tests/suite/perfschema/r/dml_setup_timers.result X%%DATADIR%%/tests/suite/perfschema/r/dml_socket_instances.result X%%DATADIR%%/tests/suite/perfschema/r/dml_socket_summary_by_event_name.result X%%DATADIR%%/tests/suite/perfschema/r/dml_socket_summary_by_instance.result X%%DATADIR%%/tests/suite/perfschema/r/dml_status_by_account.result X%%DATADIR%%/tests/suite/perfschema/r/dml_status_by_host.result X%%DATADIR%%/tests/suite/perfschema/r/dml_status_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/dml_status_by_user.result X%%DATADIR%%/tests/suite/perfschema/r/dml_table_handles.result X%%DATADIR%%/tests/suite/perfschema/r/dml_threads.result X%%DATADIR%%/tests/suite/perfschema/r/dml_tiws_by_index_usage.result X%%DATADIR%%/tests/suite/perfschema/r/dml_tiws_by_table.result X%%DATADIR%%/tests/suite/perfschema/r/dml_tlws_by_table.result X%%DATADIR%%/tests/suite/perfschema/r/dml_users.result X%%DATADIR%%/tests/suite/perfschema/r/dml_uvar_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/dml_variables_by_thread.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_a.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_a_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_a_no_u.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_a_no_u_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_u.result X%%DATADIR%%/tests/suite/perfschema/r/event_aggregate_no_u_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/func_file_io.result X%%DATADIR%%/tests/suite/perfschema/r/func_mutex.result X%%DATADIR%%/tests/suite/perfschema/r/global_read_lock.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_again_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_again_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_bad_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_bad_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_good_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_good_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_noname_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_addrinfo_noname_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_auth_plugin.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_blocked.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_format.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_max_con.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_nameinfo_again_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_nameinfo_again_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_nameinfo_noname_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_nameinfo_noname_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_passwd.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv4_ssl.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_again_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_again_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_bad_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_bad_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_good_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_good_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_noname_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_addrinfo_noname_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_auth_plugin.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_blocked.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_max_con.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_nameinfo_again_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_nameinfo_again_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_nameinfo_noname_allow.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_nameinfo_noname_deny.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_passwd.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_ipv6_ssl.result X%%DATADIR%%/tests/suite/perfschema/r/hostcache_peer_addr.result X%%DATADIR%%/tests/suite/perfschema/r/indexed_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/information_schema.result X%%DATADIR%%/tests/suite/perfschema/r/innodb_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/io_cache.result X%%DATADIR%%/tests/suite/perfschema/r/max_program_zero.result X%%DATADIR%%/tests/suite/perfschema/r/mdl_func.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_32bit.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_a.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_a_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_a_no_u.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_a_no_u_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_u.result X%%DATADIR%%/tests/suite/perfschema/r/memory_aggregate_no_u_no_h.result X%%DATADIR%%/tests/suite/perfschema/r/memory_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/merge_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/misc.result X%%DATADIR%%/tests/suite/perfschema/r/multi_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/myisam_file_io.result X%%DATADIR%%/tests/suite/perfschema/r/myisam_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/nesting.result X%%DATADIR%%/tests/suite/perfschema/r/no_threads.result X%%DATADIR%%/tests/suite/perfschema/r/one_thread_per_con.result X%%DATADIR%%/tests/suite/perfschema/r/ortho_iter.result X%%DATADIR%%/tests/suite/perfschema/r/part_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/pfs_upgrade_event.result X%%DATADIR%%/tests/suite/perfschema/r/pfs_upgrade_func.result X%%DATADIR%%/tests/suite/perfschema/r/pfs_upgrade_proc.result X%%DATADIR%%/tests/suite/perfschema/r/pfs_upgrade_table.result X%%DATADIR%%/tests/suite/perfschema/r/pfs_upgrade_view.result X%%DATADIR%%/tests/suite/perfschema/r/prepared_statements.result X%%DATADIR%%/tests/suite/perfschema/r/prepared_stmts_by_stored_programs.result X%%DATADIR%%/tests/suite/perfschema/r/privilege.result X%%DATADIR%%/tests/suite/perfschema/r/privilege_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/query_cache.result X%%DATADIR%%/tests/suite/perfschema/r/read_only.result X%%DATADIR%%/tests/suite/perfschema/r/relaylog.result X%%DATADIR%%/tests/suite/perfschema/r/rollback_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/rpl_group_member_stats.result X%%DATADIR%%/tests/suite/perfschema/r/rpl_group_members.result X%%DATADIR%%/tests/suite/perfschema/r/rpl_gtid_func.result X%%DATADIR%%/tests/suite/perfschema/r/rpl_statements.result X%%DATADIR%%/tests/suite/perfschema/r/rpl_threads.result X%%DATADIR%%/tests/suite/perfschema/r/schema.result X%%DATADIR%%/tests/suite/perfschema/r/selects.result X%%DATADIR%%/tests/suite/perfschema/r/server_init.result X%%DATADIR%%/tests/suite/perfschema/r/setup_actors.result X%%DATADIR%%/tests/suite/perfschema/r/setup_actors_enabled.result X%%DATADIR%%/tests/suite/perfschema/r/setup_actors_history.result X%%DATADIR%%/tests/suite/perfschema/r/setup_consumers_defaults.result X%%DATADIR%%/tests/suite/perfschema/r/setup_instruments_defaults.result X%%DATADIR%%/tests/suite/perfschema/r/setup_object_table_lock_io.result X%%DATADIR%%/tests/suite/perfschema/r/setup_objects.result X%%DATADIR%%/tests/suite/perfschema/r/short_option_1.result X%%DATADIR%%/tests/suite/perfschema/r/short_option_2.result X%%DATADIR%%/tests/suite/perfschema/r/show_aggregate.result X%%DATADIR%%/tests/suite/perfschema/r/show_coverage.result X%%DATADIR%%/tests/suite/perfschema/r/show_misc.result X%%DATADIR%%/tests/suite/perfschema/r/show_plugin.result X%%DATADIR%%/tests/suite/perfschema/r/show_sanity.result X%%DATADIR%%/tests/suite/perfschema/r/socket_connect.result X%%DATADIR%%/tests/suite/perfschema/r/socket_instances_func.result X%%DATADIR%%/tests/suite/perfschema/r/socket_instances_func_win.result X%%DATADIR%%/tests/suite/perfschema/r/socket_summary_by_event_name_func.result X%%DATADIR%%/tests/suite/perfschema/r/socket_summary_by_instance_func.result X%%DATADIR%%/tests/suite/perfschema/r/socket_summary_by_instance_func_win.result X%%DATADIR%%/tests/suite/perfschema/r/stage_mdl_function.result X%%DATADIR%%/tests/suite/perfschema/r/stage_mdl_global.result X%%DATADIR%%/tests/suite/perfschema/r/stage_mdl_procedure.result X%%DATADIR%%/tests/suite/perfschema/r/stage_mdl_table.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_disable_idle.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_disable_stages.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_disable_statements.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_disable_transactions.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_disable_waits.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_innodb.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_low_digest.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_low_digest_sql_length.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_low_index.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_low_table_lock.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_account.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_cond_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_cond_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_digests.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_file_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_file_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_host.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_index.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_mdl.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_memory_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_mutex_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_mutex_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_prepared_stmts_instances.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_rwlock_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_rwlock_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_setup_actors.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_setup_objects.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_socket_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_socket_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_stage_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_stages_history.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_stages_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_statement_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_statements_history.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_statements_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_table_hdl.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_table_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_table_lock.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_thread_class.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_thread_inst.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_transactions_history.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_transactions_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_user.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_waits_history.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_no_waits_history_long.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_nothing.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_off.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_on.result X%%DATADIR%%/tests/suite/perfschema/r/start_server_zero_digest_sql_length.result X%%DATADIR%%/tests/suite/perfschema/r/statement_digest.result X%%DATADIR%%/tests/suite/perfschema/r/statement_digest_charset.result X%%DATADIR%%/tests/suite/perfschema/r/statement_digest_consumers.result X%%DATADIR%%/tests/suite/perfschema/r/statement_digest_consumers2.result X%%DATADIR%%/tests/suite/perfschema/r/statement_digest_long_query.result X%%DATADIR%%/tests/suite/perfschema/r/statement_program_concurrency.result X%%DATADIR%%/tests/suite/perfschema/r/statement_program_lost_inst.result X%%DATADIR%%/tests/suite/perfschema/r/statement_program_nested.result X%%DATADIR%%/tests/suite/perfschema/r/statement_program_nesting_event_check.result X%%DATADIR%%/tests/suite/perfschema/r/statement_program_non_nested.result X%%DATADIR%%/tests/suite/perfschema/r/status_reprepare.result X%%DATADIR%%/tests/suite/perfschema/r/sxlock_func.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_global_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_global_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_global_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_global_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_hist_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_hist_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_hist_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_hist_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_off.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_thread_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_thread_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_thread_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_aggregate_thread_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_global_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_global_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_global_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_global_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_hist_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_hist_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_hist_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_hist_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_thread_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_thread_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_thread_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_io_aggregate_thread_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_global_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_global_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_global_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_global_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_hist_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_hist_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_hist_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_hist_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_thread_2u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_thread_2u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_thread_4u_2t.result X%%DATADIR%%/tests/suite/perfschema/r/table_lock_aggregate_thread_4u_3t.result X%%DATADIR%%/tests/suite/perfschema/r/table_schema.result X%%DATADIR%%/tests/suite/perfschema/r/tampered_perfschema_table1.result X%%DATADIR%%/tests/suite/perfschema/r/temp_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/thread_cache.result X%%DATADIR%%/tests/suite/perfschema/r/threads_history.result X%%DATADIR%%/tests/suite/perfschema/r/threads_innodb.result X%%DATADIR%%/tests/suite/perfschema/r/threads_mysql.result X%%DATADIR%%/tests/suite/perfschema/r/threads_mysql_freebsd.result X%%DATADIR%%/tests/suite/perfschema/r/threads_mysql_linux.result X%%DATADIR%%/tests/suite/perfschema/r/threads_mysql_windows.result X%%DATADIR%%/tests/suite/perfschema/r/transaction.result X%%DATADIR%%/tests/suite/perfschema/r/transaction_gtid.result X%%DATADIR%%/tests/suite/perfschema/r/transaction_nested_events.result X%%DATADIR%%/tests/suite/perfschema/r/trigger_table_io.result X%%DATADIR%%/tests/suite/perfschema/r/unary_digest.result X%%DATADIR%%/tests/suite/perfschema/r/user_var_func.result X%%DATADIR%%/tests/suite/perfschema/r/view_table_io.result X%%DATADIR%%/tests/suite/perfschema/t/aggregate.test X%%DATADIR%%/tests/suite/perfschema/t/all_tests.test X%%DATADIR%%/tests/suite/perfschema/t/alter_table_progress.test X%%DATADIR%%/tests/suite/perfschema/t/bad_option.test X%%DATADIR%%/tests/suite/perfschema/t/batch_table_io_func.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_mix-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_mix.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_row-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_row.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_stmt-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_edge_stmt.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_mix-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_mix.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_row-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_row.test X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_stmt-master.opt X%%DATADIR%%/tests/suite/perfschema/t/binlog_ok_stmt.test X%%DATADIR%%/tests/suite/perfschema/t/checksum.test X%%DATADIR%%/tests/suite/perfschema/t/cnf_option.cnf X%%DATADIR%%/tests/suite/perfschema/t/cnf_option.test X%%DATADIR%%/tests/suite/perfschema/t/column_privilege.test X%%DATADIR%%/tests/suite/perfschema/t/connect_attrs.test X%%DATADIR%%/tests/suite/perfschema/t/connection.test X%%DATADIR%%/tests/suite/perfschema/t/connection_3a-master.opt X%%DATADIR%%/tests/suite/perfschema/t/connection_3a.test X%%DATADIR%%/tests/suite/perfschema/t/connection_3a_3u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/connection_3a_3u.test X%%DATADIR%%/tests/suite/perfschema/t/connection_3u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/connection_3u.test X%%DATADIR%%/tests/suite/perfschema/t/connection_type_notwin.test X%%DATADIR%%/tests/suite/perfschema/t/connection_type_win.test X%%DATADIR%%/tests/suite/perfschema/t/csv_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_accounts.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_cond_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esgs_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esgs_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esgs_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esgs_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esgs_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_digest.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_program.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_esms_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ets_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ets_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ets_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ets_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ets_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_stages_current.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_stages_history.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_stages_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_statements_current.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_statements_history.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_statements_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_transactions_current.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_transactions_history.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_transactions_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_waits_current.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_waits_history.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_events_waits_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_ews_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_file_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_fs_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_fs_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_global_status.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_global_variables.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_host_cache.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_hosts.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mems_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mems_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mems_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mems_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mems_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_metadata_locks.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_mutex_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_os_global_by_type.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_performance_timers.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_prepared_statements_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_applier_configuration.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_applier_status.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_applier_status_by_coordinator.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_applier_status_by_worker.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_connection_configuration.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_connection_status.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_group_member_stats.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_replication_group_members.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_rwlock_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_session_account_connect_attrs.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_session_connect_attrs.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_session_status.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_session_variables.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_setup_actors.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_setup_consumers.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_setup_instruments.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_setup_objects.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_setup_timers.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_socket_instances.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_socket_summary_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_socket_summary_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_status_by_account.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_status_by_host.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_status_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_status_by_user.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_table_handles.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_threads.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_tiws_by_index_usage.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_tiws_by_table.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_tlws_by_table.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_users.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_uvar_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/ddl_variables_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/digest_null_literal.test X%%DATADIR%%/tests/suite/perfschema/t/digest_table_full-master.opt X%%DATADIR%%/tests/suite/perfschema/t/digest_table_full.test X%%DATADIR%%/tests/suite/perfschema/t/disabled.def X%%DATADIR%%/tests/suite/perfschema/t/dml_accounts.test X%%DATADIR%%/tests/suite/perfschema/t/dml_cond_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esgs_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esgs_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esgs_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esgs_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esgs_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_digest.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_program.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_esms_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ets_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ets_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ets_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ets_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ets_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_stages_current.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_stages_history.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_stages_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_statements_current.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_statements_history.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_statements_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_transactions_current.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_transactions_history.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_transactions_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_waits_current.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_waits_history.test X%%DATADIR%%/tests/suite/perfschema/t/dml_events_waits_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_ews_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_file_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_fs_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_fs_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/dml_global_status.test X%%DATADIR%%/tests/suite/perfschema/t/dml_global_variables.test X%%DATADIR%%/tests/suite/perfschema/t/dml_handler.test X%%DATADIR%%/tests/suite/perfschema/t/dml_host_cache.test X%%DATADIR%%/tests/suite/perfschema/t/dml_hosts.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mems_by_account_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mems_by_host_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mems_by_thread_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mems_by_user_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mems_global_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_metadata_locks.test X%%DATADIR%%/tests/suite/perfschema/t/dml_mutex_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_os_global_by_type.test X%%DATADIR%%/tests/suite/perfschema/t/dml_performance_timers.test X%%DATADIR%%/tests/suite/perfschema/t/dml_prepared_statements_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_applier_configuration.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_applier_status.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_applier_status_by_coordinator.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_applier_status_by_worker.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_connection_configuration.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_connection_status.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_group_member_stats.test X%%DATADIR%%/tests/suite/perfschema/t/dml_replication_group_members.test X%%DATADIR%%/tests/suite/perfschema/t/dml_rwlock_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_session_account_connect_attrs.test X%%DATADIR%%/tests/suite/perfschema/t/dml_session_connect_attrs.test X%%DATADIR%%/tests/suite/perfschema/t/dml_session_status.test X%%DATADIR%%/tests/suite/perfschema/t/dml_session_variables.test X%%DATADIR%%/tests/suite/perfschema/t/dml_setup_actors.test X%%DATADIR%%/tests/suite/perfschema/t/dml_setup_consumers.test X%%DATADIR%%/tests/suite/perfschema/t/dml_setup_instruments.test X%%DATADIR%%/tests/suite/perfschema/t/dml_setup_objects.test X%%DATADIR%%/tests/suite/perfschema/t/dml_setup_timers.test X%%DATADIR%%/tests/suite/perfschema/t/dml_socket_instances.test X%%DATADIR%%/tests/suite/perfschema/t/dml_socket_summary_by_event_name.test X%%DATADIR%%/tests/suite/perfschema/t/dml_socket_summary_by_instance.test X%%DATADIR%%/tests/suite/perfschema/t/dml_status_by_account.test X%%DATADIR%%/tests/suite/perfschema/t/dml_status_by_host.test X%%DATADIR%%/tests/suite/perfschema/t/dml_status_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/dml_status_by_user.test X%%DATADIR%%/tests/suite/perfschema/t/dml_table_handles.test X%%DATADIR%%/tests/suite/perfschema/t/dml_threads.test X%%DATADIR%%/tests/suite/perfschema/t/dml_tiws_by_index_usage.test X%%DATADIR%%/tests/suite/perfschema/t/dml_tiws_by_table.test X%%DATADIR%%/tests/suite/perfschema/t/dml_tlws_by_table.test X%%DATADIR%%/tests/suite/perfschema/t/dml_users.test X%%DATADIR%%/tests/suite/perfschema/t/dml_uvar_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/dml_variables_by_thread.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_u.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_u_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_a_no_u_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_u.test X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_u_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/event_aggregate_no_u_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/func_file_io.test X%%DATADIR%%/tests/suite/perfschema/t/func_mutex.test X%%DATADIR%%/tests/suite/perfschema/t/global_read_lock.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_again_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_again_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_bad_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_bad_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_good_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_good_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_noname_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_addrinfo_noname_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_auth_plugin-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_auth_plugin.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_blocked.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_format.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_max_con.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_nameinfo_again_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_nameinfo_again_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_nameinfo_noname_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_nameinfo_noname_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_passwd.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv4_ssl.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_again_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_again_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_good_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_good_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_auth_plugin-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_auth_plugin.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_blocked-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_blocked.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_max_con-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_max_con.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_allow-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_allow.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_deny-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_deny.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_passwd-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_passwd.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_ssl-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_ipv6_ssl.test X%%DATADIR%%/tests/suite/perfschema/t/hostcache_peer_addr-master.opt X%%DATADIR%%/tests/suite/perfschema/t/hostcache_peer_addr.test X%%DATADIR%%/tests/suite/perfschema/t/indexed_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/information_schema.test X%%DATADIR%%/tests/suite/perfschema/t/innodb_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/io_cache-master.opt X%%DATADIR%%/tests/suite/perfschema/t/io_cache.test X%%DATADIR%%/tests/suite/perfschema/t/max_program_zero-master.opt X%%DATADIR%%/tests/suite/perfschema/t/max_program_zero.test X%%DATADIR%%/tests/suite/perfschema/t/mdl_func.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_32bit-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_32bit.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_u.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_u_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_a_no_u_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_u-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_u.test X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_u_no_h-master.opt X%%DATADIR%%/tests/suite/perfschema/t/memory_aggregate_no_u_no_h.test X%%DATADIR%%/tests/suite/perfschema/t/memory_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/merge_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/misc.test X%%DATADIR%%/tests/suite/perfschema/t/multi_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/myisam_file_io.opt X%%DATADIR%%/tests/suite/perfschema/t/myisam_file_io.test X%%DATADIR%%/tests/suite/perfschema/t/myisam_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/nesting.test X%%DATADIR%%/tests/suite/perfschema/t/no_threads-master.opt X%%DATADIR%%/tests/suite/perfschema/t/no_threads.test X%%DATADIR%%/tests/suite/perfschema/t/one_thread_per_con-master.opt X%%DATADIR%%/tests/suite/perfschema/t/one_thread_per_con.test X%%DATADIR%%/tests/suite/perfschema/t/ortho_iter.test X%%DATADIR%%/tests/suite/perfschema/t/part_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_event-master.opt X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_event.test X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_func-master.opt X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_func.test X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_proc-master.opt X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_proc.test X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_table-master.opt X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_table.test X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_view-master.opt X%%DATADIR%%/tests/suite/perfschema/t/pfs_upgrade_view.test X%%DATADIR%%/tests/suite/perfschema/t/prepared_statements.test X%%DATADIR%%/tests/suite/perfschema/t/prepared_stmts_by_stored_programs.test X%%DATADIR%%/tests/suite/perfschema/t/privilege.test X%%DATADIR%%/tests/suite/perfschema/t/privilege_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/query_cache-master.opt X%%DATADIR%%/tests/suite/perfschema/t/query_cache.test X%%DATADIR%%/tests/suite/perfschema/t/read_only.test X%%DATADIR%%/tests/suite/perfschema/t/relaylog-slave.opt X%%DATADIR%%/tests/suite/perfschema/t/relaylog.test X%%DATADIR%%/tests/suite/perfschema/t/rollback_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/rpl_group_member_stats.test X%%DATADIR%%/tests/suite/perfschema/t/rpl_group_members.test X%%DATADIR%%/tests/suite/perfschema/t/rpl_gtid_func.test X%%DATADIR%%/tests/suite/perfschema/t/rpl_statements-master.opt X%%DATADIR%%/tests/suite/perfschema/t/rpl_statements-slave.opt X%%DATADIR%%/tests/suite/perfschema/t/rpl_statements.test X%%DATADIR%%/tests/suite/perfschema/t/rpl_threads-slave.opt X%%DATADIR%%/tests/suite/perfschema/t/rpl_threads.test X%%DATADIR%%/tests/suite/perfschema/t/schema.test X%%DATADIR%%/tests/suite/perfschema/t/selects-master.opt X%%DATADIR%%/tests/suite/perfschema/t/selects.test X%%DATADIR%%/tests/suite/perfschema/t/server_init.test X%%DATADIR%%/tests/suite/perfschema/t/setup_actors.test X%%DATADIR%%/tests/suite/perfschema/t/setup_actors_enabled.test X%%DATADIR%%/tests/suite/perfschema/t/setup_actors_history.test X%%DATADIR%%/tests/suite/perfschema/t/setup_consumers_defaults-master.opt X%%DATADIR%%/tests/suite/perfschema/t/setup_consumers_defaults.test X%%DATADIR%%/tests/suite/perfschema/t/setup_instruments_defaults-master.opt X%%DATADIR%%/tests/suite/perfschema/t/setup_instruments_defaults.test X%%DATADIR%%/tests/suite/perfschema/t/setup_object_table_lock_io.test X%%DATADIR%%/tests/suite/perfschema/t/setup_objects.test X%%DATADIR%%/tests/suite/perfschema/t/short_option_1-master.opt X%%DATADIR%%/tests/suite/perfschema/t/short_option_1.test X%%DATADIR%%/tests/suite/perfschema/t/short_option_2-master.opt X%%DATADIR%%/tests/suite/perfschema/t/short_option_2.test X%%DATADIR%%/tests/suite/perfschema/t/show_aggregate-master.opt X%%DATADIR%%/tests/suite/perfschema/t/show_aggregate.test X%%DATADIR%%/tests/suite/perfschema/t/show_coverage.test X%%DATADIR%%/tests/suite/perfschema/t/show_misc.test X%%DATADIR%%/tests/suite/perfschema/t/show_plugin-master.opt X%%DATADIR%%/tests/suite/perfschema/t/show_plugin.test X%%DATADIR%%/tests/suite/perfschema/t/show_sanity.test X%%DATADIR%%/tests/suite/perfschema/t/socket_connect.test X%%DATADIR%%/tests/suite/perfschema/t/socket_instances_func-master.opt X%%DATADIR%%/tests/suite/perfschema/t/socket_instances_func.test X%%DATADIR%%/tests/suite/perfschema/t/socket_instances_func_win-master.opt X%%DATADIR%%/tests/suite/perfschema/t/socket_instances_func_win.test X%%DATADIR%%/tests/suite/perfschema/t/socket_summary_by_event_name_func.test X%%DATADIR%%/tests/suite/perfschema/t/socket_summary_by_instance_func.test X%%DATADIR%%/tests/suite/perfschema/t/socket_summary_by_instance_func_win.test X%%DATADIR%%/tests/suite/perfschema/t/stage_mdl_function.test X%%DATADIR%%/tests/suite/perfschema/t/stage_mdl_global-master.opt X%%DATADIR%%/tests/suite/perfschema/t/stage_mdl_global.test X%%DATADIR%%/tests/suite/perfschema/t/stage_mdl_procedure.test X%%DATADIR%%/tests/suite/perfschema/t/stage_mdl_table.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_idle-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_idle.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_stages-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_stages.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_statements-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_statements.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_transactions-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_transactions.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_waits-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_disable_waits.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_innodb-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_innodb.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_digest-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_digest.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_digest_sql_length-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_digest_sql_length.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_index-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_index.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_table_lock-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_low_table_lock.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_account-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_account.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_cond_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_cond_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_cond_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_cond_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_digests-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_digests.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_file_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_file_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_file_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_file_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_host-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_host.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_index-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_index.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mdl-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mdl.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_memory_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_memory_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mutex_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mutex_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mutex_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_mutex_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_prepared_stmts_instances-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_prepared_stmts_instances.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_rwlock_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_rwlock_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_rwlock_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_rwlock_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_setup_actors-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_setup_actors.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_setup_objects-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_setup_objects.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_socket_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_socket_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_socket_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_socket_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stage_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stage_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stages_history-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stages_history.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stages_history_long-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_stages_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statement_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statement_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statements_history-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statements_history.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statements_history_long-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_statements_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_hdl-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_hdl.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_lock-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_table_lock.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_thread_class-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_thread_class.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_thread_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_thread_inst.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_transactions_history-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_transactions_history.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_transactions_history_long-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_transactions_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_user-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_user.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_waits_history-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_waits_history.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_waits_history_long-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_no_waits_history_long.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_nothing-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_nothing.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_off-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_off.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_on-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_on.test X%%DATADIR%%/tests/suite/perfschema/t/start_server_zero_digest_sql_length-master.opt X%%DATADIR%%/tests/suite/perfschema/t/start_server_zero_digest_sql_length.test X%%DATADIR%%/tests/suite/perfschema/t/statement_digest.test X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_charset.test X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_consumers-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_consumers.test X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_consumers2-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_consumers2.test X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_long_query-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_digest_long_query.test X%%DATADIR%%/tests/suite/perfschema/t/statement_program_concurrency-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_program_concurrency.test X%%DATADIR%%/tests/suite/perfschema/t/statement_program_lost_inst-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_program_lost_inst.test X%%DATADIR%%/tests/suite/perfschema/t/statement_program_nested-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_program_nested.test X%%DATADIR%%/tests/suite/perfschema/t/statement_program_nesting_event_check-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_program_nesting_event_check.test X%%DATADIR%%/tests/suite/perfschema/t/statement_program_non_nested-master.opt X%%DATADIR%%/tests/suite/perfschema/t/statement_program_non_nested.test X%%DATADIR%%/tests/suite/perfschema/t/status_reprepare.test X%%DATADIR%%/tests/suite/perfschema/t/sxlock_func.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_global_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_global_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_global_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_global_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_hist_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_hist_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_hist_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_hist_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_off.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_thread_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_thread_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_thread_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_aggregate_thread_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_global_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_global_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_global_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_global_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_hist_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_hist_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_hist_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_hist_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_thread_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_thread_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_thread_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_io_aggregate_thread_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_global_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_global_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_global_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_global_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_hist_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_hist_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_hist_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_hist_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_thread_2u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_thread_2u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_thread_4u_2t.test X%%DATADIR%%/tests/suite/perfschema/t/table_lock_aggregate_thread_4u_3t.test X%%DATADIR%%/tests/suite/perfschema/t/table_schema.test X%%DATADIR%%/tests/suite/perfschema/t/tampered_perfschema_table1-master.opt X%%DATADIR%%/tests/suite/perfschema/t/tampered_perfschema_table1.test X%%DATADIR%%/tests/suite/perfschema/t/temp_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/thread_cache-master.opt X%%DATADIR%%/tests/suite/perfschema/t/thread_cache.test X%%DATADIR%%/tests/suite/perfschema/t/threads_history.test X%%DATADIR%%/tests/suite/perfschema/t/threads_innodb.test X%%DATADIR%%/tests/suite/perfschema/t/threads_mysql-master.opt X%%DATADIR%%/tests/suite/perfschema/t/threads_mysql.test X%%DATADIR%%/tests/suite/perfschema/t/threads_mysql_freebsd.test X%%DATADIR%%/tests/suite/perfschema/t/threads_mysql_linux.test X%%DATADIR%%/tests/suite/perfschema/t/threads_mysql_windows.test X%%DATADIR%%/tests/suite/perfschema/t/transaction-master.opt X%%DATADIR%%/tests/suite/perfschema/t/transaction.test X%%DATADIR%%/tests/suite/perfschema/t/transaction_gtid.test X%%DATADIR%%/tests/suite/perfschema/t/transaction_nested_events-master.opt X%%DATADIR%%/tests/suite/perfschema/t/transaction_nested_events.test X%%DATADIR%%/tests/suite/perfschema/t/trigger_table_io.test X%%DATADIR%%/tests/suite/perfschema/t/unary_digest.test X%%DATADIR%%/tests/suite/perfschema/t/user_var_func.test X%%DATADIR%%/tests/suite/perfschema/t/view_table_io.test X%%DATADIR%%/tests/suite/perfschema_stress/README X%%DATADIR%%/tests/suite/perfschema_stress/include/settings.inc X%%DATADIR%%/tests/suite/perfschema_stress/r/modify.result X%%DATADIR%%/tests/suite/perfschema_stress/r/read.result X%%DATADIR%%/tests/suite/perfschema_stress/r/work.result X%%DATADIR%%/tests/suite/perfschema_stress/stress_init.txt X%%DATADIR%%/tests/suite/perfschema_stress/stress_tests.txt X%%DATADIR%%/tests/suite/perfschema_stress/t/modify.test X%%DATADIR%%/tests/suite/perfschema_stress/t/read.test X%%DATADIR%%/tests/suite/perfschema_stress/t/setup.test X%%DATADIR%%/tests/suite/perfschema_stress/t/work.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/basic.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/drop_error_log.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/have_plugin_rewrite_example.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/have_plugin_rewriter.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/install_pre_parse_plugin.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/install_rewriter.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/install_rewriter_with_optional_columns.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/load_error_log.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/reload.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/setup_general_log.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/show_general_log.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/show_process_list.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/trivial.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/include/uninstall_rewriter.inc X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/basic.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/character_set.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/deleted_rule.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/digest_collision.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/disabled_rule.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/engines.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/errors.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/insert.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/joins.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/logging_general.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/logging_general_raw.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/multiple.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/new_rule.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/normalized.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/optional_columns.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/performance_schema.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/pre_parse_example.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/prepared_statements.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/privileges.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/query_cache.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/recovery.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/refresh_thread.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/reload.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/rules_table.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/schema.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/special.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/stored_procedures.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/transactions.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/type.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/verbose.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/r/warnings.result X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/basic.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/character_set.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/deleted_rule.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/digest_collision-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/digest_collision.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/disabled_rule.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/engines.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/errors-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/errors.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/insert.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/joins.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/logging_general.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/logging_general_raw-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/logging_general_raw.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/multiple.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/new_rule.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/normalized.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/optional_columns.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/performance_schema.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/pre_parse_example-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/pre_parse_example.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/prepared_statements.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/privileges.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/query_cache-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/query_cache.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/recovery.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/refresh_thread.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/reload.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/rules_table.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/schema.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/special.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/stored_procedures.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/suite.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/transactions.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/type.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/verbose-master.opt X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/verbose.test X%%DATADIR%%/tests/suite/query_rewrite_plugins/t/warnings.test X%%DATADIR%%/tests/suite/rpl/README X%%DATADIR%%/tests/suite/rpl/combinations X%%DATADIR%%/tests/suite/rpl/extension/README X%%DATADIR%%/tests/suite/rpl/extension/README.bhs X%%DATADIR%%/tests/suite/rpl/extension/README.checksum X%%DATADIR%%/tests/suite/rpl/extension/bhs.pl X%%DATADIR%%/tests/suite/rpl/extension/bhs/default.rules X%%DATADIR%%/tests/suite/rpl/extension/bhs/disabled.def X%%DATADIR%%/tests/suite/rpl/extension/bhs/master-slave-bhs.inc X%%DATADIR%%/tests/suite/rpl/extension/bhs/master-slave.inc X%%DATADIR%%/tests/suite/rpl/extension/bhs/my.cnf X%%DATADIR%%/tests/suite/rpl/extension/bhs/rpl_1slave_base.cnf X%%DATADIR%%/tests/suite/rpl/extension/bhs/update_test_cases X%%DATADIR%%/tests/suite/rpl/extension/checksum.pl X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_db.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_event.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_select.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_table.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_user.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_check_view.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_clear_tables.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_ddl.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_dml.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_mixed_show_binlog_format.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_only_stmt_unsafe.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_partition.inc X%%DATADIR%%/tests/suite/rpl/include/rpl_row_event_max_size_show_binlog.inc X%%DATADIR%%/tests/suite/rpl/my.cnf X%%DATADIR%%/tests/suite/rpl/r/default_row_format_01.result X%%DATADIR%%/tests/suite/rpl/r/default_row_format_02.result X%%DATADIR%%/tests/suite/rpl/r/rpl000001.a.result X%%DATADIR%%/tests/suite/rpl/r/rpl000001.b.result X%%DATADIR%%/tests/suite/rpl/r/rpl_0.result X%%DATADIR%%/tests/suite/rpl/r/rpl_000010.result X%%DATADIR%%/tests/suite/rpl/r/rpl_000011.result X%%DATADIR%%/tests/suite/rpl/r/rpl_000013.result X%%DATADIR%%/tests/suite/rpl/r/rpl_000017.result X%%DATADIR%%/tests/suite/rpl/r/rpl_4threads_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_DML_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_EE_err.result X%%DATADIR%%/tests/suite/rpl/r/rpl_LD_INFILE.result X%%DATADIR%%/tests/suite/rpl/r/rpl_alter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_alter_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_alter_repository.result X%%DATADIR%%/tests/suite/rpl/r/rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.result X%%DATADIR%%/tests/suite/rpl/r/rpl_apply_binlog_with_gtid_when_gtid_mode_off.result X%%DATADIR%%/tests/suite/rpl/r/rpl_auto_increment.result X%%DATADIR%%/tests/suite/rpl/r/rpl_auto_increment_11932.result X%%DATADIR%%/tests/suite/rpl/r/rpl_auto_increment_bug33029.result X%%DATADIR%%/tests/suite/rpl/r/rpl_auto_increment_bug45679.result X%%DATADIR%%/tests/suite/rpl/r/rpl_auto_increment_update_failure.result X%%DATADIR%%/tests/suite/rpl/r/rpl_avoid_temporal_upgrade.result X%%DATADIR%%/tests/suite/rpl/r/rpl_begin_commit_rollback.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_corruption.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_gcommit_options.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_grant.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_index.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_invalid_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_binlog_json.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bit.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bit_npk.result X%%DATADIR%%/tests/suite/rpl/r/rpl_blackhole.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug26395.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug31076.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug33931.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug37426.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug38694.result X%%DATADIR%%/tests/suite/rpl/r/rpl_bug41902.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master_dbug.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master_open_temp_tables.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master_relay_log_purge.result X%%DATADIR%%/tests/suite/rpl/r/rpl_change_master_without_stopping_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_charset.result X%%DATADIR%%/tests/suite/rpl/r/rpl_charset_sjis.result X%%DATADIR%%/tests/suite/rpl/r/rpl_check_gtid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_check_net_interrupted_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_checksum.result X%%DATADIR%%/tests/suite/rpl/r/rpl_checksum_cache.result X%%DATADIR%%/tests/suite/rpl/r/rpl_checksum_undef.result X%%DATADIR%%/tests/suite/rpl/r/rpl_chg_rpl_filter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_circular_for_4_hosts.result X%%DATADIR%%/tests/suite/rpl/r/rpl_colSize.result X%%DATADIR%%/tests/suite/rpl/r/rpl_commit_after_flush.result X%%DATADIR%%/tests/suite/rpl/r/rpl_concurrency_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_conditional_comments.result X%%DATADIR%%/tests/suite/rpl/r/rpl_connection.result X%%DATADIR%%/tests/suite/rpl/r/rpl_corruption.result X%%DATADIR%%/tests/suite/rpl/r/rpl_crash_safe_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_crc_check.result X%%DATADIR%%/tests/suite/rpl/r/rpl_create_database.result X%%DATADIR%%/tests/suite/rpl/r/rpl_create_drop_temp_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_create_if_not_exists.result X%%DATADIR%%/tests/suite/rpl/r/rpl_create_tmp_table_if_not_exists.result X%%DATADIR%%/tests/suite/rpl/r/rpl_critical_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_critical_errors.result.txt X%%DATADIR%%/tests/suite/rpl/r/rpl_cross_version.result X%%DATADIR%%/tests/suite/rpl/r/rpl_current_user.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ddl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_deadlock_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_delayed_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_delete_no_where.result X%%DATADIR%%/tests/suite/rpl/r/rpl_do_db_filter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_do_grant.result X%%DATADIR%%/tests/suite/rpl/r/rpl_do_table_filter_insensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_do_table_filter_sensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop_db_fail.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop_temp.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop_temp_gtid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_drop_view.result X%%DATADIR%%/tests/suite/rpl/r/rpl_dual_pos_advance.result X%%DATADIR%%/tests/suite/rpl/r/rpl_empty_master_host.result X%%DATADIR%%/tests/suite/rpl/r/rpl_empty_multi_update.result X%%DATADIR%%/tests/suite/rpl/r/rpl_err_ignoredtable.result X%%DATADIR%%/tests/suite/rpl/r/rpl_events.result X%%DATADIR%%/tests/suite/rpl/r/rpl_explicit_modify_gtid_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_extra_col_master_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_extra_col_master_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_extra_col_slave_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_extra_col_slave_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_extra_row_data.result X%%DATADIR%%/tests/suite/rpl/r/rpl_failed_optimize.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_database.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_dbs_dynamic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_rewrite_db_dynamic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_tables_dynamic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_tables_not_exist.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_warnings.result X%%DATADIR%%/tests/suite/rpl/r/rpl_filter_wild_tables_dynamic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_flush_logs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_flushlog_loop.result X%%DATADIR%%/tests/suite/rpl/r/rpl_foreign_key_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_free_items.result X%%DATADIR%%/tests/suite/rpl/r/rpl_function_defaults.result X%%DATADIR%%/tests/suite/rpl/r/rpl_general_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_geometry.result X%%DATADIR%%/tests/suite/rpl/r/rpl_get_lock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_get_master_version_and_clock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_grant.result X%%DATADIR%%/tests/suite/rpl/r/rpl_grant_plugin.result X%%DATADIR%%/tests/suite/rpl/r/rpl_group_commit_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_group_replication_commands.result X%%DATADIR%%/tests/suite/rpl/r/rpl_group_replication_user.result X%%DATADIR%%/tests/suite/rpl/r/rpl_group_replication_wait_for_executed_gtid_set_no_timeout.result X%%DATADIR%%/tests/suite/rpl/r/rpl_group_replication_wait_for_executed_gtid_set_with_sleep.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_binary_log_as_relay_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_create_select.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_delete_memory_table_after_start_server.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_disconnect_drop_temporary_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_do_table_filter_insensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_do_table_filter_sensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_drop_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_dump_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_empty_transaction.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_events.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_execution.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_failover.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_heartbeat_2slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_ignore_table_filter_insensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_ignore_table_filter_sensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_loaddata_s.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_mode.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_mts_replicate_same_server_id.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_mysqlbinlog_rotate.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_not_yet_determined.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_parallel.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_purged_fail_to_connect.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_purged_maintained.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_replay_relaylog.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_retrieve_last_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_row_event_max_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_server_sighup.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_spanned_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_split_statements.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_sql_until_before_after.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_stm_insert_delayed.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_stress_failover.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_table_repository_split_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_transaction_split_across_relay_logs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtid_validate_slave_gtids.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtids_restart_slave_io_lost_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtids_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtids_table_disable_binlog_on_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_gtids_table_disable_log_slave_updates.result X%%DATADIR%%/tests/suite/rpl/r/rpl_heartbeat.result X%%DATADIR%%/tests/suite/rpl/r/rpl_heartbeat_2slaves.result X%%DATADIR%%/tests/suite/rpl/r/rpl_heartbeat_basic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_heartbeat_ssl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_high_prio_trx_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_idempotency.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_db_filter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_grant.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_revoke.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_table_filter_insensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_table_filter_sensitive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ignore_table_update.result X%%DATADIR%%/tests/suite/rpl/r/rpl_incident.result X%%DATADIR%%/tests/suite/rpl/r/rpl_init_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_init_slave_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_innodb_bug28430.result X%%DATADIR%%/tests/suite/rpl/r/rpl_innodb_bug30888.result X%%DATADIR%%/tests/suite/rpl/r/rpl_innodb_info_tbl_slave_tmp_tbl_mismatch.result X%%DATADIR%%/tests/suite/rpl/r/rpl_innodb_mixed_ddl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_innodb_mixed_dml.result X%%DATADIR%%/tests/suite/rpl/r/rpl_insert_id.result X%%DATADIR%%/tests/suite/rpl/r/rpl_insert_id_pk.result X%%DATADIR%%/tests/suite/rpl/r/rpl_insert_ignore.result X%%DATADIR%%/tests/suite/rpl/r/rpl_insert_on_update.result X%%DATADIR%%/tests/suite/rpl/r/rpl_invoked_features.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ip_mix.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ip_mix2.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ipv4_as_ipv6.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ipv6.result X%%DATADIR%%/tests/suite/rpl/r/rpl_json.result X%%DATADIR%%/tests/suite/rpl/r/rpl_kill_query.result X%%DATADIR%%/tests/suite/rpl/r/rpl_killed_ddl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_known_bugs_detection.result X%%DATADIR%%/tests/suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_charset.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_fatal.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_m.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_map.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_s.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_simple.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddata_symlink.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loaddatalocal.result X%%DATADIR%%/tests/suite/rpl/r/rpl_loadfile.result X%%DATADIR%%/tests/suite/rpl/r/rpl_locale.result X%%DATADIR%%/tests/suite/rpl/r/rpl_log_pos.result X%%DATADIR%%/tests/suite/rpl/r/rpl_lost_events_on_rotate.result X%%DATADIR%%/tests/suite/rpl/r/rpl_low_slave_net_time_out.result X%%DATADIR%%/tests/suite/rpl/r/rpl_manual_change_index_file.result X%%DATADIR%%/tests/suite/rpl/r/rpl_many_optimize.result X%%DATADIR%%/tests/suite/rpl/r/rpl_master_connection.result X%%DATADIR%%/tests/suite/rpl/r/rpl_master_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_master_pos_wait.result X%%DATADIR%%/tests/suite/rpl/r/rpl_master_pos_wait_after_startup.result X%%DATADIR%%/tests/suite/rpl/r/rpl_migration_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_misc_functions.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mix_found_rows.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_binlog_max_cache_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_bit_pk.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_ddl_dml.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_drop_create_temp_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mixed_row_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_database_transaction_retry.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_debug.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_delete_file_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_execute_partial_trx_with_auto_pos_off.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_execute_partial_trx_with_auto_pos_on.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_gtids_restart_slave_io_lost_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_assertion_failure.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_crash.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_recovery.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_timestamping.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_transaction_retry.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_logical_clock_wrong_start_pos.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_slave_hang_with_partial_trx.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_slave_preserve_commit_order.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_slave_preserve_commit_order_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_slave_preserve_commit_order_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_stop_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_submode_switch.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mts_submode_switch_without_reset_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_delete.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_delete2.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_engine.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_basic.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_channel_map_stress.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_channel_name_relay_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_cmd_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_flush_relay_logs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_init_failure.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_mts_recovery.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_mts_reset_worker_info.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_mts_slave_retry.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_open_temp_tables_warning.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_parallel_channels_admin.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_perfschema.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_relay_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_repo_info_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_repository.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_slave_files.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_slave_skip_counter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_source_slave_start_stop.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_update.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_update2.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_update3.result X%%DATADIR%%/tests/suite/rpl/r/rpl_multi_update4.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mysql_upgrade.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mysqlbinlog_gtid_on.result X%%DATADIR%%/tests/suite/rpl/r/rpl_mysqlbinlog_relay_start_position.result X%%DATADIR%%/tests/suite/rpl/r/rpl_name_const.result X%%DATADIR%%/tests/suite/rpl/r/rpl_no_gtid_delete_memory_table_after_start_server.result X%%DATADIR%%/tests/suite/rpl/r/rpl_no_gtid_split_statements.result X%%DATADIR%%/tests/suite/rpl/r/rpl_non_direct_mixed_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_non_direct_row_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_non_direct_stm_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_nondeterministic_functions.result X%%DATADIR%%/tests/suite/rpl/r/rpl_not_null_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_not_null_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_open_temp_tables_warning.result X%%DATADIR%%/tests/suite/rpl/r/rpl_optimize.result X%%DATADIR%%/tests/suite/rpl/r/rpl_packet.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_change_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_conf_limits.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_conflicts.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_ddl_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_ddl_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_fallback.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_load_data.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_multi_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_recovery.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_seconds_behind_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_show_binlog_events_purge_logs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_start_stop.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_switch_sequential.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_temp_query.result X%%DATADIR%%/tests/suite/rpl/r/rpl_parallel_worker_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partial_gtid_trx_followed_by_anonymous_trx_by_receiver.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partial_gtid_trx_followed_by_trx_at_startup.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partition_archive.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partition_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partition_memory.result X%%DATADIR%%/tests/suite/rpl/r/rpl_partition_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_applier_config.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_applier_status.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_applier_status_by_coordinator.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_applier_status_by_worker.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_connect_config.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_connect_status.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_no_master_uuid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_perfschema_threads_processlist_status.result X%%DATADIR%%/tests/suite/rpl/r/rpl_plugin_load.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ps.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rbr_to_sbr.result X%%DATADIR%%/tests/suite/rpl/r/rpl_read_old_relay_log_info.result X%%DATADIR%%/tests/suite/rpl/r/rpl_read_only.result X%%DATADIR%%/tests/suite/rpl/r/rpl_recovery_empty_sqlthd_pos.result X%%DATADIR%%/tests/suite/rpl/r/rpl_recovery_replicate_same_server_id.result X%%DATADIR%%/tests/suite/rpl/r/rpl_relay_log_recovery_positions.result X%%DATADIR%%/tests/suite/rpl/r/rpl_relay_space_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_relay_space_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_relayrotate.result X%%DATADIR%%/tests/suite/rpl/r/rpl_relayspace.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replicate_do.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replicate_event_after_sync_stage.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replicate_ignore_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replicate_rewrite_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replicate_same_server_id.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_before_dml.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_channels.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_channels_initialization.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_channels_receiver_thread.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_io.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_server_requirements.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_server_startup.result X%%DATADIR%%/tests/suite/rpl/r/rpl_replication_observers_example_plugin_server_startup_win.result X%%DATADIR%%/tests/suite/rpl/r/rpl_report.result X%%DATADIR%%/tests/suite/rpl/r/rpl_report_port.result X%%DATADIR%%/tests/suite/rpl/r/rpl_reset_slave_all.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rewrite_db_filter.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rewrt_db.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rotate_gtid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rotate_logs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rotate_purge_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_rotate_row_trans.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_001.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_4_bytes.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_NOW.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_USER.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_UUID.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_basic_11bugs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_basic_2myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_basic_3innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_basic_8partition.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_basic_allow_batching.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_binlog_max_cache_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_blob_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_blob_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_colSize.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_conflicts.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_corrupt.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_corruption.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_create_select.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_create_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_drop.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_drop_create_temp_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_err_ignoredtable.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_event_max_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_find_row.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_flsh_tbls.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_func001.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_func002.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_func003.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_hash_scan.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_hash_scan_sanity.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_idempotency.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_ignorable_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_blobs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_eng_full.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_eng_min.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_eng_noblob.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_idx_full.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_idx_min.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_idx_noblob.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_misc.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_img_sanity.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_implicit_commit_binlog.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_inexist_tbl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_lcase_tblnames.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_loaddata_concurrent.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_loaddata_m.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_log_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_max_relay_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_merge_engine.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_mts_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_mts_rec_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_multi_query.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_mysqlbinlog.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_rec_comp_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_rec_comp_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_record_find_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_reset_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_rollback_to_savepoint.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp001.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp002_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp003.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp005.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp006_InnoDB.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp007_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp008.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp009.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp010.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp011.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_sp012.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_tabledefs_2myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_tabledefs_3innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_tbl_metadata.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_trig001.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_trig002.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_trig003.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_trig004.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_trunc_temp.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_unsafe_funcs.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_until.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_utf16.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_utf32.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_view01.result X%%DATADIR%%/tests/suite/rpl/r/rpl_row_wide_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_savepoint.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sbm_previous_gtid_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_seconds_behind_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_ack_thread.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_after_sync.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_future_logpos.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_group_commit_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_install_at_start_server.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_non_group_commit_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_shutdown_hang.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_uninstall_plugin.result X%%DATADIR%%/tests/suite/rpl/r/rpl_semi_sync_wait_slave_count.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sequential.result X%%DATADIR%%/tests/suite/rpl/r/rpl_server_id.result X%%DATADIR%%/tests/suite/rpl/r/rpl_server_id_ignore.result X%%DATADIR%%/tests/suite/rpl/r/rpl_server_uuid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_session_var.result X%%DATADIR%%/tests/suite/rpl/r/rpl_set_charset.result X%%DATADIR%%/tests/suite/rpl/r/rpl_set_gtid_mode_ongoing_wait_function.result X%%DATADIR%%/tests/suite/rpl/r/rpl_set_null_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_set_null_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_master_info_file.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_relaylog_events.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_slave_hosts.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_slave_running.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_slave_status_deadlock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_slave_status_nonblocking.result X%%DATADIR%%/tests/suite/rpl/r/rpl_show_slave_status_nonblocking_debug.result X%%DATADIR%%/tests/suite/rpl/r/rpl_simulate_create_chunk_failure.result X%%DATADIR%%/tests/suite/rpl/r/rpl_skip_ddl_errors_cli.result X%%DATADIR%%/tests/suite/rpl/r/rpl_skip_error.result X%%DATADIR%%/tests/suite/rpl/r/rpl_skip_incident.result X%%DATADIR%%/tests/suite/rpl/r/rpl_skip_slave_err_warnings.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_grp_exec.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_load_in.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_load_remove_tmpfile.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_load_tmpdir_not_exist.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_server_id_equal_to_zero.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_skip.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_start.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slave_status.result X%%DATADIR%%/tests/suite/rpl/r/rpl_slow_query_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sp004.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sp_effects.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sp_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sp_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sp_privileges.result X%%DATADIR%%/tests/suite/rpl/r/rpl_spec_variables.result X%%DATADIR%%/tests/suite/rpl/r/rpl_special_charset.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sporadic_master.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sql_thread_killed_waiting_commit_lock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ssl.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ssl1.result X%%DATADIR%%/tests/suite/rpl/r/rpl_ssl_semisync.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_000001.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_EE_err2.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_auto_increment_bug33029.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_binlog_max_cache_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_conflicts.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_drop_create_temp_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_flsh_tbls.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_found_rows.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_ignore.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_implicit_commit_binlog.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_lcase_tblnames.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_loaddata_concurrent.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_loadfile.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_log.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_max_relay_size.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mix_rollback_to_savepoint.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixed_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixed_mts_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_checksum.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_small.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_mixing_engines.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_multi_query.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_no_op.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_relay_ign_space.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_reset_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_sql_mode.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_start_stop_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_stop_middle_group.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_until.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_until_pos_middle_gtid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stm_user_variables.result X%%DATADIR%%/tests/suite/rpl/r/rpl_stop_slave.result X%%DATADIR%%/tests/suite/rpl/r/rpl_switch_stm_row_mixed.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sync.result X%%DATADIR%%/tests/suite/rpl/r/rpl_sync_relay_log_info.result X%%DATADIR%%/tests/suite/rpl/r/rpl_tablespace.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temp_table.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temp_table_mix_row.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temporal_fractional.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temporary.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temporary_error_table_repository.result X%%DATADIR%%/tests/suite/rpl/r/rpl_temporary_errors.result X%%DATADIR%%/tests/suite/rpl/r/rpl_test_framework.result X%%DATADIR%%/tests/suite/rpl/r/rpl_timestamp_upgrage_55.result X%%DATADIR%%/tests/suite/rpl/r/rpl_timezone.result X%%DATADIR%%/tests/suite/rpl/r/rpl_tmp_table_and_DDL.result X%%DATADIR%%/tests/suite/rpl/r/rpl_transaction_before_commit_failure.result X%%DATADIR%%/tests/suite/rpl/r/rpl_transaction_ctx_service.result X%%DATADIR%%/tests/suite/rpl/r/rpl_transaction_write_set_extraction.result X%%DATADIR%%/tests/suite/rpl/r/rpl_transaction_write_set_extraction_savepoint.result X%%DATADIR%%/tests/suite/rpl/r/rpl_trigger.result X%%DATADIR%%/tests/suite/rpl/r/rpl_trunc_temp.result X%%DATADIR%%/tests/suite/rpl/r/rpl_truncate_2myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_truncate_3innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_trx_boundary_parser_row.result X%%DATADIR%%/tests/suite/rpl/r/rpl_trx_boundary_parser_stmt.result X%%DATADIR%%/tests/suite/rpl/r/rpl_trx_boundary_parser_warning.result X%%DATADIR%%/tests/suite/rpl/r/rpl_typeconv.result X%%DATADIR%%/tests/suite/rpl/r/rpl_typeconv_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_udf.result X%%DATADIR%%/tests/suite/rpl/r/rpl_unknown_ignorable_event.result X%%DATADIR%%/tests/suite/rpl/r/rpl_user.result X%%DATADIR%%/tests/suite/rpl/r/rpl_user_if_exists.result X%%DATADIR%%/tests/suite/rpl/r/rpl_user_lock.result X%%DATADIR%%/tests/suite/rpl/r/rpl_user_variables.result X%%DATADIR%%/tests/suite/rpl/r/rpl_variables.result X%%DATADIR%%/tests/suite/rpl/r/rpl_variables_stm_innodb.result X%%DATADIR%%/tests/suite/rpl/r/rpl_variables_stm_myisam.result X%%DATADIR%%/tests/suite/rpl/r/rpl_view.result X%%DATADIR%%/tests/suite/rpl/r/rpl_view_multi.result X%%DATADIR%%/tests/suite/rpl/r/rpl_wait_for_executed_gtid_set.result X%%DATADIR%%/tests/suite/rpl/r/rpl_wait_for_executed_gtid_set_no_timeout.result X%%DATADIR%%/tests/suite/rpl/r/rpl_wait_for_executed_gtid_set_with_sleep.result X%%DATADIR%%/tests/suite/rpl/r/rpl_wait_for_gtid_executed_unknown_uuid.result X%%DATADIR%%/tests/suite/rpl/r/rpl_xa_survive_crash_debug.result X%%DATADIR%%/tests/suite/rpl/r/rpl_xa_survive_disconnect.result X%%DATADIR%%/tests/suite/rpl/r/rpl_xa_survive_disconnect_mixed_engines.result X%%DATADIR%%/tests/suite/rpl/r/transactional_ddl_locking.result X%%DATADIR%%/tests/suite/rpl/rpl_1slave_base.cnf X%%DATADIR%%/tests/suite/rpl/t/default_row_format_01.test X%%DATADIR%%/tests/suite/rpl/t/default_row_format_02-slave.opt X%%DATADIR%%/tests/suite/rpl/t/default_row_format_02.test X%%DATADIR%%/tests/suite/rpl/t/disabled.def X%%DATADIR%%/tests/suite/rpl/t/rpl_0.test X%%DATADIR%%/tests/suite/rpl/t/rpl_000010-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_000010.test X%%DATADIR%%/tests/suite/rpl/t/rpl_000011.test X%%DATADIR%%/tests/suite/rpl/t/rpl_000013.test X%%DATADIR%%/tests/suite/rpl/t/rpl_000017.test X%%DATADIR%%/tests/suite/rpl/t/rpl_4threads_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_DML_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_EE_err.test X%%DATADIR%%/tests/suite/rpl/t/rpl_LD_INFILE.test X%%DATADIR%%/tests/suite/rpl/t/rpl_alter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_alter_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_alter_repository.test X%%DATADIR%%/tests/suite/rpl/t/rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.test X%%DATADIR%%/tests/suite/rpl/t/rpl_apply_binlog_with_gtid_when_gtid_mode_off.test X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment.test X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment_11932.test X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment_bug33029.test X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment_bug45679.test X%%DATADIR%%/tests/suite/rpl/t/rpl_auto_increment_update_failure.test X%%DATADIR%%/tests/suite/rpl/t/rpl_avoid_temporal_upgrade.test X%%DATADIR%%/tests/suite/rpl/t/rpl_begin_commit_rollback-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_begin_commit_rollback-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_begin_commit_rollback.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_corruption.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_errors-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_gcommit_options-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_gcommit_options.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_grant.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_index.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_invalid_event-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_invalid_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_binlog_json.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bit.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bit_npk.test X%%DATADIR%%/tests/suite/rpl/t/rpl_blackhole.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug26395.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug31076.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug33931-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_bug33931.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug37426.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug38694-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_bug38694.test X%%DATADIR%%/tests/suite/rpl/t/rpl_bug41902-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_bug41902.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_dbug.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_open_temp_tables.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_relay_log_purge.test X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_without_stopping_slave-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_without_stopping_slave-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_change_master_without_stopping_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_charset.test X%%DATADIR%%/tests/suite/rpl/t/rpl_charset_sjis.test X%%DATADIR%%/tests/suite/rpl/t/rpl_check_gtid-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_check_gtid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_check_net_interrupted_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_checksum-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_checksum.test X%%DATADIR%%/tests/suite/rpl/t/rpl_checksum_cache.test X%%DATADIR%%/tests/suite/rpl/t/rpl_checksum_undef.test X%%DATADIR%%/tests/suite/rpl/t/rpl_chg_rpl_filter-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_chg_rpl_filter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_circular_for_4_hosts-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_circular_for_4_hosts.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_circular_for_4_hosts.test X%%DATADIR%%/tests/suite/rpl/t/rpl_colSize.test X%%DATADIR%%/tests/suite/rpl/t/rpl_commit_after_flush.test X%%DATADIR%%/tests/suite/rpl/t/rpl_concurrency_error-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_concurrency_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_conditional_comments.test X%%DATADIR%%/tests/suite/rpl/t/rpl_connection.test X%%DATADIR%%/tests/suite/rpl/t/rpl_corruption-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_corruption-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_corruption.test X%%DATADIR%%/tests/suite/rpl/t/rpl_crash_safe_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_crc_check-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_crc_check.test X%%DATADIR%%/tests/suite/rpl/t/rpl_create_database-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_create_database-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_create_database.test X%%DATADIR%%/tests/suite/rpl/t/rpl_create_drop_temp_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_create_if_not_exists.test X%%DATADIR%%/tests/suite/rpl/t/rpl_create_tmp_table_if_not_exists.test X%%DATADIR%%/tests/suite/rpl/t/rpl_critical_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_cross_version-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_cross_version.test X%%DATADIR%%/tests/suite/rpl/t/rpl_current_user-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_current_user.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_current_user.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ddl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_deadlock_innodb-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_deadlock_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_delayed_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_delete_no_where.test X%%DATADIR%%/tests/suite/rpl/t/rpl_do_db_filter-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_do_db_filter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_do_grant.test X%%DATADIR%%/tests/suite/rpl/t/rpl_do_table_filter_insensitive-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_do_table_filter_insensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_do_table_filter_insensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_do_table_filter_sensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_do_table_filter_sensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_db_fail.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_temp-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_temp.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_temp_gtid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_drop_view.test X%%DATADIR%%/tests/suite/rpl/t/rpl_dual_pos_advance-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_dual_pos_advance.test X%%DATADIR%%/tests/suite/rpl/t/rpl_empty_master_host.test X%%DATADIR%%/tests/suite/rpl/t/rpl_empty_multi_update.test X%%DATADIR%%/tests/suite/rpl/t/rpl_err_ignoredtable-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_err_ignoredtable.test X%%DATADIR%%/tests/suite/rpl/t/rpl_events.test X%%DATADIR%%/tests/suite/rpl/t/rpl_explicit_modify_gtid_table-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_explicit_modify_gtid_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_col_master_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_col_master_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_col_slave_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_col_slave_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_row_data-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_row_data-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_extra_row_data.test X%%DATADIR%%/tests/suite/rpl/t/rpl_failed_optimize.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_database-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_database.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_dbs_dynamic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_rewrite_db_dynamic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_tables_dynamic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_tables_not_exist-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_tables_not_exist.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_warnings-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_warnings.test X%%DATADIR%%/tests/suite/rpl/t/rpl_filter_wild_tables_dynamic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_flush_logs-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_flush_logs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_flushlog_loop-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_flushlog_loop-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_flushlog_loop.test X%%DATADIR%%/tests/suite/rpl/t/rpl_foreign_key_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_free_items-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_free_items.test X%%DATADIR%%/tests/suite/rpl/t/rpl_function_defaults.test X%%DATADIR%%/tests/suite/rpl/t/rpl_general_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_geometry.test X%%DATADIR%%/tests/suite/rpl/t/rpl_get_lock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_get_master_version_and_clock-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_get_master_version_and_clock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_grant.test X%%DATADIR%%/tests/suite/rpl/t/rpl_grant_plugin-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_grant_plugin-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_grant_plugin.test X%%DATADIR%%/tests/suite/rpl/t/rpl_group_commit_deadlock-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_group_commit_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_group_replication_commands.test X%%DATADIR%%/tests/suite/rpl/t/rpl_group_replication_user.test X%%DATADIR%%/tests/suite/rpl/t/rpl_group_replication_wait_for_executed_gtid_set_no_timeout.test X%%DATADIR%%/tests/suite/rpl/t/rpl_group_replication_wait_for_executed_gtid_set_with_sleep.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_binary_log_as_relay_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_create_select.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_delete_memory_table_after_start_server.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_disconnect_drop_temporary_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_do_table_filter_insensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_do_table_filter_sensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_do_table_filter_sensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_drop_table.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_drop_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_dump_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_empty_transaction.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_empty_transaction.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_events.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_execution-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_execution-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_execution.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_failover.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_failover.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_heartbeat_2slave.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_heartbeat_2slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_loaddata_s-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_loaddata_s.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mode.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mts_replicate_same_server_id-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mts_replicate_same_server_id.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_mysqlbinlog_rotate.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_not_yet_determined.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_parallel.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_purged_fail_to_connect-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_purged_fail_to_connect-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_purged_fail_to_connect.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_purged_maintained-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_purged_maintained.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_replay_relaylog.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_retrieve_last_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_row_event_max_size-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_row_event_max_size-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_row_event_max_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_server_sighup.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_spanned_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_split_statements.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_sql_until_before_after.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_stress_failover.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_stress_failover.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_table_repository_split_trx-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_table_repository_split_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_transaction_split_across_relay_logs.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_transaction_split_across_relay_logs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtid_validate_slave_gtids.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_restart_slave_io_lost_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_table_disable_binlog_on_slave-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_table_disable_binlog_on_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_table_disable_log_slave_updates-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_gtids_table_disable_log_slave_updates.test X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat.test X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat_2slaves.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat_2slaves.test X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat_basic.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat_basic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_heartbeat_ssl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_high_prio_trx_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_idempotency.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_db_filter-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_db_filter-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_db_filter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_grant-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_grant.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_revoke-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_revoke.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_filter_insensitive-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_filter_insensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_filter_insensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_filter_sensitive-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_filter_sensitive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_update-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ignore_table_update.test X%%DATADIR%%/tests/suite/rpl/t/rpl_incident.test X%%DATADIR%%/tests/suite/rpl/t/rpl_init_slave-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_init_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_init_slave_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_bug28430-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_bug28430-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_bug28430.test X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_bug30888.test X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_info_tbl_slave_tmp_tbl_mismatch.test X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_mixed_ddl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_innodb_mixed_dml.test X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_id-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_id-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_id.test X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_id_pk.test X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_ignore.test X%%DATADIR%%/tests/suite/rpl/t/rpl_insert_on_update.test X%%DATADIR%%/tests/suite/rpl/t/rpl_invoked_features-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_invoked_features.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix2-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix2.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_ip_mix2.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ipv4_as_ipv6.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_ipv4_as_ipv6.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ipv6.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_ipv6.test X%%DATADIR%%/tests/suite/rpl/t/rpl_json.test X%%DATADIR%%/tests/suite/rpl/t/rpl_kill_query-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_kill_query.test X%%DATADIR%%/tests/suite/rpl/t/rpl_killed_ddl-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_killed_ddl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_known_bugs_detection-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_known_bugs_detection-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_known_bugs_detection.test X%%DATADIR%%/tests/suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_charset.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_fatal-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_fatal.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_m-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_m.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_map-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_map-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_map.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_s-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_s.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_simple.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_symlink-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_symlink-master.sh X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_symlink-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_symlink-slave.sh X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddata_symlink.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loaddatalocal.test X%%DATADIR%%/tests/suite/rpl/t/rpl_loadfile.test X%%DATADIR%%/tests/suite/rpl/t/rpl_locale.test X%%DATADIR%%/tests/suite/rpl/t/rpl_log_pos.test X%%DATADIR%%/tests/suite/rpl/t/rpl_lost_events_on_rotate.test X%%DATADIR%%/tests/suite/rpl/t/rpl_low_slave_net_time_out.test X%%DATADIR%%/tests/suite/rpl/t/rpl_manual_change_index_file.test X%%DATADIR%%/tests/suite/rpl/t/rpl_many_optimize.test X%%DATADIR%%/tests/suite/rpl/t/rpl_master_connection-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_master_connection-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_master_connection.test X%%DATADIR%%/tests/suite/rpl/t/rpl_master_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_master_pos_wait.test X%%DATADIR%%/tests/suite/rpl/t/rpl_master_pos_wait_after_startup.test X%%DATADIR%%/tests/suite/rpl/t/rpl_migration_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_misc_functions-slave.sh X%%DATADIR%%/tests/suite/rpl/t/rpl_misc_functions.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mix_found_rows-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mix_found_rows.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_binlog_max_cache_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_bit_pk.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_ddl_dml.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_drop_create_temp_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_implicit_commit_binlog-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_implicit_commit_binlog-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_implicit_commit_binlog.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mixed_row_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_database_transaction_retry.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_debug-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_debug.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_delete_file_event-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_delete_file_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_off-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_off.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_on-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_on.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_gtids_restart_slave_io_lost_trx-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_gtids_restart_slave_io_lost_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_assertion_failure.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_crash.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_recovery-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_recovery.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_timestamping.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_transaction_retry.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_logical_clock_wrong_start_pos.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_hang_with_partial_trx-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_hang_with_partial_trx.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_preserve_commit_order-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_preserve_commit_order.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_preserve_commit_order_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_preserve_commit_order_error-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_slave_preserve_commit_order_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_stop_slave-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_stop_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_submode_switch-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_submode_switch.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mts_submode_switch_without_reset_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_delete-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_delete.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_delete2-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_delete2.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_engine.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_basic.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_basic.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_channel_map_stress-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_channel_map_stress.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_channel_name_relay_log-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_channel_name_relay_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_cmd_errors.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_cmd_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_flush_relay_logs.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_flush_relay_logs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_init_failure.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_mts_recovery.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_mts_recovery.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_mts_reset_worker_info.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_mts_slave_retry-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_mts_slave_retry.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_open_temp_tables_warning.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_open_temp_tables_warning.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_parallel_channels_admin-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_parallel_channels_admin.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_perfschema.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_perfschema.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_relay_log-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_relay_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_repo_info_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_repository.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_repository.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_files.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_files.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_skip_counter.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_skip_counter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_start_stop.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_source_slave_start_stop.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update2-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update2.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update3.test X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update4-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_multi_update4.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mysql_upgrade.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mysqlbinlog_gtid_on.test X%%DATADIR%%/tests/suite/rpl/t/rpl_mysqlbinlog_relay_start_position.test X%%DATADIR%%/tests/suite/rpl/t/rpl_name_const.test X%%DATADIR%%/tests/suite/rpl/t/rpl_no_gtid_delete_memory_table_after_start_server.test X%%DATADIR%%/tests/suite/rpl/t/rpl_no_gtid_split_statements.test X%%DATADIR%%/tests/suite/rpl/t/rpl_non_direct_mixed_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_non_direct_row_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_non_direct_stm_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_nondeterministic_functions.test X%%DATADIR%%/tests/suite/rpl/t/rpl_not_null_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_not_null_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_open_temp_tables_warning.test X%%DATADIR%%/tests/suite/rpl/t/rpl_optimize-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_optimize-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_optimize.test X%%DATADIR%%/tests/suite/rpl/t/rpl_packet-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_packet-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_packet.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_change_master-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_change_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_conf_limits-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_conf_limits.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_conflicts-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_conflicts.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_ddl_innodb-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_ddl_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_ddl_myisam-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_ddl_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_innodb-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_load_data-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_load_data.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_multi_db-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_multi_db-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_multi_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_recovery-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_recovery.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_seconds_behind_master-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_seconds_behind_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_show_binlog_events_purge_logs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_start_stop-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_start_stop.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_switch_sequential-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_switch_sequential.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_temp_query-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_temp_query.test X%%DATADIR%%/tests/suite/rpl/t/rpl_parallel_worker_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partial_gtid_trx_followed_by_anonymous_trx_by_receiver.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partial_gtid_trx_followed_by_trx_at_startup.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partition_archive.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partition_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_partition_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partition_memory.test X%%DATADIR%%/tests/suite/rpl/t/rpl_partition_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_applier_config.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_applier_status.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_applier_status_by_coordinator-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_applier_status_by_coordinator.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_applier_status_by_worker.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_connect_config.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_connect_status.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_no_master_uuid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_perfschema_threads_processlist_status.test X%%DATADIR%%/tests/suite/rpl/t/rpl_plugin_load-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_plugin_load-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_plugin_load.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ps.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rbr_to_sbr.test X%%DATADIR%%/tests/suite/rpl/t/rpl_read_old_relay_log_info.test X%%DATADIR%%/tests/suite/rpl/t/rpl_read_only.test X%%DATADIR%%/tests/suite/rpl/t/rpl_recovery_empty_sqlthd_pos-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_recovery_empty_sqlthd_pos.test X%%DATADIR%%/tests/suite/rpl/t/rpl_recovery_replicate_same_server_id-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_recovery_replicate_same_server_id.test X%%DATADIR%%/tests/suite/rpl/t/rpl_relay_log_recovery_positions.test X%%DATADIR%%/tests/suite/rpl/t/rpl_relay_space_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_relay_space_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_relayrotate-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_relayrotate.test X%%DATADIR%%/tests/suite/rpl/t/rpl_relayspace-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_relayspace.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_do-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_do.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_event_after_sync_stage.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_ignore_db-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_ignore_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_rewrite_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_same_server_id-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_same_server_id-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replicate_same_server_id.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_before_dml-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_before_dml.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_initialization-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_initialization.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_initialization.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_receiver_thread-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_receiver_thread-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_receiver_thread.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_channels_receiver_thread.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_io-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_io-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_io.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_requirements-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_requirements.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_startup-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_startup.test X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_startup_win-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_replication_observers_example_plugin_server_startup_win.test X%%DATADIR%%/tests/suite/rpl/t/rpl_report-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_report.test X%%DATADIR%%/tests/suite/rpl/t/rpl_report_port-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_report_port.test X%%DATADIR%%/tests/suite/rpl/t/rpl_reset_slave_all.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rewrite_db_filter-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_rewrite_db_filter-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_rewrite_db_filter.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rewrt_db-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_rewrt_db.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_gtid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_logs.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_logs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_purge_deadlock-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_purge_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_rotate_row_trans.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_001.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_4_bytes-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_4_bytes.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_NOW.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_USER.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_UUID.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_11bugs-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_11bugs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_2myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_3innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_8partition.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_basic_allow_batching.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_binlog_max_cache_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_blob_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_blob_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_colSize.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_conflicts.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_corrupt-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_corrupt-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_corrupt.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_corruption-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_corruption.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_create_select.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_create_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_drop.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_drop_create_temp_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_err_daisychain-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_err_daisychain-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_event_max_size-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_event_max_size-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_event_max_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_find_row.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_flsh_tbls.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_func001.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_func002.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_func003.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_hash_scan.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_hash_scan_sanity.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_idempotency.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_ignorable_event-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_ignorable_event-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_ignorable_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_blobs.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_blobs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_full.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_full.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_min.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_min.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_noblob.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_eng_noblob.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_full.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_full.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_min.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_min.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_noblob.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_idx_noblob.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_misc.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_img_sanity.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_implicit_commit_binlog-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_implicit_commit_binlog-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_implicit_commit_binlog.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_inexist_tbl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_lcase_tblnames-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_lcase_tblnames.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_loaddata_concurrent.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_log-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_log-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_log_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_log_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_max_relay_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_merge_engine.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mts_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mts_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mts_rec_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mts_rec_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mysqlbinlog-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_mysqlbinlog.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_rec_comp_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_rec_comp_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_record_find_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_reset_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_rollback_to_savepoint.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp001.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp002_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp003.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp005.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp006_InnoDB.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp007_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp008.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp009.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp010.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp011-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp011.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_sp012.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_tabledefs_2myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_tabledefs_3innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_tbl_metadata.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_trig001.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_trig002.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_trig003.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_trig004.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_trunc_temp.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_unsafe_funcs.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_until.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_utf16.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_utf32.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_view01.test X%%DATADIR%%/tests/suite/rpl/t/rpl_row_wide_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_savepoint.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sbm_previous_gtid_event-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sbm_previous_gtid_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_seconds_behind_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_ack_thread-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_ack_thread-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_ack_thread.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_ack_thread.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_after_sync-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_after_sync-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_after_sync.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_deadlock-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_deadlock-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_event-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_event-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_future_logpos-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_future_logpos-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_future_logpos.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_group_commit_deadlock-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_group_commit_deadlock-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_group_commit_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_install_at_start_server-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_install_at_start_server-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_install_at_start_server.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_install_at_start_server.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_shutdown_hang-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_shutdown_hang-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_shutdown_hang.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_uninstall_plugin-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_uninstall_plugin-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_uninstall_plugin.test X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_wait_slave_count-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_wait_slave_count-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_wait_slave_count.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_semi_sync_wait_slave_count.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sequential-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sequential-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sequential.test X%%DATADIR%%/tests/suite/rpl/t/rpl_server_id.test X%%DATADIR%%/tests/suite/rpl/t/rpl_server_id_ignore-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_server_id_ignore-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_server_id_ignore.test X%%DATADIR%%/tests/suite/rpl/t/rpl_server_uuid.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_server_uuid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_session_var.test X%%DATADIR%%/tests/suite/rpl/t/rpl_set_charset.test X%%DATADIR%%/tests/suite/rpl/t/rpl_set_gtid_mode_ongoing_wait_function.test X%%DATADIR%%/tests/suite/rpl/t/rpl_set_null_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_set_null_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_master_info_file-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_show_master_info_file.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_relaylog_events.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_slave_hosts.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_show_slave_hosts.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_slave_running.test X%%DATADIR%%/tests/suite/rpl/t/rpl_show_slave_status_deadlock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_simulate_create_chunk_failure-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_simulate_create_chunk_failure.test X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_ddl_errors_cli-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_ddl_errors_cli.test X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_error-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_error.test X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_incident-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_incident-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_incident.test X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_slave_err_warnings-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_skip_slave_err_warnings.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_grp_exec.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_load_in.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_load_remove_tmpfile.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_load_tmpdir_not_exist-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_load_tmpdir_not_exist-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_load_tmpdir_not_exist.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_server_id_equal_to_zero-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_server_id_equal_to_zero.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_skip.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_start.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slave_status.test X%%DATADIR%%/tests/suite/rpl/t/rpl_slow_query_log-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_slow_query_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sp004.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_effects-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_effects-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_effects.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_innodb-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_innodb-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_myisam-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_myisam-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sp_privileges.test X%%DATADIR%%/tests/suite/rpl/t/rpl_spec_variables.test X%%DATADIR%%/tests/suite/rpl/t/rpl_special_charset-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_special_charset-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_special_charset.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sporadic_master-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sporadic_master.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sql_thread_killed_waiting_commit_lock-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sql_thread_killed_waiting_commit_lock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ssl.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ssl1.test X%%DATADIR%%/tests/suite/rpl/t/rpl_ssl_semisync-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ssl_semisync-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_ssl_semisync.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_000001.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_EE_err2.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_auto_increment_bug33029.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_binlog_max_cache_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_conflicts.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_drop_create_temp_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_flsh_tbls.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_found_rows.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_ignore-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_ignore.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_implicit_commit_binlog-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_implicit_commit_binlog-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_implicit_commit_binlog.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_lcase_tblnames.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_loaddata_concurrent.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_loadfile.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_log.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_max_relay_size.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mix_rollback_to_savepoint.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_mixing_engines.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_multi_query.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_no_op.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_relay_ign_space-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_relay_ign_space.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_reset_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_sql_mode.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_start_stop_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_stop_middle_group.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_until.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_until_pos_middle_gtid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stm_user_variables.test X%%DATADIR%%/tests/suite/rpl/t/rpl_stop_slave.test X%%DATADIR%%/tests/suite/rpl/t/rpl_switch_stm_row_mixed-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_switch_stm_row_mixed.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sync-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sync-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sync.test X%%DATADIR%%/tests/suite/rpl/t/rpl_sync_relay_log_info-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_sync_relay_log_info.test X%%DATADIR%%/tests/suite/rpl/t/rpl_tablespace.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temp_table.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temp_table_mix_row.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temporal_fractional.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temporary.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temporary_error_table_repository.test X%%DATADIR%%/tests/suite/rpl/t/rpl_temporary_errors-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_temporary_errors.test X%%DATADIR%%/tests/suite/rpl/t/rpl_test_framework.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_test_framework.test X%%DATADIR%%/tests/suite/rpl/t/rpl_timestamp_upgrage_55.test X%%DATADIR%%/tests/suite/rpl/t/rpl_timezone-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_timezone-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_timezone.test X%%DATADIR%%/tests/suite/rpl/t/rpl_tmp_table_and_DDL.test X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_before_commit_failure-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_before_commit_failure.test X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_ctx_service-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_ctx_service.test X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_write_set_extraction-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_write_set_extraction-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_write_set_extraction.test X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_write_set_extraction_savepoint-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_transaction_write_set_extraction_savepoint.test X%%DATADIR%%/tests/suite/rpl/t/rpl_trigger.test X%%DATADIR%%/tests/suite/rpl/t/rpl_trunc_temp.test X%%DATADIR%%/tests/suite/rpl/t/rpl_truncate_2myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_truncate_3innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_trx_boundary_parser_row.test X%%DATADIR%%/tests/suite/rpl/t/rpl_trx_boundary_parser_stmt.test X%%DATADIR%%/tests/suite/rpl/t/rpl_trx_boundary_parser_warning.test X%%DATADIR%%/tests/suite/rpl/t/rpl_typeconv-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_typeconv.test X%%DATADIR%%/tests/suite/rpl/t/rpl_typeconv_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_udf-master.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_udf-slave.opt X%%DATADIR%%/tests/suite/rpl/t/rpl_udf.test X%%DATADIR%%/tests/suite/rpl/t/rpl_unknown_ignorable_event.test X%%DATADIR%%/tests/suite/rpl/t/rpl_user.test X%%DATADIR%%/tests/suite/rpl/t/rpl_user_if_exists.test X%%DATADIR%%/tests/suite/rpl/t/rpl_user_lock.test X%%DATADIR%%/tests/suite/rpl/t/rpl_user_variables.test X%%DATADIR%%/tests/suite/rpl/t/rpl_variables.test X%%DATADIR%%/tests/suite/rpl/t/rpl_variables_stm_innodb.test X%%DATADIR%%/tests/suite/rpl/t/rpl_variables_stm_myisam.test X%%DATADIR%%/tests/suite/rpl/t/rpl_view.test X%%DATADIR%%/tests/suite/rpl/t/rpl_view_multi.test X%%DATADIR%%/tests/suite/rpl/t/rpl_wait_for_executed_gtid_set.cnf X%%DATADIR%%/tests/suite/rpl/t/rpl_wait_for_executed_gtid_set.test X%%DATADIR%%/tests/suite/rpl/t/rpl_wait_for_executed_gtid_set_no_timeout.test X%%DATADIR%%/tests/suite/rpl/t/rpl_wait_for_executed_gtid_set_with_sleep.test X%%DATADIR%%/tests/suite/rpl/t/rpl_wait_for_gtid_executed_unknown_uuid.test X%%DATADIR%%/tests/suite/rpl/t/rpl_xa_survive_crash_debug.test X%%DATADIR%%/tests/suite/rpl/t/rpl_xa_survive_disconnect.test X%%DATADIR%%/tests/suite/rpl/t/rpl_xa_survive_disconnect_mixed_engines.test X%%DATADIR%%/tests/suite/rpl/t/transactional_ddl_locking.test X%%DATADIR%%/tests/suite/rpl_ndb/my.cnf X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_UUID.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_blob2.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_commit_afterflush.result.THIS X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_ddl.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_delete_nowhere.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_extra_col_master.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_extra_col_slave.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_func003.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_insert_ignore.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_mixed_implicit_commit_binlog.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_multi_update2.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_multi_update3.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_not_null.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_relayrotate.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_row_001.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_row_basic.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_row_implicit_commit_binlog.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_set_null.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_sp003.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_sp006.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_trig004.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_typeconv_all.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_typeconv_lossy.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_typeconv_nonlossy.result X%%DATADIR%%/tests/suite/rpl_ndb/r/rpl_ndb_typeconv_strict.result X%%DATADIR%%/tests/suite/rpl_ndb/t/check_conversions.inc X%%DATADIR%%/tests/suite/rpl_ndb/t/disabled.def X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_UUID.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_blob2.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_ddl.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_delete_nowhere.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_extra_col_master.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_extra_col_slave.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_func003.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_insert_ignore.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_mixed_implicit_commit_binlog.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_multi_update2.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_multi_update3.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_not_null.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_relayrotate.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_row_001.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_row_basic.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_row_implicit_commit_binlog.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_set_null.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_sp003.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_sp006.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_trig004.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_typeconv_all.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_typeconv_lossy.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_typeconv_nonlossy.test X%%DATADIR%%/tests/suite/rpl_ndb/t/rpl_ndb_typeconv_strict.test X%%DATADIR%%/tests/suite/stress/include/ddl.cln X%%DATADIR%%/tests/suite/stress/include/ddl.pre X%%DATADIR%%/tests/suite/stress/include/ddl1.inc X%%DATADIR%%/tests/suite/stress/include/ddl2.inc X%%DATADIR%%/tests/suite/stress/include/ddl3.inc X%%DATADIR%%/tests/suite/stress/include/ddl4.inc X%%DATADIR%%/tests/suite/stress/include/ddl5.inc X%%DATADIR%%/tests/suite/stress/include/ddl6.inc X%%DATADIR%%/tests/suite/stress/include/ddl7.inc X%%DATADIR%%/tests/suite/stress/include/ddl8.inc X%%DATADIR%%/tests/suite/stress/r/ddl_archive.result X%%DATADIR%%/tests/suite/stress/r/ddl_csv.result X%%DATADIR%%/tests/suite/stress/r/ddl_innodb.result X%%DATADIR%%/tests/suite/stress/r/ddl_memory.result X%%DATADIR%%/tests/suite/stress/r/ddl_myisam.result X%%DATADIR%%/tests/suite/stress/t/ddl_archive.test X%%DATADIR%%/tests/suite/stress/t/ddl_csv.test X%%DATADIR%%/tests/suite/stress/t/ddl_innodb.test X%%DATADIR%%/tests/suite/stress/t/ddl_memory.test X%%DATADIR%%/tests/suite/stress/t/ddl_myisam.test X%%DATADIR%%/tests/suite/stress/t/wrapper.test X%%DATADIR%%/tests/suite/sys_vars/inc/autocommit_func2.inc X%%DATADIR%%/tests/suite/sys_vars/inc/bin_relay_log_basename_index.inc X%%DATADIR%%/tests/suite/sys_vars/inc/binlog_cache_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/binlog_stmt_cache_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/bulk_insert_buffer_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/charset_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/collation_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/delayed_insert_limit_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/delayed_queue_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/have_open_file_limit_more_than_5000.inc X%%DATADIR%%/tests/suite/sys_vars/inc/join_buffer_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/key_cache_age_threshold_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/log_warnings_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/max_connect_errors_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/max_seeks_for_key_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/max_tmp_tables_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/max_write_lock_count_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/min_examined_row_limit_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/multi_range_count_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/myisam_max_sort_file_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/myisam_repair_threads_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/myisam_sort_buffer_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/net_retry_count_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/query_cache_limit_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/query_cache_min_res_unit_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/query_cache_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/slave_transaction_retries_basic.inc X%%DATADIR%%/tests/suite/sys_vars/inc/sort_buffer_size_basic.inc X%%DATADIR%%/tests/suite/sys_vars/r/all_vars.result X%%DATADIR%%/tests/suite/sys_vars/r/auto_generate_certs_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/auto_increment_increment_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/auto_increment_increment_func.result X%%DATADIR%%/tests/suite/sys_vars/r/auto_increment_offset_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/auto_increment_offset_func.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_func.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_func2.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_func3.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_func4.result X%%DATADIR%%/tests/suite/sys_vars/r/autocommit_func5.result X%%DATADIR%%/tests/suite/sys_vars/r/automatic_sp_privileges_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/automatic_sp_privileges_func.result X%%DATADIR%%/tests/suite/sys_vars/r/avoid_temporal_upgrade_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/back_log_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/basedir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/big_tables_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/bind_address_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_cache_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_cache_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_checksum_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_direct_non_transactional_updates_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_error_action_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_group_commit_sync_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_group_commit_sync_no_delay_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_gtid_simple_recovery_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_max_flush_queue_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_order_commits_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_row_image_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_rows_query_log_events_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_stmt_cache_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/binlog_stmt_cache_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/block_encryption_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/bulk_insert_buffer_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/bulk_insert_buffer_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_client_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_client_func.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_connection_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_connection_func.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_database_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_database_func.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_filesystem_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_results_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_results_func.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_server_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_server_func.result X%%DATADIR%%/tests/suite/sys_vars/r/character_set_system_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/character_sets_dir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/check_proxy_users_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/check_proxy_users_cmdl.result X%%DATADIR%%/tests/suite/sys_vars/r/check_proxy_users_func.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_connection_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_connection_func.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_database_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_database_func.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_server_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/collation_server_func.result X%%DATADIR%%/tests/suite/sys_vars/r/completion_type_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/completion_type_func.result X%%DATADIR%%/tests/suite/sys_vars/r/concurrent_insert_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/concurrent_insert_func.result X%%DATADIR%%/tests/suite/sys_vars/r/connect_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/core_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/datadir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/date_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/datetime_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/debug_sync_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_authentication_plugin_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_password_lifetime_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_storage_engine_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_tmp_storage_engine_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_week_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/default_week_format_func.result X%%DATADIR%%/tests/suite/sys_vars/r/delay_key_write_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/delay_key_write_func.result X%%DATADIR%%/tests/suite/sys_vars/r/delayed_insert_limit_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/delayed_insert_limit_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/delayed_insert_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/delayed_queue_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/delayed_queue_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/disconnect_on_expired_password_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/div_precision_increment_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/div_precision_increment_func.result X%%DATADIR%%/tests/suite/sys_vars/r/end_markers_in_json_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/enforce_gtid_consistency_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/eq_range_index_dive_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/error_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/event_scheduler_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/expire_logs_days_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/explicit_defaults_for_timestamp_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/external_user_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/flush_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/flush_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/foreign_key_checks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/foreign_key_checks_func.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_boolean_syntax_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_boolean_syntax_func.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_max_word_len_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_min_word_len_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_query_expansion_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ft_stopword_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/general_log_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/general_log_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/general_log_file_func.result X%%DATADIR%%/tests/suite/sys_vars/r/general_log_func.result X%%DATADIR%%/tests/suite/sys_vars/r/group_concat_max_len_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/group_concat_max_len_func.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_executed_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_executed_compression_period_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_next_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_owned_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/gtid_purged_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_compress_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_crypt_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_dynamic_loading_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_geometry_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_openssl_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_profiling_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_query_cache_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_rtree_keys_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_ssl_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_statement_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/have_symlink_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/host_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/hostname_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/identity_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/identity_func.result X%%DATADIR%%/tests/suite/sys_vars/r/ignore_builtin_innodb_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ignore_db_dirs_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/init_connect_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/init_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/init_slave_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_adaptive_flushing_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_adaptive_flushing_lwm_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_adaptive_hash_index_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_adaptive_hash_index_parts_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_adaptive_max_sleep_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_api_bk_commit_interval_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_api_disable_rowlock_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_api_enable_binlog_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_api_enable_mdl_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_api_trx_level_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_autoextend_increment_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_autoinc_lock_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_autoinc_lock_mode_func.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buf_flush_list_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_chunk_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_dump_at_shutdown_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_dump_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_dump_pct_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_evict_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_filename_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_load_abort_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_load_at_startup_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_load_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_buffer_pool_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_change_buffer_max_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_change_buffering_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_change_buffering_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_checksum_algorithm_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_checksums_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_cmp_per_index_enabled_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_commit_concurrency_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_compress_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_compression_failure_threshold_pct_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_compression_level_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_compression_pad_pct_max_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_concurrency_tickets_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_data_file_path_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_data_home_dir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_default_row_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_disable_background_merge_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_disable_resize_buffer_pool_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_disable_sort_file_cache_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_doublewrite_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_doublewrite_batch_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_fast_shutdown_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_fil_make_page_dirty_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_file_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_file_format_check_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_file_format_max_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_file_io_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_file_per_table_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_fill_factor_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flush_log_at_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flush_log_at_trx_commit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flush_method_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flush_neighbors_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flush_sync_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_flushing_avg_loops_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_force_load_corrupted_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_force_recovery_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_force_recovery_crash_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_aux_table_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_enable_diag_print_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_enable_stopword_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_max_token_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_min_token_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_num_word_optimize_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_result_cache_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_server_stopword_table_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_sort_pll_degree_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_total_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_ft_user_stopword_table_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_io_capacity_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_io_capacity_max_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_large_prefix_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_limit_optimistic_insert_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_lock_wait_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_locks_unsafe_for_binlog_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_checkpoint_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_checksums_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_compressed_pages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_file_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_files_in_group_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_group_home_dir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_log_write_ahead_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_lru_scan_depth_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_dirty_pages_pct_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_dirty_pages_pct_func.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_dirty_pages_pct_lwm_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_purge_lag_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_purge_lag_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_max_undo_log_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_merge_threshold_set_all_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_monitor_disable_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_monitor_enable_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_monitor_reset_all_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_monitor_reset_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_numa_interleave_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_old_blocks_pct_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_old_blocks_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_online_alter_log_max_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_open_files_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_optimize_fulltext_only_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_page_cleaners_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_page_hash_locks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_page_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_print_all_deadlocks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_purge_batch_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_purge_rseg_truncate_frequency_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_purge_run_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_purge_stop_now_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_purge_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_random_read_ahead_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_read_ahead_threshold_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_read_io_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_read_only_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_replication_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_rollback_on_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_rollback_segments_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_saved_page_number_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_sort_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_spin_wait_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_auto_recalc_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_method_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_on_metadata_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_persistent_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_persistent_sample_pages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_sample_pages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_stats_transient_sample_pages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_status_output_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_status_output_locks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_strict_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_support_xa_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_support_xa_func.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_sync_array_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_sync_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_sync_spin_loops_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_table_locks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_table_locks_func.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_temp_data_file_path_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_thread_concurrency_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_thread_sleep_delay_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_trx_purge_view_update_only_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_trx_rseg_n_slots_debug_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_undo_directory_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_undo_log_truncate_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_undo_logs_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_undo_tablespaces_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_use_native_aio_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_version_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/innodb_write_io_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/insert_id_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/insert_id_func.result X%%DATADIR%%/tests/suite/sys_vars/r/interactive_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/interactive_timeout_func.result X%%DATADIR%%/tests/suite/sys_vars/r/internal_tmp_disk_storage_engine_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/join_buffer_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/join_buffer_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/keep_files_on_create_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/key_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/key_buffer_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/key_cache_age_threshold_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/key_cache_age_threshold_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/key_cache_block_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/key_cache_division_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/large_files_support_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/large_page_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/large_pages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/last_insert_id_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/last_insert_id_func.result X%%DATADIR%%/tests/suite/sys_vars/r/lc_messages_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/lc_messages_dir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/lc_time_names_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/lc_time_names_func.result X%%DATADIR%%/tests/suite/sys_vars/r/license_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/local_infile_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/local_infile_func.result X%%DATADIR%%/tests/suite/sys_vars/r/lock_wait_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/locked_in_memory_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_basename_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_index_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_trust_function_creators_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_trust_function_creators_func.result X%%DATADIR%%/tests/suite/sys_vars/r/log_bin_use_v1_row_events_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_builtin_as_identified_by_password_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_error_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_error_func.result X%%DATADIR%%/tests/suite/sys_vars/r/log_error_func2.result X%%DATADIR%%/tests/suite/sys_vars/r/log_error_func3.result X%%DATADIR%%/tests/suite/sys_vars/r/log_error_verbosity_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_output_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_output_func.result X%%DATADIR%%/tests/suite/sys_vars/r/log_queries_not_using_indexes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_slave_updates_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_slow_admin_statements_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_slow_admin_statements_func.result X%%DATADIR%%/tests/suite/sys_vars/r/log_slow_slave_statements_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_syslog_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_syslog_facility_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_syslog_include_pid_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_syslog_tag_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_throttle_qni_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_timestamps_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/log_warnings_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/log_warnings_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/long_query_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/low_priority_updates_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/lower_case_file_system_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/lower_case_table_names_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/master_info_repository_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/master_verify_checksum_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_allowed_packet_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_allowed_packet_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_binlog_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_binlog_cache_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_binlog_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_binlog_stmt_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_connect_errors_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/max_connect_errors_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/max_connections_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_delayed_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_digest_length_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_error_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_execution_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_heap_table_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_insert_delayed_threads_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_join_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_join_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_length_for_sort_data_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_points_in_geometry_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_prepared_stmt_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_prepared_stmt_count_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_relay_log_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_seeks_for_key_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/max_seeks_for_key_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/max_seeks_for_key_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_sort_length_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_sort_length_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_sp_recursion_depth_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_sp_recursion_depth_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_tmp_tables_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/max_tmp_tables_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/max_user_connections_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/max_user_connections_func.result X%%DATADIR%%/tests/suite/sys_vars/r/max_write_lock_count_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/max_write_lock_count_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/maximum_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/metadata_locks_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/metadata_locks_hash_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/min_examined_row_limit_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/min_examined_row_limit_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/multi_range_count_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/multi_range_count_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_data_pointer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_data_pointer_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_max_sort_file_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_max_sort_file_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_mmap_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_recover_options_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_repair_threads_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_repair_threads_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_sort_buffer_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_sort_buffer_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_stats_method_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_stats_method_func.result X%%DATADIR%%/tests/suite/sys_vars/r/myisam_use_mmap_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/mysql_native_password_proxy_users_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/mysql_native_password_proxy_users_cmdl.result X%%DATADIR%%/tests/suite/sys_vars/r/mysql_native_password_proxy_users_func.result X%%DATADIR%%/tests/suite/sys_vars/r/mysql_native_password_proxy_users_log.result X%%DATADIR%%/tests/suite/sys_vars/r/named_pipe_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/net_buffer_length_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/net_read_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/net_retry_count_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/net_retry_count_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/net_write_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/new_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ngram_token_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/offline_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/old_alter_table_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/old_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/old_passwords_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/old_passwords_func.result X%%DATADIR%%/tests/suite/sys_vars/r/open_files_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_prune_level_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_search_depth_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_switch_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_features_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_max_mem_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_offset_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/optimizer_trace_offset_max.result X%%DATADIR%%/tests/suite/sys_vars/r/performance_schema_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_accounts_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_digests_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_stages_h_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_stages_hl_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_statements_h_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_statements_hl_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_transactions_h_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_transactions_hl_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_waits_h_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_events_waits_hl_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_hosts_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_cond_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_cond_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_digest_length_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_file_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_file_handles_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_file_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_index_stat_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_memory_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_metadata_locks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_mutex_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_mutex_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_prepared_statements_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_program_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_rwlock_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_rwlock_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_socket_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_socket_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_sql_text_length_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_stage_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_statement_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_statement_stack_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_table_handles_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_table_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_table_lock_stat_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_thread_classes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_max_thread_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_session_connect_attrs_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_setup_actors_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_setup_objects_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pfs_users_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pid_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/plugin_dir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/port_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/preload_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/profiling_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/profiling_h_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/protocol_version_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/proxy_user_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pseudo_slave_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/pseudo_thread_id_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/query_alloc_block_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_limit_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_limit_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_limit_func.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_min_res_unit_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_min_res_unit_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_type_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_type_func.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_wlock_invalidate_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/query_cache_wlock_invalidate_func.result X%%DATADIR%%/tests/suite/sys_vars/r/query_prealloc_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/query_prealloc_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/rand_seed1_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rand_seed2_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/range_alloc_block_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/range_optimizer_max_mem_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rbr_exec_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/read_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/read_only_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/read_only_func.result X%%DATADIR%%/tests/suite/sys_vars/r/read_rnd_buffer_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_basename_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_index_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_info_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_info_repository_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_purge_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_recovery_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/relay_log_space_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/report_host_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/report_password_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/report_port_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/report_user_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/require_secure_transport_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/require_secure_transport_windows_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_init_slave_func.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_max_binlog_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_recovery_rank_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_recovery_rank_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_enabled_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_trace_level_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_wait_for_slave_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_wait_no_slave_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_master_wait_point_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_slave_enabled_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_semi_sync_slave_trace_level_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/rpl_stop_slave_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/secure_auth_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/secure_file_priv.result X%%DATADIR%%/tests/suite/sys_vars/r/secure_file_priv2.result X%%DATADIR%%/tests/suite/sys_vars/r/secure_file_priv_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/server_id_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/server_id_bits_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/server_uuid_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/session_track_gtids_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/session_track_schema_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/session_track_state_change_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/session_track_system_variables_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/session_track_transaction_info_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_auto_generate_rsa_keys_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_private_key_path_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_proxy_users_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_proxy_users_cmdl.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_proxy_users_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_proxy_users_log.result X%%DATADIR%%/tests/suite/sys_vars/r/sha256_password_public_key_path_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/shared_memory_base_name_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/shared_memory_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/show_compatibility_56_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/show_old_temporals_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/skip_external_locking_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/skip_name_resolve_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/skip_networking_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/skip_show_database_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_allow_batching_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_checkpoint_group_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_checkpoint_period_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_compressed_protocol_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_exec_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_load_tmpdir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_max_allowed_packet_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_net_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_parallel_type_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_parallel_workers_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_pending_jobs_size_max_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_preserve_commit_order_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_rows_search_algorithms_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_skip_errors_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_sql_verify_checksum_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_transaction_retries_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_transaction_retries_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/slave_type_conversions_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_launch_time_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_launch_time_func.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_query_log_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_query_log_file_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_query_log_file_func.result X%%DATADIR%%/tests/suite/sys_vars/r/slow_query_log_func.result X%%DATADIR%%/tests/suite/sys_vars/r/socket_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sort_buffer_size_basic_32.result X%%DATADIR%%/tests/suite/sys_vars/r/sort_buffer_size_basic_64.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_auto_is_null_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_big_selects_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_big_selects_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_buffer_result_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_buffer_result_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_log_bin_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_log_off_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_log_off_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_low_priority_updates_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_mode_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_mode_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_notes_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_notes_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_quote_show_create_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_quote_show_create_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_safe_updates_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_safe_updates_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_select_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_select_limit_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_slave_skip_counter_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_warnings_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sql_warnings_func.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_ca_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_capath_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_cert_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_cipher_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_crl_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_crlpath_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/ssl_key_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/stored_program_cache_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/super_read_only_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/super_read_only_func.result X%%DATADIR%%/tests/suite/sys_vars/r/sync_binlog_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sync_frm_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sync_master_info_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sync_relay_log_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/sync_relay_log_info_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/system_time_zone_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/table_definition_cache_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/table_open_cache_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/table_open_cache_instances_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/thread_cache_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/thread_cache_size_func.result X%%DATADIR%%/tests/suite/sys_vars/r/thread_handling_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/thread_stack_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/time_format_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/time_zone_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/time_zone_func.result X%%DATADIR%%/tests/suite/sys_vars/r/timestamp_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/timestamp_func.result X%%DATADIR%%/tests/suite/sys_vars/r/timestamp_sysdate_is_now_func.result X%%DATADIR%%/tests/suite/sys_vars/r/tmp_table_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/tmpdir_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/transaction_alloc_block_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/transaction_allow_batching_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/transaction_prealloc_size_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/transaction_write_set_extraction_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/tx_isolation_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/tx_isolation_func.result X%%DATADIR%%/tests/suite/sys_vars/r/tx_read_only_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/unique_checks_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/updatable_views_with_limit_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/updatable_views_with_limit_func.result X%%DATADIR%%/tests/suite/sys_vars/r/version_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/version_comment_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/version_compile_machine_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/version_compile_os_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/wait_timeout_basic.result X%%DATADIR%%/tests/suite/sys_vars/r/wait_timeout_func.result X%%DATADIR%%/tests/suite/sys_vars/r/warning_count_basic.result X%%DATADIR%%/tests/suite/sys_vars/t/all_vars-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/all_vars.test X%%DATADIR%%/tests/suite/sys_vars/t/auto_generate_certs_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/auto_increment_increment_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/auto_increment_increment_func.test X%%DATADIR%%/tests/suite/sys_vars/t/auto_increment_offset_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/auto_increment_offset_func.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func2-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func2.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func3-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func3.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func4-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func4.test X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func5-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/autocommit_func5.test X%%DATADIR%%/tests/suite/sys_vars/t/automatic_sp_privileges_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/automatic_sp_privileges_func.test X%%DATADIR%%/tests/suite/sys_vars/t/avoid_temporal_upgrade_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/back_log_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/basedir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/big_tables_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/bind_address_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_cache_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_cache_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_checksum_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_direct_non_transactional_updates_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_error_action_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_group_commit_sync_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_group_commit_sync_no_delay_count_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_gtid_simple_recovery_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_max_flush_queue_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_order_commits_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_row_image_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_rows_query_log_events_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_stmt_cache_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/binlog_stmt_cache_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/block_encryption_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/bulk_insert_buffer_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/bulk_insert_buffer_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_client_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_client_func.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_connection_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_connection_func.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_database_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_database_func.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_filesystem_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_filesystem_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/character_set_results_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_results_func.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_server_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_server_func.test X%%DATADIR%%/tests/suite/sys_vars/t/character_set_system_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/character_sets_dir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/check_proxy_users_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/check_proxy_users_cmdl-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/check_proxy_users_cmdl.test X%%DATADIR%%/tests/suite/sys_vars/t/check_proxy_users_func.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_connection_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_connection_func.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_database_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_database_func.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_server_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/collation_server_func.test X%%DATADIR%%/tests/suite/sys_vars/t/completion_type_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/completion_type_func.test X%%DATADIR%%/tests/suite/sys_vars/t/concurrent_insert_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/concurrent_insert_func.test X%%DATADIR%%/tests/suite/sys_vars/t/connect_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/core_file_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/core_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/datadir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/date_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/datetime_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/debug_sync_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_authentication_plugin_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_password_lifetime_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_storage_engine_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_tmp_storage_engine_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_week_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/default_week_format_func.test X%%DATADIR%%/tests/suite/sys_vars/t/delay_key_write_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/delay_key_write_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/delay_key_write_func.test X%%DATADIR%%/tests/suite/sys_vars/t/delayed_insert_limit_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/delayed_insert_limit_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/delayed_insert_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/delayed_queue_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/delayed_queue_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/disabled.def X%%DATADIR%%/tests/suite/sys_vars/t/disconnect_on_expired_password_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/div_precision_increment_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/div_precision_increment_func.test X%%DATADIR%%/tests/suite/sys_vars/t/end_markers_in_json_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/enforce_gtid_consistency_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/eq_range_index_dive_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/error_count_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/event_scheduler_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/expire_logs_days_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/explicit_defaults_for_timestamp_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/external_user_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/flush_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/flush_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/foreign_key_checks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/foreign_key_checks_func.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_boolean_syntax_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_boolean_syntax_func.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_max_word_len_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_min_word_len_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_query_expansion_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ft_stopword_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/general_log_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/general_log_file_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/general_log_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/general_log_file_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/general_log_file_func.test X%%DATADIR%%/tests/suite/sys_vars/t/general_log_func.test X%%DATADIR%%/tests/suite/sys_vars/t/group_concat_max_len_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/group_concat_max_len_func.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_executed_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_executed_compression_period_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_next_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_owned_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/gtid_purged_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_compress_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_crypt_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_dynamic_loading_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_geometry_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_openssl_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_profiling_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_query_cache_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_rtree_keys_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_ssl_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_statement_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/have_symlink_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/host_cache_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/host_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/hostname_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/identity_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/identity_func.test X%%DATADIR%%/tests/suite/sys_vars/t/ignore_builtin_innodb_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ignore_db_dirs_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/ignore_db_dirs_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/init_connect_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/init_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/init_slave_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_adaptive_flushing_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_adaptive_flushing_lwm_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_adaptive_hash_index_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_adaptive_hash_index_parts_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_adaptive_max_sleep_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_api_bk_commit_interval_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_api_disable_rowlock_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_api_enable_binlog_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_api_enable_mdl_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_api_trx_level_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_autoextend_increment_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_autoinc_lock_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_autoinc_lock_mode_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/innodb_autoinc_lock_mode_func.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buf_flush_list_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_chunk_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_dump_at_shutdown_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_dump_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_evict_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_filename_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_filename_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_load_abort_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_load_at_startup_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_load_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/innodb_buffer_pool_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_change_buffer_max_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_change_buffering_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_change_buffering_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_checksum_algorithm_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_checksums_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_cmp_per_index_enabled_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_commit_concurrency_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_compress_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_compression_failure_threshold_pct_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_compression_level_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_compression_pad_pct_max_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_concurrency_tickets_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_data_file_path_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_data_home_dir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_default_row_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_disable_background_merge_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_disable_resize_buffer_pool_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_disable_sort_file_cache_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_doublewrite_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_doublewrite_batch_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_fast_shutdown_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_fil_make_page_dirty_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_format_check_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_format_max_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_format_max_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_io_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_per_table_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/innodb_file_per_table_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_fill_factor_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flush_log_at_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flush_log_at_trx_commit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flush_method_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flush_neighbors_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flush_sync_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_flushing_avg_loops_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_force_load_corrupted_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_force_recovery_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_force_recovery_crash_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_aux_table_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_enable_diag_print_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_enable_stopword_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_max_token_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_min_token_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_num_word_optimize_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_result_cache_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_server_stopword_table_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_sort_pll_degree_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_total_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_ft_user_stopword_table_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_io_capacity_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_io_capacity_max_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_large_prefix_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_limit_optimistic_insert_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_lock_wait_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_locks_unsafe_for_binlog_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_checkpoint_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_checksums_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_compressed_pages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_file_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_files_in_group_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_group_home_dir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_log_write_ahead_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_lru_scan_depth_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_dirty_pages_pct_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_dirty_pages_pct_func.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_dirty_pages_pct_lwm_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_purge_lag_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_purge_lag_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_max_undo_log_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_merge_threshold_set_all_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_monitor_disable_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_monitor_enable_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_monitor_reset_all_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_monitor_reset_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_numa_interleave_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_old_blocks_pct_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_old_blocks_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_online_alter_log_max_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_open_files_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_optimize_fulltext_only_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_page_cleaners_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_page_hash_locks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_page_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_print_all_deadlocks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_purge_batch_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_purge_rseg_truncate_frequency_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_purge_run_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_purge_stop_now_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_purge_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_random_read_ahead_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_read_ahead_threshold_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_read_io_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_read_only_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_replication_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_rollback_on_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_rollback_segments_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_saved_page_number_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_sort_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_spin_wait_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_auto_recalc_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_method_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_on_metadata_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_persistent_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_persistent_sample_pages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_sample_pages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_stats_transient_sample_pages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_status_output_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_status_output_locks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_strict_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_support_xa_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_support_xa_func.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_sync_array_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_sync_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_sync_spin_loops_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_table_locks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_table_locks_func.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_temp_data_file_path_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_thread_concurrency_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_thread_sleep_delay_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_trx_purge_view_update_only_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_trx_rseg_n_slots_debug_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_undo_directory_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_undo_log_truncate_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_undo_logs_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_undo_tablespaces_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_use_native_aio_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_version_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/innodb_write_io_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/insert_id_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/insert_id_func.test X%%DATADIR%%/tests/suite/sys_vars/t/interactive_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/interactive_timeout_func.test X%%DATADIR%%/tests/suite/sys_vars/t/internal_tmp_disk_storage_engine_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/join_buffer_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/join_buffer_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/keep_files_on_create_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/key_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/key_buffer_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/key_cache_age_threshold_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/key_cache_age_threshold_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/key_cache_block_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/key_cache_division_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/large_files_support_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/large_page_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/large_pages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/last_insert_id_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/last_insert_id_func.test X%%DATADIR%%/tests/suite/sys_vars/t/lc_messages_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/lc_messages_dir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/lc_time_names_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/lc_time_names_func.test X%%DATADIR%%/tests/suite/sys_vars/t/license_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/local_infile_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/local_infile_func.test X%%DATADIR%%/tests/suite/sys_vars/t/lock_wait_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/locked_in_memory_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_basename_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_index_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_trust_function_creators_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_trust_function_creators_func.test X%%DATADIR%%/tests/suite/sys_vars/t/log_bin_use_v1_row_events_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_builtin_as_identified_by_password_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_error_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func.cnf X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func.test X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func2-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func2.cnf X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func2.test X%%DATADIR%%/tests/suite/sys_vars/t/log_error_func3.test X%%DATADIR%%/tests/suite/sys_vars/t/log_error_verbosity_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_output_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_output_func.test X%%DATADIR%%/tests/suite/sys_vars/t/log_queries_not_using_indexes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_slave_updates_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_slow_admin_statements_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_slow_admin_statements_func.test X%%DATADIR%%/tests/suite/sys_vars/t/log_slow_slave_statements_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_syslog_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_syslog_facility_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_syslog_include_pid_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_syslog_tag_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_throttle_qni_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_timestamps_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/log_warnings_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/log_warnings_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/long_query_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/low_priority_updates_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/lower_case_file_system_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/lower_case_table_names_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/master_info_repository_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/master_verify_checksum_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_allowed_packet_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_allowed_packet_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_binlog_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_binlog_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_binlog_stmt_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_connect_errors_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/max_connect_errors_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/max_connections_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_delayed_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_digest_length_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/max_digest_length_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_error_count_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_execution_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_heap_table_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_insert_delayed_threads_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_join_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_join_size_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/max_join_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_length_for_sort_data_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_points_in_geometry_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_prepared_stmt_count_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_prepared_stmt_count_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_relay_log_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_seeks_for_key_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/max_seeks_for_key_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/max_seeks_for_key_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_sort_length_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_sort_length_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_sp_recursion_depth_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_sp_recursion_depth_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/max_sp_recursion_depth_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_tmp_tables_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/max_tmp_tables_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/max_user_connections_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/max_user_connections_func.test X%%DATADIR%%/tests/suite/sys_vars/t/max_write_lock_count_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/max_write_lock_count_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/maximum_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/maximum_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/metadata_locks_cache_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/metadata_locks_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/metadata_locks_hash_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/min_examined_row_limit_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/min_examined_row_limit_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/multi_range_count_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/multi_range_count_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_data_pointer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_data_pointer_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_max_sort_file_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_max_sort_file_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_mmap_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_recover_options_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_repair_threads_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_repair_threads_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_sort_buffer_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_sort_buffer_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_stats_method_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_stats_method_func.test X%%DATADIR%%/tests/suite/sys_vars/t/myisam_use_mmap_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/mysql_native_password_proxy_users_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl.test X%%DATADIR%%/tests/suite/sys_vars/t/mysql_native_password_proxy_users_func.test X%%DATADIR%%/tests/suite/sys_vars/t/mysql_native_password_proxy_users_log.test X%%DATADIR%%/tests/suite/sys_vars/t/named_pipe_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/net_buffer_length_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/net_read_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/net_retry_count_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/net_retry_count_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/net_write_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/new_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ngram_token_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/offline_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/old_alter_table_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/old_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/old_passwords_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/old_passwords_func.test X%%DATADIR%%/tests/suite/sys_vars/t/open_files_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_prune_level_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_search_depth_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_switch_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_features_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_max_mem_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_offset_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_offset_max-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/optimizer_trace_offset_max.test X%%DATADIR%%/tests/suite/sys_vars/t/performance_schema_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/performance_schema_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_accounts_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_accounts_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_digests_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_digests_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_stages_h_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_stages_h_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_stages_hl_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_stages_hl_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_statements_h_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_statements_h_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_statements_hl_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_statements_hl_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_transactions_h_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_transactions_h_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_transactions_hl_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_transactions_hl_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_waits_h_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_waits_h_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_waits_hl_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_events_waits_hl_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_hosts_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_hosts_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_cond_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_cond_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_cond_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_cond_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_digest_length_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_digest_length_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_handles_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_handles_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_file_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_index_stat_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_index_stat_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_memory_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_memory_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_metadata_locks_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_metadata_locks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_mutex_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_mutex_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_mutex_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_mutex_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_prepared_statements_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_prepared_statements_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_program_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_program_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_rwlock_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_rwlock_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_rwlock_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_rwlock_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_socket_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_socket_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_socket_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_socket_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_sql_text_length_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_sql_text_length_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_stage_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_stage_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_statement_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_statement_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_statement_stack_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_statement_stack_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_handles_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_handles_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_lock_stat_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_table_lock_stat_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_thread_classes_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_thread_classes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_thread_instances_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_max_thread_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_session_connect_attrs_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_session_connect_attrs_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_setup_actors_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_setup_actors_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_setup_objects_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_setup_objects_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pfs_users_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/pfs_users_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pid_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/plugin_dir_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/plugin_dir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/port_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/preload_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/profiling_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/profiling_h_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/protocol_version_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/proxy_user_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pseudo_slave_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/pseudo_thread_id_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/query_alloc_block_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_limit_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_limit_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_limit_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_limit_func.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_min_res_unit_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_min_res_unit_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_type_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_type_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_type_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_type_func.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_wlock_invalidate_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_wlock_invalidate_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/query_cache_wlock_invalidate_func.test X%%DATADIR%%/tests/suite/sys_vars/t/query_prealloc_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/query_prealloc_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/rand_seed1_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rand_seed2_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/range_alloc_block_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/range_optimizer_max_mem_size_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/range_optimizer_max_mem_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rbr_exec_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/read_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/read_only_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/read_only_func.test X%%DATADIR%%/tests/suite/sys_vars/t/read_rnd_buffer_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_basename_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_index_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_info_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_info_repository_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_purge_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_recovery_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/relay_log_space_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/report_host_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/report_password_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/report_port_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/report_user_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/require_secure_transport_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/require_secure_transport_windows_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/require_secure_transport_windows_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_init_slave_func.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_max_binlog_size_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_max_binlog_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_enabled_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_enabled_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_timeout_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_trace_level_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_trace_level_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_for_slave_count_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_for_slave_count_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_no_slave_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_no_slave_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_point_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_master_wait_point_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_slave_enabled_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_slave_enabled_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_slave_trace_level_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/rpl_semi_sync_slave_trace_level_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/rpl_stop_slave_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/secure_auth_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/secure_file_priv-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/secure_file_priv.test X%%DATADIR%%/tests/suite/sys_vars/t/secure_file_priv2-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/secure_file_priv2.test X%%DATADIR%%/tests/suite/sys_vars/t/secure_file_priv_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/server_id_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/server_id_bits_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/server_uuid_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/session_track_gtids_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/session_track_schema_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/session_track_state_change_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/session_track_system_variables_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/session_track_transaction_info_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_auto_generate_rsa_keys_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_private_key_path_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_cmdl-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_cmdl.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_proxy_users_log.test X%%DATADIR%%/tests/suite/sys_vars/t/sha256_password_public_key_path_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/shared_memory_base_name_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/shared_memory_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/show_compatibility_56_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/show_old_temporals_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/skip_external_locking_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/skip_name_resolve_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/skip_name_resolve_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/skip_networking_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/skip_show_database_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_allow_batching_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_checkpoint_group_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_checkpoint_period_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_compressed_protocol_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_exec_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_load_tmpdir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_max_allowed_packet_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_net_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_parallel_type_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_parallel_workers_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_pending_jobs_size_max_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_preserve_commit_order_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_rows_search_algorithms_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_skip_errors_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_sql_verify_checksum_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_transaction_retries_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_transaction_retries_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/slave_type_conversions_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_launch_time_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_launch_time_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/slow_launch_time_func.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_file_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_file_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_file_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_file_func.test X%%DATADIR%%/tests/suite/sys_vars/t/slow_query_log_func.test X%%DATADIR%%/tests/suite/sys_vars/t/socket_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sort_buffer_size_basic_32.test X%%DATADIR%%/tests/suite/sys_vars/t/sort_buffer_size_basic_64.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_auto_is_null_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_big_selects_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_big_selects_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_buffer_result_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_buffer_result_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_log_bin_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_log_off_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_log_off_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_low_priority_updates_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_mode_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_mode_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_notes_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_notes_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_quote_show_create_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_quote_show_create_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_safe_updates_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_safe_updates_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_select_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_select_limit_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_slave_skip_counter_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_warnings_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sql_warnings_func.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_ca_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_capath_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_cert_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_cipher_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_crl_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_crlpath_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/ssl_key_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/stored_program_cache_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/super_read_only_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/super_read_only_func.test X%%DATADIR%%/tests/suite/sys_vars/t/sync_binlog_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sync_frm_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sync_master_info_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sync_relay_log_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/sync_relay_log_info_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/system_time_zone_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/table_definition_cache_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/table_open_cache_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/table_open_cache_instances_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/thread_cache_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/thread_cache_size_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/thread_cache_size_func.test X%%DATADIR%%/tests/suite/sys_vars/t/thread_handling_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/thread_stack_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/time_format_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/time_zone_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/time_zone_func.test X%%DATADIR%%/tests/suite/sys_vars/t/timestamp_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/timestamp_func.test X%%DATADIR%%/tests/suite/sys_vars/t/timestamp_sysdate_is_now_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/timestamp_sysdate_is_now_func.test X%%DATADIR%%/tests/suite/sys_vars/t/tmp_table_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/tmpdir_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/transaction_alloc_block_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/transaction_allow_batching_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/transaction_prealloc_size_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/transaction_write_set_extraction_basic-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/transaction_write_set_extraction_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/tx_isolation_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/tx_isolation_func-master.opt X%%DATADIR%%/tests/suite/sys_vars/t/tx_isolation_func.test X%%DATADIR%%/tests/suite/sys_vars/t/tx_read_only_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/unique_checks_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/updatable_views_with_limit_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/updatable_views_with_limit_func.test X%%DATADIR%%/tests/suite/sys_vars/t/version_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/version_comment_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/version_compile_machine_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/version_compile_os_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/wait_timeout_basic.test X%%DATADIR%%/tests/suite/sys_vars/t/wait_timeout_func.test X%%DATADIR%%/tests/suite/sys_vars/t/warning_count_basic.test X%%DATADIR%%/tests/suite/sysschema/include/ps_setup_actors_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/include/ps_setup_consumers_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/include/ps_setup_instruments_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/include/ps_setup_reset_to_default_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/include/ps_threads_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/include/ps_truncate_all_tables.inc X%%DATADIR%%/tests/suite/sysschema/include/sys_config_cleanup.inc X%%DATADIR%%/tests/suite/sysschema/r/all_sys_objects_exist.result X%%DATADIR%%/tests/suite/sysschema/r/fn_extract_schema_from_file_name.result X%%DATADIR%%/tests/suite/sysschema/r/fn_extract_table_from_file_name.result X%%DATADIR%%/tests/suite/sysschema/r/fn_format_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/fn_format_path.result X%%DATADIR%%/tests/suite/sysschema/r/fn_format_statement.result X%%DATADIR%%/tests/suite/sysschema/r/fn_format_time.result X%%DATADIR%%/tests/suite/sysschema/r/fn_list_add.result X%%DATADIR%%/tests/suite/sysschema/r/fn_list_drop.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_is_account_enabled.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_is_consumer_enabled.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_is_instrument_default_enabled.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_is_instrument_default_timed.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_is_thread_instrumented.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_thread_account.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_thread_id.result X%%DATADIR%%/tests/suite/sysschema/r/fn_ps_thread_trx_info.result X%%DATADIR%%/tests/suite/sysschema/r/fn_sys_get_config.result X%%DATADIR%%/tests/suite/sysschema/r/mysqldump.result X%%DATADIR%%/tests/suite/sysschema/r/pr_diagnostics.result X%%DATADIR%%/tests/suite/sysschema/r/pr_execute_prepared_stmt.result X%%DATADIR%%/tests/suite/sysschema/r/pr_ps_setup_reset_to_default.result X%%DATADIR%%/tests/suite/sysschema/r/pr_statement_performance_analyzer.result X%%DATADIR%%/tests/suite/sysschema/r/pr_table_exists.result X%%DATADIR%%/tests/suite/sysschema/r/t_sys_config.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary_by_file_io.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary_by_file_io_type.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary_by_stages.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary_by_statement_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_host_summary_by_statement_type.result X%%DATADIR%%/tests/suite/sysschema/r/v_innodb_buffer_stats_by_schema.result X%%DATADIR%%/tests/suite/sysschema/r/v_innodb_buffer_stats_by_table.result X%%DATADIR%%/tests/suite/sysschema/r/v_innodb_lock_waits.result X%%DATADIR%%/tests/suite/sysschema/r/v_io_by_thread_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_io_global_by_file_by_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_io_global_by_file_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_io_global_by_wait_by_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_io_global_by_wait_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_latest_file_io.result X%%DATADIR%%/tests/suite/sysschema/r/v_memory_by_host_by_current_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_memory_by_thread_by_current_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_memory_by_user_by_current_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_memory_global_by_current_bytes.result X%%DATADIR%%/tests/suite/sysschema/r/v_memory_global_total.result X%%DATADIR%%/tests/suite/sysschema/r/v_metrics.result X%%DATADIR%%/tests/suite/sysschema/r/v_processlist.result X%%DATADIR%%/tests/suite/sysschema/r/v_ps_check_lost_instrumentation.result X%%DATADIR%%/tests/suite/sysschema/r/v_ps_digest_95th_percentile_by_avg_us.result X%%DATADIR%%/tests/suite/sysschema/r/v_ps_digest_avg_latency_distribution.result X%%DATADIR%%/tests/suite/sysschema/r/v_ps_schema_table_statistics_io.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_auto_increment_columns.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_index_statistics.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_object_overview.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_redundant_indexes.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_table_lock_waits.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_table_statistics.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_table_statistics_with_buffer.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_tables_with_full_table_scans.result X%%DATADIR%%/tests/suite/sysschema/r/v_schema_unused_indexes.result X%%DATADIR%%/tests/suite/sysschema/r/v_session.result X%%DATADIR%%/tests/suite/sysschema/r/v_session_ssl_status.result X%%DATADIR%%/tests/suite/sysschema/r/v_statement_analysis.result X%%DATADIR%%/tests/suite/sysschema/r/v_statements_with_errors_or_warnings.result X%%DATADIR%%/tests/suite/sysschema/r/v_statements_with_full_table_scans.result X%%DATADIR%%/tests/suite/sysschema/r/v_statements_with_runtimes_in_95th_percentile.result X%%DATADIR%%/tests/suite/sysschema/r/v_statements_with_sorting.result X%%DATADIR%%/tests/suite/sysschema/r/v_statements_with_temp_tables.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary_by_file_io.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary_by_file_io_type.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary_by_stages.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary_by_statement_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_user_summary_by_statement_type.result X%%DATADIR%%/tests/suite/sysschema/r/v_version.result X%%DATADIR%%/tests/suite/sysschema/r/v_wait_classes_global_by_avg_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_wait_classes_global_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_waits_by_host_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_waits_by_user_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/v_waits_global_by_latency.result X%%DATADIR%%/tests/suite/sysschema/r/version_functions.result X%%DATADIR%%/tests/suite/sysschema/t/all_sys_objects_exist.test X%%DATADIR%%/tests/suite/sysschema/t/fn_extract_schema_from_file_name.test X%%DATADIR%%/tests/suite/sysschema/t/fn_extract_table_from_file_name.test X%%DATADIR%%/tests/suite/sysschema/t/fn_format_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/fn_format_path.test X%%DATADIR%%/tests/suite/sysschema/t/fn_format_statement.test X%%DATADIR%%/tests/suite/sysschema/t/fn_format_time.test X%%DATADIR%%/tests/suite/sysschema/t/fn_list_add.test X%%DATADIR%%/tests/suite/sysschema/t/fn_list_drop.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_is_account_enabled.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_is_consumer_enabled.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_is_instrument_default_enabled.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_is_instrument_default_timed.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_is_thread_instrumented.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_thread_account.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_thread_id.test X%%DATADIR%%/tests/suite/sysschema/t/fn_ps_thread_trx_info.test X%%DATADIR%%/tests/suite/sysschema/t/fn_sys_get_config.test X%%DATADIR%%/tests/suite/sysschema/t/mysqldump.test X%%DATADIR%%/tests/suite/sysschema/t/pr_diagnostics.test X%%DATADIR%%/tests/suite/sysschema/t/pr_execute_prepared_stmt.test X%%DATADIR%%/tests/suite/sysschema/t/pr_ps_setup_reset_to_default.test X%%DATADIR%%/tests/suite/sysschema/t/pr_statement_performance_analyzer.test X%%DATADIR%%/tests/suite/sysschema/t/pr_table_exists.test X%%DATADIR%%/tests/suite/sysschema/t/t_sys_config.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary_by_file_io.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary_by_file_io_type.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary_by_stages.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary_by_statement_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_host_summary_by_statement_type.test X%%DATADIR%%/tests/suite/sysschema/t/v_innodb_buffer_stats_by_schema.test X%%DATADIR%%/tests/suite/sysschema/t/v_innodb_buffer_stats_by_table.test X%%DATADIR%%/tests/suite/sysschema/t/v_innodb_lock_waits.test X%%DATADIR%%/tests/suite/sysschema/t/v_io_by_thread_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_io_global_by_file_by_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_io_global_by_file_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_io_global_by_wait_by_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_io_global_by_wait_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_latest_file_io.test X%%DATADIR%%/tests/suite/sysschema/t/v_memory_by_host_by_current_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_memory_by_thread_by_current_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_memory_by_user_by_current_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_memory_global_by_current_bytes.test X%%DATADIR%%/tests/suite/sysschema/t/v_memory_global_total.test X%%DATADIR%%/tests/suite/sysschema/t/v_metrics.test X%%DATADIR%%/tests/suite/sysschema/t/v_processlist.test X%%DATADIR%%/tests/suite/sysschema/t/v_ps_check_lost_instrumentation.test X%%DATADIR%%/tests/suite/sysschema/t/v_ps_digest_95th_percentile_by_avg_us.test X%%DATADIR%%/tests/suite/sysschema/t/v_ps_digest_avg_latency_distribution.test X%%DATADIR%%/tests/suite/sysschema/t/v_ps_schema_table_statistics_io.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_auto_increment_columns.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_index_statistics.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_object_overview.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_redundant_indexes.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_table_lock_waits.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_table_statistics.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_table_statistics_with_buffer.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_tables_with_full_table_scans.test X%%DATADIR%%/tests/suite/sysschema/t/v_schema_unused_indexes.test X%%DATADIR%%/tests/suite/sysschema/t/v_session.test X%%DATADIR%%/tests/suite/sysschema/t/v_session_ssl_status.test X%%DATADIR%%/tests/suite/sysschema/t/v_statement_analysis.test X%%DATADIR%%/tests/suite/sysschema/t/v_statements_with_errors_or_warnings.test X%%DATADIR%%/tests/suite/sysschema/t/v_statements_with_full_table_scans.test X%%DATADIR%%/tests/suite/sysschema/t/v_statements_with_runtimes_in_95th_percentile.test X%%DATADIR%%/tests/suite/sysschema/t/v_statements_with_sorting.test X%%DATADIR%%/tests/suite/sysschema/t/v_statements_with_temp_tables.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary_by_file_io.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary_by_file_io_type.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary_by_stages.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary_by_statement_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_user_summary_by_statement_type.test X%%DATADIR%%/tests/suite/sysschema/t/v_version.test X%%DATADIR%%/tests/suite/sysschema/t/v_wait_classes_global_by_avg_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_wait_classes_global_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_waits_by_host_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_waits_by_user_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/v_waits_global_by_latency.test X%%DATADIR%%/tests/suite/sysschema/t/version_functions.test X%%DATADIR%%/tests/suite/test_service_sql_api/experimental/test_processlist_thd_vars-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/experimental/test_processlist_thd_vars.test X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_100_sessions_in_thd.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_processlist_thd_vars.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_session_audit_log.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_session_audit_null.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_session_detach.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_session_general_log.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_session_info.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_2_sessions.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_all_col_types.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_audit_log.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_cmds_1.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_commit.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_complex.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_errors.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_general_log.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_lock.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_processlist.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_replication.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_shutdown.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_sqlmode.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_stored_procedures_functions.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_sql_views_triggers.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_x_sessions_deinit.result X%%DATADIR%%/tests/suite/test_service_sql_api/r/test_x_sessions_init.result X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_100_sessions_in_thd-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_100_sessions_in_thd.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_audit_log-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_audit_log.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_audit_null-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_audit_null.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_detach-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_detach.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_general_log-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_general_log.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_info-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_session_info.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_2_sessions-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_2_sessions.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_all_col_types-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_all_col_types.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_audit_log-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_audit_log.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_cmds_1-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_cmds_1.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_commit-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_commit.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_complex-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_complex.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_errors-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_errors.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_general_log-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_general_log.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_lock-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_lock.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_processlist-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_processlist.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_replication-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_replication.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_shutdown-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_shutdown.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_sqlmode-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_sqlmode.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_stored_procedures_functions-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_stored_procedures_functions.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_views_triggers-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_sql_views_triggers.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_x_sessions_deinit-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_x_sessions_deinit.test X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_x_sessions_init-master.opt X%%DATADIR%%/tests/suite/test_service_sql_api/t/test_x_sessions_init.test X%%DATADIR%%/tests/suite/test_services/r/test_services.result X%%DATADIR%%/tests/suite/test_services/r/test_services_threaded.result X%%DATADIR%%/tests/suite/test_services/t/test_services-master.opt X%%DATADIR%%/tests/suite/test_services/t/test_services.test X%%DATADIR%%/tests/suite/test_services/t/test_services_threaded-master.opt X%%DATADIR%%/tests/suite/test_services/t/test_services_threaded.test X%%DATADIR%%/tests/t/1st.test X%%DATADIR%%/tests/t/acl_tables_errors_debug.test X%%DATADIR%%/tests/t/alias.test X%%DATADIR%%/tests/t/almost_full.test X%%DATADIR%%/tests/t/alter_table-big.test X%%DATADIR%%/tests/t/alter_table.test X%%DATADIR%%/tests/t/analyze.test X%%DATADIR%%/tests/t/ansi.test X%%DATADIR%%/tests/t/archive-big.test X%%DATADIR%%/tests/t/archive.test X%%DATADIR%%/tests/t/archive_bitfield.test X%%DATADIR%%/tests/t/archive_debug.test X%%DATADIR%%/tests/t/archive_gis.test X%%DATADIR%%/tests/t/archive_no_symlink-master.opt X%%DATADIR%%/tests/t/archive_no_symlink.test X%%DATADIR%%/tests/t/archive_plugin-master.opt X%%DATADIR%%/tests/t/archive_plugin.test X%%DATADIR%%/tests/t/archive_symlink.test X%%DATADIR%%/tests/t/audit_plugin-master.opt X%%DATADIR%%/tests/t/audit_plugin.test X%%DATADIR%%/tests/t/audit_plugin_2-master.opt X%%DATADIR%%/tests/t/audit_plugin_2.test X%%DATADIR%%/tests/t/auth_rpl-master.opt X%%DATADIR%%/tests/t/auth_rpl-slave.opt X%%DATADIR%%/tests/t/auth_rpl.test X%%DATADIR%%/tests/t/auto_increment.test X%%DATADIR%%/tests/t/bench_count_distinct.test X%%DATADIR%%/tests/t/bigint.test X%%DATADIR%%/tests/t/binary.test X%%DATADIR%%/tests/t/blackhole.test X%%DATADIR%%/tests/t/blackhole_plugin-master.opt X%%DATADIR%%/tests/t/blackhole_plugin.test X%%DATADIR%%/tests/t/bool.test X%%DATADIR%%/tests/t/bootstrap.test X%%DATADIR%%/tests/t/bug12368203-master.opt X%%DATADIR%%/tests/t/bug12368203.test X%%DATADIR%%/tests/t/bug12427262.test X%%DATADIR%%/tests/t/bug12969156-master.opt X%%DATADIR%%/tests/t/bug12969156.test X%%DATADIR%%/tests/t/bug17076131-master.opt X%%DATADIR%%/tests/t/bug17076131.test X%%DATADIR%%/tests/t/bug33509-master.opt X%%DATADIR%%/tests/t/bug33509.test X%%DATADIR%%/tests/t/bug39022.test X%%DATADIR%%/tests/t/bug46080-master.opt X%%DATADIR%%/tests/t/bug46080.test X%%DATADIR%%/tests/t/bug46261-master.opt X%%DATADIR%%/tests/t/bug46261.test X%%DATADIR%%/tests/t/bug46760-master.opt X%%DATADIR%%/tests/t/bug46760.test X%%DATADIR%%/tests/t/bug47671-master.opt X%%DATADIR%%/tests/t/bug47671.test X%%DATADIR%%/tests/t/bug58669-master.opt X%%DATADIR%%/tests/t/bug58669.test X%%DATADIR%%/tests/t/bulk_replace.test X%%DATADIR%%/tests/t/cache_innodb-master.opt X%%DATADIR%%/tests/t/cache_innodb.test X%%DATADIR%%/tests/t/case.test X%%DATADIR%%/tests/t/cast.test X%%DATADIR%%/tests/t/change_user-master.opt X%%DATADIR%%/tests/t/change_user.test X%%DATADIR%%/tests/t/check.test X%%DATADIR%%/tests/t/check_auto_permission.test X%%DATADIR%%/tests/t/client_xml.test X%%DATADIR%%/tests/t/comment_column.test X%%DATADIR%%/tests/t/comment_column2.test X%%DATADIR%%/tests/t/comment_index.test X%%DATADIR%%/tests/t/comment_table.test X%%DATADIR%%/tests/t/comments.test X%%DATADIR%%/tests/t/commit.test X%%DATADIR%%/tests/t/commit_1innodb.test X%%DATADIR%%/tests/t/compare.test X%%DATADIR%%/tests/t/compress.test X%%DATADIR%%/tests/t/concurrent_innodb_safelog-master.opt X%%DATADIR%%/tests/t/concurrent_innodb_safelog.test X%%DATADIR%%/tests/t/concurrent_innodb_unsafelog-master.opt X%%DATADIR%%/tests/t/concurrent_innodb_unsafelog.test X%%DATADIR%%/tests/t/condition_filter.test X%%DATADIR%%/tests/t/connect.test X%%DATADIR%%/tests/t/consistent_snapshot.test X%%DATADIR%%/tests/t/constraints.test X%%DATADIR%%/tests/t/count_distinct.test X%%DATADIR%%/tests/t/count_distinct2-master.opt X%%DATADIR%%/tests/t/count_distinct2.test X%%DATADIR%%/tests/t/count_distinct3.test X%%DATADIR%%/tests/t/create-big.test X%%DATADIR%%/tests/t/create.test X%%DATADIR%%/tests/t/create_not_windows.test X%%DATADIR%%/tests/t/create_select_tmp.test X%%DATADIR%%/tests/t/create_w_max_indexes_64.test X%%DATADIR%%/tests/t/csv-master.opt X%%DATADIR%%/tests/t/csv.test X%%DATADIR%%/tests/t/csv_alter_table.test X%%DATADIR%%/tests/t/csv_not_null.test X%%DATADIR%%/tests/t/ctype_ascii.test X%%DATADIR%%/tests/t/ctype_big5.test X%%DATADIR%%/tests/t/ctype_binary.test X%%DATADIR%%/tests/t/ctype_collate.test X%%DATADIR%%/tests/t/ctype_cp1250_ch.test X%%DATADIR%%/tests/t/ctype_cp1251.test X%%DATADIR%%/tests/t/ctype_cp932.test X%%DATADIR%%/tests/t/ctype_cp932_binlog_row.test X%%DATADIR%%/tests/t/ctype_cp932_binlog_stm.test X%%DATADIR%%/tests/t/ctype_create.test X%%DATADIR%%/tests/t/ctype_errors.test X%%DATADIR%%/tests/t/ctype_eucjpms.test X%%DATADIR%%/tests/t/ctype_euckr.test X%%DATADIR%%/tests/t/ctype_filename.test X%%DATADIR%%/tests/t/ctype_filesystem-master.opt X%%DATADIR%%/tests/t/ctype_filesystem.test X%%DATADIR%%/tests/t/ctype_gb18030.test X%%DATADIR%%/tests/t/ctype_gb18030_binlog.test X%%DATADIR%%/tests/t/ctype_gb18030_conversion.test X%%DATADIR%%/tests/t/ctype_gb18030_encoding_cn.test X%%DATADIR%%/tests/t/ctype_gb18030_encoding_utf8.test X%%DATADIR%%/tests/t/ctype_gb18030_ligatures.test X%%DATADIR%%/tests/t/ctype_gb2312.test X%%DATADIR%%/tests/t/ctype_gbk.test X%%DATADIR%%/tests/t/ctype_gbk_binlog.test X%%DATADIR%%/tests/t/ctype_hebrew.test X%%DATADIR%%/tests/t/ctype_latin1.test X%%DATADIR%%/tests/t/ctype_latin1_de-master.opt X%%DATADIR%%/tests/t/ctype_latin1_de.test X%%DATADIR%%/tests/t/ctype_latin2.test X%%DATADIR%%/tests/t/ctype_latin2_ch.test X%%DATADIR%%/tests/t/ctype_ldml-master.opt X%%DATADIR%%/tests/t/ctype_ldml.test X%%DATADIR%%/tests/t/ctype_like_range.test X%%DATADIR%%/tests/t/ctype_many.test X%%DATADIR%%/tests/t/ctype_mb.test X%%DATADIR%%/tests/t/ctype_recoding.test X%%DATADIR%%/tests/t/ctype_sjis.test X%%DATADIR%%/tests/t/ctype_tis620.test X%%DATADIR%%/tests/t/ctype_uca.test X%%DATADIR%%/tests/t/ctype_ucs.test X%%DATADIR%%/tests/t/ctype_ucs2_def-master.opt X%%DATADIR%%/tests/t/ctype_ucs2_def.test X%%DATADIR%%/tests/t/ctype_ujis.test X%%DATADIR%%/tests/t/ctype_ujis_ucs2.test X%%DATADIR%%/tests/t/ctype_utf16.test X%%DATADIR%%/tests/t/ctype_utf16_def-master.opt X%%DATADIR%%/tests/t/ctype_utf16_def.test X%%DATADIR%%/tests/t/ctype_utf16_uca.test X%%DATADIR%%/tests/t/ctype_utf16le.test X%%DATADIR%%/tests/t/ctype_utf32.test X%%DATADIR%%/tests/t/ctype_utf32_uca.test X%%DATADIR%%/tests/t/ctype_utf8-master.opt X%%DATADIR%%/tests/t/ctype_utf8.test X%%DATADIR%%/tests/t/ctype_utf8mb4-master.opt X%%DATADIR%%/tests/t/ctype_utf8mb4.test X%%DATADIR%%/tests/t/ctype_utf8mb4_heap.test X%%DATADIR%%/tests/t/ctype_utf8mb4_innodb-master.opt X%%DATADIR%%/tests/t/ctype_utf8mb4_innodb.test X%%DATADIR%%/tests/t/ctype_utf8mb4_myisam.test X%%DATADIR%%/tests/t/ctype_utf8mb4_uca.test X%%DATADIR%%/tests/t/daemonize_opt-master.opt X%%DATADIR%%/tests/t/daemonize_opt.test X%%DATADIR%%/tests/t/datadir_permission.test X%%DATADIR%%/tests/t/date_formats-master.opt X%%DATADIR%%/tests/t/date_formats.test X%%DATADIR%%/tests/t/ddl_i18n_koi8r.test X%%DATADIR%%/tests/t/ddl_i18n_utf8.test X%%DATADIR%%/tests/t/deadlock_innodb.test X%%DATADIR%%/tests/t/debug_sync.test X%%DATADIR%%/tests/t/debug_sync2-master.opt X%%DATADIR%%/tests/t/debug_sync2.test X%%DATADIR%%/tests/t/default.test X%%DATADIR%%/tests/t/delete.test X%%DATADIR%%/tests/t/delete_all_rows.test X%%DATADIR%%/tests/t/deprecate_eof-master.opt X%%DATADIR%%/tests/t/deprecate_eof.test X%%DATADIR%%/tests/t/deprecated_features.test X%%DATADIR%%/tests/t/derived.test X%%DATADIR%%/tests/t/dirty_close.test X%%DATADIR%%/tests/t/disabled.def X%%DATADIR%%/tests/t/disabled_replication-master.opt X%%DATADIR%%/tests/t/disabled_replication.test X%%DATADIR%%/tests/t/disabled_storage_engines-master.opt X%%DATADIR%%/tests/t/disabled_storage_engines.test X%%DATADIR%%/tests/t/disconnect_on_expired_password_default.test X%%DATADIR%%/tests/t/disconnect_on_expired_password_off-master.opt X%%DATADIR%%/tests/t/disconnect_on_expired_password_off.test X%%DATADIR%%/tests/t/distinct.test X%%DATADIR%%/tests/t/drop-no_root.test X%%DATADIR%%/tests/t/drop.test X%%DATADIR%%/tests/t/drop_debug.test X%%DATADIR%%/tests/t/ds_mrr-big.test X%%DATADIR%%/tests/t/dynamic_tracing.test X%%DATADIR%%/tests/t/empty_table.test X%%DATADIR%%/tests/t/endspace.test X%%DATADIR%%/tests/t/eq_range_idx_stat.test X%%DATADIR%%/tests/t/error_simulation.test X%%DATADIR%%/tests/t/errors.test X%%DATADIR%%/tests/t/events_1.test X%%DATADIR%%/tests/t/events_2.test X%%DATADIR%%/tests/t/events_and_binlog.test X%%DATADIR%%/tests/t/events_bugs-master.opt X%%DATADIR%%/tests/t/events_bugs.test X%%DATADIR%%/tests/t/events_embedded.test X%%DATADIR%%/tests/t/events_grant.test X%%DATADIR%%/tests/t/events_logs_tests-master.opt X%%DATADIR%%/tests/t/events_logs_tests.test X%%DATADIR%%/tests/t/events_microsec.test X%%DATADIR%%/tests/t/events_restart-master.opt X%%DATADIR%%/tests/t/events_restart.test X%%DATADIR%%/tests/t/events_scheduling.test X%%DATADIR%%/tests/t/events_stress.test X%%DATADIR%%/tests/t/events_time_zone.test X%%DATADIR%%/tests/t/events_trans.test X%%DATADIR%%/tests/t/events_trans_notembedded.test X%%DATADIR%%/tests/t/examined_rows.test X%%DATADIR%%/tests/t/execution_constants.test X%%DATADIR%%/tests/t/explain.test X%%DATADIR%%/tests/t/explain_for_connection_crash.test X%%DATADIR%%/tests/t/explain_for_connection_rqg_json.test X%%DATADIR%%/tests/t/explain_for_connection_rqg_trad.test X%%DATADIR%%/tests/t/explain_for_connection_small_json-master.opt X%%DATADIR%%/tests/t/explain_for_connection_small_json.test X%%DATADIR%%/tests/t/explain_for_connection_small_trad-master.opt X%%DATADIR%%/tests/t/explain_for_connection_small_trad.test X%%DATADIR%%/tests/t/explain_json_all.test X%%DATADIR%%/tests/t/explain_json_none.test X%%DATADIR%%/tests/t/explain_other-master.opt X%%DATADIR%%/tests/t/explain_other.test X%%DATADIR%%/tests/t/file_contents.test X%%DATADIR%%/tests/t/filesort_debug-master.opt X%%DATADIR%%/tests/t/filesort_debug.test X%%DATADIR%%/tests/t/filesort_merge.test X%%DATADIR%%/tests/t/filesort_pack.test X%%DATADIR%%/tests/t/filter_single_col_idx_big.test X%%DATADIR%%/tests/t/filter_single_col_idx_small.test X%%DATADIR%%/tests/t/fix_priv_tables.test X%%DATADIR%%/tests/t/flush.test X%%DATADIR%%/tests/t/flush2-master.opt X%%DATADIR%%/tests/t/flush2.test X%%DATADIR%%/tests/t/flush_block_commit.test X%%DATADIR%%/tests/t/flush_block_commit_notembedded.test X%%DATADIR%%/tests/t/flush_read_lock.test X%%DATADIR%%/tests/t/flush_read_lock_kill.test X%%DATADIR%%/tests/t/flush_table-master.opt X%%DATADIR%%/tests/t/flush_table.test X%%DATADIR%%/tests/t/foreign_key.test X%%DATADIR%%/tests/t/fulltext.test X%%DATADIR%%/tests/t/fulltext2.test X%%DATADIR%%/tests/t/fulltext3.test X%%DATADIR%%/tests/t/fulltext_cache.test X%%DATADIR%%/tests/t/fulltext_distinct.test X%%DATADIR%%/tests/t/fulltext_left_join.test X%%DATADIR%%/tests/t/fulltext_multi.test X%%DATADIR%%/tests/t/fulltext_order_by.test X%%DATADIR%%/tests/t/fulltext_plugin-master.opt X%%DATADIR%%/tests/t/fulltext_plugin.test X%%DATADIR%%/tests/t/fulltext_update.test X%%DATADIR%%/tests/t/fulltext_var.test X%%DATADIR%%/tests/t/func_aes.test X%%DATADIR%%/tests/t/func_aes_cfb1.test X%%DATADIR%%/tests/t/func_aes_cfb128.test X%%DATADIR%%/tests/t/func_aes_cfb8.test X%%DATADIR%%/tests/t/func_aes_misc.test X%%DATADIR%%/tests/t/func_aes_ofb.test X%%DATADIR%%/tests/t/func_analyse.test X%%DATADIR%%/tests/t/func_compress.test X%%DATADIR%%/tests/t/func_concat.test X%%DATADIR%%/tests/t/func_crypt.test X%%DATADIR%%/tests/t/func_date_add.test X%%DATADIR%%/tests/t/func_default.test X%%DATADIR%%/tests/t/func_des_encrypt.test X%%DATADIR%%/tests/t/func_digest.test X%%DATADIR%%/tests/t/func_encrypt-master.opt X%%DATADIR%%/tests/t/func_encrypt.test X%%DATADIR%%/tests/t/func_encrypt_nossl.test X%%DATADIR%%/tests/t/func_encrypt_ucs2.test X%%DATADIR%%/tests/t/func_equal.test X%%DATADIR%%/tests/t/func_gconcat.test X%%DATADIR%%/tests/t/func_group.test X%%DATADIR%%/tests/t/func_group_innodb.test X%%DATADIR%%/tests/t/func_group_innodb_16k.test X%%DATADIR%%/tests/t/func_if.test X%%DATADIR%%/tests/t/func_in_all.test X%%DATADIR%%/tests/t/func_in_icp.test X%%DATADIR%%/tests/t/func_in_icp_mrr.test X%%DATADIR%%/tests/t/func_in_mrr.test X%%DATADIR%%/tests/t/func_in_mrr_cost.test X%%DATADIR%%/tests/t/func_in_none.test X%%DATADIR%%/tests/t/func_isnull.test X%%DATADIR%%/tests/t/func_like.test X%%DATADIR%%/tests/t/func_math.test X%%DATADIR%%/tests/t/func_misc-master.opt X%%DATADIR%%/tests/t/func_misc.test X%%DATADIR%%/tests/t/func_op.test X%%DATADIR%%/tests/t/func_regexp.test X%%DATADIR%%/tests/t/func_rollback.test X%%DATADIR%%/tests/t/func_sapdb.test X%%DATADIR%%/tests/t/func_set.test X%%DATADIR%%/tests/t/func_str.test X%%DATADIR%%/tests/t/func_str_debug.test X%%DATADIR%%/tests/t/func_str_no_ps.test X%%DATADIR%%/tests/t/func_system.test X%%DATADIR%%/tests/t/func_test.test X%%DATADIR%%/tests/t/func_time.test X%%DATADIR%%/tests/t/func_timestamp.test X%%DATADIR%%/tests/t/func_weight_string.test X%%DATADIR%%/tests/t/function_defaults.test X%%DATADIR%%/tests/t/gcc296.test X%%DATADIR%%/tests/t/get_diagnostics.test X%%DATADIR%%/tests/t/get_table_share.test X%%DATADIR%%/tests/t/gis-debug.test X%%DATADIR%%/tests/t/gis-precise.test X%%DATADIR%%/tests/t/gis-rt-precise.test X%%DATADIR%%/tests/t/gis-rtree.test X%%DATADIR%%/tests/t/gis.test X%%DATADIR%%/tests/t/grant.test X%%DATADIR%%/tests/t/grant2.test X%%DATADIR%%/tests/t/grant3-master.opt X%%DATADIR%%/tests/t/grant3.test X%%DATADIR%%/tests/t/grant4.test X%%DATADIR%%/tests/t/grant_alter_user.test X%%DATADIR%%/tests/t/grant_alter_user_qa-master.opt X%%DATADIR%%/tests/t/grant_alter_user_qa.test X%%DATADIR%%/tests/t/grant_cache-master.opt X%%DATADIR%%/tests/t/grant_cache.test X%%DATADIR%%/tests/t/grant_explain_non_select.test X%%DATADIR%%/tests/t/grant_lowercase_fs.test X%%DATADIR%%/tests/t/grant_user_lock.test X%%DATADIR%%/tests/t/grant_user_lock_qa.test X%%DATADIR%%/tests/t/greedy_optimizer-master.opt X%%DATADIR%%/tests/t/greedy_optimizer.test X%%DATADIR%%/tests/t/greedy_search.test X%%DATADIR%%/tests/t/group_by.test X%%DATADIR%%/tests/t/group_by_fd_no_prot.test X%%DATADIR%%/tests/t/group_by_fd_ps_prot.test X%%DATADIR%%/tests/t/group_min_max.test X%%DATADIR%%/tests/t/group_min_max_innodb.test X%%DATADIR%%/tests/t/gtids_anonymous_trxs_violations.test X%%DATADIR%%/tests/t/handler_innodb.test X%%DATADIR%%/tests/t/handler_myisam.test X%%DATADIR%%/tests/t/handler_read_last.test X%%DATADIR%%/tests/t/having.test X%%DATADIR%%/tests/t/heap.test X%%DATADIR%%/tests/t/heap_auto_increment.test X%%DATADIR%%/tests/t/heap_btree.test X%%DATADIR%%/tests/t/heap_hash.test X%%DATADIR%%/tests/t/help.test X%%DATADIR%%/tests/t/help_verbose.test X%%DATADIR%%/tests/t/host_cache_size_functionality.test X%%DATADIR%%/tests/t/ignore_strict.test X%%DATADIR%%/tests/t/implicit_char_to_num_conversion.test X%%DATADIR%%/tests/t/implicit_commit-master.opt X%%DATADIR%%/tests/t/implicit_commit.test X%%DATADIR%%/tests/t/index_merge_delete.test X%%DATADIR%%/tests/t/index_merge_innodb.test X%%DATADIR%%/tests/t/index_merge_insert-and-replace.test X%%DATADIR%%/tests/t/index_merge_intersect_dml.test X%%DATADIR%%/tests/t/index_merge_myisam.test X%%DATADIR%%/tests/t/index_merge_update.test X%%DATADIR%%/tests/t/information_schema-big.test X%%DATADIR%%/tests/t/information_schema.test X%%DATADIR%%/tests/t/information_schema_chmod.test X%%DATADIR%%/tests/t/information_schema_db.test X%%DATADIR%%/tests/t/information_schema_inno.test X%%DATADIR%%/tests/t/information_schema_parameters.test X%%DATADIR%%/tests/t/information_schema_part.test X%%DATADIR%%/tests/t/information_schema_routines.test X%%DATADIR%%/tests/t/init_connect-master.opt X%%DATADIR%%/tests/t/init_connect.test X%%DATADIR%%/tests/t/init_file-master.opt X%%DATADIR%%/tests/t/init_file.test X%%DATADIR%%/tests/t/initialize-bug20350099-master.opt X%%DATADIR%%/tests/t/initialize-bug20350099.test X%%DATADIR%%/tests/t/initialize-bug20504142.test X%%DATADIR%%/tests/t/initialize-bug21335821-master.opt X%%DATADIR%%/tests/t/initialize-bug21335821.test X%%DATADIR%%/tests/t/initialize-errors.test X%%DATADIR%%/tests/t/initialize-init-acls.test X%%DATADIR%%/tests/t/initialize-sha256.test X%%DATADIR%%/tests/t/initialize-yassl-warning.test X%%DATADIR%%/tests/t/initialize.test X%%DATADIR%%/tests/t/innodb_deadlock-master.opt X%%DATADIR%%/tests/t/innodb_deadlock.test X%%DATADIR%%/tests/t/innodb_disabled-master.opt X%%DATADIR%%/tests/t/innodb_disabled.test X%%DATADIR%%/tests/t/innodb_explain_json_non_select_all.test X%%DATADIR%%/tests/t/innodb_explain_json_non_select_none.test X%%DATADIR%%/tests/t/innodb_explain_non_select_all.test X%%DATADIR%%/tests/t/innodb_explain_non_select_none.test X%%DATADIR%%/tests/t/innodb_icp.test X%%DATADIR%%/tests/t/innodb_icp_all.test X%%DATADIR%%/tests/t/innodb_icp_none.test X%%DATADIR%%/tests/t/innodb_ignore_builtin-master.opt X%%DATADIR%%/tests/t/innodb_ignore_builtin.test X%%DATADIR%%/tests/t/innodb_log_file_size_functionality.test X%%DATADIR%%/tests/t/innodb_mrr-master.opt X%%DATADIR%%/tests/t/innodb_mrr.test X%%DATADIR%%/tests/t/innodb_mrr_all-master.opt X%%DATADIR%%/tests/t/innodb_mrr_all.test X%%DATADIR%%/tests/t/innodb_mrr_cost-master.opt X%%DATADIR%%/tests/t/innodb_mrr_cost.test X%%DATADIR%%/tests/t/innodb_mrr_cost_all-master.opt X%%DATADIR%%/tests/t/innodb_mrr_cost_all.test X%%DATADIR%%/tests/t/innodb_mrr_cost_icp-master.opt X%%DATADIR%%/tests/t/innodb_mrr_cost_icp.test X%%DATADIR%%/tests/t/innodb_mrr_icp-master.opt X%%DATADIR%%/tests/t/innodb_mrr_icp.test X%%DATADIR%%/tests/t/innodb_mrr_none-master.opt X%%DATADIR%%/tests/t/innodb_mrr_none.test X%%DATADIR%%/tests/t/innodb_mysql_lock-master.opt X%%DATADIR%%/tests/t/innodb_mysql_lock.test X%%DATADIR%%/tests/t/innodb_mysql_lock2.test X%%DATADIR%%/tests/t/innodb_mysql_sync.test X%%DATADIR%%/tests/t/innodb_pk_extension_off.test X%%DATADIR%%/tests/t/innodb_pk_extension_on.test X%%DATADIR%%/tests/t/innodb_recovery_with_upper_case_names-master.opt X%%DATADIR%%/tests/t/innodb_recovery_with_upper_case_names.test X%%DATADIR%%/tests/t/insert.test X%%DATADIR%%/tests/t/insert_notembedded.test X%%DATADIR%%/tests/t/insert_select.test X%%DATADIR%%/tests/t/insert_update.test X%%DATADIR%%/tests/t/installdb-bad-cipher.test X%%DATADIR%%/tests/t/internal_tmp_disk_storage_engine.test X%%DATADIR%%/tests/t/ipv4_as_ipv6-master.opt X%%DATADIR%%/tests/t/ipv4_as_ipv6.test X%%DATADIR%%/tests/t/ipv6-master.opt X%%DATADIR%%/tests/t/ipv6.test X%%DATADIR%%/tests/t/join.test X%%DATADIR%%/tests/t/join_cache_bka.test X%%DATADIR%%/tests/t/join_cache_bka_nixbnl.test X%%DATADIR%%/tests/t/join_cache_bkaunique.test X%%DATADIR%%/tests/t/join_cache_bnl.test X%%DATADIR%%/tests/t/join_cache_nojb.test X%%DATADIR%%/tests/t/join_crash.test X%%DATADIR%%/tests/t/join_nested.test X%%DATADIR%%/tests/t/join_nested_bka.test X%%DATADIR%%/tests/t/join_nested_bka_nixbnl.test X%%DATADIR%%/tests/t/join_outer.test X%%DATADIR%%/tests/t/join_outer_bka.test X%%DATADIR%%/tests/t/join_outer_bka_nixbnl.test X%%DATADIR%%/tests/t/join_outer_innodb.test X%%DATADIR%%/tests/t/json.test X%%DATADIR%%/tests/t/json_client.test X%%DATADIR%%/tests/t/json_conversions.test X%%DATADIR%%/tests/t/json_index.test X%%DATADIR%%/tests/t/key.test X%%DATADIR%%/tests/t/key_cache-master.opt X%%DATADIR%%/tests/t/key_cache.test X%%DATADIR%%/tests/t/key_diff.test X%%DATADIR%%/tests/t/key_primary.test X%%DATADIR%%/tests/t/keywords.test X%%DATADIR%%/tests/t/kill.test X%%DATADIR%%/tests/t/kill_debug-master.opt X%%DATADIR%%/tests/t/kill_debug.test X%%DATADIR%%/tests/t/limit.test X%%DATADIR%%/tests/t/loaddata.test X%%DATADIR%%/tests/t/loaddata_autocom_innodb.test X%%DATADIR%%/tests/t/loadxml.test X%%DATADIR%%/tests/t/locale.test X%%DATADIR%%/tests/t/lock.test X%%DATADIR%%/tests/t/lock_multi.test X%%DATADIR%%/tests/t/lock_multi_bug38499.test X%%DATADIR%%/tests/t/lock_multi_bug38691.test X%%DATADIR%%/tests/t/lock_sync-master.opt X%%DATADIR%%/tests/t/lock_sync.test X%%DATADIR%%/tests/t/lock_tables_lost_commit-master.opt X%%DATADIR%%/tests/t/lock_tables_lost_commit.test X%%DATADIR%%/tests/t/locking_service-master.opt X%%DATADIR%%/tests/t/locking_service.test X%%DATADIR%%/tests/t/log_errchk.test X%%DATADIR%%/tests/t/log_state-master.opt X%%DATADIR%%/tests/t/log_state.test X%%DATADIR%%/tests/t/log_state_bug33693-master.opt X%%DATADIR%%/tests/t/log_state_bug33693.test X%%DATADIR%%/tests/t/log_tables-big-master.opt X%%DATADIR%%/tests/t/log_tables-big.test X%%DATADIR%%/tests/t/log_tables-master.opt X%%DATADIR%%/tests/t/log_tables.test X%%DATADIR%%/tests/t/log_tables_debug.test X%%DATADIR%%/tests/t/log_tables_upgrade.test X%%DATADIR%%/tests/t/log_timestamps-master.opt X%%DATADIR%%/tests/t/log_timestamps.test X%%DATADIR%%/tests/t/long_tmpdir-master.opt X%%DATADIR%%/tests/t/long_tmpdir-master.sh X%%DATADIR%%/tests/t/long_tmpdir.test X%%DATADIR%%/tests/t/lowercase_fs_off.test X%%DATADIR%%/tests/t/lowercase_fs_on.test X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir-master.opt X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir-master.sh X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir.test X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir_innodb-master.opt X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir_innodb-master.sh X%%DATADIR%%/tests/t/lowercase_mixed_tmpdir_innodb.test X%%DATADIR%%/tests/t/lowercase_table-master.opt X%%DATADIR%%/tests/t/lowercase_table.test X%%DATADIR%%/tests/t/lowercase_table2.test X%%DATADIR%%/tests/t/lowercase_table4-master.opt X%%DATADIR%%/tests/t/lowercase_table4.test X%%DATADIR%%/tests/t/lowercase_table5.test X%%DATADIR%%/tests/t/lowercase_table_grant-master.opt X%%DATADIR%%/tests/t/lowercase_table_grant.test X%%DATADIR%%/tests/t/lowercase_table_qcache-master.opt X%%DATADIR%%/tests/t/lowercase_table_qcache.test X%%DATADIR%%/tests/t/lowercase_utf8-master.opt X%%DATADIR%%/tests/t/lowercase_utf8.test X%%DATADIR%%/tests/t/lowercase_view-master.opt X%%DATADIR%%/tests/t/lowercase_view.test X%%DATADIR%%/tests/t/m_i_db.test X%%DATADIR%%/tests/t/m_i_db_config.cnf X%%DATADIR%%/tests/t/m_i_db_createschema.sql X%%DATADIR%%/tests/t/main.lowercase_table_qcache-master.opt X%%DATADIR%%/tests/t/max_statement_time-master.opt X%%DATADIR%%/tests/t/max_statement_time.test X%%DATADIR%%/tests/t/mdl_sync-master.opt X%%DATADIR%%/tests/t/mdl_sync.test X%%DATADIR%%/tests/t/mdl_tablespace.test X%%DATADIR%%/tests/t/merge-big.test X%%DATADIR%%/tests/t/merge.test X%%DATADIR%%/tests/t/merge_innodb.test X%%DATADIR%%/tests/t/merge_mmap-master.opt X%%DATADIR%%/tests/t/merge_mmap.test X%%DATADIR%%/tests/t/metadata.test X%%DATADIR%%/tests/t/mix2_myisam-master.opt X%%DATADIR%%/tests/t/mix2_myisam.test X%%DATADIR%%/tests/t/mix2_myisam_ucs2.test X%%DATADIR%%/tests/t/multi_plugin_load-master.opt X%%DATADIR%%/tests/t/multi_plugin_load.test X%%DATADIR%%/tests/t/multi_plugin_load_add-master.opt X%%DATADIR%%/tests/t/multi_plugin_load_add.test X%%DATADIR%%/tests/t/multi_plugin_load_add2-master.opt X%%DATADIR%%/tests/t/multi_plugin_load_add2.test X%%DATADIR%%/tests/t/multi_statement-master.opt X%%DATADIR%%/tests/t/multi_statement.test X%%DATADIR%%/tests/t/multi_update-master.opt X%%DATADIR%%/tests/t/multi_update.test X%%DATADIR%%/tests/t/multi_update2-master.opt X%%DATADIR%%/tests/t/multi_update2.test X%%DATADIR%%/tests/t/multi_update_innodb.test X%%DATADIR%%/tests/t/multi_update_tiny_hash-master.opt X%%DATADIR%%/tests/t/multi_update_tiny_hash.test X%%DATADIR%%/tests/t/myisam-blob-master.opt X%%DATADIR%%/tests/t/myisam-blob.test X%%DATADIR%%/tests/t/myisam-system.test X%%DATADIR%%/tests/t/myisam.test X%%DATADIR%%/tests/t/myisam_crash_before_flush_keys-master.opt X%%DATADIR%%/tests/t/myisam_crash_before_flush_keys.test X%%DATADIR%%/tests/t/myisam_debug.test X%%DATADIR%%/tests/t/myisam_explain_json_non_select_all.test X%%DATADIR%%/tests/t/myisam_explain_json_non_select_none.test X%%DATADIR%%/tests/t/myisam_explain_non_select_all.test X%%DATADIR%%/tests/t/myisam_explain_non_select_none.test X%%DATADIR%%/tests/t/myisam_icp.test X%%DATADIR%%/tests/t/myisam_icp_all.test X%%DATADIR%%/tests/t/myisam_icp_none.test X%%DATADIR%%/tests/t/myisam_mrr.test X%%DATADIR%%/tests/t/myisam_mrr_all.test X%%DATADIR%%/tests/t/myisam_mrr_cost.test X%%DATADIR%%/tests/t/myisam_mrr_cost_all.test X%%DATADIR%%/tests/t/myisam_mrr_cost_icp.test X%%DATADIR%%/tests/t/myisam_mrr_icp.test X%%DATADIR%%/tests/t/myisam_mrr_none.test X%%DATADIR%%/tests/t/myisam_recover-master.opt X%%DATADIR%%/tests/t/myisam_recover.test X%%DATADIR%%/tests/t/myisam_row_rpl-master.opt X%%DATADIR%%/tests/t/myisam_row_rpl-slave.opt X%%DATADIR%%/tests/t/myisam_row_rpl.test X%%DATADIR%%/tests/t/myisampack.test X%%DATADIR%%/tests/t/mysql-bug41486.test X%%DATADIR%%/tests/t/mysql-bug45236.test X%%DATADIR%%/tests/t/mysql.test X%%DATADIR%%/tests/t/mysql_binary_mode.test X%%DATADIR%%/tests/t/mysql_client_test-master.opt X%%DATADIR%%/tests/t/mysql_client_test.test X%%DATADIR%%/tests/t/mysql_client_test_embedded.test X%%DATADIR%%/tests/t/mysql_comments.sql X%%DATADIR%%/tests/t/mysql_comments.test X%%DATADIR%%/tests/t/mysql_config_editor.test X%%DATADIR%%/tests/t/mysql_cp932.test X%%DATADIR%%/tests/t/mysql_delimiter.sql X%%DATADIR%%/tests/t/mysql_delimiter_19799.sql X%%DATADIR%%/tests/t/mysql_delimiter_source.sql X%%DATADIR%%/tests/t/mysql_embedded.test X%%DATADIR%%/tests/t/mysql_embedded_client_test.test X%%DATADIR%%/tests/t/mysql_locale_posix.test X%%DATADIR%%/tests/t/mysql_not_windows-master.opt X%%DATADIR%%/tests/t/mysql_not_windows.test X%%DATADIR%%/tests/t/mysql_plugin-master.opt X%%DATADIR%%/tests/t/mysql_plugin.test X%%DATADIR%%/tests/t/mysql_protocols.test X%%DATADIR%%/tests/t/mysql_ssl-master.opt X%%DATADIR%%/tests/t/mysql_ssl.test X%%DATADIR%%/tests/t/mysql_ssl_default.test X%%DATADIR%%/tests/t/mysql_tzinfo_to_sql.test X%%DATADIR%%/tests/t/mysql_tzinfo_to_sql_sys.test X%%DATADIR%%/tests/t/mysql_upgrade.test X%%DATADIR%%/tests/t/mysql_upgrade_ssl.test X%%DATADIR%%/tests/t/mysqladmin.test X%%DATADIR%%/tests/t/mysqlbinlog-master.opt X%%DATADIR%%/tests/t/mysqlbinlog.test X%%DATADIR%%/tests/t/mysqlbinlog_debug.test X%%DATADIR%%/tests/t/mysqlbinlog_mixed_or_statment.test X%%DATADIR%%/tests/t/mysqlbinlog_raw_mode.test X%%DATADIR%%/tests/t/mysqlbinlog_raw_mode_win.test X%%DATADIR%%/tests/t/mysqlbinlog_row_big.test X%%DATADIR%%/tests/t/mysqlcheck.test X%%DATADIR%%/tests/t/mysqld--defaults-file.test X%%DATADIR%%/tests/t/mysqld--help-notwin.test X%%DATADIR%%/tests/t/mysqld--help-win.test X%%DATADIR%%/tests/t/mysqld_daemon.test X%%DATADIR%%/tests/t/mysqld_safe.sh X%%DATADIR%%/tests/t/mysqld_safe.test X%%DATADIR%%/tests/t/mysqldump-compat.opt X%%DATADIR%%/tests/t/mysqldump-compat.test X%%DATADIR%%/tests/t/mysqldump-max-master.opt X%%DATADIR%%/tests/t/mysqldump-max.test X%%DATADIR%%/tests/t/mysqldump-no-binlog-master.opt X%%DATADIR%%/tests/t/mysqldump-no-binlog.test X%%DATADIR%%/tests/t/mysqldump.test X%%DATADIR%%/tests/t/mysqldump_restore.test X%%DATADIR%%/tests/t/mysqlimport.test X%%DATADIR%%/tests/t/mysqlpump.test X%%DATADIR%%/tests/t/mysqlpump_basic.test X%%DATADIR%%/tests/t/mysqlpump_charset.test X%%DATADIR%%/tests/t/mysqlpump_concurrency.test X%%DATADIR%%/tests/t/mysqlpump_extended.test X%%DATADIR%%/tests/t/mysqlpump_filters.test X%%DATADIR%%/tests/t/mysqlpump_multi_thread.test X%%DATADIR%%/tests/t/mysqlshow.test X%%DATADIR%%/tests/t/mysqlslap.test X%%DATADIR%%/tests/t/mysqltest.test X%%DATADIR%%/tests/t/named_pipe-master.opt X%%DATADIR%%/tests/t/named_pipe.test X%%DATADIR%%/tests/t/negation_elimination.test X%%DATADIR%%/tests/t/no-threads-master.opt X%%DATADIR%%/tests/t/no-threads.test X%%DATADIR%%/tests/t/no_binlog.test X%%DATADIR%%/tests/t/no_binlog_gtid_empty_transaction-master.opt X%%DATADIR%%/tests/t/no_binlog_gtid_empty_transaction.test X%%DATADIR%%/tests/t/no_binlog_gtid_mode_on-master.opt X%%DATADIR%%/tests/t/no_binlog_gtid_mode_on.test X%%DATADIR%%/tests/t/no_binlog_gtid_mode_on_explicit_prepared_stmts-master.opt X%%DATADIR%%/tests/t/no_binlog_gtid_mode_on_explicit_prepared_stmts.test X%%DATADIR%%/tests/t/no_binlog_gtid_next_single_stmt_trx_rollback.test X%%DATADIR%%/tests/t/no_binlog_gtid_next_temporary_table.test X%%DATADIR%%/tests/t/not_embedded_server-master.opt X%%DATADIR%%/tests/t/not_embedded_server.test X%%DATADIR%%/tests/t/not_partition-master.opt X%%DATADIR%%/tests/t/not_partition.test X%%DATADIR%%/tests/t/null.test X%%DATADIR%%/tests/t/null_key_all.test X%%DATADIR%%/tests/t/null_key_icp.test X%%DATADIR%%/tests/t/null_key_none.test X%%DATADIR%%/tests/t/odbc.test X%%DATADIR%%/tests/t/olap.test X%%DATADIR%%/tests/t/openssl_1.test X%%DATADIR%%/tests/t/opt_costmodel.test X%%DATADIR%%/tests/t/opt_costmodel_flush.test X%%DATADIR%%/tests/t/opt_costmodel_pfs.test X%%DATADIR%%/tests/t/opt_costmodel_restart.test X%%DATADIR%%/tests/t/opt_costmodel_tables.test X%%DATADIR%%/tests/t/opt_costmodel_warnings.test X%%DATADIR%%/tests/t/opt_hint_timeout.test X%%DATADIR%%/tests/t/opt_hints.test X%%DATADIR%%/tests/t/opt_hints_lowercase.test X%%DATADIR%%/tests/t/opt_hints_pfs.test X%%DATADIR%%/tests/t/opt_hints_subquery.test X%%DATADIR%%/tests/t/optimizer_bug12837084.test X%%DATADIR%%/tests/t/optimizer_debug_sync.test X%%DATADIR%%/tests/t/optimizer_switch.test X%%DATADIR%%/tests/t/order_by_all.test X%%DATADIR%%/tests/t/order_by_icp_mrr.test X%%DATADIR%%/tests/t/order_by_limit.test X%%DATADIR%%/tests/t/order_by_none.test X%%DATADIR%%/tests/t/order_by_sortkey.test X%%DATADIR%%/tests/t/order_fill_sortbuf-master.opt X%%DATADIR%%/tests/t/order_fill_sortbuf.test X%%DATADIR%%/tests/t/outfile.test X%%DATADIR%%/tests/t/outfile_loaddata.test X%%DATADIR%%/tests/t/overflow.test X%%DATADIR%%/tests/t/packet.test X%%DATADIR%%/tests/t/parser-big-32bit.test X%%DATADIR%%/tests/t/parser-big-64bit.test X%%DATADIR%%/tests/t/parser.test X%%DATADIR%%/tests/t/parser_bug21114_innodb.test X%%DATADIR%%/tests/t/parser_not_embedded.test X%%DATADIR%%/tests/t/parser_precedence.test X%%DATADIR%%/tests/t/parser_stack.test X%%DATADIR%%/tests/t/partition.test X%%DATADIR%%/tests/t/partition_archive.test X%%DATADIR%%/tests/t/partition_binlog.test X%%DATADIR%%/tests/t/partition_binlog_stmt.test X%%DATADIR%%/tests/t/partition_blackhole.test X%%DATADIR%%/tests/t/partition_bug18198.test X%%DATADIR%%/tests/t/partition_cache-master.opt X%%DATADIR%%/tests/t/partition_cache.test X%%DATADIR%%/tests/t/partition_charset.test X%%DATADIR%%/tests/t/partition_column.test X%%DATADIR%%/tests/t/partition_column_prune.test X%%DATADIR%%/tests/t/partition_csv.test X%%DATADIR%%/tests/t/partition_datatype.test X%%DATADIR%%/tests/t/partition_debug.test X%%DATADIR%%/tests/t/partition_debug_sync.test X%%DATADIR%%/tests/t/partition_debug_sync_stmt.test X%%DATADIR%%/tests/t/partition_error.test X%%DATADIR%%/tests/t/partition_exchange.test X%%DATADIR%%/tests/t/partition_explicit_prune.test X%%DATADIR%%/tests/t/partition_federated.test X%%DATADIR%%/tests/t/partition_grant.test X%%DATADIR%%/tests/t/partition_hash.test X%%DATADIR%%/tests/t/partition_index_innodb.test X%%DATADIR%%/tests/t/partition_index_myisam.test X%%DATADIR%%/tests/t/partition_innodb.test X%%DATADIR%%/tests/t/partition_innodb_plugin.test X%%DATADIR%%/tests/t/partition_innodb_semi_consistent-master.opt X%%DATADIR%%/tests/t/partition_innodb_semi_consistent.test X%%DATADIR%%/tests/t/partition_innodb_stmt.test X%%DATADIR%%/tests/t/partition_innodb_tablespace.test X%%DATADIR%%/tests/t/partition_key_cache.test X%%DATADIR%%/tests/t/partition_list.test X%%DATADIR%%/tests/t/partition_locking.test X%%DATADIR%%/tests/t/partition_locking_4.test X%%DATADIR%%/tests/t/partition_mgm.test X%%DATADIR%%/tests/t/partition_mgm_err.test X%%DATADIR%%/tests/t/partition_mgm_err2.test X%%DATADIR%%/tests/t/partition_myisam.test X%%DATADIR%%/tests/t/partition_not_blackhole-master.opt X%%DATADIR%%/tests/t/partition_not_blackhole.test X%%DATADIR%%/tests/t/partition_not_windows-master.opt X%%DATADIR%%/tests/t/partition_not_windows.test X%%DATADIR%%/tests/t/partition_order.test X%%DATADIR%%/tests/t/partition_plugin-master.opt X%%DATADIR%%/tests/t/partition_plugin.test X%%DATADIR%%/tests/t/partition_pruning.test X%%DATADIR%%/tests/t/partition_range.test X%%DATADIR%%/tests/t/partition_rename_longfilename.test X%%DATADIR%%/tests/t/partition_symlink.test X%%DATADIR%%/tests/t/partition_sync.test X%%DATADIR%%/tests/t/partition_truncate.test X%%DATADIR%%/tests/t/partition_utf8.test X%%DATADIR%%/tests/t/partition_windows.test X%%DATADIR%%/tests/t/per_thread_connection_handler.test X%%DATADIR%%/tests/t/perror-win.test X%%DATADIR%%/tests/t/perror.test X%%DATADIR%%/tests/t/plugin-master.opt X%%DATADIR%%/tests/t/plugin.test X%%DATADIR%%/tests/t/plugin_auth-master.opt X%%DATADIR%%/tests/t/plugin_auth.test X%%DATADIR%%/tests/t/plugin_auth_qa-master.opt X%%DATADIR%%/tests/t/plugin_auth_qa.test X%%DATADIR%%/tests/t/plugin_auth_qa_1-master.opt X%%DATADIR%%/tests/t/plugin_auth_qa_1.test X%%DATADIR%%/tests/t/plugin_auth_qa_2-master.opt X%%DATADIR%%/tests/t/plugin_auth_qa_2.test X%%DATADIR%%/tests/t/plugin_auth_qa_3-master.opt X%%DATADIR%%/tests/t/plugin_auth_qa_3.test X%%DATADIR%%/tests/t/plugin_auth_sha256-master.opt X%%DATADIR%%/tests/t/plugin_auth_sha256.test X%%DATADIR%%/tests/t/plugin_auth_sha256_2-master.opt X%%DATADIR%%/tests/t/plugin_auth_sha256_2.test X%%DATADIR%%/tests/t/plugin_auth_sha256_server_default-master.opt X%%DATADIR%%/tests/t/plugin_auth_sha256_server_default.test X%%DATADIR%%/tests/t/plugin_auth_sha256_server_default_tls-master.opt X%%DATADIR%%/tests/t/plugin_auth_sha256_server_default_tls.test X%%DATADIR%%/tests/t/plugin_auth_sha256_tls.test X%%DATADIR%%/tests/t/plugin_auth_user_lock-master.opt X%%DATADIR%%/tests/t/plugin_auth_user_lock.test X%%DATADIR%%/tests/t/plugin_load-master.opt X%%DATADIR%%/tests/t/plugin_load.test X%%DATADIR%%/tests/t/plugin_load_option-master.opt X%%DATADIR%%/tests/t/plugin_load_option.test X%%DATADIR%%/tests/t/plugin_not_embedded-master.opt X%%DATADIR%%/tests/t/plugin_not_embedded.test X%%DATADIR%%/tests/t/preload-master.opt X%%DATADIR%%/tests/t/preload.test X%%DATADIR%%/tests/t/profiling.test X%%DATADIR%%/tests/t/ps-master.opt X%%DATADIR%%/tests/t/ps.test X%%DATADIR%%/tests/t/ps_10nestset.test X%%DATADIR%%/tests/t/ps_11bugs.test X%%DATADIR%%/tests/t/ps_1general.test X%%DATADIR%%/tests/t/ps_2myisam-master.opt X%%DATADIR%%/tests/t/ps_2myisam.test X%%DATADIR%%/tests/t/ps_3innodb-master.opt X%%DATADIR%%/tests/t/ps_3innodb.test X%%DATADIR%%/tests/t/ps_4heap-master.opt X%%DATADIR%%/tests/t/ps_4heap.test X%%DATADIR%%/tests/t/ps_5merge-master.opt X%%DATADIR%%/tests/t/ps_5merge.test X%%DATADIR%%/tests/t/ps_ddl-master.opt X%%DATADIR%%/tests/t/ps_ddl.test X%%DATADIR%%/tests/t/ps_ddl1.test X%%DATADIR%%/tests/t/ps_grant.test X%%DATADIR%%/tests/t/ps_not_windows.test X%%DATADIR%%/tests/t/ps_w_max_indexes_64.test X%%DATADIR%%/tests/t/query_cache-master.opt X%%DATADIR%%/tests/t/query_cache.test X%%DATADIR%%/tests/t/query_cache_28249-master.opt X%%DATADIR%%/tests/t/query_cache_28249.test X%%DATADIR%%/tests/t/query_cache_debug-master.opt X%%DATADIR%%/tests/t/query_cache_debug.test X%%DATADIR%%/tests/t/query_cache_disabled-master.opt X%%DATADIR%%/tests/t/query_cache_disabled.test X%%DATADIR%%/tests/t/query_cache_merge-master.opt X%%DATADIR%%/tests/t/query_cache_merge.test X%%DATADIR%%/tests/t/query_cache_notembedded-master.opt X%%DATADIR%%/tests/t/query_cache_notembedded.test X%%DATADIR%%/tests/t/query_cache_ps_no_prot-master.opt X%%DATADIR%%/tests/t/query_cache_ps_no_prot.test X%%DATADIR%%/tests/t/query_cache_ps_ps_prot-master.opt X%%DATADIR%%/tests/t/query_cache_ps_ps_prot.test X%%DATADIR%%/tests/t/query_cache_size_functionality-master.opt X%%DATADIR%%/tests/t/query_cache_size_functionality.test X%%DATADIR%%/tests/t/query_cache_type_functionality-master.opt X%%DATADIR%%/tests/t/query_cache_type_functionality.test X%%DATADIR%%/tests/t/query_cache_with_views-master.opt X%%DATADIR%%/tests/t/query_cache_with_views.test X%%DATADIR%%/tests/t/range_all.test X%%DATADIR%%/tests/t/range_icp.test X%%DATADIR%%/tests/t/range_icp_mrr.test X%%DATADIR%%/tests/t/range_mrr.test X%%DATADIR%%/tests/t/range_mrr_cost.test X%%DATADIR%%/tests/t/range_none.test X%%DATADIR%%/tests/t/range_with_memory_limit.test X%%DATADIR%%/tests/t/read_many_rows_innodb.test X%%DATADIR%%/tests/t/read_only.test X%%DATADIR%%/tests/t/read_only_innodb.test X%%DATADIR%%/tests/t/rename.test X%%DATADIR%%/tests/t/renamedb.test X%%DATADIR%%/tests/t/repair.test X%%DATADIR%%/tests/t/replace.test X%%DATADIR%%/tests/t/reset_connection.test X%%DATADIR%%/tests/t/rewrite_general_log.test X%%DATADIR%%/tests/t/rewrite_slow_log.test X%%DATADIR%%/tests/t/rollback.test X%%DATADIR%%/tests/t/round.test X%%DATADIR%%/tests/t/row.test X%%DATADIR%%/tests/t/rowid_order_innodb.test X%%DATADIR%%/tests/t/rpl_connect_attr.test X%%DATADIR%%/tests/t/rpl_mysqldump_slave.test X%%DATADIR%%/tests/t/schema.test X%%DATADIR%%/tests/t/secure_file_priv_win-master.opt X%%DATADIR%%/tests/t/secure_file_priv_win.test X%%DATADIR%%/tests/t/select_all.test X%%DATADIR%%/tests/t/select_all_bka.test X%%DATADIR%%/tests/t/select_all_bka_nixbnl.test X%%DATADIR%%/tests/t/select_for_update-master.opt X%%DATADIR%%/tests/t/select_for_update.test X%%DATADIR%%/tests/t/select_found.test X%%DATADIR%%/tests/t/select_icp_mrr.test X%%DATADIR%%/tests/t/select_icp_mrr_bka.test X%%DATADIR%%/tests/t/select_icp_mrr_bka_nixbnl.test X%%DATADIR%%/tests/t/select_none.test X%%DATADIR%%/tests/t/select_none_bka.test X%%DATADIR%%/tests/t/select_none_bka_nixbnl.test X%%DATADIR%%/tests/t/select_safe.test X%%DATADIR%%/tests/t/server_offline_1.test X%%DATADIR%%/tests/t/server_offline_2.test X%%DATADIR%%/tests/t/server_offline_3.test X%%DATADIR%%/tests/t/server_offline_4.test X%%DATADIR%%/tests/t/server_offline_5.test X%%DATADIR%%/tests/t/server_offline_6-master.opt X%%DATADIR%%/tests/t/server_offline_6.test X%%DATADIR%%/tests/t/server_startup_shutdown_time.test X%%DATADIR%%/tests/t/server_uuid.test X%%DATADIR%%/tests/t/server_uuid_embedded.test X%%DATADIR%%/tests/t/session_tracker-master.opt X%%DATADIR%%/tests/t/session_tracker.test X%%DATADIR%%/tests/t/session_tracker_trx_state-master.opt X%%DATADIR%%/tests/t/session_tracker_trx_state.test X%%DATADIR%%/tests/t/shm-master.opt X%%DATADIR%%/tests/t/shm.test X%%DATADIR%%/tests/t/show_check-master.opt X%%DATADIR%%/tests/t/show_check.test X%%DATADIR%%/tests/t/show_profile.test X%%DATADIR%%/tests/t/show_variables.test X%%DATADIR%%/tests/t/shutdown.test X%%DATADIR%%/tests/t/signal.test X%%DATADIR%%/tests/t/signal_code.test X%%DATADIR%%/tests/t/signal_demo1.test X%%DATADIR%%/tests/t/signal_demo2.test X%%DATADIR%%/tests/t/signal_demo3-master.opt X%%DATADIR%%/tests/t/signal_demo3.test X%%DATADIR%%/tests/t/signal_sqlmode.test X%%DATADIR%%/tests/t/single_delete_update.test X%%DATADIR%%/tests/t/skip_grants-master.opt X%%DATADIR%%/tests/t/skip_grants.test X%%DATADIR%%/tests/t/skip_log_bin-master.opt X%%DATADIR%%/tests/t/skip_log_bin.test X%%DATADIR%%/tests/t/skip_name_resolve-master.opt X%%DATADIR%%/tests/t/skip_name_resolve.test X%%DATADIR%%/tests/t/sort_buffer_size_functionality-master.opt X%%DATADIR%%/tests/t/sort_buffer_size_functionality.test X%%DATADIR%%/tests/t/sp-big.test X%%DATADIR%%/tests/t/sp-bugs.test X%%DATADIR%%/tests/t/sp-code.test X%%DATADIR%%/tests/t/sp-destruct.test X%%DATADIR%%/tests/t/sp-dynamic.test X%%DATADIR%%/tests/t/sp-error.test X%%DATADIR%%/tests/t/sp-fib-master.opt X%%DATADIR%%/tests/t/sp-fib.test X%%DATADIR%%/tests/t/sp-lock-master.opt X%%DATADIR%%/tests/t/sp-lock.test X%%DATADIR%%/tests/t/sp-master.opt X%%DATADIR%%/tests/t/sp-no-code.test X%%DATADIR%%/tests/t/sp-prelocking-master.opt X%%DATADIR%%/tests/t/sp-prelocking.test X%%DATADIR%%/tests/t/sp-security.test X%%DATADIR%%/tests/t/sp-threads.test X%%DATADIR%%/tests/t/sp-ucs2.test X%%DATADIR%%/tests/t/sp-vars.test X%%DATADIR%%/tests/t/sp.test X%%DATADIR%%/tests/t/sp_gis.test X%%DATADIR%%/tests/t/sp_notembedded-master.opt X%%DATADIR%%/tests/t/sp_notembedded.test X%%DATADIR%%/tests/t/sp_stress_case.test X%%DATADIR%%/tests/t/sp_sync.test X%%DATADIR%%/tests/t/sp_trans.test X%%DATADIR%%/tests/t/sp_trans_log.test X%%DATADIR%%/tests/t/sp_validation.test X%%DATADIR%%/tests/t/sql_mode.test X%%DATADIR%%/tests/t/sql_mode_default.test X%%DATADIR%%/tests/t/ssl-big.test X%%DATADIR%%/tests/t/ssl-sha512-master.opt X%%DATADIR%%/tests/t/ssl-sha512.test X%%DATADIR%%/tests/t/ssl.test X%%DATADIR%%/tests/t/ssl_8k_key-master.opt X%%DATADIR%%/tests/t/ssl_8k_key.test X%%DATADIR%%/tests/t/ssl_and_innodb.test X%%DATADIR%%/tests/t/ssl_cipher-master.opt X%%DATADIR%%/tests/t/ssl_cipher.test X%%DATADIR%%/tests/t/ssl_compress.test X%%DATADIR%%/tests/t/ssl_connect.test X%%DATADIR%%/tests/t/ssl_crl-master.opt X%%DATADIR%%/tests/t/ssl_crl.test X%%DATADIR%%/tests/t/ssl_crl_clients-master.opt X%%DATADIR%%/tests/t/ssl_crl_clients.test X%%DATADIR%%/tests/t/ssl_crl_clients_valid-master.opt X%%DATADIR%%/tests/t/ssl_crl_clients_valid.test X%%DATADIR%%/tests/t/ssl_crl_crlpath-master.opt X%%DATADIR%%/tests/t/ssl_crl_crlpath.test X%%DATADIR%%/tests/t/status-master.opt X%%DATADIR%%/tests/t/status.test X%%DATADIR%%/tests/t/status2.test X%%DATADIR%%/tests/t/status_bug17954.test X%%DATADIR%%/tests/t/status_debug.test X%%DATADIR%%/tests/t/strict-master.opt X%%DATADIR%%/tests/t/strict.test X%%DATADIR%%/tests/t/strict_autoinc_1myisam.test X%%DATADIR%%/tests/t/strict_autoinc_2innodb.test X%%DATADIR%%/tests/t/strict_autoinc_3heap.test X%%DATADIR%%/tests/t/subquery_all.test X%%DATADIR%%/tests/t/subquery_all_bka.test X%%DATADIR%%/tests/t/subquery_all_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_mat.test X%%DATADIR%%/tests/t/subquery_mat_all.test X%%DATADIR%%/tests/t/subquery_mat_none.test X%%DATADIR%%/tests/t/subquery_nomat_nosj.test X%%DATADIR%%/tests/t/subquery_nomat_nosj_bka.test X%%DATADIR%%/tests/t/subquery_nomat_nosj_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_none.test X%%DATADIR%%/tests/t/subquery_none_bka.test X%%DATADIR%%/tests/t/subquery_none_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_all-master.opt X%%DATADIR%%/tests/t/subquery_sj_all.test X%%DATADIR%%/tests/t/subquery_sj_all_bka-master.opt X%%DATADIR%%/tests/t/subquery_sj_all_bka.test X%%DATADIR%%/tests/t/subquery_sj_all_bka_nixbnl-master.opt X%%DATADIR%%/tests/t/subquery_sj_all_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_all_bkaunique-master.opt X%%DATADIR%%/tests/t/subquery_sj_all_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_dupsweed-master.opt X%%DATADIR%%/tests/t/subquery_sj_dupsweed.test X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bka-master.opt X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bka.test X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bka_nixbnl-master.opt X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bkaunique-master.opt X%%DATADIR%%/tests/t/subquery_sj_dupsweed_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_firstmatch-master.opt X%%DATADIR%%/tests/t/subquery_sj_firstmatch.test X%%DATADIR%%/tests/t/subquery_sj_firstmatch_bka-master.opt X%%DATADIR%%/tests/t/subquery_sj_firstmatch_bka.test X%%DATADIR%%/tests/t/subquery_sj_firstmatch_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_firstmatch_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_innodb_all.test X%%DATADIR%%/tests/t/subquery_sj_innodb_all_bka.test X%%DATADIR%%/tests/t/subquery_sj_innodb_all_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_innodb_all_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_innodb_none.test X%%DATADIR%%/tests/t/subquery_sj_innodb_none_bka.test X%%DATADIR%%/tests/t/subquery_sj_innodb_none_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_innodb_none_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_loosescan.test X%%DATADIR%%/tests/t/subquery_sj_loosescan_bka.test X%%DATADIR%%/tests/t/subquery_sj_loosescan_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_loosescan_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_mat.test X%%DATADIR%%/tests/t/subquery_sj_mat_bka.test X%%DATADIR%%/tests/t/subquery_sj_mat_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_mat_bkaunique.test X%%DATADIR%%/tests/t/subquery_sj_mat_nosj.test X%%DATADIR%%/tests/t/subquery_sj_none.test X%%DATADIR%%/tests/t/subquery_sj_none_bka.test X%%DATADIR%%/tests/t/subquery_sj_none_bka_nixbnl.test X%%DATADIR%%/tests/t/subquery_sj_none_bkaunique.test X%%DATADIR%%/tests/t/subselect_debug.test X%%DATADIR%%/tests/t/subselect_gis.test X%%DATADIR%%/tests/t/subselect_innodb.test X%%DATADIR%%/tests/t/subselect_notembedded-master.opt X%%DATADIR%%/tests/t/subselect_notembedded.test X%%DATADIR%%/tests/t/sum_distinct-big.test X%%DATADIR%%/tests/t/sum_distinct.test X%%DATADIR%%/tests/t/symlink.test X%%DATADIR%%/tests/t/synchronization.test X%%DATADIR%%/tests/t/sysdate_is_now-master.opt X%%DATADIR%%/tests/t/sysdate_is_now.test X%%DATADIR%%/tests/t/system_mysql_db.test X%%DATADIR%%/tests/t/system_mysql_db_fix30020-master.opt X%%DATADIR%%/tests/t/system_mysql_db_fix40123-master.opt X%%DATADIR%%/tests/t/system_mysql_db_fix40123.test X%%DATADIR%%/tests/t/system_mysql_db_fix50030-master.opt X%%DATADIR%%/tests/t/system_mysql_db_fix50030.test X%%DATADIR%%/tests/t/system_mysql_db_fix50117-master.opt X%%DATADIR%%/tests/t/system_mysql_db_fix50117.test X%%DATADIR%%/tests/t/system_mysql_db_refs.test X%%DATADIR%%/tests/t/table_definition_cache_functionality.test X%%DATADIR%%/tests/t/table_open_cache_functionality-master.opt X%%DATADIR%%/tests/t/table_open_cache_functionality.test X%%DATADIR%%/tests/t/tablelock.test X%%DATADIR%%/tests/t/tablespace.test X%%DATADIR%%/tests/t/temp_pool-master.opt X%%DATADIR%%/tests/t/temp_pool.test X%%DATADIR%%/tests/t/temp_table-master.opt X%%DATADIR%%/tests/t/temp_table.test X%%DATADIR%%/tests/t/temporal_literal.test X%%DATADIR%%/tests/t/test_security_context-master.opt X%%DATADIR%%/tests/t/test_security_context.test X%%DATADIR%%/tests/t/timezone-master.opt X%%DATADIR%%/tests/t/timezone.test X%%DATADIR%%/tests/t/timezone2.test X%%DATADIR%%/tests/t/timezone3-master.opt X%%DATADIR%%/tests/t/timezone3.test X%%DATADIR%%/tests/t/timezone4-master.opt X%%DATADIR%%/tests/t/timezone4.test X%%DATADIR%%/tests/t/timezone_debug.test X%%DATADIR%%/tests/t/timezone_grant.test X%%DATADIR%%/tests/t/trans_read_only-master.opt X%%DATADIR%%/tests/t/trans_read_only.test X%%DATADIR%%/tests/t/trigger-compat.test X%%DATADIR%%/tests/t/trigger-trans.test X%%DATADIR%%/tests/t/trigger.test X%%DATADIR%%/tests/t/trigger_notembedded.test X%%DATADIR%%/tests/t/trigger_wl3253.test X%%DATADIR%%/tests/t/trigger_wl6030.test X%%DATADIR%%/tests/t/truncate.test X%%DATADIR%%/tests/t/truncate_coverage.test X%%DATADIR%%/tests/t/type_binary.test X%%DATADIR%%/tests/t/type_bit.test X%%DATADIR%%/tests/t/type_bit_innodb.test X%%DATADIR%%/tests/t/type_blob.test X%%DATADIR%%/tests/t/type_date.test X%%DATADIR%%/tests/t/type_datetime.test X%%DATADIR%%/tests/t/type_decimal.test X%%DATADIR%%/tests/t/type_enum.test X%%DATADIR%%/tests/t/type_float.test X%%DATADIR%%/tests/t/type_nchar.test X%%DATADIR%%/tests/t/type_newdecimal-big.test X%%DATADIR%%/tests/t/type_newdecimal.test X%%DATADIR%%/tests/t/type_ranges.test X%%DATADIR%%/tests/t/type_set.test X%%DATADIR%%/tests/t/type_string-master.opt X%%DATADIR%%/tests/t/type_string.test X%%DATADIR%%/tests/t/type_temporal_fractional.test X%%DATADIR%%/tests/t/type_temporal_upgrade.test X%%DATADIR%%/tests/t/type_time.test X%%DATADIR%%/tests/t/type_timestamp-master.opt X%%DATADIR%%/tests/t/type_timestamp.test X%%DATADIR%%/tests/t/type_timestamp_explicit-master.opt X%%DATADIR%%/tests/t/type_timestamp_explicit.test X%%DATADIR%%/tests/t/type_uint.test X%%DATADIR%%/tests/t/type_varchar.test X%%DATADIR%%/tests/t/type_year.test X%%DATADIR%%/tests/t/udf-master.opt X%%DATADIR%%/tests/t/udf.test X%%DATADIR%%/tests/t/udf_skip_grants-master.opt X%%DATADIR%%/tests/t/udf_skip_grants.test X%%DATADIR%%/tests/t/union-master.opt X%%DATADIR%%/tests/t/union.test X%%DATADIR%%/tests/t/unsafe_binlog_innodb-master.opt X%%DATADIR%%/tests/t/unsafe_binlog_innodb.test X%%DATADIR%%/tests/t/update.test X%%DATADIR%%/tests/t/upgrade.test X%%DATADIR%%/tests/t/user_if_exists.test X%%DATADIR%%/tests/t/user_limits-master.opt X%%DATADIR%%/tests/t/user_limits.test X%%DATADIR%%/tests/t/user_lock.test X%%DATADIR%%/tests/t/user_var-binlog.test X%%DATADIR%%/tests/t/user_var.test X%%DATADIR%%/tests/t/validate_password_plugin-master.opt X%%DATADIR%%/tests/t/validate_password_plugin.test X%%DATADIR%%/tests/t/varbinary.test X%%DATADIR%%/tests/t/variables-big.test X%%DATADIR%%/tests/t/variables-master.opt X%%DATADIR%%/tests/t/variables-notembedded-master.opt X%%DATADIR%%/tests/t/variables-notembedded.test X%%DATADIR%%/tests/t/variables.test X%%DATADIR%%/tests/t/variables_community.test X%%DATADIR%%/tests/t/variables_debug.test X%%DATADIR%%/tests/t/version_token-master.opt X%%DATADIR%%/tests/t/version_token.test X%%DATADIR%%/tests/t/version_token_bug21280801-master.opt X%%DATADIR%%/tests/t/version_token_bug21280801.test X%%DATADIR%%/tests/t/version_token_errors-master.opt X%%DATADIR%%/tests/t/version_token_errors.test X%%DATADIR%%/tests/t/view.test X%%DATADIR%%/tests/t/view_alias.test X%%DATADIR%%/tests/t/view_grant.test X%%DATADIR%%/tests/t/wait_timeout.test X%%DATADIR%%/tests/t/warnings-master.opt X%%DATADIR%%/tests/t/warnings.test X%%DATADIR%%/tests/t/warnings_engine_disabled.test X%%DATADIR%%/tests/t/windows.test X%%DATADIR%%/tests/t/wl3836.test X%%DATADIR%%/tests/t/wl4435_generated.inc X%%DATADIR%%/tests/t/wl5928.test X%%DATADIR%%/tests/t/wl6219-csv.test X%%DATADIR%%/tests/t/wl6219-innodb.test X%%DATADIR%%/tests/t/wl6219-memory.test X%%DATADIR%%/tests/t/wl6219-merge.test X%%DATADIR%%/tests/t/wl6219-myisam.test X%%DATADIR%%/tests/t/wl6219-upgrade.test X%%DATADIR%%/tests/t/wl6301_1_not_windows-master.opt X%%DATADIR%%/tests/t/wl6301_1_not_windows.test X%%DATADIR%%/tests/t/wl6301_2_not_windows-master.opt X%%DATADIR%%/tests/t/wl6301_2_not_windows.test X%%DATADIR%%/tests/t/wl6301_3-master.opt X%%DATADIR%%/tests/t/wl6301_3.test X%%DATADIR%%/tests/t/wl6443_deprecation-master.opt X%%DATADIR%%/tests/t/wl6443_deprecation.test X%%DATADIR%%/tests/t/wl6661-master.opt X%%DATADIR%%/tests/t/wl6661.test X%%DATADIR%%/tests/t/wl6711_heap_to_disk.test X%%DATADIR%%/tests/t/wl6978.test X%%DATADIR%%/tests/t/xa.test X%%DATADIR%%/tests/t/xa_debug.test X%%DATADIR%%/tests/t/xa_prepared_binlog_off-master.opt X%%DATADIR%%/tests/t/xa_prepared_binlog_off.test X%%DATADIR%%/tests/t/xml.test X%%DATADIR%%/tests/valgrind.supp X%%DATADIR%%/ukrainian/errmsg.sys X%%DATADIR%%/uninstall_rewriter.sql X@dir lib/mysql/plugin/debug c720504b3bbaf7844ffeba66fa0acd55 echo x - mysql57-server/pkg-descr sed 's/^X//' >mysql57-server/pkg-descr << 'bed4d9dc3150521c5ff77793a958fd26' XMySQL is a very fast, multi-threaded, multi-user and robust SQL X(Structured Query Language) database server. X XWWW: http://www.mysql.com/ bed4d9dc3150521c5ff77793a958fd26 echo x - mysql57-server/pkg-message sed 's/^X//' >mysql57-server/pkg-message << '311385c085f25c623b53423125eb18ce' X************************************************************************ X XRemember to run mysql_upgrade the first time you start the MySQL server Xafter an upgrade from an earlier version. X X************************************************************************ 311385c085f25c623b53423125eb18ce echo x - mysql57-server/Makefile sed 's/^X//' >mysql57-server/Makefile << '0c2c532865b7697a2c9f2405335243aa' X# Created by: "Mahdi Mokhtari " X# $FreeBSD$ X XPORTNAME= mysql XPORTVERSION= 5.7.9 XCATEGORIES= databases ipv6 XMASTER_SITES= MYSQL/MySQL-5.7:MySQL SF/boost/boost/1.59.0:boost XPKGNAMESUFFIX?= 57-server XDISTFILES= ${DISTNAME}${EXTRACT_SUFX}:MySQL boost_1_59_0.tar.gz:boost X XMAINTAINER= mokhi64@gmail.com XCOMMENT= Multithreaded SQL database (server) X XSLAVEDIRS= databases/mysql57-client XUSES= cmake:outsource shebangfix X X#needed as MySQL's CMakeLists.txt are thread (job) unsafe XMAKE_JOBS_UNSAFE= yes X XUSE_LDCONFIG= yes X X#for testing purposes XCMAKE_VERBOSE= yes X XCMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ X -DINSTALL_DOCREADMEDIR="share/doc/mysql" \ X -DINSTALL_INCLUDEDIR="include/mysql" \ X -DINSTALL_INFODIR="info" \ X -DINSTALL_LIBDIR="lib/mysql" \ X -DINSTALL_PKGCONFIGDIR=${PREFIX}/libdata/pkgconfig \ X -DINSTALL_MANDIR="man" \ X -DINSTALL_MYSQLDATADIR="/var/db/mysql" \ X -DINSTALL_MYSQLSHAREDIR="share/mysql" \ X -DINSTALL_MYSQLTESTDIR="share/mysql/tests" \ X -DINSTALL_PLUGINDIR="lib/mysql/plugin" \ X -DINSTALL_SBINDIR="libexec" \ X -DINSTALL_SCRIPTDIR="bin" \ X -DINSTALL_SHAREDIR="share" \ X -DINSTALL_SUPPORTFILESDIR="share/mysql" \ X -DLOCAL_BOOST_DIR=${WRKSRC}/../boost_1_59_0 X XSHEBANG_FILES= scripts/*.pl* scripts/*.sh X X# MySQL-Server part X.if !defined(CLIENT_ONLY) XUSES+= mysql:5.7 X XUSES+= perl5 XUSE_PERL5= run X XCONFLICTS_INSTALL= mariadb[0-9]*-server-* \ X mysql[0-46-9][0-689]-server-* \ X percona[0-9]*-server-* X XUSE_RC_SUBR= mysql-server X XUSERS= mysql XGROUPS= mysql X X#### i'll try to refactor'em #### X#MAN1= my_print_defaults.1 myisam_ftdump.1 myisamchk.1 myisamlog.1 myisampack.1 \ X# mysql.server.1 mysql_convert_table_format.1 mysql_fix_extensions.1 \ X# mysql_install_db.1 mysql_plugin.1 mysql_secure_installation.1 mysql_setpermission.1 \ X# mysql_tzinfo_to_sql.1 mysql_upgrade.1 mysql_zap.1 mysqlbug.1 \ X# mysqld_multi.1 mysqld_safe.1 mysqldumpslow.1 mysqlhotcopy.1 mysqlman.1 \ X# mysqltest.1 perror.1 replace.1 resolve_stack_dump.1 resolveip.1 X XCMAKE_ARGS+= -DWITH_EMBEDDED_SERVER="ON" X.else XUSES+= readline X.endif X Xpost-extract: X ${RM} -rvf ${WRKSRC}/sql/sql_hints.yy.cc ${WRKSRC}/sql/sql_hints.yy.h X X#post-patch: X# @${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt X X.include 0c2c532865b7697a2c9f2405335243aa echo x - mysql57-server/distinfo sed 's/^X//' >mysql57-server/distinfo << '6070066c965dccc059a574e8fad21667' XSHA256 (mysql-5.7.9.tar.gz) = 315342f5bee1179548cecad2d776cd7758092fd2854024e60a3a5007feba34e0 XSIZE (mysql-5.7.9.tar.gz) = 50432293 XSHA256 (boost_1_59_0.tar.gz) = 47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac XSIZE (boost_1_59_0.tar.gz) = 83709983 6070066c965dccc059a574e8fad21667 exit