gitextract_nwfrj__9/ ├── .clangd ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── chore.md │ │ ├── config.yml │ │ ├── enhancement.md │ │ ├── feature_request.md │ │ └── test.md │ └── workflows/ │ └── Clang-format-checker.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .private_modules ├── BUILD/ │ ├── FINISH.sh │ ├── SETUP.sh │ ├── autorun.sh │ ├── check-cpu │ ├── cleanup │ ├── cmake_configure.sh │ ├── compile-amd64-debug-all │ ├── compile-amd64-debug-max │ ├── compile-amd64-debug-wsrep │ ├── compile-amd64-gcov │ ├── compile-amd64-gprof │ ├── compile-amd64-max │ ├── compile-amd64-valgrind-max │ ├── compile-amd64-wsrep │ ├── compile-bintar │ ├── compile-darwin-mwcc │ ├── compile-dist │ ├── compile-hpux11-parisc2-aCC │ ├── compile-irix-mips64-mipspro │ ├── compile-pentium-icc │ ├── compile-pentium-icc-yassl │ ├── compile-pentium-pgcc │ ├── compile-pentium32 │ ├── compile-pentium32-cybozu │ ├── compile-pentium32-debug │ ├── compile-pentium32-debug-max │ ├── compile-pentium32-debug-openssl │ ├── compile-pentium32-gcov │ ├── compile-pentium32-gprof │ ├── compile-pentium32-icc-valgrind-max │ ├── compile-pentium32-max │ ├── compile-pentium32-valgrind-max │ ├── compile-pentium32-wsrep │ ├── compile-pentium64 │ ├── compile-pentium64-asan-max │ ├── compile-pentium64-debug │ ├── compile-pentium64-debug-all │ ├── compile-pentium64-debug-max │ ├── compile-pentium64-gcov │ ├── compile-pentium64-gprof │ ├── compile-pentium64-max │ ├── compile-pentium64-ubsan │ ├── compile-pentium64-valgrind-max │ ├── compile-pentium64-wsrep │ ├── compile-ppc │ ├── compile-ppc-debug │ ├── compile-ppc-debug-max │ ├── compile-ppc-max │ ├── compile-solaris-amd64 │ ├── compile-solaris-amd64-debug │ ├── compile-solaris-amd64-debug-forte │ ├── compile-solaris-amd64-forte │ ├── compile-solaris-amd64-forte-debug │ ├── compile-solaris-sparc │ ├── compile-solaris-sparc-debug │ ├── compile-solaris-sparc-forte │ ├── compile-solaris-sparc-purify │ └── util.sh ├── BUILD-CMAKE ├── CMakeLists.txt ├── COPYING ├── CREDITS ├── Docs/ │ ├── INSTALL-BINARY │ ├── README-wsrep │ ├── myisam.txt │ └── mysql.info ├── INSTALL-SOURCE ├── INSTALL-WIN-SOURCE ├── KNOWN_BUGS.txt ├── LICENSE ├── README.md ├── THIRDPARTY ├── VERSION ├── appveyor.yml ├── client/ │ ├── CMakeLists.txt │ ├── async_example.c │ ├── client_metadata.h │ ├── client_priv.h │ ├── completion_hash.cc │ ├── completion_hash.h │ ├── echo.c │ ├── mariadb-conv.cc │ ├── my_readline.h │ ├── mysql.cc │ ├── mysql_plugin.c │ ├── mysql_upgrade.c │ ├── mysqladmin.cc │ ├── mysqlbinlog.cc │ ├── mysqlcheck.c │ ├── mysqldump.c │ ├── mysqlimport.c │ ├── mysqlshow.c │ ├── mysqlslap.c │ ├── mysqltest.cc │ └── readline.cc ├── cmake/ │ ├── FindBISON.cmake │ ├── FindGit.cmake │ ├── FindJNI.cmake │ ├── FindJava.cmake │ ├── FindLIBAIO.cmake │ ├── FindLZ4.cmake │ ├── FindPMEM.cmake │ ├── FindURING.cmake │ ├── FindZSTD.cmake │ ├── Internal/ │ │ └── CPack/ │ │ └── CPackRPM.cmake │ ├── abi_check.cmake │ ├── aws_sdk.cmake │ ├── build_configurations/ │ │ └── mysql_release.cmake │ ├── build_depends.cmake │ ├── character_sets.cmake │ ├── check_compiler_flag.cmake │ ├── check_linker_flag.cmake │ ├── compile_flags.cmake │ ├── configurable_file_content.in │ ├── configure.pl │ ├── cpack_deb.cmake │ ├── cpack_rpm.cmake │ ├── cpack_source_ignore_files.cmake │ ├── cpack_tgz.cmake │ ├── cpu_info.cmake │ ├── create_initial_db.cmake │ ├── ctest.cmake │ ├── do_abi_check.cmake │ ├── dtrace.cmake │ ├── dtrace_prelink.cmake │ ├── for_clients.cmake │ ├── info_bin.cmake │ ├── info_macros.cmake.in │ ├── info_src.cmake │ ├── install_layout.cmake │ ├── install_macros.cmake │ ├── jemalloc.cmake │ ├── libutils.cmake │ ├── maintainer.cmake │ ├── make_dist.cmake.in │ ├── mariadb_connector_c.cmake │ ├── merge_archives_unix.cmake │ ├── misc.cmake │ ├── mysql_add_executable.cmake │ ├── mysql_version.cmake │ ├── numa.cmake │ ├── os/ │ │ ├── AIX.cmake │ │ ├── Cygwin.cmake │ │ ├── FreeBSD.cmake │ │ ├── GNU.cmake │ │ ├── HP-UX.cmake │ │ ├── Linux.cmake │ │ ├── OS400.cmake │ │ ├── SunOS.cmake │ │ ├── Windows.cmake │ │ └── WindowsCache.cmake │ ├── package_name.cmake │ ├── pcre.cmake │ ├── plugin.cmake │ ├── readline.cmake │ ├── sign.cmake.in │ ├── ssl.cmake │ ├── stack_direction.c │ ├── submodules.cmake │ ├── symlinks.cmake │ ├── systemd.cmake │ ├── tags.cmake │ ├── versioninfo.rc.in │ ├── win_compatibility.manifest │ ├── wsrep.cmake │ └── zlib.cmake ├── concourse/ │ ├── pipeline/ │ │ ├── build_debug_tarball.yml │ │ ├── build_nightly_tarball.yml │ │ ├── build_release_tarball.yml │ │ ├── build_tarball_open.yml │ │ ├── main.ent.yml │ │ ├── main.yml │ │ ├── pr.ent.yml │ │ └── tag.yml │ ├── scripts/ │ │ ├── build_tarball.bash │ │ ├── build_tarball_open.bash │ │ ├── dss_config.example.ini │ │ ├── dss_server.ini │ │ ├── main.bash │ │ ├── main.ent.bash │ │ ├── mtr_bootstrap.cnf │ │ ├── mtr_bootstrap_ds.cnf │ │ ├── mtr_multi_bootstrap.cnf │ │ ├── mtr_multi_bootstrap_ds.cnf │ │ ├── my.cnf │ │ ├── my_range.cnf │ │ ├── pr.ent.bash │ │ └── tag.sh │ └── tasks/ │ ├── build_debug_tarball.yml │ ├── build_nightly_tarball.yml │ ├── build_release_tarball.yml │ ├── build_tarball_open.yml │ ├── main.ent.yml │ ├── main.yml │ ├── pr.ent.yml │ └── tag.yml ├── config.h.cmake ├── configure.cmake ├── dbug/ │ ├── CMakeLists.txt │ ├── dbug.c │ ├── dbug_add_tags.pl │ ├── dbug_long.h │ ├── example1.c │ ├── example2.c │ ├── example3.c │ ├── factorial.c │ ├── main.c │ ├── monty.doc │ ├── my_main.c │ ├── remove_function_from_trace.pl │ ├── tests-t.pl │ └── tests.c ├── debian/ │ ├── additions/ │ │ ├── debian-start │ │ ├── debian-start.inc.sh │ │ ├── echo_stderr │ │ ├── innotop/ │ │ │ ├── changelog.innotop │ │ │ ├── innotop │ │ │ └── innotop.1 │ │ ├── mariadb-report │ │ ├── mariadb-report.1 │ │ ├── mariadb.cnf │ │ ├── mariadb.conf.d/ │ │ │ ├── 50-client.cnf │ │ │ ├── 50-mysql-clients.cnf │ │ │ ├── 50-mysqld_safe.cnf │ │ │ ├── 50-server.cnf │ │ │ └── 60-galera.cnf │ │ └── source_mariadb-10.6.py │ ├── apparmor-profile │ ├── autobake-deb.sh │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── libmariadb-dev-compat.install │ ├── libmariadb-dev-compat.links │ ├── libmariadb-dev.README.Maintainer │ ├── libmariadb-dev.examples │ ├── libmariadb-dev.install │ ├── libmariadb-dev.links │ ├── libmariadb-dev.lintian-overrides │ ├── libmariadb3-compat.install │ ├── libmariadb3.install │ ├── libmariadbclient18.install │ ├── libmariadbd-dev.install │ ├── libmariadbd19.install │ ├── libmysqlclient18.install │ ├── mariadb-backup.install │ ├── mariadb-backup.links │ ├── mariadb-client-10.6.README.Debian │ ├── mariadb-client-10.6.docs │ ├── mariadb-client-10.6.install │ ├── mariadb-client-10.6.links │ ├── mariadb-client-10.6.manpages │ ├── mariadb-client-10.6.menu │ ├── mariadb-client-core-10.6.install │ ├── mariadb-client-core-10.6.links │ ├── mariadb-common.dirs │ ├── mariadb-common.install │ ├── mariadb-common.postinst │ ├── mariadb-common.postrm │ ├── mariadb-plugin-connect.install │ ├── mariadb-plugin-cracklib-password-check.install │ ├── mariadb-plugin-gssapi-client.install │ ├── mariadb-plugin-gssapi-server.install │ ├── mariadb-plugin-mroonga.install │ ├── mariadb-plugin-mroonga.postinst │ ├── mariadb-plugin-mroonga.prerm │ ├── mariadb-plugin-oqgraph.install │ ├── mariadb-plugin-rocksdb.install │ ├── mariadb-plugin-rocksdb.links │ ├── mariadb-plugin-s3.install │ ├── mariadb-plugin-spider.install │ ├── mariadb-server-10.6.README.Debian │ ├── mariadb-server-10.6.config │ ├── mariadb-server-10.6.dirs │ ├── mariadb-server-10.6.install │ ├── mariadb-server-10.6.links │ ├── mariadb-server-10.6.logcheck.ignore.paranoid │ ├── mariadb-server-10.6.logcheck.ignore.server │ ├── mariadb-server-10.6.logcheck.ignore.workstation │ ├── mariadb-server-10.6.mariadb.init │ ├── mariadb-server-10.6.mysql-server.logrotate │ ├── mariadb-server-10.6.mysql.default │ ├── mariadb-server-10.6.postinst │ ├── mariadb-server-10.6.postrm │ ├── mariadb-server-10.6.preinst │ ├── mariadb-server-10.6.prerm │ ├── mariadb-server-10.6.templates │ ├── mariadb-server-10.6.triggers │ ├── mariadb-server-core-10.6.install │ ├── mariadb-server-core-10.6.links │ ├── mariadb-test-data.install │ ├── mariadb-test-data.lintian-overrides │ ├── mariadb-test.install │ ├── mariadb-test.links │ ├── mariadb-test.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.links │ ├── mysql-common.postrm │ ├── not-installed │ ├── po/ │ │ ├── POTFILES.in │ │ ├── ar.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gl.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── templates.pot │ │ ├── tr.po │ │ └── vi.po │ ├── rules │ ├── salsa-ci.yml │ ├── source/ │ │ ├── format │ │ └── lintian-overrides │ └── tests/ │ ├── control │ ├── smoke │ └── upstream ├── extra/ │ ├── CMakeLists.txt │ ├── aws_sdk/ │ │ └── CMakeLists.txt │ ├── charset2html.c │ ├── comp_err.c │ ├── innochecksum.cc │ ├── mariabackup/ │ │ ├── CMakeLists.txt │ │ ├── backup_copy.cc │ │ ├── backup_copy.h │ │ ├── backup_debug.h │ │ ├── backup_mysql.cc │ │ ├── backup_mysql.h │ │ ├── backup_wsrep.h │ │ ├── changed_page_bitmap.cc │ │ ├── changed_page_bitmap.h │ │ ├── common.h │ │ ├── datasink.cc │ │ ├── datasink.h │ │ ├── ds_buffer.cc │ │ ├── ds_buffer.h │ │ ├── ds_compress.cc │ │ ├── ds_compress.h │ │ ├── ds_local.cc │ │ ├── ds_local.h │ │ ├── ds_stdout.cc │ │ ├── ds_stdout.h │ │ ├── ds_tmpfile.cc │ │ ├── ds_tmpfile.h │ │ ├── ds_xbstream.cc │ │ ├── ds_xbstream.h │ │ ├── encryption_plugin.cc │ │ ├── encryption_plugin.h │ │ ├── fil_cur.cc │ │ ├── fil_cur.h │ │ ├── innobackupex.cc │ │ ├── innobackupex.h │ │ ├── quicklz/ │ │ │ ├── quicklz.c │ │ │ └── quicklz.h │ │ ├── read_filt.cc │ │ ├── read_filt.h │ │ ├── write_filt.cc │ │ ├── write_filt.h │ │ ├── wsrep.cc │ │ ├── xb_regex.h │ │ ├── xbcloud.cc │ │ ├── xbstream.cc │ │ ├── xbstream.h │ │ ├── xbstream_read.cc │ │ ├── xbstream_write.cc │ │ ├── xtrabackup.cc │ │ └── xtrabackup.h │ ├── my_print_defaults.c │ ├── mysql_waitpid.c │ ├── mysqld_safe_helper.c │ ├── perror.c │ ├── readline/ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── README │ │ ├── ansi_stdlib.h │ │ ├── bind.c │ │ ├── callback.c │ │ ├── chardefs.h │ │ ├── compat.c │ │ ├── complete.c │ │ ├── config_readline.h │ │ ├── configure.in │ │ ├── display.c │ │ ├── emacs_keymap.c │ │ ├── funmap.c │ │ ├── histexpand.c │ │ ├── histfile.c │ │ ├── histlib.h │ │ ├── history.c │ │ ├── history.h │ │ ├── histsearch.c │ │ ├── input.c │ │ ├── isearch.c │ │ ├── keymaps.c │ │ ├── keymaps.h │ │ ├── kill.c │ │ ├── macro.c │ │ ├── mbutil.c │ │ ├── misc.c │ │ ├── nls.c │ │ ├── parens.c │ │ ├── posixdir.h │ │ ├── posixjmp.h │ │ ├── posixstat.h │ │ ├── readline.c │ │ ├── readline.h │ │ ├── rlconf.h │ │ ├── rldefs.h │ │ ├── rlmbutil.h │ │ ├── rlprivate.h │ │ ├── rlshell.h │ │ ├── rlstdc.h │ │ ├── rltty.c │ │ ├── rltty.h │ │ ├── rltypedefs.h │ │ ├── rlwinsize.h │ │ ├── savestring.c │ │ ├── search.c │ │ ├── shell.c │ │ ├── signals.c │ │ ├── tcap.h │ │ ├── terminal.c │ │ ├── text.c │ │ ├── tilde.c │ │ ├── tilde.h │ │ ├── undo.c │ │ ├── util.c │ │ ├── vi_keymap.c │ │ ├── vi_mode.c │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── replace.c │ ├── resolve_stack_dump.c │ ├── resolveip.c │ └── wolfssl/ │ ├── CMakeLists.txt │ └── user_settings.h.in ├── include/ │ ├── CMakeLists.txt │ ├── aligned.h │ ├── aria_backup.h │ ├── assume_aligned.h │ ├── atomic/ │ │ ├── gcc_builtins.h │ │ ├── generic-msvc.h │ │ └── solaris.h │ ├── big_endian.h │ ├── byte_order_generic.h │ ├── byte_order_generic_x86.h │ ├── byte_order_generic_x86_64.h │ ├── decimal.h │ ├── dur_prop.h │ ├── errmsg.h │ ├── ft_global.h │ ├── handler_ername.h │ ├── handler_state.h │ ├── hash.h │ ├── heap.h │ ├── ilist.h │ ├── json_lib.h │ ├── keycache.h │ ├── lf.h │ ├── little_endian.h │ ├── m_ctype.h │ ├── m_string.h │ ├── ma_dyncol.h │ ├── maria.h │ ├── my_alarm.h │ ├── my_alloc.h │ ├── my_atomic.h │ ├── my_atomic_wrapper.h │ ├── my_attribute.h │ ├── my_base.h │ ├── my_bit.h │ ├── my_bitmap.h │ ├── my_byteorder.h │ ├── my_check_opt.h │ ├── my_compare.h │ ├── my_compiler.h │ ├── my_counter.h │ ├── my_cpu.h │ ├── my_crypt.h │ ├── my_dbug.h │ ├── my_decimal_limits.h │ ├── my_default.h │ ├── my_dir.h │ ├── my_getopt.h │ ├── my_global.h │ ├── my_handler_errors.h │ ├── my_libwrap.h │ ├── my_list.h │ ├── my_md5.h │ ├── my_minidump.h │ ├── my_net.h │ ├── my_nosys.h │ ├── my_pthread.h │ ├── my_rdtsc.h │ ├── my_rnd.h │ ├── my_service_manager.h │ ├── my_stack_alloc.h │ ├── my_stacktrace.h │ ├── my_sys.h │ ├── my_time.h │ ├── my_tree.h │ ├── my_uctype.h │ ├── my_user.h │ ├── my_valgrind.h │ ├── my_xml.h │ ├── myisam.h │ ├── myisamchk.h │ ├── myisammrg.h │ ├── myisampack.h │ ├── mysql/ │ │ ├── auth_dialog_client.h │ │ ├── client_plugin.h │ │ ├── client_plugin.h.pp │ │ ├── plugin.h │ │ ├── plugin_audit.h │ │ ├── plugin_audit.h.pp │ │ ├── plugin_auth.h │ │ ├── plugin_auth.h.pp │ │ ├── plugin_auth_common.h │ │ ├── plugin_data_type.h │ │ ├── plugin_data_type.h.pp │ │ ├── plugin_encryption.h │ │ ├── plugin_encryption.h.pp │ │ ├── plugin_ftparser.h │ │ ├── plugin_ftparser.h.pp │ │ ├── plugin_function.h │ │ ├── plugin_function.h.pp │ │ ├── plugin_password_validation.h │ │ ├── plugin_password_validation.h.pp │ │ ├── psi/ │ │ │ ├── mysql_file.h │ │ │ ├── mysql_idle.h │ │ │ ├── mysql_mdl.h │ │ │ ├── mysql_memory.h │ │ │ ├── mysql_ps.h │ │ │ ├── mysql_socket.h │ │ │ ├── mysql_sp.h │ │ │ ├── mysql_stage.h │ │ │ ├── mysql_statement.h │ │ │ ├── mysql_table.h │ │ │ ├── mysql_thread.h │ │ │ ├── mysql_transaction.h │ │ │ ├── psi.h │ │ │ ├── psi_abi_v0.h │ │ │ ├── psi_abi_v0.h.pp │ │ │ ├── psi_abi_v1.h │ │ │ ├── psi_abi_v1.h.pp │ │ │ ├── psi_abi_v2.h │ │ │ ├── psi_abi_v2.h.pp │ │ │ ├── psi_base.h │ │ │ └── psi_memory.h │ │ ├── service_base64.h │ │ ├── service_debug_sync.h │ │ ├── service_encryption.h │ │ ├── service_encryption_scheme.h │ │ ├── service_json.h │ │ ├── service_kill_statement.h │ │ ├── service_logger.h │ │ ├── service_md5.h │ │ ├── service_my_crypt.h │ │ ├── service_my_print_error.h │ │ ├── service_my_snprintf.h │ │ ├── service_progress_report.h │ │ ├── service_sha1.h │ │ ├── service_sha2.h │ │ ├── service_thd_alloc.h │ │ ├── service_thd_autoinc.h │ │ ├── service_thd_error_context.h │ │ ├── service_thd_mdl.h │ │ ├── service_thd_rnd.h │ │ ├── service_thd_specifics.h │ │ ├── service_thd_timezone.h │ │ ├── service_thd_wait.h │ │ ├── service_wsrep.h │ │ └── services.h │ ├── mysql.h │ ├── mysql.h.pp │ ├── mysql_com.h │ ├── mysql_com_server.h │ ├── mysql_embed.h │ ├── mysql_time.h │ ├── mysql_version.h.in │ ├── mysqld_default_groups.h │ ├── mysys_err.h │ ├── pack.h │ ├── password.h │ ├── pfs_file_provider.h │ ├── pfs_idle_provider.h │ ├── pfs_memory_provider.h │ ├── pfs_metadata_provider.h │ ├── pfs_socket_provider.h │ ├── pfs_stage_provider.h │ ├── pfs_statement_provider.h │ ├── pfs_table_provider.h │ ├── pfs_thread_provider.h │ ├── pfs_transaction_provider.h │ ├── probes_mysql.d.base │ ├── probes_mysql.h │ ├── probes_mysql_nodtrace.h.in │ ├── queues.h │ ├── rijndael.h │ ├── scope.h │ ├── service_versions.h │ ├── source_revision.h.in │ ├── span.h │ ├── sql_common.h │ ├── ssl_compat.h │ ├── sslopt-case.h │ ├── sslopt-longopts.h │ ├── sslopt-vars.h │ ├── t_ctype.h │ ├── thr_alarm.h │ ├── thr_lock.h │ ├── thr_timer.h │ ├── typelib.h │ ├── violite.h │ ├── waiting_threads.h │ ├── welcome_copyright_notice.h │ ├── wqueue.h │ └── wsrep.h ├── libmysqld/ │ ├── CMakeLists.txt │ ├── client_settings.h │ ├── emb_qcache.cc │ ├── emb_qcache.h │ ├── embedded_priv.h │ ├── examples/ │ │ ├── CMakeLists.txt │ │ ├── builder-sample/ │ │ │ ├── emb_sample.bpr │ │ │ ├── emb_sample.cpp │ │ │ ├── emb_samples.cpp │ │ │ ├── emb_samples.dfm │ │ │ └── emb_samples.h │ │ └── test-run │ ├── lib_sql.cc │ ├── libmysql.c │ ├── libmysqld.c │ ├── libmysqld.def │ ├── libmysqld.rc │ └── resource.h ├── libservices/ │ ├── CMakeLists.txt │ ├── HOWTO │ ├── base64_service.c │ ├── debug_sync_service.c │ ├── encryption_scheme_service.c │ ├── encryption_service.c │ ├── json_service.c │ ├── kill_statement_service.c │ ├── logger_service.c │ ├── my_crypt_service.c │ ├── my_md5_service.c │ ├── my_print_error_service.c │ ├── my_sha1_service.c │ ├── my_sha2_service.c │ ├── my_snprintf_service.c │ ├── mysqlservices_aix.def │ ├── progress_report_service.c │ ├── thd_alloc_service.c │ ├── thd_autoinc_service.c │ ├── thd_error_context_service.c │ ├── thd_rnd_service.c │ ├── thd_specifics_service.c │ ├── thd_timezone_service.c │ ├── thd_wait_service.c │ └── wsrep_service.c ├── man/ │ ├── CMakeLists.txt │ ├── aria_chk.1 │ ├── aria_dump_log.1 │ ├── aria_ftdump.1 │ ├── aria_pack.1 │ ├── aria_read_log.1 │ ├── aria_s3_copy.1 │ ├── comp_err.1 │ ├── galera_new_cluster.1 │ ├── galera_recovery.1 │ ├── innochecksum.1 │ ├── mariabackup.1 │ ├── mariadb-conv.1 │ ├── mariadb-service-convert.1 │ ├── mbstream.1 │ ├── msql2mysql.1 │ ├── my_print_defaults.1 │ ├── my_safe_process.1 │ ├── myisam_ftdump.1 │ ├── myisamchk.1 │ ├── myisamlog.1 │ ├── myisampack.1 │ ├── myrocks_hotbackup.1 │ ├── mysql-stress-test.pl.1 │ ├── mysql-test-run.pl.1 │ ├── mysql.1 │ ├── mysql.server.1 │ ├── mysql_client_test.1 │ ├── mysql_client_test_embedded.1 │ ├── mysql_config.1 │ ├── mysql_convert_table_format.1 │ ├── mysql_embedded.1 │ ├── mysql_find_rows.1 │ ├── mysql_fix_extensions.1 │ ├── mysql_install_db.1 │ ├── mysql_ldb.1 │ ├── mysql_plugin.1 │ ├── mysql_secure_installation.1 │ ├── mysql_setpermission.1 │ ├── mysql_tzinfo_to_sql.1 │ ├── mysql_upgrade.1 │ ├── mysql_waitpid.1 │ ├── mysqlaccess.1 │ ├── mysqladmin.1 │ ├── mysqlbinlog.1 │ ├── mysqlcheck.1 │ ├── mysqld.8 │ ├── mysqld_multi.1 │ ├── mysqld_safe.1 │ ├── mysqld_safe_helper.1 │ ├── mysqldump.1 │ ├── mysqldumpslow.1 │ ├── mysqlhotcopy.1 │ ├── mysqlimport.1 │ ├── mysqlshow.1 │ ├── mysqlslap.1 │ ├── mysqltest.1 │ ├── mysqltest_embedded.1 │ ├── mytop.1 │ ├── perror.1 │ ├── replace.1 │ ├── resolve_stack_dump.1 │ ├── resolveip.1 │ ├── wsrep_sst_common.1 │ ├── wsrep_sst_mariabackup.1 │ ├── wsrep_sst_mysqldump.1 │ ├── wsrep_sst_rsync.1 │ └── wsrep_sst_rsync_wan.1 ├── my-config.cnf ├── mysql-test/ │ ├── CMakeLists.txt │ ├── README │ ├── README-gcov │ ├── README.stress │ ├── asan.supp │ ├── collections/ │ │ ├── 10.0-compatible.list │ │ ├── README │ │ ├── README.experimental │ │ ├── buildbot_suites.bat │ │ ├── default.daily │ │ ├── default.experimental │ │ ├── default.push │ │ ├── default.release.in │ │ ├── default.weekly │ │ ├── disabled-daily.list │ │ ├── disabled-per-push.list │ │ ├── disabled-weekly.list │ │ ├── mysql-next-mr-wl2540.push │ │ ├── mysql-trunk.daily │ │ ├── mysql-trunk.weekly │ │ └── smoke_test │ ├── dgcov.pl │ ├── include/ │ │ ├── add_anonymous_users.inc │ │ ├── alter_table_mdev539.inc │ │ ├── analyze-format.inc │ │ ├── analyze-sync_with_master.test │ │ ├── analyze-timeout.test │ │ ├── assert.inc │ │ ├── assert_grep.inc │ │ ├── autoinc_mdev15353.inc │ │ ├── begin_include_file.inc │ │ ├── big_test.inc │ │ ├── big_test.require │ │ ├── binlog_inject_error.inc │ │ ├── binlog_parallel_replication_marks.test │ │ ├── binlog_start_pos.inc │ │ ├── bug38347.inc │ │ ├── bytes.inc │ │ ├── bytes2.inc │ │ ├── case_insensitive_file_system.require │ │ ├── case_insensitive_fs.require │ │ ├── case_sensitive_file_system.require │ │ ├── check-testcase.test │ │ ├── check-warnings.test │ │ ├── check_concurrent_insert.inc │ │ ├── check_events_off.inc │ │ ├── check_ftwrl_compatible.inc │ │ ├── check_ftwrl_incompatible.inc │ │ ├── check_ipv6.inc │ │ ├── check_key_reads.inc │ │ ├── check_key_req.inc │ │ ├── check_no_concurrent_insert.inc │ │ ├── check_no_row_lock.inc │ │ ├── check_shared_row_lock.inc │ │ ├── check_slave_is_running.inc │ │ ├── check_slave_no_error.inc │ │ ├── check_slave_param.inc │ │ ├── check_var_limit.inc │ │ ├── check_var_limit.require │ │ ├── cleanup_fake_relay_log.inc │ │ ├── column_compression_rpl.inc │ │ ├── column_compression_syntax_varbinary.inc │ │ ├── column_compression_syntax_varchar.inc │ │ ├── commit.inc │ │ ├── common-tests.inc │ │ ├── concurrent.inc │ │ ├── connect2.inc │ │ ├── count_sessions.inc │ │ ├── crash_mysqld.inc │ │ ├── ctype_8bit.inc │ │ ├── ctype_E05C.inc │ │ ├── ctype_ascii_order.inc │ │ ├── ctype_common.inc │ │ ├── ctype_czech.inc │ │ ├── ctype_datetime.inc │ │ ├── ctype_filesort.inc │ │ ├── ctype_filesort2.inc │ │ ├── ctype_german.inc │ │ ├── ctype_heap.inc │ │ ├── ctype_ident_sys.inc │ │ ├── ctype_innodb_like.inc │ │ ├── ctype_like.inc │ │ ├── ctype_like_cond_propagation.inc │ │ ├── ctype_like_cond_propagation_utf8_german.inc │ │ ├── ctype_like_escape.inc │ │ ├── ctype_like_ignorable.inc │ │ ├── ctype_like_range_f1f2.inc │ │ ├── ctype_like_range_mdev14350.inc │ │ ├── ctype_mdev13118.inc │ │ ├── ctype_myanmar.inc │ │ ├── ctype_numconv.inc │ │ ├── ctype_pad.inc │ │ ├── ctype_pad_all_engines.inc │ │ ├── ctype_pad_space.inc │ │ ├── ctype_regex.inc │ │ ├── ctype_regex_utf8.inc │ │ ├── ctype_str_to_date.inc │ │ ├── ctype_strtoll10.inc │ │ ├── ctype_thai.inc │ │ ├── ctype_uca_w2.inc │ │ ├── ctype_unescape.inc │ │ ├── ctype_unicode520.inc │ │ ├── ctype_unicode_latin.inc │ │ ├── ctype_utf8_ilseq.inc │ │ ├── ctype_utf8_table.inc │ │ ├── ctype_utf8mb4.inc │ │ ├── daemon_example_bad_format.ini │ │ ├── daemon_example_bad_soname.ini │ │ ├── dbt3_s001.inc │ │ ├── ddl_i18n.check_events.inc │ │ ├── ddl_i18n.check_sp.inc │ │ ├── ddl_i18n.check_triggers.inc │ │ ├── ddl_i18n.check_views.inc │ │ ├── deadlock.inc │ │ ├── default_charset.inc │ │ ├── default_client.cnf │ │ ├── default_group_order.cnf │ │ ├── default_my.cnf │ │ ├── default_mysqld.cnf │ │ ├── default_optimizer_switch.inc │ │ ├── delete_anonymous_users.inc │ │ ├── diff_servers.inc │ │ ├── diff_tables.inc │ │ ├── eloq_kv_keyspace.cnf │ │ ├── empty_string_literal.inc │ │ ├── end_include_file.inc │ │ ├── endspace.inc │ │ ├── ensure_binlog_row_event_columns.inc │ │ ├── equal_fields_propagation_datetime.inc │ │ ├── expect_crash.inc │ │ ├── explain_non_select.inc │ │ ├── explain_utils.inc │ │ ├── file_does_not_exist.inc │ │ ├── filter_file.inc │ │ ├── force_restart.inc │ │ ├── func_hybrid_type.inc │ │ ├── func_str_ascii_checksum.inc │ │ ├── function_defaults.inc │ │ ├── function_defaults_notembedded.inc │ │ ├── galera_clear_sync_point.inc │ │ ├── galera_cluster.inc │ │ ├── galera_connect.inc │ │ ├── galera_diff.inc │ │ ├── galera_end.inc │ │ ├── galera_have_debug_sync.inc │ │ ├── galera_init.inc │ │ ├── galera_no_debug_sync.inc │ │ ├── galera_set_sync_point.inc │ │ ├── galera_signal_sync_point.inc │ │ ├── galera_suspend.inc │ │ ├── galera_variables_ok.inc │ │ ├── galera_variables_ok_debug.inc │ │ ├── galera_wait_ready.inc │ │ ├── galera_wait_sync_point.inc │ │ ├── gap_lock_error_all.inc │ │ ├── gap_lock_error_cleanup.inc │ │ ├── gap_lock_error_init.inc │ │ ├── gap_lock_error_select.inc │ │ ├── gap_lock_error_update.inc │ │ ├── get_relay_log_pos.inc │ │ ├── gis_debug.inc │ │ ├── gis_generic.inc │ │ ├── gis_keys.inc │ │ ├── grant_cache.inc │ │ ├── grep.inc │ │ ├── have_32bit.inc │ │ ├── have_64bit.inc │ │ ├── have_archive.inc │ │ ├── have_archive.opt │ │ ├── have_aria.inc │ │ ├── have_aria_used_for_temp_tables.inc │ │ ├── have_auth_named_pipe.inc │ │ ├── have_big5.inc │ │ ├── have_binlog_checksum_off.inc │ │ ├── have_binlog_format_mixed.inc │ │ ├── have_binlog_format_mixed.opt │ │ ├── have_binlog_format_mixed_or_row.inc │ │ ├── have_binlog_format_mixed_or_statement.inc │ │ ├── have_binlog_format_row.inc │ │ ├── have_binlog_format_row.opt │ │ ├── have_binlog_format_row_or_statement.inc │ │ ├── have_binlog_format_statement.inc │ │ ├── have_binlog_format_statement.opt │ │ ├── have_blackhole.inc │ │ ├── have_blackhole.opt │ │ ├── have_case_insensitive_file_system.inc │ │ ├── have_case_insensitive_fs.inc │ │ ├── have_case_sensitive_file_system.inc │ │ ├── have_collation.inc │ │ ├── have_compress.inc │ │ ├── have_compress.require │ │ ├── have_cp1250_ch.inc │ │ ├── have_cp1251.inc │ │ ├── have_cp866.inc │ │ ├── have_cp932.inc │ │ ├── have_crypt.inc │ │ ├── have_csv.inc │ │ ├── have_dbi_dbd-mariadb.inc │ │ ├── have_debug.inc │ │ ├── have_debug_sync.inc │ │ ├── have_des.inc │ │ ├── have_eucjpms.inc │ │ ├── have_euckr.inc │ │ ├── have_example_plugin.inc │ │ ├── have_file_key_management.inc │ │ ├── have_gb2312.inc │ │ ├── have_gbk.inc │ │ ├── have_geometry.inc │ │ ├── have_geometry.require │ │ ├── have_hostname_cache.inc │ │ ├── have_innodb.combinations │ │ ├── have_innodb.inc │ │ ├── have_innodb_16k.inc │ │ ├── have_innodb_32k.inc │ │ ├── have_innodb_4k.inc │ │ ├── have_innodb_64k.inc │ │ ├── have_innodb_8k.inc │ │ ├── have_innodb_max_16k.inc │ │ ├── have_ipv4_mapped.inc │ │ ├── have_koi8r.inc │ │ ├── have_latin2_ch.inc │ │ ├── have_local_infile.inc │ │ ├── have_local_infile.require │ │ ├── have_log_bin-master.opt │ │ ├── have_log_bin-slave.opt │ │ ├── have_log_bin.inc │ │ ├── have_lowercase0.inc │ │ ├── have_lowercase1.inc │ │ ├── have_lowercase2.inc │ │ ├── have_maria.inc │ │ ├── have_mariabackup.inc │ │ ├── have_max_indexes_128.inc │ │ ├── have_max_indexes_64.inc │ │ ├── have_met_timezone.require │ │ ├── have_metadata_lock_info.inc │ │ ├── have_metadata_lock_info.opt │ │ ├── have_moscow_leap_timezone.require │ │ ├── have_mutex_deadlock_detector.inc │ │ ├── have_numa.inc │ │ ├── have_openssl.inc │ │ ├── have_outfile.inc │ │ ├── have_outfile.require │ │ ├── have_partition.inc │ │ ├── have_partition.opt │ │ ├── have_perfschema.inc │ │ ├── have_perror.require │ │ ├── have_plugin_auth.inc │ │ ├── have_plugin_auth.opt │ │ ├── have_plugin_interface.inc │ │ ├── have_plugin_server.inc │ │ ├── have_pool_of_threads.inc │ │ ├── have_pool_of_threads.require │ │ ├── have_profiling.inc │ │ ├── have_profiling.require │ │ ├── have_query_cache.inc │ │ ├── have_query_cache.require │ │ ├── have_query_cache_disabled.inc │ │ ├── have_rocksdb.inc │ │ ├── have_rocksdb.opt │ │ ├── have_s3.inc │ │ ├── have_sequence.inc │ │ ├── have_sequence.opt │ │ ├── have_simple_parser.inc │ │ ├── have_sjis.inc │ │ ├── have_ssl_communication.inc │ │ ├── have_ssl_crypto_functs.inc │ │ ├── have_stat_tables.inc │ │ ├── have_stat_tables.opt │ │ ├── have_static_innodb.inc │ │ ├── have_symlink.inc │ │ ├── have_symlink.require │ │ ├── have_tis620.inc │ │ ├── have_type_mysql_json.inc │ │ ├── have_type_mysql_json.opt │ │ ├── have_ucs2.inc │ │ ├── have_udf.inc │ │ ├── have_ujis.inc │ │ ├── have_unix_socket.inc │ │ ├── have_unix_socket.opt │ │ ├── have_utf16.inc │ │ ├── have_utf16.require │ │ ├── have_utf32.inc │ │ ├── have_utf32.require │ │ ├── have_utf8.inc │ │ ├── have_utf8mb4.inc │ │ ├── have_utf8mb4.require │ │ ├── have_utf8mb4_eloq.require │ │ ├── have_view_protocol.inc │ │ ├── have_working_dns.inc │ │ ├── have_working_dns.require │ │ ├── have_wsrep.inc │ │ ├── have_wsrep_enabled.inc │ │ ├── have_wsrep_provider.inc │ │ ├── have_xtrabackup.inc │ │ ├── icp_debug_kill.inc │ │ ├── icp_tests.inc │ │ ├── implicit_commit_helper.inc │ │ ├── index_merge1.inc │ │ ├── index_merge2.inc │ │ ├── index_merge_2sweeps.inc │ │ ├── index_merge_ror.inc │ │ ├── index_merge_ror_cpk.inc │ │ ├── innodb-index.inc │ │ ├── innodb_checksum_algorithm.combinations │ │ ├── innodb_checksum_algorithm.inc │ │ ├── innodb_encrypt_log.combinations │ │ ├── innodb_encrypt_log.inc │ │ ├── innodb_encrypt_tables.combinations │ │ ├── innodb_encrypt_tables.inc │ │ ├── innodb_page_size.combinations │ │ ├── innodb_page_size.inc │ │ ├── innodb_page_size_small.combinations │ │ ├── innodb_page_size_small.inc │ │ ├── innodb_prefix_index_cluster_optimization.combinations │ │ ├── innodb_prefix_index_cluster_optimization.inc │ │ ├── innodb_rollback_on_timeout.inc │ │ ├── innodb_row_format.combinations │ │ ├── innodb_row_format.inc │ │ ├── innodb_trx_weight.inc │ │ ├── innodb_undo_tablespaces.combinations │ │ ├── innodb_undo_tablespaces.inc │ │ ├── install_plugin_if_exists.inc │ │ ├── io_thd_fault_injection.inc │ │ ├── ipv6.inc │ │ ├── ipv6_clients.inc │ │ ├── is_embedded.inc │ │ ├── is_embedded_no_privileges.inc │ │ ├── kill_and_restart_mysqld.inc │ │ ├── kill_binlog_dump_threads.inc │ │ ├── kill_galera.inc │ │ ├── kill_mysqld.inc │ │ ├── kill_query.inc │ │ ├── kill_query_and_diff_master_slave.inc │ │ ├── libdaemon_example.ini │ │ ├── linux.inc │ │ ├── linux_sys_vars.inc │ │ ├── load_dump_and_upgrade.inc │ │ ├── load_sysvars.inc │ │ ├── loaddata_autocom.inc │ │ ├── log_slow_debug_common.inc │ │ ├── long_test.inc │ │ ├── lowercase0.require │ │ ├── lowercase1.require │ │ ├── lowercase2.require │ │ ├── maria_empty_logs.inc │ │ ├── maria_make_snapshot.inc │ │ ├── maria_make_snapshot_for_comparison.inc │ │ ├── maria_make_snapshot_for_feeding_recovery.inc │ │ ├── maria_verify_recovery.inc │ │ ├── master-slave.inc │ │ ├── max_indexes.inc │ │ ├── maybe_debug.combinations │ │ ├── maybe_debug.inc │ │ ├── maybe_pool_of_threads.combinations │ │ ├── maybe_pool_of_threads.inc │ │ ├── min_null_cond.inc │ │ ├── mix1.inc │ │ ├── mix2.inc │ │ ├── mix2_ucs2.inc │ │ ├── mrr_tests.inc │ │ ├── mtr_check.sql │ │ ├── mtr_warnings.sql │ │ ├── mysql_upgrade_preparation.inc │ │ ├── mysqladmin_shutdown.inc │ │ ├── mysqlbinlog_have_debug.inc │ │ ├── mysqldump.inc │ │ ├── mysqlhotcopy.inc │ │ ├── mysqltest-x.inc │ │ ├── no_protocol.inc │ │ ├── no_running_event_scheduler.inc │ │ ├── no_running_events.inc │ │ ├── no_valgrind_without_big.inc │ │ ├── not_aix.inc │ │ ├── not_as_root.inc │ │ ├── not_asan.inc │ │ ├── not_binlog_format_row.inc │ │ ├── not_blackhole.inc │ │ ├── not_crashrep.inc │ │ ├── not_debug.inc │ │ ├── not_embedded.inc │ │ ├── not_encrypted.inc │ │ ├── not_msan.inc │ │ ├── not_parallel.inc │ │ ├── not_ssl.inc │ │ ├── not_staging.inc │ │ ├── not_staging.require │ │ ├── not_threadpool.inc │ │ ├── not_ubsan.inc │ │ ├── not_valgrind.inc │ │ ├── not_valgrind.require │ │ ├── not_valgrind_build.inc │ │ ├── not_var_link.inc │ │ ├── not_windows.inc │ │ ├── not_windows_embedded.inc │ │ ├── one_thread_per_connection.inc │ │ ├── one_thread_per_connection.require │ │ ├── parser_bug21114.inc │ │ ├── partition_date_range.inc │ │ ├── partition_mrr.inc │ │ ├── percona_nonflushing_analyze_debug.inc │ │ ├── platform.combinations │ │ ├── platform.inc │ │ ├── plugin.defs │ │ ├── print_ddl_log.inc │ │ ├── protocol.combinations │ │ ├── protocol.inc │ │ ├── ps_conv.inc │ │ ├── ps_create.inc │ │ ├── ps_ddl_1.inc │ │ ├── ps_modify.inc │ │ ├── ps_modify1.inc │ │ ├── ps_query.inc │ │ ├── ps_renew.inc │ │ ├── query_cache.inc │ │ ├── query_cache_partitions.inc │ │ ├── query_cache_sql_prepare.inc │ │ ├── read_many_rows.inc │ │ ├── relocate_binlogs.inc │ │ ├── require_openssl_client.inc │ │ ├── reset_master_slave.inc │ │ ├── restart_mysqld.inc │ │ ├── restart_slave_sql.inc │ │ ├── restore_charset.inc │ │ ├── rowid_filter_debug_kill.inc │ │ ├── rowid_order.inc │ │ ├── rpl_assert.inc │ │ ├── rpl_change_topology.inc │ │ ├── rpl_connect.inc │ │ ├── rpl_connection.inc │ │ ├── rpl_diff.inc │ │ ├── rpl_end.inc │ │ ├── rpl_for_each_slave.inc │ │ ├── rpl_generate_sync_chain.inc │ │ ├── rpl_init.combinations │ │ ├── rpl_init.inc │ │ ├── rpl_ip_mix.inc │ │ ├── rpl_ip_mix2.inc │ │ ├── rpl_ipv6.inc │ │ ├── rpl_loaddata_charset.inc │ │ ├── rpl_multi_engine.inc │ │ ├── rpl_multi_engine2.inc │ │ ├── rpl_multi_engine3.inc │ │ ├── rpl_reconnect.inc │ │ ├── rpl_reset.inc │ │ ├── rpl_restart_server.inc │ │ ├── rpl_row_img_general_loop.inc │ │ ├── rpl_row_img_set.inc │ │ ├── rpl_start_server.inc │ │ ├── rpl_start_slaves.inc │ │ ├── rpl_stmt_seq.inc │ │ ├── rpl_stop_server.inc │ │ ├── rpl_stop_slaves.inc │ │ ├── rpl_sync.inc │ │ ├── rpl_udf.inc │ │ ├── running_event_scheduler.inc │ │ ├── save_master_gtid.inc │ │ ├── save_master_pos.inc │ │ ├── search_pattern_in_file.inc │ │ ├── set_binlog_format_mixed.sql │ │ ├── set_binlog_format_row.sql │ │ ├── set_binlog_format_statement.sql │ │ ├── setup_fake_relay_log.inc │ │ ├── show_all_slaves_status.inc │ │ ├── show_binary_logs.inc │ │ ├── show_binlog_events.inc │ │ ├── show_binlog_events2.inc │ │ ├── show_binlog_using_logname.inc │ │ ├── show_delayed_slave_state.inc │ │ ├── show_events.inc │ │ ├── show_gtid_list.inc │ │ ├── show_master_logs.inc │ │ ├── show_master_status.inc │ │ ├── show_msg.inc │ │ ├── show_msg80.inc │ │ ├── show_relaylog_events.inc │ │ ├── show_rpl_debug_info.inc │ │ ├── show_slave_hosts.inc │ │ ├── show_slave_status.inc │ │ ├── shutdown_mysqld.inc │ │ ├── sp-vars.inc │ │ ├── start_mysqld.inc │ │ ├── start_slave.inc │ │ ├── stop_dump_threads.inc │ │ ├── stop_slave.inc │ │ ├── stop_slave_io.inc │ │ ├── stop_slave_sql.inc │ │ ├── strict_autoinc.inc │ │ ├── subselect_mat_cost.inc │ │ ├── support_long_file_names.inc │ │ ├── switch_to_mysql_global_priv.inc │ │ ├── switch_to_mysql_user.inc │ │ ├── sync_io_with_master.inc │ │ ├── sync_slave_io_with_master.inc │ │ ├── sync_slave_sql_with_io.inc │ │ ├── sync_slave_sql_with_master.inc │ │ ├── sync_with_master.inc │ │ ├── sync_with_master_gtid.inc │ │ ├── system_db_struct.inc │ │ ├── test_fieldsize.inc │ │ ├── test_outfile.inc │ │ ├── testdb_only.inc │ │ ├── tpcb.inc │ │ ├── tpcb_disk_data.inc │ │ ├── true.require │ │ ├── truncate_file.inc │ │ ├── type_hrtime.inc │ │ ├── type_temporal_zero_default.inc │ │ ├── unsafe_binlog.inc │ │ ├── update_use_source.inc │ │ ├── uses_vardir.inc │ │ ├── varchar.inc │ │ ├── view_alias.inc │ │ ├── wait_condition.inc │ │ ├── wait_condition_sp.inc │ │ ├── wait_condition_with_debug.inc │ │ ├── wait_for_binlog_checkpoint.inc │ │ ├── wait_for_binlog_event.inc │ │ ├── wait_for_line_count_in_file.inc │ │ ├── wait_for_purge.inc │ │ ├── wait_for_query_to_fail.inc │ │ ├── wait_for_query_to_succeed.inc │ │ ├── wait_for_slave_io_error.inc │ │ ├── wait_for_slave_io_to_start.inc │ │ ├── wait_for_slave_io_to_stop.inc │ │ ├── wait_for_slave_param.inc │ │ ├── wait_for_slave_sql_error.inc │ │ ├── wait_for_slave_sql_error_and_skip.inc │ │ ├── wait_for_slave_sql_to_start.inc │ │ ├── wait_for_slave_sql_to_stop.inc │ │ ├── wait_for_slave_to_start.inc │ │ ├── wait_for_slave_to_stop.inc │ │ ├── wait_for_sql_thread_read_all.inc │ │ ├── wait_for_status_var.inc │ │ ├── wait_show_condition.inc │ │ ├── wait_until_connected_again.inc │ │ ├── wait_until_count_sessions.inc │ │ ├── wait_until_disconnected.inc │ │ ├── wait_until_ready.inc │ │ ├── wait_until_rows_count.inc │ │ ├── wait_wsrep_ready.inc │ │ ├── weight_string.inc │ │ ├── weight_string_8140.inc │ │ ├── weight_string_8EA1.inc │ │ ├── weight_string_8FA2C3.inc │ │ ├── weight_string_A1A1.inc │ │ ├── weight_string_chde.inc │ │ ├── weight_string_euro.inc │ │ ├── weight_string_l1.inc │ │ ├── weight_string_l12.inc │ │ ├── weight_string_l14.inc │ │ ├── weight_string_l2.inc │ │ ├── weight_string_l3.inc │ │ ├── weight_string_l4.inc │ │ ├── windows.inc │ │ ├── windows_sys_vars.inc │ │ ├── word_size.combinations │ │ ├── word_size.inc │ │ ├── world.inc │ │ ├── world_schema.inc │ │ ├── world_schema1.inc │ │ ├── world_schema_utf8.inc │ │ ├── write_result_to_file.inc │ │ ├── write_var_to_file.inc │ │ ├── wsrep_wait_condition.inc │ │ ├── wsrep_wait_disconnect.inc │ │ └── wsrep_wait_membership.inc │ ├── lib/ │ │ ├── My/ │ │ │ ├── Config.pm │ │ │ ├── ConfigFactory.pm │ │ │ ├── CoreDump.pm │ │ │ ├── Debugger.pm │ │ │ ├── File/ │ │ │ │ └── Path.pm │ │ │ ├── Find.pm │ │ │ ├── Handles.pm │ │ │ ├── Options.pm │ │ │ ├── Platform.pm │ │ │ ├── SafeProcess/ │ │ │ │ ├── Base.pm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── safe_kill_win.cc │ │ │ │ ├── safe_process.cc │ │ │ │ ├── safe_process_win.cc │ │ │ │ └── wsrep_check_version.c │ │ │ ├── SafeProcess.pm │ │ │ ├── Suite.pm │ │ │ ├── SysInfo.pm │ │ │ ├── Tee.pm │ │ │ └── Test.pm │ │ ├── generate-ssl-certs.sh │ │ ├── mtr_cases.pm │ │ ├── mtr_gprof.pl │ │ ├── mtr_io.pl │ │ ├── mtr_match.pm │ │ ├── mtr_misc.pl │ │ ├── mtr_process.pl │ │ ├── mtr_report.pm │ │ ├── mtr_results.pm │ │ ├── mtr_stress.pl │ │ ├── mtr_unique.pm │ │ ├── openssl.cnf │ │ ├── process-purecov-annotations.pl │ │ ├── t/ │ │ │ ├── Base.t │ │ │ ├── Find.t │ │ │ ├── Options.t │ │ │ ├── Platform.t │ │ │ ├── SafeProcess.t │ │ │ ├── SafeProcessStress.pl │ │ │ ├── copytree.t │ │ │ ├── dummyd.pl │ │ │ ├── rmtree.t │ │ │ ├── testMyConfig.t │ │ │ ├── testMyConfigFactory.t │ │ │ └── test_child.pl │ │ └── v1/ │ │ ├── My/ │ │ │ └── Config.pm │ │ ├── incompatible.tests │ │ ├── mtr_cases.pl │ │ ├── mtr_gcov.pl │ │ ├── mtr_gprof.pl │ │ ├── mtr_im.pl │ │ ├── mtr_io.pl │ │ ├── mtr_match.pl │ │ ├── mtr_misc.pl │ │ ├── mtr_process.pl │ │ ├── mtr_report.pl │ │ ├── mtr_stress.pl │ │ ├── mtr_timer.pl │ │ ├── mtr_unique.pl │ │ └── mysql-test-run.pl │ ├── lsan.supp │ ├── main/ │ │ ├── 1st.result │ │ ├── 1st.test │ │ ├── aborted_clients.result │ │ ├── aborted_clients.test │ │ ├── adddate_454.result │ │ ├── adddate_454.test │ │ ├── alias.result │ │ ├── alias.test │ │ ├── almost_full.result │ │ ├── almost_full.test │ │ ├── alter_events.result │ │ ├── alter_events.test │ │ ├── alter_table-big.result │ │ ├── alter_table-big.test │ │ ├── alter_table.result │ │ ├── alter_table.test │ │ ├── alter_table_autoinc-5574.result │ │ ├── alter_table_autoinc-5574.test │ │ ├── alter_table_combinations,aria.rdiff │ │ ├── alter_table_combinations,heap.rdiff │ │ ├── alter_table_combinations.combinations │ │ ├── alter_table_combinations.result │ │ ├── alter_table_combinations.test │ │ ├── alter_table_debug.result │ │ ├── alter_table_debug.test │ │ ├── alter_table_errors.result │ │ ├── alter_table_errors.test │ │ ├── alter_table_lock.result │ │ ├── alter_table_lock.test │ │ ├── alter_table_mdev539_maria.result │ │ ├── alter_table_mdev539_maria.test │ │ ├── alter_table_mdev539_myisam.result │ │ ├── alter_table_mdev539_myisam.test │ │ ├── alter_table_online.result │ │ ├── alter_table_online.test │ │ ├── alter_table_trans.result │ │ ├── alter_table_trans.test │ │ ├── alter_user.result │ │ ├── alter_user.test │ │ ├── analyze.result │ │ ├── analyze.test │ │ ├── analyze_debug.result │ │ ├── analyze_debug.test │ │ ├── analyze_format_json.result │ │ ├── analyze_format_json.test │ │ ├── analyze_stmt.result │ │ ├── analyze_stmt.test │ │ ├── analyze_stmt_orderby.result │ │ ├── analyze_stmt_orderby.test │ │ ├── analyze_stmt_privileges.result │ │ ├── analyze_stmt_privileges.test │ │ ├── analyze_stmt_privileges2.result │ │ ├── analyze_stmt_privileges2.test │ │ ├── analyze_stmt_slow_query_log-master.opt │ │ ├── analyze_stmt_slow_query_log.result │ │ ├── analyze_stmt_slow_query_log.test │ │ ├── ansi.result │ │ ├── ansi.test │ │ ├── aria_icp_debug.result │ │ ├── aria_icp_debug.test │ │ ├── assign_key_cache.result │ │ ├── assign_key_cache.test │ │ ├── assign_key_cache_debug.result │ │ ├── assign_key_cache_debug.test │ │ ├── auth_named_pipe-master.opt │ │ ├── auth_named_pipe.result │ │ ├── auth_named_pipe.test │ │ ├── auth_rpl-slave.opt │ │ ├── auth_rpl.result │ │ ├── auth_rpl.test │ │ ├── auto_increment.result │ │ ├── auto_increment.test │ │ ├── auto_increment_ranges.inc │ │ ├── auto_increment_ranges_innodb.result │ │ ├── auto_increment_ranges_innodb.test │ │ ├── auto_increment_ranges_myisam.result │ │ ├── auto_increment_ranges_myisam.test │ │ ├── backup_aria.result │ │ ├── backup_aria.test │ │ ├── backup_interaction.result │ │ ├── backup_interaction.test │ │ ├── backup_lock.result │ │ ├── backup_lock.test │ │ ├── backup_lock_binlog.result │ │ ├── backup_lock_binlog.test │ │ ├── backup_lock_debug.result │ │ ├── backup_lock_debug.test │ │ ├── backup_locks.result │ │ ├── backup_locks.test │ │ ├── backup_log.inc │ │ ├── backup_log.result │ │ ├── backup_log.test │ │ ├── backup_priv.result │ │ ├── backup_priv.test │ │ ├── backup_stages.result │ │ ├── backup_stages.test │ │ ├── backup_syntax.result │ │ ├── backup_syntax.test │ │ ├── bad_frm_crash_5029.result │ │ ├── bad_frm_crash_5029.test │ │ ├── bench_count_distinct.result │ │ ├── bench_count_distinct.test │ │ ├── bigint.result │ │ ├── bigint.test │ │ ├── binary.result │ │ ├── binary.test │ │ ├── binary_to_hex.result │ │ ├── binary_to_hex.test │ │ ├── bind_address_resolution.opt │ │ ├── bind_address_resolution.result │ │ ├── bind_address_resolution.test │ │ ├── blackhole.result │ │ ├── blackhole.test │ │ ├── blackhole_plugin.result │ │ ├── blackhole_plugin.test │ │ ├── bool.result │ │ ├── bool.test │ │ ├── bootstrap-master.opt │ │ ├── bootstrap.result │ │ ├── bootstrap.test │ │ ├── bootstrap_innodb.result │ │ ├── bootstrap_innodb.test │ │ ├── brackets.result │ │ ├── brackets.test │ │ ├── bug12427262.result │ │ ├── bug12427262.test │ │ ├── bug13633383.result │ │ ├── bug13633383.test │ │ ├── bug39022.result │ │ ├── bug39022.test │ │ ├── bug46760-master.opt │ │ ├── bug46760.result │ │ ├── bug46760.test │ │ ├── bug47671-master.opt │ │ ├── bug47671.result │ │ ├── bug47671.test │ │ ├── bug58669-master.opt │ │ ├── bug58669.result │ │ ├── bug58669.test │ │ ├── bulk_replace.result │ │ ├── bulk_replace.test │ │ ├── cache_innodb.result │ │ ├── cache_innodb.test │ │ ├── cache_temporal_4265.result │ │ ├── cache_temporal_4265.test │ │ ├── case.result │ │ ├── case.test │ │ ├── cast.result │ │ ├── cast.test │ │ ├── change_user.result │ │ ├── change_user.test │ │ ├── change_user_notembedded.result │ │ ├── change_user_notembedded.test │ │ ├── charset_client_win.result │ │ ├── charset_client_win.test │ │ ├── check.result │ │ ├── check.test │ │ ├── check_constraint.result │ │ ├── check_constraint.test │ │ ├── check_constraint_innodb.result │ │ ├── check_constraint_innodb.test │ │ ├── check_constraint_show.result │ │ ├── check_constraint_show.test │ │ ├── check_view_protocol.result │ │ ├── check_view_protocol.test │ │ ├── cli_options_force_protocol_not_win.result │ │ ├── cli_options_force_protocol_not_win.test │ │ ├── cli_options_force_protocol_win.opt │ │ ├── cli_options_force_protocol_win.result │ │ ├── cli_options_force_protocol_win.test │ │ ├── client_xml.result │ │ ├── client_xml.test │ │ ├── column_compression.inc │ │ ├── column_compression.result │ │ ├── column_compression.test │ │ ├── column_compression_parts.result │ │ ├── column_compression_parts.test │ │ ├── column_compression_rpl.opt │ │ ├── column_compression_rpl.result │ │ ├── column_compression_rpl.test │ │ ├── column_compression_utf16.result │ │ ├── column_compression_utf16.test │ │ ├── comment_column.result │ │ ├── comment_column.test │ │ ├── comment_column2.result │ │ ├── comment_column2.test │ │ ├── comment_database.result │ │ ├── comment_database.test │ │ ├── comment_index.result │ │ ├── comment_index.test │ │ ├── comment_table.result │ │ ├── comment_table.test │ │ ├── comments.result │ │ ├── comments.test │ │ ├── commit.result │ │ ├── commit.test │ │ ├── commit_1innodb.result │ │ ├── commit_1innodb.test │ │ ├── compare.result │ │ ├── compare.test │ │ ├── compound.result │ │ ├── compound.test │ │ ├── compress.result │ │ ├── compress.test │ │ ├── concurrent_innodb_safelog.result │ │ ├── concurrent_innodb_safelog.test │ │ ├── concurrent_innodb_unsafelog.result │ │ ├── concurrent_innodb_unsafelog.test │ │ ├── connect-abstract.cnf │ │ ├── connect-abstract.result │ │ ├── connect-abstract.test │ │ ├── connect.cnf │ │ ├── connect.result │ │ ├── connect.test │ │ ├── connect2.cnf │ │ ├── connect2.result │ │ ├── connect2.test │ │ ├── connect_debug.result │ │ ├── connect_debug.test │ │ ├── consistent_snapshot.result │ │ ├── consistent_snapshot.test │ │ ├── constraints.result │ │ ├── constraints.test │ │ ├── contributors.result │ │ ├── contributors.test │ │ ├── count_distinct.result │ │ ├── count_distinct.test │ │ ├── count_distinct2-master.opt │ │ ├── count_distinct2.result │ │ ├── count_distinct2.test │ │ ├── count_distinct3.result │ │ ├── count_distinct3.test │ │ ├── crash_commit_before-master.opt │ │ ├── crash_commit_before.result │ │ ├── crash_commit_before.test │ │ ├── create-big.result │ │ ├── create-big.test │ │ ├── create-uca.result │ │ ├── create-uca.test │ │ ├── create.result │ │ ├── create.test │ │ ├── create_delayed.result │ │ ├── create_delayed.test │ │ ├── create_drop_binlog.result │ │ ├── create_drop_binlog.test │ │ ├── create_drop_db.result │ │ ├── create_drop_db.test │ │ ├── create_drop_event.result │ │ ├── create_drop_event.test │ │ ├── create_drop_function.result │ │ ├── create_drop_function.test │ │ ├── create_drop_index.result │ │ ├── create_drop_index.test │ │ ├── create_drop_procedure.result │ │ ├── create_drop_procedure.test │ │ ├── create_drop_role.result │ │ ├── create_drop_role.test │ │ ├── create_drop_server.result │ │ ├── create_drop_server.test │ │ ├── create_drop_trigger.result │ │ ├── create_drop_trigger.test │ │ ├── create_drop_udf.result │ │ ├── create_drop_udf.test │ │ ├── create_drop_user.result │ │ ├── create_drop_user.test │ │ ├── create_drop_view.result │ │ ├── create_drop_view.test │ │ ├── create_not_windows.result │ │ ├── create_not_windows.test │ │ ├── create_or_replace-master.opt │ │ ├── create_or_replace.result │ │ ├── create_or_replace.test │ │ ├── create_or_replace2.result │ │ ├── create_or_replace2.test │ │ ├── create_or_replace_permission.result │ │ ├── create_or_replace_permission.test │ │ ├── create_replace_tmp.result │ │ ├── create_replace_tmp.test │ │ ├── create_select.result │ │ ├── create_select.test │ │ ├── create_user.result │ │ ├── create_user.test │ │ ├── create_utf8.result │ │ ├── create_utf8.test │ │ ├── create_w_max_indexes_128.result │ │ ├── create_w_max_indexes_128.test │ │ ├── create_w_max_indexes_64.result │ │ ├── create_w_max_indexes_64.test │ │ ├── create_windows.result │ │ ├── create_windows.test │ │ ├── cte_cycle.result │ │ ├── cte_cycle.test │ │ ├── cte_grant.result │ │ ├── cte_grant.test │ │ ├── cte_nonrecursive.result │ │ ├── cte_nonrecursive.test │ │ ├── cte_nonrecursive_not_embedded.result │ │ ├── cte_nonrecursive_not_embedded.test │ │ ├── cte_recursive.result │ │ ├── cte_recursive.test │ │ ├── cte_recursive_not_embedded.result │ │ ├── cte_recursive_not_embedded.test │ │ ├── ctype_ascii.result │ │ ├── ctype_ascii.test │ │ ├── ctype_big5.result │ │ ├── ctype_big5.test │ │ ├── ctype_binary.result │ │ ├── ctype_binary.test │ │ ├── ctype_collate.result │ │ ├── ctype_collate.test │ │ ├── ctype_cp1250_ch.result │ │ ├── ctype_cp1250_ch.test │ │ ├── ctype_cp1251.result │ │ ├── ctype_cp1251.test │ │ ├── ctype_cp850.result │ │ ├── ctype_cp850.test │ │ ├── ctype_cp866.result │ │ ├── ctype_cp866.test │ │ ├── ctype_cp932.result │ │ ├── ctype_cp932.test │ │ ├── ctype_cp932_binlog_row.result │ │ ├── ctype_cp932_binlog_row.test │ │ ├── ctype_cp932_binlog_stm.result │ │ ├── ctype_cp932_binlog_stm.test │ │ ├── ctype_create.result │ │ ├── ctype_create.test │ │ ├── ctype_dec8.result │ │ ├── ctype_dec8.test │ │ ├── ctype_errors.result │ │ ├── ctype_errors.test │ │ ├── ctype_eucjpms.result │ │ ├── ctype_eucjpms.test │ │ ├── ctype_euckr.result │ │ ├── ctype_euckr.test │ │ ├── ctype_filename.result │ │ ├── ctype_filename.test │ │ ├── ctype_filesystem-master.opt │ │ ├── ctype_filesystem.result │ │ ├── ctype_filesystem.test │ │ ├── ctype_gb2312.result │ │ ├── ctype_gb2312.test │ │ ├── ctype_gbk.result │ │ ├── ctype_gbk.test │ │ ├── ctype_gbk_binlog.result │ │ ├── ctype_gbk_binlog.test │ │ ├── ctype_gbk_export_import.result │ │ ├── ctype_gbk_export_import.test │ │ ├── ctype_hebrew.result │ │ ├── ctype_hebrew.test │ │ ├── ctype_latin1.result │ │ ├── ctype_latin1.test │ │ ├── ctype_latin1_de.result │ │ ├── ctype_latin1_de.test │ │ ├── ctype_latin2.result │ │ ├── ctype_latin2.test │ │ ├── ctype_latin2_ch.result │ │ ├── ctype_latin2_ch.test │ │ ├── ctype_ldml-master.opt │ │ ├── ctype_ldml.result │ │ ├── ctype_ldml.test │ │ ├── ctype_like_range.result │ │ ├── ctype_like_range.test │ │ ├── ctype_many.result │ │ ├── ctype_many.test │ │ ├── ctype_mb.result │ │ ├── ctype_mb.test │ │ ├── ctype_nopad_8bit.result │ │ ├── ctype_nopad_8bit.test │ │ ├── ctype_partitions.result │ │ ├── ctype_partitions.test │ │ ├── ctype_recoding.result │ │ ├── ctype_recoding.test │ │ ├── ctype_sjis.result │ │ ├── ctype_sjis.test │ │ ├── ctype_swe7.result │ │ ├── ctype_swe7.test │ │ ├── ctype_tis620.result │ │ ├── ctype_tis620.test │ │ ├── ctype_uca.result │ │ ├── ctype_uca.test │ │ ├── ctype_uca_innodb.result │ │ ├── ctype_uca_innodb.test │ │ ├── ctype_uca_partitions.result │ │ ├── ctype_uca_partitions.test │ │ ├── ctype_ucs.result │ │ ├── ctype_ucs.test │ │ ├── ctype_ucs2_def-master.opt │ │ ├── ctype_ucs2_def.result │ │ ├── ctype_ucs2_def.test │ │ ├── ctype_ucs2_query_cache-master.opt │ │ ├── ctype_ucs2_query_cache.result │ │ ├── ctype_ucs2_query_cache.test │ │ ├── ctype_ucs2_uca.result │ │ ├── ctype_ucs2_uca.test │ │ ├── ctype_ujis.result │ │ ├── ctype_ujis.test │ │ ├── ctype_ujis_ucs2.result │ │ ├── ctype_ujis_ucs2.test │ │ ├── ctype_upgrade.result │ │ ├── ctype_upgrade.test │ │ ├── ctype_utf16.result │ │ ├── ctype_utf16.test │ │ ├── ctype_utf16_def-master.opt │ │ ├── ctype_utf16_def.result │ │ ├── ctype_utf16_def.test │ │ ├── ctype_utf16_uca.result │ │ ├── ctype_utf16_uca.test │ │ ├── ctype_utf16le.result │ │ ├── ctype_utf16le.test │ │ ├── ctype_utf32.result │ │ ├── ctype_utf32.test │ │ ├── ctype_utf32_def.opt │ │ ├── ctype_utf32_def.result │ │ ├── ctype_utf32_def.test │ │ ├── ctype_utf32_innodb.result │ │ ├── ctype_utf32_innodb.test │ │ ├── ctype_utf32_uca.result │ │ ├── ctype_utf32_uca.test │ │ ├── ctype_utf8-master.opt │ │ ├── ctype_utf8.result │ │ ├── ctype_utf8.test │ │ ├── ctype_utf8_def_upgrade.opt │ │ ├── ctype_utf8_def_upgrade.result │ │ ├── ctype_utf8_def_upgrade.test │ │ ├── ctype_utf8_uca.result │ │ ├── ctype_utf8_uca.test │ │ ├── ctype_utf8mb4-master.opt │ │ ├── ctype_utf8mb4.result │ │ ├── ctype_utf8mb4.test │ │ ├── ctype_utf8mb4_heap.result │ │ ├── ctype_utf8mb4_heap.test │ │ ├── ctype_utf8mb4_innodb-master.opt │ │ ├── ctype_utf8mb4_innodb.result │ │ ├── ctype_utf8mb4_innodb.test │ │ ├── ctype_utf8mb4_myisam.result │ │ ├── ctype_utf8mb4_myisam.test │ │ ├── ctype_utf8mb4_uca.result │ │ ├── ctype_utf8mb4_uca.test │ │ ├── ctype_utf8mb4_unicode_ci_def.opt │ │ ├── ctype_utf8mb4_unicode_ci_def.result │ │ ├── ctype_utf8mb4_unicode_ci_def.test │ │ ├── custom_aggregate_functions.result │ │ ├── custom_aggregate_functions.test │ │ ├── custom_aggregates_i_s.result │ │ ├── custom_aggregates_i_s.test │ │ ├── date_formats-master.opt │ │ ├── date_formats.result │ │ ├── date_formats.test │ │ ├── datetime_456.result │ │ ├── datetime_456.test │ │ ├── ddl_i18n_koi8r.result │ │ ├── ddl_i18n_koi8r.test │ │ ├── ddl_i18n_utf8.result │ │ ├── ddl_i18n_utf8.test │ │ ├── deadlock_ftwrl.result │ │ ├── deadlock_ftwrl.test │ │ ├── deadlock_innodb.result │ │ ├── deadlock_innodb.test │ │ ├── debug_sync.result │ │ ├── debug_sync.test │ │ ├── default.result │ │ ├── default.test │ │ ├── default_debug.result │ │ ├── default_debug.test │ │ ├── default_innodb.result │ │ ├── default_innodb.test │ │ ├── default_session.result │ │ ├── default_session.test │ │ ├── default_storage_engine.result │ │ ├── default_storage_engine.test │ │ ├── delayed.result │ │ ├── delayed.test │ │ ├── delayed_blob.opt │ │ ├── delayed_blob.result │ │ ├── delayed_blob.test │ │ ├── delete.result │ │ ├── delete.test │ │ ├── delete_innodb.result │ │ ├── delete_innodb.test │ │ ├── delete_returning.result │ │ ├── delete_returning.test │ │ ├── delete_returning_grant.result │ │ ├── delete_returning_grant.test │ │ ├── delete_use_source.result │ │ ├── delete_use_source.test │ │ ├── delimiter_case_mdev_10728.sql │ │ ├── delimiter_command_case_sensitivity.result │ │ ├── delimiter_command_case_sensitivity.test │ │ ├── deprecated_features.result │ │ ├── deprecated_features.test │ │ ├── derived.result │ │ ├── derived.test │ │ ├── derived_cond_pushdown.result │ │ ├── derived_cond_pushdown.test │ │ ├── derived_opt.result │ │ ├── derived_opt.test │ │ ├── derived_split_innodb.result │ │ ├── derived_split_innodb.test │ │ ├── derived_view.result │ │ ├── derived_view.test │ │ ├── dirty_close.result │ │ ├── dirty_close.test │ │ ├── disabled.def │ │ ├── distinct.result │ │ ├── distinct.test │ │ ├── drop.result │ │ ├── drop.test │ │ ├── drop_bad_db_type.result │ │ ├── drop_bad_db_type.test │ │ ├── drop_combinations.inc │ │ ├── drop_combinations.result │ │ ├── drop_combinations.test │ │ ├── drop_table_force.result │ │ ├── drop_table_force.test │ │ ├── dyncol.result │ │ ├── dyncol.test │ │ ├── empty_server_name-8224.result │ │ ├── empty_server_name-8224.test │ │ ├── empty_string_literal.result │ │ ├── empty_string_literal.test │ │ ├── empty_table.result │ │ ├── empty_table.test │ │ ├── empty_user_table.result │ │ ├── empty_user_table.test │ │ ├── endspace.result │ │ ├── endspace.test │ │ ├── enforce_storage_engine.result │ │ ├── enforce_storage_engine.test │ │ ├── enforce_storage_engine_opt.opt │ │ ├── enforce_storage_engine_opt.result │ │ ├── enforce_storage_engine_opt.test │ │ ├── engine_error_in_alter-8453.result │ │ ├── engine_error_in_alter-8453.test │ │ ├── error_simulation-master.opt │ │ ├── error_simulation.result │ │ ├── error_simulation.test │ │ ├── errors.result │ │ ├── errors.test │ │ ├── events_1.result │ │ ├── events_1.test │ │ ├── events_2.result │ │ ├── events_2.test │ │ ├── events_bugs-master.opt │ │ ├── events_bugs.result │ │ ├── events_bugs.test │ │ ├── events_embedded.result │ │ ├── events_embedded.test │ │ ├── events_grant.result │ │ ├── events_grant.test │ │ ├── events_logs_tests-master.opt │ │ ├── events_logs_tests.result │ │ ├── events_logs_tests.test │ │ ├── events_microsec.result │ │ ├── events_microsec.test │ │ ├── events_restart-master.opt │ │ ├── events_restart.result │ │ ├── events_restart.test │ │ ├── events_scheduling.result │ │ ├── events_scheduling.test │ │ ├── events_slowlog.result │ │ ├── events_slowlog.test │ │ ├── events_stress.result │ │ ├── events_stress.test │ │ ├── events_time_zone.result │ │ ├── events_time_zone.test │ │ ├── events_trans.result │ │ ├── events_trans.test │ │ ├── events_trans_notembedded.result │ │ ├── events_trans_notembedded.test │ │ ├── except.result │ │ ├── except.test │ │ ├── except_all.result │ │ ├── except_all.test │ │ ├── execution_constants.result │ │ ├── execution_constants.test │ │ ├── explain.result │ │ ├── explain.test │ │ ├── explain_innodb.result │ │ ├── explain_innodb.test │ │ ├── explain_json.result │ │ ├── explain_json.test │ │ ├── explain_json_format_partitions.result │ │ ├── explain_json_format_partitions.test │ │ ├── explain_json_innodb.result │ │ ├── explain_json_innodb.test │ │ ├── explain_non_select.result │ │ ├── explain_non_select.test │ │ ├── explain_slowquerylog-master.opt │ │ ├── explain_slowquerylog.result │ │ ├── explain_slowquerylog.test │ │ ├── ext_key_noPK_6794.result │ │ ├── ext_key_noPK_6794.test │ │ ├── failed_auth_3909.result │ │ ├── failed_auth_3909.test │ │ ├── failed_auth_unixsocket.result │ │ ├── failed_auth_unixsocket.test │ │ ├── fast_prefix_index_fetch_innodb.result │ │ ├── fast_prefix_index_fetch_innodb.test │ │ ├── features,ps.rdiff │ │ ├── features.result │ │ ├── features.test │ │ ├── fetch_first.result │ │ ├── fetch_first.test │ │ ├── file_contents.result │ │ ├── file_contents.test │ │ ├── filesort_bad_i_s-7585.result │ │ ├── filesort_bad_i_s-7585.test │ │ ├── filesort_debug.result │ │ ├── filesort_debug.test │ │ ├── filesort_pack.result │ │ ├── filesort_pack.test │ │ ├── fix_priv_tables.result │ │ ├── fix_priv_tables.test │ │ ├── flush-innodb-notembedded.result │ │ ├── flush-innodb-notembedded.test │ │ ├── flush-innodb.result │ │ ├── flush-innodb.test │ │ ├── flush.result │ │ ├── flush.test │ │ ├── flush2-master.opt │ │ ├── flush2.result │ │ ├── flush2.test │ │ ├── flush_and_binlog.result │ │ ├── flush_and_binlog.test │ │ ├── flush_block_commit.result │ │ ├── flush_block_commit.test │ │ ├── flush_block_commit_notembedded.result │ │ ├── flush_block_commit_notembedded.test │ │ ├── flush_logs_not_windows.result │ │ ├── flush_logs_not_windows.test │ │ ├── flush_notembedded.result │ │ ├── flush_notembedded.test │ │ ├── flush_read_lock.result │ │ ├── flush_read_lock.test │ │ ├── flush_read_lock_kill.result │ │ ├── flush_read_lock_kill.test │ │ ├── flush_ssl.result │ │ ├── flush_ssl.test │ │ ├── flush_table.result │ │ ├── flush_table.test │ │ ├── foreign_key.result │ │ ├── foreign_key.test │ │ ├── frm-debug.result │ │ ├── frm-debug.test │ │ ├── frm_bad_row_type-7333.result │ │ ├── frm_bad_row_type-7333.test │ │ ├── fulltext.result │ │ ├── fulltext.test │ │ ├── fulltext2.result │ │ ├── fulltext2.test │ │ ├── fulltext3.result │ │ ├── fulltext3.test │ │ ├── fulltext_cache.result │ │ ├── fulltext_cache.test │ │ ├── fulltext_charsets.result │ │ ├── fulltext_charsets.test │ │ ├── fulltext_derived_4257.result │ │ ├── fulltext_derived_4257.test │ │ ├── fulltext_derived_4316.result │ │ ├── fulltext_derived_4316.test │ │ ├── fulltext_distinct.result │ │ ├── fulltext_distinct.test │ │ ├── fulltext_left_join.result │ │ ├── fulltext_left_join.test │ │ ├── fulltext_multi.result │ │ ├── fulltext_multi.test │ │ ├── fulltext_order_by.result │ │ ├── fulltext_order_by.test │ │ ├── fulltext_update.result │ │ ├── fulltext_update.test │ │ ├── fulltext_var.result │ │ ├── fulltext_var.test │ │ ├── func_analyse.result │ │ ├── func_analyse.test │ │ ├── func_bit.result │ │ ├── func_bit.test │ │ ├── func_compress.result │ │ ├── func_compress.test │ │ ├── func_concat.result │ │ ├── func_concat.test │ │ ├── func_crypt.result │ │ ├── func_crypt.test │ │ ├── func_date_add.result │ │ ├── func_date_add.test │ │ ├── func_debug.result │ │ ├── func_debug.test │ │ ├── func_default.result │ │ ├── func_default.test │ │ ├── func_des_encrypt.result │ │ ├── func_des_encrypt.test │ │ ├── func_digest.result │ │ ├── func_digest.test │ │ ├── func_encrypt-master.opt │ │ ├── func_encrypt.result │ │ ├── func_encrypt.test │ │ ├── func_encrypt_nossl.result │ │ ├── func_encrypt_nossl.test │ │ ├── func_encrypt_ucs2.result │ │ ├── func_encrypt_ucs2.test │ │ ├── func_equal.result │ │ ├── func_equal.test │ │ ├── func_extract.result │ │ ├── func_extract.test │ │ ├── func_gconcat.result │ │ ├── func_gconcat.test │ │ ├── func_group.result │ │ ├── func_group.test │ │ ├── func_group_innodb.result │ │ ├── func_group_innodb.test │ │ ├── func_hybrid_type.result │ │ ├── func_hybrid_type.test │ │ ├── func_if.result │ │ ├── func_if.test │ │ ├── func_in.result │ │ ├── func_in.test │ │ ├── func_int.result │ │ ├── func_int.test │ │ ├── func_isnull.result │ │ ├── func_isnull.test │ │ ├── func_json.result │ │ ├── func_json.test │ │ ├── func_json_notembedded.result │ │ ├── func_json_notembedded.test │ │ ├── func_like.result │ │ ├── func_like.test │ │ ├── func_math.result │ │ ├── func_math.test │ │ ├── func_misc.result │ │ ├── func_misc.test │ │ ├── func_op.result │ │ ├── func_op.test │ │ ├── func_regexp.result │ │ ├── func_regexp.test │ │ ├── func_regexp_pcre.result │ │ ├── func_regexp_pcre.test │ │ ├── func_regexp_pcre_debug.result │ │ ├── func_regexp_pcre_debug.test │ │ ├── func_rollback.result │ │ ├── func_rollback.test │ │ ├── func_sapdb.result │ │ ├── func_sapdb.test │ │ ├── func_set.result │ │ ├── func_set.test │ │ ├── func_str.result │ │ ├── func_str.test │ │ ├── func_system.result │ │ ├── func_system.test │ │ ├── func_test.result │ │ ├── func_test.test │ │ ├── func_time.result │ │ ├── func_time.test │ │ ├── func_time_hires.result │ │ ├── func_time_hires.test │ │ ├── func_time_round.result │ │ ├── func_time_round.test │ │ ├── func_timestamp.result │ │ ├── func_timestamp.test │ │ ├── func_weight_string.result │ │ ├── func_weight_string.test │ │ ├── function_defaults.result │ │ ├── function_defaults.test │ │ ├── function_defaults_innodb.result │ │ ├── function_defaults_innodb.test │ │ ├── function_defaults_notembedded.result │ │ ├── function_defaults_notembedded.test │ │ ├── gcc296.result │ │ ├── gcc296.test │ │ ├── get_diagnostics.result │ │ ├── get_diagnostics.test │ │ ├── gis-alter_table_online.result │ │ ├── gis-alter_table_online.test │ │ ├── gis-debug.result │ │ ├── gis-debug.test │ │ ├── gis-json.result │ │ ├── gis-json.test │ │ ├── gis-loaddata.result │ │ ├── gis-loaddata.test │ │ ├── gis-precise.result │ │ ├── gis-precise.test │ │ ├── gis-rt-precise.result │ │ ├── gis-rt-precise.test │ │ ├── gis-rtree.result │ │ ├── gis-rtree.test │ │ ├── gis.result │ │ ├── gis.test │ │ ├── gis_notembedded.result │ │ ├── gis_notembedded.test │ │ ├── grant.opt │ │ ├── grant.result │ │ ├── grant.test │ │ ├── grant2.opt │ │ ├── grant2.result │ │ ├── grant2.test │ │ ├── grant3-master.opt │ │ ├── grant3.result │ │ ├── grant3.test │ │ ├── grant4.opt │ │ ├── grant4.result │ │ ├── grant4.test │ │ ├── grant5.result │ │ ├── grant5.test │ │ ├── grant_4332.result │ │ ├── grant_4332.test │ │ ├── grant_binlog_replay.result │ │ ├── grant_binlog_replay.test │ │ ├── grant_cache_no_prot.result │ │ ├── grant_cache_no_prot.test │ │ ├── grant_cache_ps_prot.result │ │ ├── grant_cache_ps_prot.test │ │ ├── grant_explain_non_select.result │ │ ├── grant_explain_non_select.test │ │ ├── grant_kill.result │ │ ├── grant_kill.test │ │ ├── grant_lowercase.opt │ │ ├── grant_lowercase.result │ │ ├── grant_lowercase.test │ │ ├── grant_lowercase_fs.result │ │ ├── grant_lowercase_fs.test │ │ ├── grant_master_admin.result │ │ ├── grant_master_admin.test │ │ ├── grant_not_windows.result │ │ ├── grant_not_windows.test │ │ ├── grant_read_only.result │ │ ├── grant_read_only.test │ │ ├── grant_repair.result │ │ ├── grant_repair.test │ │ ├── grant_server.result │ │ ├── grant_server.test │ │ ├── grant_slave_admin.result │ │ ├── grant_slave_admin.test │ │ ├── grant_slave_monitor.result │ │ ├── grant_slave_monitor.test │ │ ├── greedy_optimizer.result │ │ ├── greedy_optimizer.test │ │ ├── group_by.result │ │ ├── group_by.test │ │ ├── group_by_innodb.result │ │ ├── group_by_innodb.test │ │ ├── group_by_null.result │ │ ├── group_by_null.test │ │ ├── group_min_max.result │ │ ├── group_min_max.test │ │ ├── group_min_max_innodb.result │ │ ├── group_min_max_innodb.test │ │ ├── handler_read_last.result │ │ ├── handler_read_last.test │ │ ├── handlersocket.opt │ │ ├── handlersocket.result │ │ ├── handlersocket.test │ │ ├── having.result │ │ ├── having.test │ │ ├── having_cond_pushdown.result │ │ ├── having_cond_pushdown.test │ │ ├── help.result │ │ ├── help.test │ │ ├── host_cache_size_functionality.result │ │ ├── host_cache_size_functionality.test │ │ ├── huge_frm-6224.result │ │ ├── huge_frm-6224.test │ │ ├── ignored_index.result │ │ ├── ignored_index.test │ │ ├── ignored_index_innodb.result │ │ ├── ignored_index_innodb.test │ │ ├── implicit_char_to_num_conversion.result │ │ ├── implicit_char_to_num_conversion.test │ │ ├── implicit_commit-master.opt │ │ ├── implicit_commit.result │ │ ├── implicit_commit.test │ │ ├── in_datetime_241.result │ │ ├── in_datetime_241.test │ │ ├── in_subq_cond_pushdown.result │ │ ├── in_subq_cond_pushdown.test │ │ ├── index_intersect.result │ │ ├── index_intersect.test │ │ ├── index_intersect_innodb.result │ │ ├── index_intersect_innodb.test │ │ ├── index_merge_innodb.result │ │ ├── index_merge_innodb.test │ │ ├── index_merge_myisam.result │ │ ├── index_merge_myisam.test │ │ ├── information_schema-big.result │ │ ├── information_schema-big.test │ │ ├── information_schema.result │ │ ├── information_schema.test │ │ ├── information_schema2.result │ │ ├── information_schema2.test │ │ ├── information_schema_all_engines-master.opt │ │ ├── information_schema_all_engines.result │ │ ├── information_schema_all_engines.test │ │ ├── information_schema_chmod.result │ │ ├── information_schema_chmod.test │ │ ├── information_schema_columns.result │ │ ├── information_schema_columns.test │ │ ├── information_schema_db.result │ │ ├── information_schema_db.test │ │ ├── information_schema_inno.result │ │ ├── information_schema_inno.test │ │ ├── information_schema_linux.result │ │ ├── information_schema_linux.test │ │ ├── information_schema_parameters.result │ │ ├── information_schema_parameters.test │ │ ├── information_schema_part.result │ │ ├── information_schema_part.test │ │ ├── information_schema_prepare.result │ │ ├── information_schema_prepare.test │ │ ├── information_schema_routines.result │ │ ├── information_schema_routines.test │ │ ├── information_schema_stats.result │ │ ├── information_schema_stats.test │ │ ├── information_schema_tables.result │ │ ├── information_schema_tables.test │ │ ├── init_connect-master.opt │ │ ├── init_connect.result │ │ ├── init_connect.test │ │ ├── init_connection_query_cache-master.opt │ │ ├── init_connection_query_cache.result │ │ ├── init_connection_query_cache.test │ │ ├── init_file.opt │ │ ├── init_file.result │ │ ├── init_file.test │ │ ├── init_file_longline_3816.opt │ │ ├── init_file_longline_3816.result │ │ ├── init_file_longline_3816.test │ │ ├── init_file_set_password-7656.result │ │ ├── init_file_set_password-7656.test │ │ ├── innodb_bug878769.result │ │ ├── innodb_bug878769.test │ │ ├── innodb_ext_key,off.rdiff │ │ ├── innodb_ext_key.combinations │ │ ├── innodb_ext_key.result │ │ ├── innodb_ext_key.test │ │ ├── innodb_group.result │ │ ├── innodb_group.test │ │ ├── innodb_icp.result │ │ ├── innodb_icp.test │ │ ├── innodb_icp_debug.result │ │ ├── innodb_icp_debug.test │ │ ├── innodb_ignore_builtin-master.opt │ │ ├── innodb_ignore_builtin.result │ │ ├── innodb_ignore_builtin.test │ │ ├── innodb_load_xa.opt │ │ ├── innodb_load_xa.result │ │ ├── innodb_load_xa.test │ │ ├── innodb_mrr_cpk.result │ │ ├── innodb_mrr_cpk.test │ │ ├── innodb_mysql_lock.result │ │ ├── innodb_mysql_lock.test │ │ ├── innodb_mysql_lock2.result │ │ ├── innodb_mysql_lock2.test │ │ ├── innodb_mysql_sync.result │ │ ├── innodb_mysql_sync.test │ │ ├── innodb_utf8.result │ │ ├── innodb_utf8.test │ │ ├── insert.result │ │ ├── insert.test │ │ ├── insert_debug-master.opt │ │ ├── insert_debug.result │ │ ├── insert_debug.test │ │ ├── insert_innodb.result │ │ ├── insert_innodb.test │ │ ├── insert_notembedded.result │ │ ├── insert_notembedded.test │ │ ├── insert_returning.result │ │ ├── insert_returning.test │ │ ├── insert_returning_datatypes.result │ │ ├── insert_returning_datatypes.test │ │ ├── insert_select.result │ │ ├── insert_select.test │ │ ├── insert_update.result │ │ ├── insert_update.test │ │ ├── insert_update_autoinc-7150.result │ │ ├── insert_update_autoinc-7150.test │ │ ├── intersect.result │ │ ├── intersect.test │ │ ├── intersect_all.result │ │ ├── intersect_all.test │ │ ├── invisible_binlog.result │ │ ├── invisible_binlog.test │ │ ├── invisible_field.result │ │ ├── invisible_field.test │ │ ├── invisible_field_debug.result │ │ ├── invisible_field_debug.test │ │ ├── invisible_field_grant_completely.result │ │ ├── invisible_field_grant_completely.test │ │ ├── invisible_field_grant_system.result │ │ ├── invisible_field_grant_system.test │ │ ├── invisible_partition.result │ │ ├── invisible_partition.test │ │ ├── ipv4_and_ipv6.opt │ │ ├── ipv4_and_ipv6.result │ │ ├── ipv4_and_ipv6.test │ │ ├── ipv4_as_ipv6-master.opt │ │ ├── ipv4_as_ipv6.result │ │ ├── ipv4_as_ipv6.test │ │ ├── ipv6-master.opt │ │ ├── ipv6.result │ │ ├── ipv6.test │ │ ├── join.result │ │ ├── join.test │ │ ├── join_cache.result │ │ ├── join_cache.test │ │ ├── join_crash.result │ │ ├── join_crash.test │ │ ├── join_nested.result │ │ ├── join_nested.test │ │ ├── join_nested_jcl6.result │ │ ├── join_nested_jcl6.test │ │ ├── join_optimizer.result │ │ ├── join_optimizer.test │ │ ├── join_outer.result │ │ ├── join_outer.test │ │ ├── join_outer_innodb.result │ │ ├── join_outer_innodb.test │ │ ├── join_outer_jcl6.result │ │ ├── join_outer_jcl6.test │ │ ├── json_debug_nonembedded.result │ │ ├── json_debug_nonembedded.test │ │ ├── key.result │ │ ├── key.test │ │ ├── key_cache-master.opt │ │ ├── key_cache.result │ │ ├── key_cache.test │ │ ├── key_diff.result │ │ ├── key_diff.test │ │ ├── key_primary.result │ │ ├── key_primary.test │ │ ├── keyread.result │ │ ├── keyread.test │ │ ├── keywords.result │ │ ├── keywords.test │ │ ├── kill-2-master.opt │ │ ├── kill-2.result │ │ ├── kill-2.test │ │ ├── kill.result │ │ ├── kill.test │ │ ├── kill_processlist-6619.result │ │ ├── kill_processlist-6619.test │ │ ├── kill_query-6728.result │ │ ├── kill_query-6728.test │ │ ├── large_pages.opt │ │ ├── large_pages.result │ │ ├── large_pages.test │ │ ├── last_value.result │ │ ├── last_value.test │ │ ├── limit.result │ │ ├── limit.test │ │ ├── limit_rows_examined.result │ │ ├── limit_rows_examined.test │ │ ├── loaddata.result │ │ ├── loaddata.test │ │ ├── loaddata_autocom_innodb.result │ │ ├── loaddata_autocom_innodb.test │ │ ├── loadxml.result │ │ ├── loadxml.test │ │ ├── locale.opt │ │ ├── locale.result │ │ ├── locale.test │ │ ├── lock.result │ │ ├── lock.test │ │ ├── lock_kill.result │ │ ├── lock_kill.test │ │ ├── lock_multi.result │ │ ├── lock_multi.test │ │ ├── lock_multi_bug38499.result │ │ ├── lock_multi_bug38499.test │ │ ├── lock_multi_bug38691.result │ │ ├── lock_multi_bug38691.test │ │ ├── lock_sync-master.opt │ │ ├── lock_sync.result │ │ ├── lock_sync.test │ │ ├── lock_tables_lost_commit-master.opt │ │ ├── lock_tables_lost_commit.result │ │ ├── lock_tables_lost_commit.test │ │ ├── lock_user.result │ │ ├── lock_user.test │ │ ├── lock_view.result │ │ ├── lock_view.test │ │ ├── locked_temporary-5955.result │ │ ├── locked_temporary-5955.test │ │ ├── locking_clause.result │ │ ├── locking_clause.test │ │ ├── log_errchk.result │ │ ├── log_errchk.test │ │ ├── log_slow.result │ │ ├── log_slow.test │ │ ├── log_slow_debug.result │ │ ├── log_slow_debug.test │ │ ├── log_state-master.opt │ │ ├── log_state.result │ │ ├── log_state.test │ │ ├── log_state_bug33693-master.opt │ │ ├── log_state_bug33693.result │ │ ├── log_state_bug33693.test │ │ ├── log_tables-big-master.opt │ │ ├── log_tables-big.result │ │ ├── log_tables-big.test │ │ ├── log_tables-master.opt │ │ ├── log_tables.result │ │ ├── log_tables.test │ │ ├── log_tables_debug.result │ │ ├── log_tables_debug.test │ │ ├── log_tables_upgrade.result │ │ ├── log_tables_upgrade.test │ │ ├── long_host.result │ │ ├── long_host.test │ │ ├── long_tmpdir-master.opt │ │ ├── long_tmpdir-master.sh │ │ ├── long_tmpdir.result │ │ ├── long_tmpdir.test │ │ ├── long_unique.result │ │ ├── long_unique.test │ │ ├── long_unique_big.result │ │ ├── long_unique_big.test │ │ ├── long_unique_bugs.result │ │ ├── long_unique_bugs.test │ │ ├── long_unique_bugs_replication.result │ │ ├── long_unique_bugs_replication.test │ │ ├── long_unique_debug.result │ │ ├── long_unique_debug.test │ │ ├── long_unique_delayed.result │ │ ├── long_unique_delayed.test │ │ ├── long_unique_innodb.opt │ │ ├── long_unique_innodb.result │ │ ├── long_unique_innodb.test │ │ ├── long_unique_update.result │ │ ├── long_unique_update.test │ │ ├── long_unique_using_hash.result │ │ ├── long_unique_using_hash.test │ │ ├── lowercase_fs_off.result │ │ ├── lowercase_fs_off.test │ │ ├── lowercase_fs_on.result │ │ ├── lowercase_fs_on.test │ │ ├── lowercase_mixed_tmpdir-master.opt │ │ ├── lowercase_mixed_tmpdir-master.sh │ │ ├── lowercase_mixed_tmpdir.result │ │ ├── lowercase_mixed_tmpdir.test │ │ ├── lowercase_mixed_tmpdir_innodb-master.opt │ │ ├── lowercase_mixed_tmpdir_innodb-master.sh │ │ ├── lowercase_mixed_tmpdir_innodb.result │ │ ├── lowercase_mixed_tmpdir_innodb.test │ │ ├── lowercase_table-master.opt │ │ ├── lowercase_table.result │ │ ├── lowercase_table.test │ │ ├── lowercase_table2.result │ │ ├── lowercase_table2.test │ │ ├── lowercase_table4-master.opt │ │ ├── lowercase_table4.result │ │ ├── lowercase_table4.test │ │ ├── lowercase_table5.result │ │ ├── lowercase_table5.test │ │ ├── lowercase_table_grant-master.opt │ │ ├── lowercase_table_grant.result │ │ ├── lowercase_table_grant.test │ │ ├── lowercase_table_qcache-master.opt │ │ ├── lowercase_table_qcache.result │ │ ├── lowercase_table_qcache.test │ │ ├── lowercase_utf8-master.opt │ │ ├── lowercase_utf8.result │ │ ├── lowercase_utf8.test │ │ ├── lowercase_view-master.opt │ │ ├── lowercase_view.result │ │ ├── lowercase_view.test │ │ ├── max_password_errors.result │ │ ├── max_password_errors.test │ │ ├── max_statement_time.result │ │ ├── max_statement_time.test │ │ ├── mdev-21101.opt │ │ ├── mdev-21101.result │ │ ├── mdev-21101.test │ │ ├── mdev-25830.result │ │ ├── mdev-25830.test │ │ ├── mdev13607.result │ │ ├── mdev13607.test │ │ ├── mdev19198.result │ │ ├── mdev19198.test │ │ ├── mdev316.result │ │ ├── mdev316.test │ │ ├── mdev375.result │ │ ├── mdev375.test │ │ ├── mdev6830.result │ │ ├── mdev6830.test │ │ ├── mdev_14586.result │ │ ├── mdev_14586.test │ │ ├── mdev_19276.result │ │ ├── mdev_19276.test │ │ ├── mdev_22370.result │ │ ├── mdev_22370.test │ │ ├── mdl.result │ │ ├── mdl.test │ │ ├── mdl_sync-master.opt │ │ ├── mdl_sync.result │ │ ├── mdl_sync.test │ │ ├── merge-big.result │ │ ├── merge-big.test │ │ ├── merge.result │ │ ├── merge.test │ │ ├── merge_debug.result │ │ ├── merge_debug.test │ │ ├── merge_innodb.result │ │ ├── merge_innodb.test │ │ ├── merge_mmap-master.opt │ │ ├── merge_mmap.result │ │ ├── merge_mmap.test │ │ ├── metadata.result │ │ ├── metadata.test │ │ ├── mix2_myisam.result │ │ ├── mix2_myisam.test │ │ ├── mix2_myisam_ucs2.result │ │ ├── mix2_myisam_ucs2.test │ │ ├── mrr_derived_crash_4610.result │ │ ├── mrr_derived_crash_4610.test │ │ ├── mrr_icp_extra.result │ │ ├── mrr_icp_extra.test │ │ ├── multi_statement-master.opt │ │ ├── multi_statement.result │ │ ├── multi_statement.test │ │ ├── multi_update-master.opt │ │ ├── multi_update.result │ │ ├── multi_update.test │ │ ├── multi_update_big.opt │ │ ├── multi_update_big.result │ │ ├── multi_update_big.test │ │ ├── multi_update_binlog.result │ │ ├── multi_update_binlog.test │ │ ├── multi_update_debug.result │ │ ├── multi_update_debug.test │ │ ├── multi_update_innodb.result │ │ ├── multi_update_innodb.test │ │ ├── multi_update_tiny_hash-master.opt │ │ ├── multi_update_tiny_hash.result │ │ ├── multi_update_tiny_hash.test │ │ ├── my_print_defaults.result │ │ ├── my_print_defaults.test │ │ ├── myisam-big.result │ │ ├── myisam-big.test │ │ ├── myisam-blob-master.opt │ │ ├── myisam-blob.result │ │ ├── myisam-blob.test │ │ ├── myisam-master.opt │ │ ├── myisam-optimize.result │ │ ├── myisam-optimize.test │ │ ├── myisam-system.result │ │ ├── myisam-system.test │ │ ├── myisam.result │ │ ├── myisam.test │ │ ├── myisam_crash_before_flush_keys-master.opt │ │ ├── myisam_crash_before_flush_keys.result │ │ ├── myisam_crash_before_flush_keys.test │ │ ├── myisam_debug.result │ │ ├── myisam_debug.test │ │ ├── myisam_enable_keys-10506.result │ │ ├── myisam_enable_keys-10506.test │ │ ├── myisam_explain_non_select_all.result │ │ ├── myisam_explain_non_select_all.test │ │ ├── myisam_icp.result │ │ ├── myisam_icp.test │ │ ├── myisam_icp_debug.result │ │ ├── myisam_icp_debug.test │ │ ├── myisam_icp_notembedded.result │ │ ├── myisam_icp_notembedded.test │ │ ├── myisam_mrr,32bit.rdiff │ │ ├── myisam_mrr.result │ │ ├── myisam_mrr.test │ │ ├── myisam_optimize.result │ │ ├── myisam_optimize.test │ │ ├── myisam_recover-master.opt │ │ ├── myisam_recover.result │ │ ├── myisam_recover.test │ │ ├── myisampack.result │ │ ├── myisampack.test │ │ ├── mysql-bug41486.result │ │ ├── mysql-bug41486.test │ │ ├── mysql-bug45236.result │ │ ├── mysql-bug45236.test │ │ ├── mysql-metadata.result │ │ ├── mysql-metadata.test │ │ ├── mysql.result │ │ ├── mysql.test │ │ ├── mysql5613mysql.result │ │ ├── mysql5613mysql.test │ │ ├── mysql57_virtual.result │ │ ├── mysql57_virtual.test │ │ ├── mysql_binary_mode.result │ │ ├── mysql_binary_mode.test │ │ ├── mysql_binary_zero_insert.result │ │ ├── mysql_binary_zero_insert.test │ │ ├── mysql_client_test-master.opt │ │ ├── mysql_client_test.result │ │ ├── mysql_client_test.test │ │ ├── mysql_client_test_comp-master.opt │ │ ├── mysql_client_test_comp.result │ │ ├── mysql_client_test_comp.test │ │ ├── mysql_client_test_nonblock-master.opt │ │ ├── mysql_client_test_nonblock.result │ │ ├── mysql_client_test_nonblock.test │ │ ├── mysql_comments.result │ │ ├── mysql_comments.sql │ │ ├── mysql_comments.test │ │ ├── mysql_cp932.result │ │ ├── mysql_cp932.test │ │ ├── mysql_delimiter.sql │ │ ├── mysql_delimiter_19799.sql │ │ ├── mysql_delimiter_source.sql │ │ ├── mysql_embedded.result │ │ ├── mysql_embedded.test │ │ ├── mysql_install_db_win.result │ │ ├── mysql_install_db_win.test │ │ ├── mysql_json_mysql_upgrade.result │ │ ├── mysql_json_mysql_upgrade.test │ │ ├── mysql_json_mysql_upgrade_with_plugin_loaded.result │ │ ├── mysql_json_mysql_upgrade_with_plugin_loaded.test │ │ ├── mysql_json_table_recreate.opt │ │ ├── mysql_json_table_recreate.result │ │ ├── mysql_json_table_recreate.test │ │ ├── mysql_locale_posix.result │ │ ├── mysql_locale_posix.test │ │ ├── mysql_not_windows.result │ │ ├── mysql_not_windows.test │ │ ├── mysql_protocols.result │ │ ├── mysql_protocols.test │ │ ├── mysql_tzinfo_to_sql_symlink.result │ │ ├── mysql_tzinfo_to_sql_symlink.test │ │ ├── mysql_upgrade-20228.result │ │ ├── mysql_upgrade-20228.test │ │ ├── mysql_upgrade-6984.opt │ │ ├── mysql_upgrade-6984.result │ │ ├── mysql_upgrade-6984.test │ │ ├── mysql_upgrade.result │ │ ├── mysql_upgrade.test │ │ ├── mysql_upgrade_mysql_json_datatype.result │ │ ├── mysql_upgrade_mysql_json_datatype.test │ │ ├── mysql_upgrade_no_innodb.result │ │ ├── mysql_upgrade_no_innodb.test │ │ ├── mysql_upgrade_noengine.result │ │ ├── mysql_upgrade_noengine.test │ │ ├── mysql_upgrade_ssl.result │ │ ├── mysql_upgrade_ssl.test │ │ ├── mysql_upgrade_to_100502.result │ │ ├── mysql_upgrade_to_100502.test │ │ ├── mysql_upgrade_view.result │ │ ├── mysql_upgrade_view.test │ │ ├── mysqladmin.result │ │ ├── mysqladmin.test │ │ ├── mysqlbinlog-innodb.result │ │ ├── mysqlbinlog-innodb.test │ │ ├── mysqlbinlog-master.opt │ │ ├── mysqlbinlog.result │ │ ├── mysqlbinlog.test │ │ ├── mysqlbinlog_raw_mode.result │ │ ├── mysqlbinlog_raw_mode.test │ │ ├── mysqlbinlog_row_big.result │ │ ├── mysqlbinlog_row_big.test │ │ ├── mysqlbinlog_row_compressed.result │ │ ├── mysqlbinlog_row_compressed.test │ │ ├── mysqlbinlog_row_minimal.opt │ │ ├── mysqlbinlog_row_minimal.result │ │ ├── mysqlbinlog_row_minimal.test │ │ ├── mysqlbinlog_stmt_compressed.result │ │ ├── mysqlbinlog_stmt_compressed.test │ │ ├── mysqlcheck-master.opt │ │ ├── mysqlcheck.opt │ │ ├── mysqlcheck.result │ │ ├── mysqlcheck.test │ │ ├── mysqld--defaults-file.result │ │ ├── mysqld--defaults-file.test │ │ ├── mysqld--help,aix.rdiff │ │ ├── mysqld--help,win.rdiff │ │ ├── mysqld--help-aria.result │ │ ├── mysqld--help-aria.test │ │ ├── mysqld--help.result │ │ ├── mysqld--help.test │ │ ├── mysqld_help_crash-9183.result │ │ ├── mysqld_help_crash-9183.test │ │ ├── mysqld_option_err.result │ │ ├── mysqld_option_err.test │ │ ├── mysqldump-compat-102.opt │ │ ├── mysqldump-compat-102.result │ │ ├── mysqldump-compat-102.test │ │ ├── mysqldump-compat.opt │ │ ├── mysqldump-compat.result │ │ ├── mysqldump-compat.test │ │ ├── mysqldump-max-master.opt │ │ ├── mysqldump-max.result │ │ ├── mysqldump-max.test │ │ ├── mysqldump-nl.result │ │ ├── mysqldump-nl.test │ │ ├── mysqldump-no-binlog-master.opt │ │ ├── mysqldump-no-binlog.result │ │ ├── mysqldump-no-binlog.test │ │ ├── mysqldump-system,win.rdiff │ │ ├── mysqldump-system.result │ │ ├── mysqldump-system.test │ │ ├── mysqldump-timing.result │ │ ├── mysqldump-timing.test │ │ ├── mysqldump-utf8mb4.result │ │ ├── mysqldump-utf8mb4.test │ │ ├── mysqldump.opt │ │ ├── mysqldump.result │ │ ├── mysqldump.test │ │ ├── mysqldump_restore.result │ │ ├── mysqldump_restore.test │ │ ├── mysqlhotcopy_myisam.result │ │ ├── mysqlhotcopy_myisam.test │ │ ├── mysqlshow.result │ │ ├── mysqlshow.test │ │ ├── mysqlslap.opt │ │ ├── mysqlslap.result │ │ ├── mysqlslap.test │ │ ├── mysqltest.result │ │ ├── mysqltest.test │ │ ├── mysqltest_256.result │ │ ├── mysqltest_256.test │ │ ├── mysqltest_cont_on_error.result │ │ ├── mysqltest_cont_on_error.test │ │ ├── mysqltest_ps.result │ │ ├── mysqltest_ps.test │ │ ├── mysqltest_tracking_info.result │ │ ├── mysqltest_tracking_info.test │ │ ├── named_pipe-master.opt │ │ ├── named_pipe.result │ │ ├── named_pipe.test │ │ ├── negation_elimination.result │ │ ├── negation_elimination.test │ │ ├── nested_profiling.result │ │ ├── nested_profiling.test │ │ ├── no-threads-master.opt │ │ ├── no-threads.result │ │ ├── no-threads.test │ │ ├── no_binlog.result │ │ ├── no_binlog.test │ │ ├── non_blocking_api.result │ │ ├── non_blocking_api.test │ │ ├── not_embedded_server.result │ │ ├── not_embedded_server.test │ │ ├── not_partition.result │ │ ├── not_partition.test │ │ ├── null.result │ │ ├── null.test │ │ ├── null_key.result │ │ ├── null_key.test │ │ ├── odbc.result │ │ ├── odbc.test │ │ ├── olap.result │ │ ├── olap.test │ │ ├── old-mode-master.opt │ │ ├── old-mode.result │ │ ├── old-mode.test │ │ ├── openssl_1.result │ │ ├── openssl_1.test │ │ ├── openssl_6975,tlsv10.result │ │ ├── openssl_6975,tlsv12.result │ │ ├── openssl_6975.combinations │ │ ├── openssl_6975.test │ │ ├── opt_trace.result │ │ ├── opt_trace.test │ │ ├── opt_trace_default.result │ │ ├── opt_trace_default.test │ │ ├── opt_trace_index_merge.result │ │ ├── opt_trace_index_merge.test │ │ ├── opt_trace_index_merge_innodb.result │ │ ├── opt_trace_index_merge_innodb.test │ │ ├── opt_trace_security.result │ │ ├── opt_trace_security.test │ │ ├── opt_trace_ucs2.result │ │ ├── opt_trace_ucs2.test │ │ ├── opt_tvc.result │ │ ├── opt_tvc.test │ │ ├── order_by-mdev-10122.result │ │ ├── order_by-mdev-10122.test │ │ ├── order_by.result │ │ ├── order_by.test │ │ ├── order_by_innodb.result │ │ ├── order_by_innodb.test │ │ ├── order_by_optimizer.result │ │ ├── order_by_optimizer.test │ │ ├── order_by_optimizer_innodb.result │ │ ├── order_by_optimizer_innodb.test │ │ ├── order_by_pack_big.result │ │ ├── order_by_pack_big.test │ │ ├── order_by_sortkey.result │ │ ├── order_by_sortkey.test │ │ ├── order_by_zerolength-4285.result │ │ ├── order_by_zerolength-4285.test │ │ ├── order_fill_sortbuf.result │ │ ├── order_fill_sortbuf.test │ │ ├── outfile.result │ │ ├── outfile.test │ │ ├── outfile_loaddata.result │ │ ├── outfile_loaddata.test │ │ ├── overflow.result │ │ ├── overflow.test │ │ ├── packet.result │ │ ├── packet.test │ │ ├── parser.result │ │ ├── parser.test │ │ ├── parser_bug21114_innodb.result │ │ ├── parser_bug21114_innodb.test │ │ ├── parser_not_embedded.result │ │ ├── parser_not_embedded.test │ │ ├── parser_stack.result │ │ ├── parser_stack.test │ │ ├── partition-master.opt │ │ ├── partition.result │ │ ├── partition.test │ │ ├── partition_alter.result │ │ ├── partition_alter.test │ │ ├── partition_binlog.result │ │ ├── partition_binlog.test │ │ ├── partition_binlog_stmt.result │ │ ├── partition_binlog_stmt.test │ │ ├── partition_blackhole.result │ │ ├── partition_blackhole.test │ │ ├── partition_bug18198.result │ │ ├── partition_bug18198.test │ │ ├── partition_cache.result │ │ ├── partition_cache.test │ │ ├── partition_cache_innodb.result │ │ ├── partition_cache_innodb.test │ │ ├── partition_cache_myisam.result │ │ ├── partition_cache_myisam.test │ │ ├── partition_charset.result │ │ ├── partition_charset.test │ │ ├── partition_column.result │ │ ├── partition_column.test │ │ ├── partition_column_prune.result │ │ ├── partition_column_prune.test │ │ ├── partition_csv.result │ │ ├── partition_csv.test │ │ ├── partition_datatype.result │ │ ├── partition_datatype.test │ │ ├── partition_debug_sync.result │ │ ├── partition_debug_sync.test │ │ ├── partition_default.result │ │ ├── partition_default.test │ │ ├── partition_disabled-master.opt │ │ ├── partition_disabled.result │ │ ├── partition_disabled.test │ │ ├── partition_error.result │ │ ├── partition_error.test │ │ ├── partition_example.opt │ │ ├── partition_example.result │ │ ├── partition_example.test │ │ ├── partition_exchange-master.opt │ │ ├── partition_exchange.result │ │ ├── partition_exchange.test │ │ ├── partition_explicit_prune.result │ │ ├── partition_explicit_prune.test │ │ ├── partition_grant.result │ │ ├── partition_grant.test │ │ ├── partition_hash.result │ │ ├── partition_hash.test │ │ ├── partition_innodb.result │ │ ├── partition_innodb.test │ │ ├── partition_innodb_plugin.result │ │ ├── partition_innodb_plugin.test │ │ ├── partition_innodb_semi_consistent-master.opt │ │ ├── partition_innodb_semi_consistent.result │ │ ├── partition_innodb_semi_consistent.test │ │ ├── partition_innodb_stmt.result │ │ ├── partition_innodb_stmt.test │ │ ├── partition_key_cache.result │ │ ├── partition_key_cache.test │ │ ├── partition_list.result │ │ ├── partition_list.test │ │ ├── partition_mgm.result │ │ ├── partition_mgm.test │ │ ├── partition_mgm_err.result │ │ ├── partition_mgm_err.test │ │ ├── partition_mgm_err2.result │ │ ├── partition_mgm_err2.test │ │ ├── partition_mrr_aria.result │ │ ├── partition_mrr_aria.test │ │ ├── partition_mrr_innodb.result │ │ ├── partition_mrr_innodb.test │ │ ├── partition_mrr_myisam.result │ │ ├── partition_mrr_myisam.test │ │ ├── partition_myisam.result │ │ ├── partition_myisam.test │ │ ├── partition_not_blackhole-master.opt │ │ ├── partition_not_blackhole.result │ │ ├── partition_not_blackhole.test │ │ ├── partition_not_windows-master.opt │ │ ├── partition_not_windows.result │ │ ├── partition_not_windows.test │ │ ├── partition_open_files_limit-master.opt │ │ ├── partition_open_files_limit.result │ │ ├── partition_open_files_limit.test │ │ ├── partition_order.result │ │ ├── partition_order.test │ │ ├── partition_pruning.result │ │ ├── partition_pruning.test │ │ ├── partition_range.result │ │ ├── partition_range.test │ │ ├── partition_rename_longfilename.result │ │ ├── partition_rename_longfilename.test │ │ ├── partition_sp.result │ │ ├── partition_sp.test │ │ ├── partition_symlink.result │ │ ├── partition_symlink.test │ │ ├── partition_sync.result │ │ ├── partition_sync.test │ │ ├── partition_truncate.result │ │ ├── partition_truncate.test │ │ ├── partition_ucs2.result │ │ ├── partition_ucs2.test │ │ ├── partition_utf8-debug.result │ │ ├── partition_utf8-debug.test │ │ ├── partition_utf8.result │ │ ├── partition_utf8.test │ │ ├── partition_windows.result │ │ ├── partition_windows.test │ │ ├── password_expiration.result │ │ ├── password_expiration.test │ │ ├── password_expiration_unix_socket.result │ │ ├── password_expiration_unix_socket.test │ │ ├── percona_nonflushing_analyze_debug.result │ │ ├── percona_nonflushing_analyze_debug.test │ │ ├── perror-win.result │ │ ├── perror-win.test │ │ ├── perror.result │ │ ├── perror.test │ │ ├── plugin.opt │ │ ├── plugin.result │ │ ├── plugin.test │ │ ├── plugin_auth.result │ │ ├── plugin_auth.test │ │ ├── plugin_auth_qa.result │ │ ├── plugin_auth_qa.test │ │ ├── plugin_auth_qa_1.result │ │ ├── plugin_auth_qa_1.test │ │ ├── plugin_auth_qa_2-master.opt │ │ ├── plugin_auth_qa_2.result │ │ ├── plugin_auth_qa_2.test │ │ ├── plugin_auth_qa_3-master.opt │ │ ├── plugin_auth_qa_3.result │ │ ├── plugin_auth_qa_3.test │ │ ├── plugin_innodb.opt │ │ ├── plugin_innodb.result │ │ ├── plugin_innodb.test │ │ ├── plugin_load.opt │ │ ├── plugin_load.result │ │ ├── plugin_load.test │ │ ├── plugin_load_option.opt │ │ ├── plugin_load_option.result │ │ ├── plugin_load_option.test │ │ ├── plugin_loaderr.opt │ │ ├── plugin_loaderr.result │ │ ├── plugin_loaderr.test │ │ ├── plugin_maturity-master.opt │ │ ├── plugin_maturity.result │ │ ├── plugin_maturity.test │ │ ├── plugin_not_embedded.opt │ │ ├── plugin_not_embedded.result │ │ ├── plugin_not_embedded.test │ │ ├── plugin_vars.result │ │ ├── plugin_vars.test │ │ ├── pool_of_threads.cnf │ │ ├── pool_of_threads.result │ │ ├── pool_of_threads.test │ │ ├── precedence.result │ │ ├── precedence.test │ │ ├── precedence_bugs.result │ │ ├── precedence_bugs.test │ │ ├── preload.result │ │ ├── preload.test │ │ ├── prepare.result │ │ ├── prepare.test │ │ ├── processlist.result │ │ ├── processlist.test │ │ ├── processlist_notembedded.result │ │ ├── processlist_notembedded.test │ │ ├── profiling.result │ │ ├── profiling.test │ │ ├── progress_976225.result │ │ ├── progress_976225.test │ │ ├── ps-master.opt │ │ ├── ps.result │ │ ├── ps.test │ │ ├── ps_10nestset.result │ │ ├── ps_10nestset.test │ │ ├── ps_11bugs.result │ │ ├── ps_11bugs.test │ │ ├── ps_1general.result │ │ ├── ps_1general.test │ │ ├── ps_2myisam.result │ │ ├── ps_2myisam.test │ │ ├── ps_3innodb-master.opt │ │ ├── ps_3innodb.result │ │ ├── ps_3innodb.test │ │ ├── ps_4heap.result │ │ ├── ps_4heap.test │ │ ├── ps_5merge.result │ │ ├── ps_5merge.test │ │ ├── ps_change_master.result │ │ ├── ps_change_master.test │ │ ├── ps_ddl.result │ │ ├── ps_ddl.test │ │ ├── ps_ddl1.result │ │ ├── ps_ddl1.test │ │ ├── ps_error.result │ │ ├── ps_error.test │ │ ├── ps_grant.result │ │ ├── ps_grant.test │ │ ├── ps_innodb.result │ │ ├── ps_innodb.test │ │ ├── ps_max_subselect-5113.result │ │ ├── ps_max_subselect-5113.test │ │ ├── ps_missed_cmds.result │ │ ├── ps_missed_cmds.test │ │ ├── ps_missed_cmds_bin_prot.result │ │ ├── ps_missed_cmds_bin_prot.test │ │ ├── ps_missed_cmds_bin_prot_not_embedded.result │ │ ├── ps_missed_cmds_bin_prot_not_embedded.test │ │ ├── ps_missed_cmds_not_embedded.result │ │ ├── ps_missed_cmds_not_embedded.test │ │ ├── ps_not_windows.result │ │ ├── ps_not_windows.test │ │ ├── ps_qc_innodb.result │ │ ├── ps_qc_innodb.test │ │ ├── ps_show_log.result │ │ ├── ps_show_log.test │ │ ├── query_cache.result │ │ ├── query_cache.test │ │ ├── query_cache_28249.result │ │ ├── query_cache_28249.test │ │ ├── query_cache_debug.result │ │ ├── query_cache_debug.test │ │ ├── query_cache_innodb.result │ │ ├── query_cache_innodb.test │ │ ├── query_cache_merge.result │ │ ├── query_cache_merge.test │ │ ├── query_cache_notembedded-master.opt │ │ ├── query_cache_notembedded.result │ │ ├── query_cache_notembedded.test │ │ ├── query_cache_ps_no_prot.result │ │ ├── query_cache_ps_no_prot.test │ │ ├── query_cache_ps_ps_prot.result │ │ ├── query_cache_ps_ps_prot.test │ │ ├── query_cache_with_views.result │ │ ├── query_cache_with_views.test │ │ ├── quick_select_4161.result │ │ ├── quick_select_4161.test │ │ ├── range.result │ │ ├── range.test │ │ ├── range_debug.result │ │ ├── range_debug.test │ │ ├── range_innodb.result │ │ ├── range_innodb.test │ │ ├── range_interrupted-13751.result │ │ ├── range_interrupted-13751.test │ │ ├── range_mrr_icp.result │ │ ├── range_mrr_icp.test │ │ ├── range_notembedded.result │ │ ├── range_notembedded.test │ │ ├── range_vs_index_merge.result │ │ ├── range_vs_index_merge.test │ │ ├── range_vs_index_merge_innodb.result │ │ ├── range_vs_index_merge_innodb.test │ │ ├── read_many_rows_innodb.result │ │ ├── read_many_rows_innodb.test │ │ ├── read_only.result │ │ ├── read_only.test │ │ ├── read_only_innodb.result │ │ ├── read_only_innodb.test │ │ ├── rename.result │ │ ├── rename.test │ │ ├── renamedb.result │ │ ├── renamedb.test │ │ ├── reopen_temp_table.result │ │ ├── reopen_temp_table.test │ │ ├── repair.result │ │ ├── repair.test │ │ ├── repair_symlink-5543.result │ │ ├── repair_symlink-5543.test │ │ ├── replace.result │ │ ├── replace.test │ │ ├── replace_returning.result │ │ ├── replace_returning.test │ │ ├── replace_returning_datatypes.result │ │ ├── replace_returning_datatypes.test │ │ ├── replace_returning_err.result │ │ ├── replace_returning_err.test │ │ ├── require_secure_transport-master.opt │ │ ├── require_secure_transport.result │ │ ├── require_secure_transport.test │ │ ├── reset_connection.result │ │ ├── reset_connection.test │ │ ├── rollback.result │ │ ├── rollback.test │ │ ├── round.result │ │ ├── round.test │ │ ├── row-checksum-master.opt │ │ ├── row-checksum-old-master.opt │ │ ├── row-checksum-old.result │ │ ├── row-checksum-old.test │ │ ├── row-checksum.opt │ │ ├── row-checksum.result │ │ ├── row-checksum.test │ │ ├── row.result │ │ ├── row.test │ │ ├── rowid_filter.result │ │ ├── rowid_filter.test │ │ ├── rowid_filter_innodb.result │ │ ├── rowid_filter_innodb.test │ │ ├── rowid_filter_innodb_debug.result │ │ ├── rowid_filter_innodb_debug.test │ │ ├── rowid_filter_myisam.result │ │ ├── rowid_filter_myisam.test │ │ ├── rowid_filter_myisam_debug.result │ │ ├── rowid_filter_myisam_debug.test │ │ ├── rowid_order_innodb.result │ │ ├── rowid_order_innodb.test │ │ ├── rownum.result │ │ ├── rownum.test │ │ ├── rpl_mysql_upgrade_slave_repo_check.result │ │ ├── rpl_mysql_upgrade_slave_repo_check.test │ │ ├── rpl_mysqldump_slave.result │ │ ├── rpl_mysqldump_slave.test │ │ ├── schema.result │ │ ├── schema.test │ │ ├── second_frac-9175.result │ │ ├── second_frac-9175.test │ │ ├── secure_file_priv_win-master.opt │ │ ├── secure_file_priv_win.result │ │ ├── secure_file_priv_win.test │ │ ├── select.result │ │ ├── select.test │ │ ├── select_debug.result │ │ ├── select_debug.test │ │ ├── select_found.result │ │ ├── select_found.test │ │ ├── select_jcl6.result │ │ ├── select_jcl6.test │ │ ├── select_pkeycache-master.opt │ │ ├── select_pkeycache.result │ │ ├── select_pkeycache.test │ │ ├── select_safe.result │ │ ├── select_safe.test │ │ ├── selectivity.result │ │ ├── selectivity.test │ │ ├── selectivity_innodb.result │ │ ├── selectivity_innodb.test │ │ ├── selectivity_no_engine.result │ │ ├── selectivity_no_engine.test │ │ ├── servers.result │ │ ├── servers.test │ │ ├── session_tracker_last_gtid.result │ │ ├── session_tracker_last_gtid.test │ │ ├── set_operation.result │ │ ├── set_operation.test │ │ ├── set_operation_oracle.result │ │ ├── set_operation_oracle.test │ │ ├── set_password.result │ │ ├── set_password.test │ │ ├── set_statement.result │ │ ├── set_statement.test │ │ ├── set_statement_debug.result │ │ ├── set_statement_debug.test │ │ ├── set_statement_notembedded.result │ │ ├── set_statement_notembedded.test │ │ ├── set_statement_notembedded_binlog.result │ │ ├── set_statement_notembedded_binlog.test │ │ ├── set_statement_profiling.result │ │ ├── set_statement_profiling.test │ │ ├── show.result │ │ ├── show.test │ │ ├── show_bad_definer-5553.result │ │ ├── show_bad_definer-5553.test │ │ ├── show_check-master.opt │ │ ├── show_check.result │ │ ├── show_check.test │ │ ├── show_create_user.result │ │ ├── show_create_user.test │ │ ├── show_explain.opt │ │ ├── show_explain.result │ │ ├── show_explain.test │ │ ├── show_explain_non_select.result │ │ ├── show_explain_non_select.test │ │ ├── show_explain_ps.result │ │ ├── show_explain_ps.test │ │ ├── show_function_with_pad_char_to_full_length.result │ │ ├── show_function_with_pad_char_to_full_length.test │ │ ├── show_profile.result │ │ ├── show_profile.test │ │ ├── show_row_order-9226.result │ │ ├── show_row_order-9226.test │ │ ├── shutdown.result │ │ ├── shutdown.test │ │ ├── shutdown_not_windows.combinations │ │ ├── shutdown_not_windows.result │ │ ├── shutdown_not_windows.test │ │ ├── sighup-6580.result │ │ ├── sighup-6580.test │ │ ├── signal.result │ │ ├── signal.test │ │ ├── signal_code.result │ │ ├── signal_code.test │ │ ├── signal_demo1.result │ │ ├── signal_demo1.test │ │ ├── signal_demo2.result │ │ ├── signal_demo2.test │ │ ├── signal_demo3.result │ │ ├── signal_demo3.test │ │ ├── signal_sqlmode.result │ │ ├── signal_sqlmode.test │ │ ├── simultaneous_assignment.result │ │ ├── simultaneous_assignment.test │ │ ├── single_delete_update.result │ │ ├── single_delete_update.test │ │ ├── single_delete_update_innodb.result │ │ ├── single_delete_update_innodb.test │ │ ├── skip_grants.opt │ │ ├── skip_grants.result │ │ ├── skip_grants.test │ │ ├── skip_log_bin-master.opt │ │ ├── skip_log_bin.result │ │ ├── skip_log_bin.test │ │ ├── skip_name_resolve-master.opt │ │ ├── skip_name_resolve.result │ │ ├── skip_name_resolve.test │ │ ├── slowlog_enospace-10508.result │ │ ├── slowlog_enospace-10508.test │ │ ├── sp-anchor-row-type-cursor.result │ │ ├── sp-anchor-row-type-cursor.test │ │ ├── sp-anchor-row-type-table.result │ │ ├── sp-anchor-row-type-table.test │ │ ├── sp-anchor-type.result │ │ ├── sp-anchor-type.test │ │ ├── sp-big.result │ │ ├── sp-big.test │ │ ├── sp-bugs.result │ │ ├── sp-bugs.test │ │ ├── sp-bugs2.result │ │ ├── sp-bugs2.test │ │ ├── sp-code.result │ │ ├── sp-code.test │ │ ├── sp-condition-handler.result │ │ ├── sp-condition-handler.test │ │ ├── sp-cursor.result │ │ ├── sp-cursor.test │ │ ├── sp-destruct.result │ │ ├── sp-destruct.test │ │ ├── sp-dynamic.result │ │ ├── sp-dynamic.test │ │ ├── sp-error.result │ │ ├── sp-error.test │ │ ├── sp-expr.result │ │ ├── sp-expr.test │ │ ├── sp-fib.result │ │ ├── sp-fib.test │ │ ├── sp-for-loop.result │ │ ├── sp-for-loop.test │ │ ├── sp-group.result │ │ ├── sp-group.test │ │ ├── sp-i_s_columns.result │ │ ├── sp-i_s_columns.test │ │ ├── sp-innodb.result │ │ ├── sp-innodb.test │ │ ├── sp-lock.result │ │ ├── sp-lock.test │ │ ├── sp-no-code.result │ │ ├── sp-no-code.test │ │ ├── sp-no-valgrind.result │ │ ├── sp-no-valgrind.test │ │ ├── sp-prelocking.result │ │ ├── sp-prelocking.test │ │ ├── sp-row-vs-var.inc │ │ ├── sp-row.result │ │ ├── sp-row.test │ │ ├── sp-security-anchor-type.result │ │ ├── sp-security-anchor-type.test │ │ ├── sp-security.result │ │ ├── sp-security.test │ │ ├── sp-threads.result │ │ ├── sp-threads.test │ │ ├── sp-ucs2.result │ │ ├── sp-ucs2.test │ │ ├── sp-vars.result │ │ ├── sp-vars.test │ │ ├── sp.result │ │ ├── sp.test │ │ ├── sp2.result │ │ ├── sp2.test │ │ ├── sp_gis.result │ │ ├── sp_gis.test │ │ ├── sp_missing_4665.result │ │ ├── sp_missing_4665.test │ │ ├── sp_notembedded.result │ │ ├── sp_notembedded.test │ │ ├── sp_stress_case.result │ │ ├── sp_stress_case.test │ │ ├── sp_sync.result │ │ ├── sp_sync.test │ │ ├── sp_trans.result │ │ ├── sp_trans.test │ │ ├── sp_trans_log.result │ │ ├── sp_trans_log.test │ │ ├── sql_mode.result │ │ ├── sql_mode.test │ │ ├── sql_safe_updates.opt │ │ ├── sql_safe_updates.result │ │ ├── sql_safe_updates.test │ │ ├── ssl-big.result │ │ ├── ssl-big.test │ │ ├── ssl.result │ │ ├── ssl.test │ │ ├── ssl_7937,nossl.result │ │ ├── ssl_7937.combinations │ │ ├── ssl_7937.result │ │ ├── ssl_7937.test │ │ ├── ssl_8k_key-master.opt │ │ ├── ssl_8k_key.result │ │ ├── ssl_8k_key.test │ │ ├── ssl_and_innodb.result │ │ ├── ssl_and_innodb.test │ │ ├── ssl_ca.result │ │ ├── ssl_ca.test │ │ ├── ssl_cipher.opt │ │ ├── ssl_cipher.result │ │ ├── ssl_cipher.test │ │ ├── ssl_compress.result │ │ ├── ssl_compress.test │ │ ├── ssl_connect.result │ │ ├── ssl_connect.test │ │ ├── ssl_crl.combinations │ │ ├── ssl_crl.result │ │ ├── ssl_crl.test │ │ ├── ssl_crl_clients.result │ │ ├── ssl_crl_clients.test │ │ ├── ssl_system_ca,bad.result │ │ ├── ssl_system_ca.combinations │ │ ├── ssl_system_ca.result │ │ ├── ssl_system_ca.test │ │ ├── ssl_timeout-9836.opt │ │ ├── ssl_timeout-9836.result │ │ ├── ssl_timeout-9836.test │ │ ├── ssl_timeout.result │ │ ├── ssl_timeout.test │ │ ├── ssl_verify_ip.opt │ │ ├── ssl_verify_ip.result │ │ ├── ssl_verify_ip.test │ │ ├── stack-crash.result │ │ ├── stack-crash.test │ │ ├── stat_tables-enospc.result │ │ ├── stat_tables-enospc.test │ │ ├── stat_tables.result │ │ ├── stat_tables.test │ │ ├── stat_tables_disabled.result │ │ ├── stat_tables_disabled.test │ │ ├── stat_tables_innodb.result │ │ ├── stat_tables_innodb.test │ │ ├── stat_tables_innodb_debug.result │ │ ├── stat_tables_innodb_debug.test │ │ ├── stat_tables_missing.result │ │ ├── stat_tables_missing.test │ │ ├── stat_tables_myisam_debug.result │ │ ├── stat_tables_myisam_debug.test │ │ ├── stat_tables_par.inc │ │ ├── stat_tables_par.result │ │ ├── stat_tables_par.test │ │ ├── stat_tables_par_innodb.result │ │ ├── stat_tables_par_innodb.test │ │ ├── stat_tables_partition.result │ │ ├── stat_tables_partition.test │ │ ├── stat_tables_rbr.result │ │ ├── stat_tables_rbr.test │ │ ├── stat_tables_repl.result │ │ ├── stat_tables_repl.test │ │ ├── statement-expr.result │ │ ├── statement-expr.test │ │ ├── statistics.result │ │ ├── statistics.test │ │ ├── statistics_close.result │ │ ├── statistics_close.test │ │ ├── statistics_index_crash-7362.result │ │ ├── statistics_index_crash-7362.test │ │ ├── status-master.opt │ │ ├── status.result │ │ ├── status.test │ │ ├── status2.result │ │ ├── status2.test │ │ ├── status_bug17954.result │ │ ├── status_bug17954.test │ │ ├── str_to_datetime_457.result │ │ ├── str_to_datetime_457.test │ │ ├── strict-master.opt │ │ ├── strict.result │ │ ├── strict.test │ │ ├── strict_autoinc_1myisam.result │ │ ├── strict_autoinc_1myisam.test │ │ ├── strict_autoinc_2innodb.result │ │ ├── strict_autoinc_2innodb.test │ │ ├── strict_autoinc_3heap.result │ │ ├── strict_autoinc_3heap.test │ │ ├── strings.result │ │ ├── strings.test │ │ ├── subselect-crash_15755.result │ │ ├── subselect-crash_15755.test │ │ ├── subselect.result │ │ ├── subselect.test │ │ ├── subselect2.result │ │ ├── subselect2.test │ │ ├── subselect3.inc │ │ ├── subselect3.result │ │ ├── subselect3.test │ │ ├── subselect3_jcl6.result │ │ ├── subselect3_jcl6.test │ │ ├── subselect4.result │ │ ├── subselect4.test │ │ ├── subselect_cache.result │ │ ├── subselect_cache.test │ │ ├── subselect_debug.result │ │ ├── subselect_debug.test │ │ ├── subselect_exists2in.result │ │ ├── subselect_exists2in.test │ │ ├── subselect_exists2in_costmat.result │ │ ├── subselect_exists2in_costmat.test │ │ ├── subselect_extra.result │ │ ├── subselect_extra.test │ │ ├── subselect_extra_no_semijoin.result │ │ ├── subselect_extra_no_semijoin.test │ │ ├── subselect_gis.result │ │ ├── subselect_gis.test │ │ ├── subselect_innodb.result │ │ ├── subselect_innodb.test │ │ ├── subselect_mat.result │ │ ├── subselect_mat.test │ │ ├── subselect_mat_cost-master.opt │ │ ├── subselect_mat_cost.result │ │ ├── subselect_mat_cost.test │ │ ├── subselect_mat_cost_bugs.result │ │ ├── subselect_mat_cost_bugs.test │ │ ├── subselect_no_exists_to_in.result │ │ ├── subselect_no_exists_to_in.test │ │ ├── subselect_no_mat.result │ │ ├── subselect_no_mat.test │ │ ├── subselect_no_opts.result │ │ ├── subselect_no_opts.test │ │ ├── subselect_no_scache.result │ │ ├── subselect_no_scache.test │ │ ├── subselect_no_semijoin.result │ │ ├── subselect_no_semijoin.test │ │ ├── subselect_notembedded.result │ │ ├── subselect_notembedded.test │ │ ├── subselect_nulls.result │ │ ├── subselect_nulls.test │ │ ├── subselect_partial_match.result │ │ ├── subselect_partial_match.test │ │ ├── subselect_sj.result │ │ ├── subselect_sj.test │ │ ├── subselect_sj2.result │ │ ├── subselect_sj2.test │ │ ├── subselect_sj2_jcl6.result │ │ ├── subselect_sj2_jcl6.test │ │ ├── subselect_sj2_mat.result │ │ ├── subselect_sj2_mat.test │ │ ├── subselect_sj_aria.result │ │ ├── subselect_sj_aria.test │ │ ├── subselect_sj_jcl6.result │ │ ├── subselect_sj_jcl6.test │ │ ├── subselect_sj_mat.result │ │ ├── subselect_sj_mat.test │ │ ├── subselect_sj_nonmerged.result │ │ ├── subselect_sj_nonmerged.test │ │ ├── sum_distinct-big.result │ │ ├── sum_distinct-big.test │ │ ├── sum_distinct.result │ │ ├── sum_distinct.test │ │ ├── symlink-aria-11902.result │ │ ├── symlink-aria-11902.test │ │ ├── symlink-myisam-11902.result │ │ ├── symlink-myisam-11902.test │ │ ├── symlink.result │ │ ├── symlink.test │ │ ├── synchronization.result │ │ ├── synchronization.test │ │ ├── sysdate_is_now-master.opt │ │ ├── sysdate_is_now.result │ │ ├── sysdate_is_now.test │ │ ├── system_mysql_db.result │ │ ├── system_mysql_db.test │ │ ├── system_mysql_db_507.result │ │ ├── system_mysql_db_507.test │ │ ├── system_mysql_db_error_log-master.opt │ │ ├── system_mysql_db_error_log.result │ │ ├── system_mysql_db_error_log.test │ │ ├── system_mysql_db_fix40123.result │ │ ├── system_mysql_db_fix40123.test │ │ ├── system_mysql_db_fix50030.result │ │ ├── system_mysql_db_fix50030.test │ │ ├── system_mysql_db_fix50117.result │ │ ├── system_mysql_db_fix50117.test │ │ ├── system_mysql_db_refs.result │ │ ├── system_mysql_db_refs.test │ │ ├── system_time_debug.result │ │ ├── system_time_debug.test │ │ ├── table_elim.result │ │ ├── table_elim.test │ │ ├── table_elim_debug.result │ │ ├── table_elim_debug.test │ │ ├── table_keyinfo-6838.result │ │ ├── table_keyinfo-6838.test │ │ ├── table_options-5867.opt │ │ ├── table_options-5867.result │ │ ├── table_options-5867.test │ │ ├── table_options.result │ │ ├── table_options.test │ │ ├── table_value_constr.result │ │ ├── table_value_constr.test │ │ ├── tablelock.result │ │ ├── tablelock.test │ │ ├── tablespace.result │ │ ├── tablespace.test │ │ ├── tc_heuristic_recover.result │ │ ├── tc_heuristic_recover.test │ │ ├── temp_table-master.opt │ │ ├── temp_table.result │ │ ├── temp_table.test │ │ ├── temp_table_frm.result │ │ ├── temp_table_frm.test │ │ ├── temp_table_symlink.result │ │ ├── temp_table_symlink.test │ │ ├── temporal_literal.result │ │ ├── temporal_literal.test │ │ ├── temporal_scale_4283.result │ │ ├── temporal_scale_4283.test │ │ ├── thread_id_overflow.result │ │ ├── thread_id_overflow.test │ │ ├── thread_pool_info.opt │ │ ├── thread_pool_info.result │ │ ├── thread_pool_info.test │ │ ├── timeout.result │ │ ├── timeout.test │ │ ├── timezone-master.opt │ │ ├── timezone.result │ │ ├── timezone.test │ │ ├── timezone2.result │ │ ├── timezone2.test │ │ ├── timezone3-master.opt │ │ ├── timezone3.result │ │ ├── timezone3.test │ │ ├── timezone4-master.opt │ │ ├── timezone4.result │ │ ├── timezone4.test │ │ ├── timezone_grant.result │ │ ├── timezone_grant.test │ │ ├── tls_version.opt │ │ ├── tls_version.result │ │ ├── tls_version.test │ │ ├── tls_version1.opt │ │ ├── tls_version1.result │ │ ├── tls_version1.test │ │ ├── tmp_table_count-7586.result │ │ ├── tmp_table_count-7586.test │ │ ├── tmp_table_error.result │ │ ├── tmp_table_error.test │ │ ├── trans_read_only-master.opt │ │ ├── trans_read_only.result │ │ ├── trans_read_only.test │ │ ├── transaction_timeout.result │ │ ├── transaction_timeout.test │ │ ├── trigger-compat.result │ │ ├── trigger-compat.test │ │ ├── trigger-trans.result │ │ ├── trigger-trans.test │ │ ├── trigger.result │ │ ├── trigger.test │ │ ├── trigger_no_defaults-11698.result │ │ ├── trigger_no_defaults-11698.test │ │ ├── trigger_notembedded.result │ │ ├── trigger_notembedded.test │ │ ├── trigger_null-8605.result │ │ ├── trigger_null-8605.test │ │ ├── trigger_wl3253.result │ │ ├── trigger_wl3253.test │ │ ├── truncate-stale-6500.result │ │ ├── truncate-stale-6500.test │ │ ├── truncate.result │ │ ├── truncate.test │ │ ├── truncate_badse.opt │ │ ├── truncate_badse.result │ │ ├── truncate_badse.test │ │ ├── truncate_coverage.result │ │ ├── truncate_coverage.test │ │ ├── truncate_notembedded.result │ │ ├── truncate_notembedded.test │ │ ├── type_binary.result │ │ ├── type_binary.test │ │ ├── type_bit.result │ │ ├── type_bit.test │ │ ├── type_bit_innodb.result │ │ ├── type_bit_innodb.test │ │ ├── type_blob.result │ │ ├── type_blob.test │ │ ├── type_date.result │ │ ├── type_date.test │ │ ├── type_date_round.result │ │ ├── type_date_round.test │ │ ├── type_datetime.result │ │ ├── type_datetime.test │ │ ├── type_datetime_hires.result │ │ ├── type_datetime_hires.test │ │ ├── type_datetime_round.result │ │ ├── type_datetime_round.test │ │ ├── type_decimal.result │ │ ├── type_decimal.test │ │ ├── type_enum.result │ │ ├── type_enum.test │ │ ├── type_float.result │ │ ├── type_float.test │ │ ├── type_hex_hybrid.result │ │ ├── type_hex_hybrid.test │ │ ├── type_int.result │ │ ├── type_int.test │ │ ├── type_interval.result │ │ ├── type_interval.test │ │ ├── type_json.result │ │ ├── type_json.test │ │ ├── type_nchar.result │ │ ├── type_nchar.test │ │ ├── type_newdecimal-big.result │ │ ├── type_newdecimal-big.test │ │ ├── type_newdecimal.result │ │ ├── type_newdecimal.test │ │ ├── type_num.result │ │ ├── type_num.test │ │ ├── type_num_innodb.result │ │ ├── type_num_innodb.test │ │ ├── type_ranges.result │ │ ├── type_ranges.test │ │ ├── type_row.result │ │ ├── type_row.test │ │ ├── type_set.result │ │ ├── type_set.test │ │ ├── type_temporal_innodb.result │ │ ├── type_temporal_innodb.test │ │ ├── type_temporal_mariadb53.result │ │ ├── type_temporal_mariadb53.test │ │ ├── type_temporal_mysql56.result │ │ ├── type_temporal_mysql56.test │ │ ├── type_temporal_mysql56_debug.result │ │ ├── type_temporal_mysql56_debug.test │ │ ├── type_time.result │ │ ├── type_time.test │ │ ├── type_time_6065.result │ │ ├── type_time_6065.test │ │ ├── type_time_hires.result │ │ ├── type_time_hires.test │ │ ├── type_time_round.result │ │ ├── type_time_round.test │ │ ├── type_timestamp.result │ │ ├── type_timestamp.test │ │ ├── type_timestamp_hires.result │ │ ├── type_timestamp_hires.test │ │ ├── type_timestamp_round.result │ │ ├── type_timestamp_round.test │ │ ├── type_uint.result │ │ ├── type_uint.test │ │ ├── type_varchar.opt │ │ ├── type_varchar.result │ │ ├── type_varchar.test │ │ ├── type_varchar_mysql41.result │ │ ├── type_varchar_mysql41.test │ │ ├── type_year.result │ │ ├── type_year.test │ │ ├── udf.result │ │ ├── udf.test │ │ ├── udf_debug_sync.result │ │ ├── udf_debug_sync.test │ │ ├── udf_notembedded.result │ │ ├── udf_notembedded.test │ │ ├── udf_query_cache.result │ │ ├── udf_query_cache.test │ │ ├── udf_skip_grants-master.opt │ │ ├── udf_skip_grants.result │ │ ├── udf_skip_grants.test │ │ ├── union-master.opt │ │ ├── union.result │ │ ├── union.test │ │ ├── union_crash-714.result │ │ ├── union_crash-714.test │ │ ├── union_innodb.result │ │ ├── union_innodb.test │ │ ├── unique.result │ │ ├── unique.test │ │ ├── unsafe_binlog_innodb.result │ │ ├── unsafe_binlog_innodb.test │ │ ├── update.result │ │ ├── update.test │ │ ├── update_ignore_216.result │ │ ├── update_ignore_216.test │ │ ├── update_innodb.result │ │ ├── update_innodb.test │ │ ├── update_use_source.result │ │ ├── update_use_source.test │ │ ├── upgrade.opt │ │ ├── upgrade.result │ │ ├── upgrade.test │ │ ├── upgrade_MDEV-19650.result │ │ ├── upgrade_MDEV-19650.test │ │ ├── upgrade_MDEV-23102-1.result │ │ ├── upgrade_MDEV-23102-1.test │ │ ├── upgrade_MDEV-23102-2.result │ │ ├── upgrade_MDEV-23102-2.test │ │ ├── upgrade_geometrycolumn_procedure_definer.result │ │ ├── upgrade_geometrycolumn_procedure_definer.test │ │ ├── upgrade_mdev_24363.result │ │ ├── upgrade_mdev_24363.test │ │ ├── user_limits-master.opt │ │ ├── user_limits.result │ │ ├── user_limits.test │ │ ├── user_var-binlog.result │ │ ├── user_var-binlog.test │ │ ├── user_var.result │ │ ├── user_var.test │ │ ├── userstat-badlogin-4824.result │ │ ├── userstat-badlogin-4824.test │ │ ├── userstat.opt │ │ ├── userstat.result │ │ ├── userstat.test │ │ ├── varbinary.result │ │ ├── varbinary.test │ │ ├── variables-master.opt │ │ ├── variables-notembedded-master.opt │ │ ├── variables-notembedded.result │ │ ├── variables-notembedded.test │ │ ├── variables.result │ │ ├── variables.test │ │ ├── variables_community.result │ │ ├── variables_community.test │ │ ├── view.result │ │ ├── view.test │ │ ├── view_alias.result │ │ ├── view_alias.test │ │ ├── view_debug.result │ │ ├── view_debug.test │ │ ├── view_grant.result │ │ ├── view_grant.test │ │ ├── wait_timeout.result │ │ ├── wait_timeout.test │ │ ├── warnings-master.opt │ │ ├── warnings.result │ │ ├── warnings.test │ │ ├── warnings_debug.result │ │ ├── warnings_debug.test │ │ ├── warnings_engine_disabled.result │ │ ├── warnings_engine_disabled.test │ │ ├── win.result │ │ ├── win.test │ │ ├── win_as_arg_to_aggregate_func.result │ │ ├── win_as_arg_to_aggregate_func.test │ │ ├── win_avg.result │ │ ├── win_avg.test │ │ ├── win_big-mdev-10092.result │ │ ├── win_big-mdev-10092.test │ │ ├── win_big-mdev-11697.result │ │ ├── win_big-mdev-11697.test │ │ ├── win_big.result │ │ ├── win_big.test │ │ ├── win_bit.result │ │ ├── win_bit.test │ │ ├── win_empty_over.result │ │ ├── win_empty_over.test │ │ ├── win_first_last_value.result │ │ ├── win_first_last_value.test │ │ ├── win_i_s.result │ │ ├── win_i_s.test │ │ ├── win_insert_select.result │ │ ├── win_insert_select.test │ │ ├── win_lead_lag.result │ │ ├── win_lead_lag.test │ │ ├── win_min_max.result │ │ ├── win_min_max.test │ │ ├── win_nth_value.result │ │ ├── win_nth_value.test │ │ ├── win_ntile.result │ │ ├── win_ntile.test │ │ ├── win_orderby.result │ │ ├── win_orderby.test │ │ ├── win_percent_cume.result │ │ ├── win_percent_cume.test │ │ ├── win_percentile.result │ │ ├── win_percentile.test │ │ ├── win_rank.result │ │ ├── win_rank.test │ │ ├── win_std.result │ │ ├── win_std.test │ │ ├── win_sum.result │ │ ├── win_sum.test │ │ ├── windows.result │ │ ├── windows.test │ │ ├── windows_debug.result │ │ ├── windows_debug.test │ │ ├── wl4435_generated.inc │ │ ├── wolfssl.opt │ │ ├── wolfssl.result │ │ ├── wolfssl.test │ │ ├── xa.result │ │ ├── xa.test │ │ ├── xa_binlog.result │ │ ├── xa_binlog.test │ │ ├── xa_prepared_binlog_off-master.opt │ │ ├── xa_prepared_binlog_off.result │ │ ├── xa_prepared_binlog_off.test │ │ ├── xa_sync.result │ │ ├── xa_sync.test │ │ ├── xml.result │ │ ├── xml.test │ │ ├── xtradb_mrr.result │ │ └── xtradb_mrr.test │ ├── mariadb-stress-test.pl │ ├── mariadb-test-run.pl │ ├── mtr.out-of-source │ ├── purify.supp │ ├── std_data/ │ │ ├── 14897.frm │ │ ├── Moscow_leap │ │ ├── bad2_master.info │ │ ├── bad3_master.info │ │ ├── bad4_master.info │ │ ├── bad5_master.info │ │ ├── bad6_master.info │ │ ├── bad_master.info │ │ ├── bad_row_type.MYD │ │ ├── bad_row_type.MYI │ │ ├── bad_row_type.frm │ │ ├── binlog-header.binlog │ │ ├── binlog_savepoint.000001 │ │ ├── binlog_transaction.000001 │ │ ├── bug11747416_32228_binlog.000001 │ │ ├── bug15328.cnf │ │ ├── bug16266.000001 │ │ ├── bug19371.MYD │ │ ├── bug19371.MYI │ │ ├── bug19371.frm │ │ ├── bug30435_10k_items.txt │ │ ├── bug30435_5k.txt │ │ ├── bug33029-slave-relay-bin.000001 │ │ ├── bug36055.MYD │ │ ├── bug36055.MYI │ │ ├── bug36055.frm │ │ ├── bug37631.MYD │ │ ├── bug37631.MYI │ │ ├── bug37631.frm │ │ ├── bug40482-bin.000001 │ │ ├── bug46565.ARZ │ │ ├── bug46565.frm │ │ ├── bug47012.ARM │ │ ├── bug47012.ARZ │ │ ├── bug47012.frm │ │ ├── bug47142_master-bin.000001 │ │ ├── bug47205.frm │ │ ├── bug48265.frm │ │ ├── bug48449.frm │ │ ├── bug48633.ARM │ │ ├── bug48633.ARZ │ │ ├── bug48633.frm │ │ ├── bug49823.CSM │ │ ├── bug49823.CSV │ │ ├── bug49823.frm │ │ ├── bug887051.txt │ │ ├── cacert.pem │ │ ├── cakey.pem │ │ ├── capath/ │ │ │ └── ed1f42db.0 │ │ ├── charset_utf8.txt │ │ ├── checkDBI_DBD-MariaDB.pl │ │ ├── client-cert.crl │ │ ├── client-cert.pem │ │ ├── client-certkey.pem │ │ ├── client-key.pem │ │ ├── cluster_7022_table.MYD │ │ ├── cluster_7022_table.MYI │ │ ├── cluster_7022_table.frm │ │ ├── corrupt-relay-bin.000624 │ │ ├── corrupt_t1#P#p1.MYI │ │ ├── corrupt_t1.MYI │ │ ├── crldir/ │ │ │ └── ed1f42db.r0 │ │ ├── ctype_upgrade/ │ │ │ ├── maria050313_ucs2_croatian_ci_def.MYD │ │ │ ├── maria050313_ucs2_croatian_ci_def.MYI │ │ │ ├── maria050313_ucs2_croatian_ci_def.frm │ │ │ ├── maria050313_utf8_croatian_ci.MYD │ │ │ ├── maria050313_utf8_croatian_ci.MYI │ │ │ ├── maria050313_utf8_croatian_ci.frm │ │ │ ├── maria050533_xxx_croatian_ci.MYD │ │ │ ├── maria050533_xxx_croatian_ci.MYI │ │ │ ├── maria050533_xxx_croatian_ci.frm │ │ │ ├── maria100004_xxx_croatian_ci.MYD │ │ │ ├── maria100004_xxx_croatian_ci.MYI │ │ │ ├── maria100004_xxx_croatian_ci.frm │ │ │ ├── mysql050614_xxx_croatian_ci.MYD │ │ │ ├── mysql050614_xxx_croatian_ci.MYI │ │ │ └── mysql050614_xxx_croatian_ci.frm │ │ ├── des_key_file │ │ ├── empty_file │ │ ├── frm/ │ │ │ ├── mdev16518.frm │ │ │ └── t1.frm │ │ ├── funcs_1/ │ │ │ ├── innodb_tb1.txt │ │ │ ├── innodb_tb2.txt │ │ │ ├── innodb_tb3.txt │ │ │ ├── innodb_tb4.txt │ │ │ ├── load_file.txt │ │ │ ├── memory_tb1.txt │ │ │ ├── memory_tb2.txt │ │ │ ├── memory_tb3.txt │ │ │ ├── memory_tb4.txt │ │ │ ├── myisam_tb1.txt │ │ │ ├── myisam_tb2.txt │ │ │ ├── myisam_tb3.txt │ │ │ ├── myisam_tb4.txt │ │ │ ├── t3.txt │ │ │ ├── t4.txt │ │ │ ├── t7.txt │ │ │ └── t9.txt │ │ ├── galera-cert.pem │ │ ├── galera-key.pem │ │ ├── galera-upgrade-ca-cert.pem │ │ ├── galera-upgrade-server-cert.pem │ │ ├── galera-upgrade-server-key.pem │ │ ├── galera_certs/ │ │ │ ├── INFORMATION │ │ │ ├── galera.1.crt │ │ │ ├── galera.1.csr │ │ │ ├── galera.1.key │ │ │ ├── galera.2.crt │ │ │ ├── galera.2.csr │ │ │ ├── galera.2.key │ │ │ ├── galera.root.crt │ │ │ ├── galera.root.key │ │ │ └── galera.root.srl │ │ ├── host_old.MYD │ │ ├── host_old.MYI │ │ ├── host_old.frm │ │ ├── init_file_longline_3816.sql │ │ ├── intersect-bug50389.tsv │ │ ├── keys.txt │ │ ├── keys2.txt │ │ ├── keys3.txt │ │ ├── ldml/ │ │ │ ├── Index.xml │ │ │ ├── ascii2.xml │ │ │ └── latin1.xml │ │ ├── loaddata/ │ │ │ ├── mdev-11079.txt │ │ │ ├── mdev-11343.txt │ │ │ ├── mdev-11631.txt │ │ │ ├── mdev-15497.txt │ │ │ ├── mdev12696.xml │ │ │ ├── mdev14628a.xml │ │ │ ├── mdev14628b.xml │ │ │ ├── mdev8711.txt │ │ │ ├── mdev9823.ujis.txt │ │ │ ├── mdev9823.utf8mb4.txt │ │ │ ├── mdev9824.txt │ │ │ ├── mdev9842.txt │ │ │ ├── mdev9874.xml │ │ │ └── nl.txt │ │ ├── logkey.txt │ │ ├── long_table_name.MYD │ │ ├── long_table_name.MYI │ │ ├── long_table_name.frm │ │ ├── mariadb-5.5-binlog.000001 │ │ ├── mariadb-conv/ │ │ │ ├── file01.utf16.txt │ │ │ ├── file01.utf8.txt │ │ │ └── file02.latin1.txt │ │ ├── mariadb53_temporal/ │ │ │ ├── mariadb5312_datetime.frm │ │ │ ├── mariadb5312_time.frm │ │ │ └── mariadb5312_timestamp.frm │ │ ├── master-bin.000001 │ │ ├── mdev-28727-pet4.frm │ │ ├── mdev-4645-binlog_checksum.binlog │ │ ├── mdev-4645-binlog_group_id.binlog │ │ ├── mdev-4645-binlog_group_id_checksum.binlog │ │ ├── mdev-4645-binlog_none.binlog │ │ ├── mdev11084.frm │ │ ├── mdev11084.par │ │ ├── mdev11084.part1.MYD │ │ ├── mdev11084.part1.MYI │ │ ├── mdev17909#P#p20181029.MYD │ │ ├── mdev17909#P#p20181029.MYI │ │ ├── mdev17909#P#p20181128.MYD │ │ ├── mdev17909#P#p20181128.MYI │ │ ├── mdev17909.frm │ │ ├── mdev17909.par │ │ ├── mdev29078-mysql-bin.000001 │ │ ├── mdev5029_1.frm │ │ ├── mdev5029_2.MAD │ │ ├── mdev5029_2.MAI │ │ ├── mdev5029_2.frm │ │ ├── mdev6020-mysql-bin.000001 │ │ ├── mysql5613mysql/ │ │ │ ├── README │ │ │ ├── columns_priv.MYD │ │ │ ├── columns_priv.MYI │ │ │ ├── columns_priv.frm │ │ │ ├── db.MYD │ │ │ ├── db.MYI │ │ │ ├── db.frm │ │ │ ├── event.MYD │ │ │ ├── event.MYI │ │ │ ├── event.frm │ │ │ ├── func.MYD │ │ │ ├── func.MYI │ │ │ ├── func.frm │ │ │ ├── plugin.MYD │ │ │ ├── plugin.MYI │ │ │ ├── plugin.frm │ │ │ ├── proc.MYD │ │ │ ├── proc.MYI │ │ │ ├── proc.frm │ │ │ ├── procs_priv.MYD │ │ │ ├── procs_priv.MYI │ │ │ ├── procs_priv.frm │ │ │ ├── proxies_priv.MYD │ │ │ ├── proxies_priv.MYI │ │ │ ├── proxies_priv.frm │ │ │ ├── servers.MYD │ │ │ ├── servers.MYI │ │ │ ├── servers.frm │ │ │ ├── tables_priv.MYD │ │ │ ├── tables_priv.MYI │ │ │ ├── tables_priv.frm │ │ │ ├── time_zone.MYD │ │ │ ├── time_zone.MYI │ │ │ ├── time_zone.frm │ │ │ ├── time_zone_leap_second.MYD │ │ │ ├── time_zone_leap_second.MYI │ │ │ ├── time_zone_leap_second.frm │ │ │ ├── time_zone_name.MYD │ │ │ ├── time_zone_name.MYI │ │ │ ├── time_zone_name.frm │ │ │ ├── time_zone_transition.MYD │ │ │ ├── time_zone_transition.MYI │ │ │ ├── time_zone_transition.frm │ │ │ ├── time_zone_transition_type.MYD │ │ │ ├── time_zone_transition_type.MYI │ │ │ ├── time_zone_transition_type.frm │ │ │ ├── user.MYD │ │ │ ├── user.MYI │ │ │ └── user.frm │ │ ├── mysql56datetime.MYD │ │ ├── mysql56datetime.MYI │ │ ├── mysql56datetime.frm │ │ ├── mysql56time.MYD │ │ ├── mysql56time.MYI │ │ ├── mysql56time.frm │ │ ├── mysql56timestamp.MYD │ │ ├── mysql56timestamp.MYI │ │ ├── mysql56timestamp.frm │ │ ├── mysql57_virtual.MYD │ │ ├── mysql57_virtual.MYI │ │ ├── mysql57_virtual.frm │ │ ├── mysql57user.MYD │ │ ├── mysql57user.MYI │ │ ├── mysql57user.frm │ │ ├── mysql_database_10.0.dump │ │ ├── mysql_database_10.1.dump │ │ ├── mysql_database_10.2.dump │ │ ├── mysql_database_10.3.dump │ │ ├── mysql_database_10.4.dump │ │ ├── mysql_database_5.5.dump │ │ ├── mysql_install_db_win.ini │ │ ├── mysql_json/ │ │ │ ├── mysql_json_test.MYD │ │ │ ├── mysql_json_test.MYI │ │ │ ├── mysql_json_test.frm │ │ │ ├── mysql_json_test_big.MYD │ │ │ ├── mysql_json_test_big.MYI │ │ │ ├── mysql_json_test_big.frm │ │ │ ├── tempty.MYD │ │ │ ├── tempty.MYI │ │ │ └── tempty.frm │ │ ├── mysql_upgrade/ │ │ │ ├── event.MYD │ │ │ ├── event.MYI │ │ │ ├── event.frm │ │ │ ├── v1.frm │ │ │ ├── v1badcheck.frm │ │ │ ├── v2.frm │ │ │ ├── v3.frm │ │ │ └── v4.frm │ │ ├── new-format-relay-log-win.info │ │ ├── new-format-relay-log.info │ │ ├── numbers.txt │ │ ├── old-format-relay-log-win.info │ │ ├── old-format-relay-log.info │ │ ├── old_decimal/ │ │ │ ├── t1dec102.MYD │ │ │ ├── t1dec102.MYI │ │ │ └── t1dec102.frm │ │ ├── old_table-323.frm │ │ ├── onerow.xml │ │ ├── parts/ │ │ │ ├── part_supported_sql_funcs_int_ch1.inc │ │ │ ├── part_supported_sql_funcs_int_date.inc │ │ │ ├── part_supported_sql_funcs_int_float.inc │ │ │ ├── part_supported_sql_funcs_int_int.inc │ │ │ ├── part_supported_sql_funcs_int_time.inc │ │ │ ├── t1.frm │ │ │ ├── t1TIMESTAMP.frm │ │ │ ├── t1_blackhole.frm │ │ │ ├── t1_blackhole.par │ │ │ ├── t1_will_crash#P#p1_first_1024.MYD │ │ │ ├── t1_will_crash#P#p2.MYD │ │ │ ├── t1_will_crash#P#p2.MYI │ │ │ ├── t1_will_crash#P#p3.MYI │ │ │ ├── t1_will_crash#P#p4.MYI │ │ │ ├── t1_will_crash#P#p6.MYD │ │ │ ├── t1_will_crash#P#p6_2.MYD │ │ │ └── t1_will_crash#P#p6_3.MYD │ │ ├── rpl/ │ │ │ ├── mysql-5.7.11-stm-temporal-round-binlog.000001 │ │ │ └── mysql-8.0.13-stm-temporal-round-binlog.000001 │ │ ├── s3_unique_table.frm │ │ ├── server-cert.crl │ │ ├── server-cert.pem │ │ ├── server-key.pem │ │ ├── server-new-cert.pem │ │ ├── server-new-key.pem │ │ ├── server8k-cert.pem │ │ ├── server8k-key.pem │ │ ├── serversan-cert.pem │ │ ├── serversan-key.pem │ │ ├── t917689.ARZ │ │ ├── temporal_upgrade/ │ │ │ ├── mysql050614_temporal0.MYD │ │ │ ├── mysql050614_temporal0.MYI │ │ │ ├── mysql050614_temporal0.frm │ │ │ ├── mysql050614_temporal1.MYD │ │ │ ├── mysql050614_temporal1.MYI │ │ │ └── mysql050614_temporal1.frm │ │ ├── trunc_binlog.000001 │ │ ├── untrusted-cacert.pem │ │ ├── vchar.frm │ │ ├── vcol_autoinc.MYD │ │ ├── vcol_autoinc.MYI │ │ ├── vcol_autoinc.frm │ │ ├── vcol_upgrade/ │ │ │ ├── maria100226_char_to_vchar_stored.MYD │ │ │ ├── maria100226_char_to_vchar_stored.MYI │ │ │ ├── maria100226_char_to_vchar_stored.frm │ │ │ ├── maria100226_char_to_vchar_virtual.MYD │ │ │ ├── maria100226_char_to_vchar_virtual.MYI │ │ │ └── maria100226_char_to_vchar_virtual.frm │ │ ├── wl5766_data.txt │ │ ├── wsrep_notify.sh │ │ └── zoneinfo/ │ │ └── GMT │ ├── suite/ │ │ ├── archive/ │ │ │ ├── archive-big.result │ │ │ ├── archive-big.test │ │ │ ├── archive.result │ │ │ ├── archive.test │ │ │ ├── archive_bitfield.result │ │ │ ├── archive_bitfield.test │ │ │ ├── archive_debug.result │ │ │ ├── archive_debug.test │ │ │ ├── archive_eits.result │ │ │ ├── archive_eits.test │ │ │ ├── archive_gis.result │ │ │ ├── archive_gis.test │ │ │ ├── archive_no_symlink-master.opt │ │ │ ├── archive_no_symlink.result │ │ │ ├── archive_no_symlink.test │ │ │ ├── archive_plugin.result │ │ │ ├── archive_plugin.test │ │ │ ├── archive_symlink.result │ │ │ ├── archive_symlink.test │ │ │ ├── disabled.def │ │ │ ├── discover.result │ │ │ ├── discover.test │ │ │ ├── discover_5438.opt │ │ │ ├── discover_5438.result │ │ │ ├── discover_5438.test │ │ │ ├── flush.result │ │ │ ├── flush.test │ │ │ ├── mysqlhotcopy_archive.result │ │ │ ├── mysqlhotcopy_archive.test │ │ │ ├── partition_archive.result │ │ │ ├── partition_archive.test │ │ │ ├── repair.result │ │ │ ├── repair.test │ │ │ ├── rnd_pos.result │ │ │ ├── rnd_pos.test │ │ │ └── suite.pm │ │ ├── atomic/ │ │ │ ├── README.txt │ │ │ ├── alter_table.opt │ │ │ ├── alter_table.result │ │ │ ├── alter_table.test │ │ │ ├── alter_table_aria.result │ │ │ ├── alter_table_aria.test │ │ │ ├── alter_table_big_query.result │ │ │ ├── alter_table_big_query.test │ │ │ ├── alter_table_rocksdb.result │ │ │ ├── alter_table_rocksdb.test │ │ │ ├── alter_table_trigger.result │ │ │ ├── alter_table_trigger.test │ │ │ ├── create_table.result │ │ │ ├── create_table.test │ │ │ ├── create_trigger.result │ │ │ ├── create_trigger.test │ │ │ ├── create_trigger2.result │ │ │ ├── create_trigger2.test │ │ │ ├── create_view.result │ │ │ ├── create_view.test │ │ │ ├── drop_db.result │ │ │ ├── drop_db.test │ │ │ ├── drop_db_long_names.opt │ │ │ ├── drop_db_long_names.result │ │ │ ├── drop_db_long_names.test │ │ │ ├── drop_sequence.result │ │ │ ├── drop_sequence.test │ │ │ ├── drop_table.result │ │ │ ├── drop_table.test │ │ │ ├── drop_trigger.result │ │ │ ├── drop_trigger.test │ │ │ ├── drop_view.result │ │ │ ├── drop_view.test │ │ │ ├── rename_case.result │ │ │ ├── rename_case.test │ │ │ ├── rename_combinations.result │ │ │ ├── rename_combinations.test │ │ │ ├── rename_table.result │ │ │ ├── rename_table.test │ │ │ ├── rename_table_binlog.result │ │ │ ├── rename_table_binlog.test │ │ │ ├── rename_trigger.result │ │ │ ├── rename_trigger.test │ │ │ ├── rename_view.result │ │ │ ├── rename_view.test │ │ │ ├── rename_view2.result │ │ │ └── rename_view2.test │ │ ├── binlog/ │ │ │ ├── combinations │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── binlog.test │ │ │ │ ├── binlog_cache_stat.test │ │ │ │ ├── binlog_expire_logs_seconds.inc │ │ │ │ ├── binlog_expire_warnings.inc │ │ │ │ ├── binlog_incident-master.opt │ │ │ │ ├── binlog_incident.inc │ │ │ │ ├── binlog_index.inc │ │ │ │ ├── binlog_insert_delayed.test │ │ │ │ ├── binlog_ioerr.inc │ │ │ │ ├── binlog_mysqlbinlog-cp932.inc │ │ │ │ ├── binlog_row_annotate.inc │ │ │ │ ├── binlog_truncate.test │ │ │ │ ├── binlog_xa_prepare_connection.inc │ │ │ │ ├── binlog_xa_prepare_disconnect.inc │ │ │ │ ├── binlog_xa_prepared_do_and_restart.inc │ │ │ │ ├── blackhole.test │ │ │ │ ├── check_binlog_size.inc │ │ │ │ ├── ctype_cp932.test │ │ │ │ ├── ctype_cp932_binlog.test │ │ │ │ ├── ctype_ucs_binlog.result │ │ │ │ ├── ctype_ucs_binlog.test │ │ │ │ ├── database.test │ │ │ │ ├── drop_table.test │ │ │ │ ├── drop_temp_table.test │ │ │ │ ├── implicit.test │ │ │ │ ├── insert_select-binlog.test │ │ │ │ ├── mix_innodb_myisam_binlog.test │ │ │ │ ├── mix_innodb_myisam_side_effects.test │ │ │ │ ├── mysqlbinlog_row_engine.inc │ │ │ │ └── print_optional_metadata.inc │ │ │ ├── r/ │ │ │ │ ├── backup.result │ │ │ │ ├── binlog_1pc.result │ │ │ │ ├── binlog_admin_cmd_kill.result │ │ │ │ ├── binlog_autocommit_off_no_hang.result │ │ │ │ ├── binlog_base64_flag.result │ │ │ │ ├── binlog_bug23533.result │ │ │ │ ├── binlog_bug36391.result │ │ │ │ ├── binlog_checkpoint.result │ │ │ │ ├── binlog_checkpoint_flush_logs.result │ │ │ │ ├── binlog_checksum.result │ │ │ │ ├── binlog_commit_wait.result │ │ │ │ ├── binlog_database.result │ │ │ │ ├── binlog_delete_and_flush_index.result │ │ │ │ ├── binlog_dmls_on_tmp_tables_readonly.result │ │ │ │ ├── binlog_drop_if_exists.result │ │ │ │ ├── binlog_empty_xa_prepared.result │ │ │ │ ├── binlog_expire_logs_seconds.result │ │ │ │ ├── binlog_expire_warnings.result │ │ │ │ ├── binlog_flush_binlogs_delete_domain.result │ │ │ │ ├── binlog_format_switch_in_tmp_table.result │ │ │ │ ├── binlog_grant.result │ │ │ │ ├── binlog_gtid_delete_domain_debug.result │ │ │ │ ├── binlog_implicit_commit.result │ │ │ │ ├── binlog_incident.result │ │ │ │ ├── binlog_index.result │ │ │ │ ├── binlog_innodb.result │ │ │ │ ├── binlog_innodb_row.result │ │ │ │ ├── binlog_innodb_stm.result │ │ │ │ ├── binlog_invalid_read_in_rotate.result │ │ │ │ ├── binlog_ioerr.result │ │ │ │ ├── binlog_killed.result │ │ │ │ ├── binlog_killed_simulate.result │ │ │ │ ├── binlog_max_binlog_stmt_cache_size.result │ │ │ │ ├── binlog_max_extension.result │ │ │ │ ├── binlog_mdev342.result │ │ │ │ ├── binlog_mdev717.result │ │ │ │ ├── binlog_mixed.result │ │ │ │ ├── binlog_mixed_cache_stat.result │ │ │ │ ├── binlog_mixed_load_data.result │ │ │ │ ├── binlog_mysqlbinlog-cp932.result │ │ │ │ ├── binlog_mysqlbinlog2.result │ │ │ │ ├── binlog_mysqlbinlog_base64.result │ │ │ │ ├── binlog_mysqlbinlog_raw_flush.result │ │ │ │ ├── binlog_mysqlbinlog_row.result │ │ │ │ ├── binlog_mysqlbinlog_row_frag.result │ │ │ │ ├── binlog_mysqlbinlog_row_innodb.result │ │ │ │ ├── binlog_mysqlbinlog_row_myisam.result │ │ │ │ ├── binlog_mysqlbinlog_row_trans.result │ │ │ │ ├── binlog_mysqlbinlog_stop_never.result │ │ │ │ ├── binlog_mysqlbinlog_suppress_O_TMPFILE.result │ │ │ │ ├── binlog_no_uniqfile_crash.result │ │ │ │ ├── binlog_old_versions.result │ │ │ │ ├── binlog_parallel_replication_ddl.result │ │ │ │ ├── binlog_parallel_replication_marks_row.result │ │ │ │ ├── binlog_parallel_replication_marks_stm_mix.result │ │ │ │ ├── binlog_query_filter_rules.result │ │ │ │ ├── binlog_recover_checksum_error.result │ │ │ │ ├── binlog_rotate_perf.result │ │ │ │ ├── binlog_row_annotate.result │ │ │ │ ├── binlog_row_binlog.result │ │ │ │ ├── binlog_row_cache_stat.result │ │ │ │ ├── binlog_row_ctype_cp932.result │ │ │ │ ├── binlog_row_ctype_ucs.result │ │ │ │ ├── binlog_row_drop_tbl.result │ │ │ │ ├── binlog_row_drop_tmp_tbl.result │ │ │ │ ├── binlog_row_insert_select.result │ │ │ │ ├── binlog_row_mix_innodb_myisam.result │ │ │ │ ├── binlog_row_mysqlbinlog_db_filter.result │ │ │ │ ├── binlog_row_mysqlbinlog_options.result │ │ │ │ ├── binlog_row_mysqlbinlog_verbose.result │ │ │ │ ├── binlog_server_id.result │ │ │ │ ├── binlog_sf.result │ │ │ │ ├── binlog_show_binlog_event_random_pos.result │ │ │ │ ├── binlog_spurious_ddl_errors.result │ │ │ │ ├── binlog_sql_mode.result │ │ │ │ ├── binlog_start_comment.result │ │ │ │ ├── binlog_statement_insert_delayed.result │ │ │ │ ├── binlog_stm_binlog.result │ │ │ │ ├── binlog_stm_blackhole.result │ │ │ │ ├── binlog_stm_cache_stat.result │ │ │ │ ├── binlog_stm_ctype_cp932.result │ │ │ │ ├── binlog_stm_ctype_ucs.result │ │ │ │ ├── binlog_stm_datetime_ranges_mdev15289.result │ │ │ │ ├── binlog_stm_do_db.result │ │ │ │ ├── binlog_stm_drop_tbl.result │ │ │ │ ├── binlog_stm_drop_tmp_tbl.result │ │ │ │ ├── binlog_stm_insert_select.result │ │ │ │ ├── binlog_stm_mix_innodb_myisam.result │ │ │ │ ├── binlog_stm_ps.result │ │ │ │ ├── binlog_stm_row.result │ │ │ │ ├── binlog_stm_sp.result │ │ │ │ ├── binlog_stm_sp_type_row.result │ │ │ │ ├── binlog_stm_unsafe_warning.result │ │ │ │ ├── binlog_stm_user_variables.result │ │ │ │ ├── binlog_switch_inside_trans.result │ │ │ │ ├── binlog_table_map_optional_metadata.result │ │ │ │ ├── binlog_table_map_optional_metadata_binary.result │ │ │ │ ├── binlog_table_map_optional_metadata_ucs2.result │ │ │ │ ├── binlog_table_map_optional_metadata_utf32.result │ │ │ │ ├── binlog_tmp_table.result │ │ │ │ ├── binlog_tmp_table_row.result │ │ │ │ ├── binlog_trigger.result │ │ │ │ ├── binlog_truncate_active_log.result │ │ │ │ ├── binlog_truncate_innodb.result │ │ │ │ ├── binlog_truncate_kill.result │ │ │ │ ├── binlog_truncate_multi_engine.result │ │ │ │ ├── binlog_truncate_multi_log.result │ │ │ │ ├── binlog_truncate_multi_log_unsafe.result │ │ │ │ ├── binlog_truncate_myisam.result │ │ │ │ ├── binlog_unsafe.result │ │ │ │ ├── binlog_variables_log_bin.result │ │ │ │ ├── binlog_variables_log_bin_index.result │ │ │ │ ├── binlog_variables_relay_log.result │ │ │ │ ├── binlog_variables_relay_log_index.result │ │ │ │ ├── binlog_write_error.result │ │ │ │ ├── binlog_xa_checkpoint.result │ │ │ │ ├── binlog_xa_handling.result │ │ │ │ ├── binlog_xa_prepared.result │ │ │ │ ├── binlog_xa_prepared_disconnect.result │ │ │ │ ├── binlog_xa_recover.result │ │ │ │ ├── binlog_xa_recover_using_new_server_id.result │ │ │ │ ├── flashback-largebinlog.result │ │ │ │ ├── flashback.result │ │ │ │ ├── foreign_key.result │ │ │ │ ├── innodb_autoinc_lock_mode_binlog.result │ │ │ │ ├── load_data_stm_view.result │ │ │ │ ├── mysqladmin.result │ │ │ │ ├── read_only.result │ │ │ │ ├── read_only_statement.result │ │ │ │ ├── show_concurrent_rotate.result │ │ │ │ └── temptable_uservar_disconnect-7938.result │ │ │ ├── std_data/ │ │ │ │ ├── binlog_old_version_4_1.000001 │ │ │ │ ├── bug32407.001 │ │ │ │ ├── update-full-row.binlog │ │ │ │ ├── update-partial-row.binlog │ │ │ │ ├── ver_5_1-telco.001 │ │ │ │ ├── ver_5_1_17.001 │ │ │ │ ├── ver_5_1_23.001 │ │ │ │ ├── ver_trunk_row_v2.001 │ │ │ │ ├── write-full-row.binlog │ │ │ │ └── write-partial-row.binlog │ │ │ └── t/ │ │ │ ├── backup.test │ │ │ ├── binlog_1pc.test │ │ │ ├── binlog_admin_cmd_kill.test │ │ │ ├── binlog_autocommit_off_no_hang-master.opt │ │ │ ├── binlog_autocommit_off_no_hang.test │ │ │ ├── binlog_base64_flag.test │ │ │ ├── binlog_bug23533.test │ │ │ ├── binlog_bug36391-master.opt │ │ │ ├── binlog_bug36391.test │ │ │ ├── binlog_checkpoint.test │ │ │ ├── binlog_checkpoint_flush_logs.test │ │ │ ├── binlog_checksum.test │ │ │ ├── binlog_commit_wait.test │ │ │ ├── binlog_database.test │ │ │ ├── binlog_delete_and_flush_index-master.opt │ │ │ ├── binlog_delete_and_flush_index.test │ │ │ ├── binlog_dmls_on_tmp_tables_readonly.test │ │ │ ├── binlog_drop_if_exists.test │ │ │ ├── binlog_empty_xa_prepared.test │ │ │ ├── binlog_expire_logs_seconds.test │ │ │ ├── binlog_expire_warnings.test │ │ │ ├── binlog_flush_binlogs_delete_domain.test │ │ │ ├── binlog_format_switch_in_tmp_table.test │ │ │ ├── binlog_grant.test │ │ │ ├── binlog_gtid_delete_domain_debug.test │ │ │ ├── binlog_implicit_commit.test │ │ │ ├── binlog_incident.test │ │ │ ├── binlog_index-master.opt │ │ │ ├── binlog_index.test │ │ │ ├── binlog_innodb.opt │ │ │ ├── binlog_innodb.test │ │ │ ├── binlog_innodb_row.test │ │ │ ├── binlog_innodb_stm.test │ │ │ ├── binlog_invalid_read_in_rotate.combinations │ │ │ ├── binlog_invalid_read_in_rotate.test │ │ │ ├── binlog_ioerr.test │ │ │ ├── binlog_killed.test │ │ │ ├── binlog_killed_simulate-master.opt │ │ │ ├── binlog_killed_simulate.test │ │ │ ├── binlog_max_binlog_stmt_cache_size.opt │ │ │ ├── binlog_max_binlog_stmt_cache_size.test │ │ │ ├── binlog_max_extension.test │ │ │ ├── binlog_mdev342-master.opt │ │ │ ├── binlog_mdev342.test │ │ │ ├── binlog_mdev717.test │ │ │ ├── binlog_mixed.test │ │ │ ├── binlog_mixed_cache_stat.opt │ │ │ ├── binlog_mixed_cache_stat.test │ │ │ ├── binlog_mixed_load_data.test │ │ │ ├── binlog_mysqlbinlog-cp932-master.opt │ │ │ ├── binlog_mysqlbinlog-cp932.test │ │ │ ├── binlog_mysqlbinlog2-master.opt │ │ │ ├── binlog_mysqlbinlog2.test │ │ │ ├── binlog_mysqlbinlog_base64.test │ │ │ ├── binlog_mysqlbinlog_raw_flush.test │ │ │ ├── binlog_mysqlbinlog_row-master.opt │ │ │ ├── binlog_mysqlbinlog_row.test │ │ │ ├── binlog_mysqlbinlog_row_frag.test │ │ │ ├── binlog_mysqlbinlog_row_innodb-master.opt │ │ │ ├── binlog_mysqlbinlog_row_innodb.test │ │ │ ├── binlog_mysqlbinlog_row_myisam-master.opt │ │ │ ├── binlog_mysqlbinlog_row_myisam.test │ │ │ ├── binlog_mysqlbinlog_row_trans-master.opt │ │ │ ├── binlog_mysqlbinlog_row_trans.test │ │ │ ├── binlog_mysqlbinlog_stop_never.test │ │ │ ├── binlog_mysqlbinlog_suppress_O_TMPFILE.test │ │ │ ├── binlog_no_uniqfile_crash.test │ │ │ ├── binlog_old_versions.test │ │ │ ├── binlog_parallel_replication_ddl.test │ │ │ ├── binlog_parallel_replication_marks_row.test │ │ │ ├── binlog_parallel_replication_marks_stm_mix.test │ │ │ ├── binlog_query_filter_rules-master.opt │ │ │ ├── binlog_query_filter_rules.test │ │ │ ├── binlog_recover_checksum_error.test │ │ │ ├── binlog_rotate_perf.test │ │ │ ├── binlog_row_annotate-master.opt │ │ │ ├── binlog_row_annotate.test │ │ │ ├── binlog_row_binlog-master.opt │ │ │ ├── binlog_row_binlog.test │ │ │ ├── binlog_row_cache_stat.test │ │ │ ├── binlog_row_ctype_cp932.test │ │ │ ├── binlog_row_ctype_ucs.test │ │ │ ├── binlog_row_drop_tbl.test │ │ │ ├── binlog_row_drop_tmp_tbl.test │ │ │ ├── binlog_row_innodb_stat-master.opt │ │ │ ├── binlog_row_insert_select.test │ │ │ ├── binlog_row_mix_innodb_myisam-master.opt │ │ │ ├── binlog_row_mix_innodb_myisam.test │ │ │ ├── binlog_row_mysqlbinlog_db_filter.test │ │ │ ├── binlog_row_mysqlbinlog_options-master.opt │ │ │ ├── binlog_row_mysqlbinlog_options.test │ │ │ ├── binlog_row_mysqlbinlog_verbose.test │ │ │ ├── binlog_server_id.test │ │ │ ├── binlog_sf.test │ │ │ ├── binlog_show_binlog_event_random_pos.combinations │ │ │ ├── binlog_show_binlog_event_random_pos.test │ │ │ ├── binlog_spurious_ddl_errors.test │ │ │ ├── binlog_sql_mode.test │ │ │ ├── binlog_start_comment.test │ │ │ ├── binlog_statement_insert_delayed.test │ │ │ ├── binlog_stm_binlog-master.opt │ │ │ ├── binlog_stm_binlog.test │ │ │ ├── binlog_stm_blackhole.test │ │ │ ├── binlog_stm_cache_stat.test │ │ │ ├── binlog_stm_ctype_cp932.test │ │ │ ├── binlog_stm_ctype_ucs.test │ │ │ ├── binlog_stm_datetime_ranges_mdev15289.test │ │ │ ├── binlog_stm_do_db-master.opt │ │ │ ├── binlog_stm_do_db.test │ │ │ ├── binlog_stm_drop_tbl.test │ │ │ ├── binlog_stm_drop_tmp_tbl.test │ │ │ ├── binlog_stm_innodb_stat-master.opt │ │ │ ├── binlog_stm_insert_select.test │ │ │ ├── binlog_stm_mix_innodb_myisam-master.opt │ │ │ ├── binlog_stm_mix_innodb_myisam.test │ │ │ ├── binlog_stm_ps.test │ │ │ ├── binlog_stm_row.test │ │ │ ├── binlog_stm_sp.test │ │ │ ├── binlog_stm_sp_type_row.test │ │ │ ├── binlog_stm_unsafe_warning-master.opt │ │ │ ├── binlog_stm_unsafe_warning.test │ │ │ ├── binlog_stm_user_variables.test │ │ │ ├── binlog_switch_inside_trans.test │ │ │ ├── binlog_table_map_optional_metadata.test │ │ │ ├── binlog_table_map_optional_metadata_binary.test │ │ │ ├── binlog_table_map_optional_metadata_ucs2.test │ │ │ ├── binlog_table_map_optional_metadata_utf32.test │ │ │ ├── binlog_tmp_table.test │ │ │ ├── binlog_tmp_table_row.test │ │ │ ├── binlog_trigger.test │ │ │ ├── binlog_truncate_active_log.inc │ │ │ ├── binlog_truncate_active_log.test │ │ │ ├── binlog_truncate_innodb.test │ │ │ ├── binlog_truncate_kill.test │ │ │ ├── binlog_truncate_multi_engine.inc │ │ │ ├── binlog_truncate_multi_engine.opt │ │ │ ├── binlog_truncate_multi_engine.test │ │ │ ├── binlog_truncate_multi_log.test │ │ │ ├── binlog_truncate_multi_log_unsafe.test │ │ │ ├── binlog_truncate_myisam.test │ │ │ ├── binlog_unsafe-master.opt │ │ │ ├── binlog_unsafe.test │ │ │ ├── binlog_variables_log_bin-master.opt │ │ │ ├── binlog_variables_log_bin.test │ │ │ ├── binlog_variables_log_bin_index-master.opt │ │ │ ├── binlog_variables_log_bin_index.test │ │ │ ├── binlog_variables_relay_log-master.opt │ │ │ ├── binlog_variables_relay_log.test │ │ │ ├── binlog_variables_relay_log_index-master.opt │ │ │ ├── binlog_variables_relay_log_index.test │ │ │ ├── binlog_write_error.test │ │ │ ├── binlog_xa_checkpoint.test │ │ │ ├── binlog_xa_handling.test │ │ │ ├── binlog_xa_prepared.inc │ │ │ ├── binlog_xa_prepared_disconnect.test │ │ │ ├── binlog_xa_recover.opt │ │ │ ├── binlog_xa_recover.test │ │ │ ├── binlog_xa_recover_using_new_server_id.test │ │ │ ├── flashback-largebinlog.test │ │ │ ├── flashback-master.opt │ │ │ ├── flashback.test │ │ │ ├── foreign_key.test │ │ │ ├── innodb_autoinc_lock_mode_binlog.opt │ │ │ ├── innodb_autoinc_lock_mode_binlog.test │ │ │ ├── load_data_stm_view.test │ │ │ ├── mysqladmin.test │ │ │ ├── read_only.inc │ │ │ ├── read_only.test │ │ │ ├── read_only_statement.test │ │ │ ├── show_concurrent_rotate.test │ │ │ └── temptable_uservar_disconnect-7938.test │ │ ├── binlog_encryption/ │ │ │ ├── binlog_incident.combinations │ │ │ ├── binlog_incident.result │ │ │ ├── binlog_incident.test │ │ │ ├── binlog_index.result │ │ │ ├── binlog_index.test │ │ │ ├── binlog_ioerr.result │ │ │ ├── binlog_ioerr.test │ │ │ ├── binlog_mdev_20574_old_binlog.result │ │ │ ├── binlog_mdev_20574_old_binlog.test │ │ │ ├── binlog_mysqlbinlog-cp932-master.opt │ │ │ ├── binlog_mysqlbinlog-cp932.result │ │ │ ├── binlog_mysqlbinlog-cp932.test │ │ │ ├── binlog_row_annotate-master.opt │ │ │ ├── binlog_row_annotate.combinations │ │ │ ├── binlog_row_annotate.result │ │ │ ├── binlog_row_annotate.test │ │ │ ├── binlog_write_error.result │ │ │ ├── binlog_write_error.test │ │ │ ├── binlog_xa_recover.result │ │ │ ├── binlog_xa_recover.test │ │ │ ├── disabled.def │ │ │ ├── encrypted_master.result │ │ │ ├── encrypted_master.test │ │ │ ├── encrypted_master_lost_key.result │ │ │ ├── encrypted_master_lost_key.test │ │ │ ├── encrypted_master_switch_to_unencrypted.cnf │ │ │ ├── encrypted_master_switch_to_unencrypted.result │ │ │ ├── encrypted_master_switch_to_unencrypted.test │ │ │ ├── encrypted_slave.cnf │ │ │ ├── encrypted_slave.result │ │ │ ├── encrypted_slave.test │ │ │ ├── encryption_algorithms.combinations │ │ │ ├── encryption_algorithms.inc │ │ │ ├── encryption_combo.cnf │ │ │ ├── encryption_combo.result │ │ │ ├── encryption_combo.test │ │ │ ├── multisource.cnf │ │ │ ├── multisource.result │ │ │ ├── multisource.test │ │ │ ├── my.cnf │ │ │ ├── mysqlbinlog.combinations │ │ │ ├── mysqlbinlog.result │ │ │ ├── mysqlbinlog.test │ │ │ ├── restart_server.inc │ │ │ ├── rpl_binlog_errors.cnf │ │ │ ├── rpl_binlog_errors.result │ │ │ ├── rpl_binlog_errors.test │ │ │ ├── rpl_cant_read_event_incident.result │ │ │ ├── rpl_cant_read_event_incident.test │ │ │ ├── rpl_checksum.cnf │ │ │ ├── rpl_checksum.result │ │ │ ├── rpl_checksum.test │ │ │ ├── rpl_checksum_cache.result │ │ │ ├── rpl_checksum_cache.test │ │ │ ├── rpl_corruption.cnf │ │ │ ├── rpl_corruption.result │ │ │ ├── rpl_corruption.test │ │ │ ├── rpl_gtid_basic.cnf │ │ │ ├── rpl_gtid_basic.combinations │ │ │ ├── rpl_gtid_basic.result │ │ │ ├── rpl_gtid_basic.test │ │ │ ├── rpl_incident.cnf │ │ │ ├── rpl_incident.result │ │ │ ├── rpl_incident.test │ │ │ ├── rpl_init_slave_errors.result │ │ │ ├── rpl_init_slave_errors.test │ │ │ ├── rpl_loaddata_local.result │ │ │ ├── rpl_loaddata_local.test │ │ │ ├── rpl_loadfile.result │ │ │ ├── rpl_loadfile.test │ │ │ ├── rpl_mixed_binlog_max_cache_size.result │ │ │ ├── rpl_mixed_binlog_max_cache_size.test │ │ │ ├── rpl_packet.cnf │ │ │ ├── rpl_packet.result │ │ │ ├── rpl_packet.test │ │ │ ├── rpl_parallel_analyze_table_hang.result │ │ │ ├── rpl_parallel_analyze_table_hang.test │ │ │ ├── rpl_parallel_deadlock_corrupt_binlog.result │ │ │ ├── rpl_parallel_deadlock_corrupt_binlog.test │ │ │ ├── rpl_parallel_domain.result │ │ │ ├── rpl_parallel_domain.test │ │ │ ├── rpl_parallel_domain_slave_single_grp.result │ │ │ ├── rpl_parallel_domain_slave_single_grp.test │ │ │ ├── rpl_parallel_free_deferred_event.result │ │ │ ├── rpl_parallel_free_deferred_event.test │ │ │ ├── rpl_parallel_gco_wait_kill.result │ │ │ ├── rpl_parallel_gco_wait_kill.test │ │ │ ├── rpl_parallel_gtid_slave_pos_update_fail.result │ │ │ ├── rpl_parallel_gtid_slave_pos_update_fail.test │ │ │ ├── rpl_parallel_ignore_error_on_rotate.result │ │ │ ├── rpl_parallel_ignore_error_on_rotate.test │ │ │ ├── rpl_parallel_ignored_errors.result │ │ │ ├── rpl_parallel_ignored_errors.test │ │ │ ├── rpl_parallel_incorrect_relay_pos.result │ │ │ ├── rpl_parallel_incorrect_relay_pos.test │ │ │ ├── rpl_parallel_innodb_lock_conflict.result │ │ │ ├── rpl_parallel_innodb_lock_conflict.test │ │ │ ├── rpl_parallel_missed_error_handling.result │ │ │ ├── rpl_parallel_missed_error_handling.test │ │ │ ├── rpl_parallel_mode.result │ │ │ ├── rpl_parallel_mode.test │ │ │ ├── rpl_parallel_partial_binlog_trans.result │ │ │ ├── rpl_parallel_partial_binlog_trans.test │ │ │ ├── rpl_parallel_record_gtid_wakeup.result │ │ │ ├── rpl_parallel_record_gtid_wakeup.test │ │ │ ├── rpl_parallel_retry_deadlock.result │ │ │ ├── rpl_parallel_retry_deadlock.test │ │ │ ├── rpl_parallel_rollback_assert.result │ │ │ ├── rpl_parallel_rollback_assert.test │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.cnf │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.result │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.test │ │ │ ├── rpl_parallel_single_grpcmt.result │ │ │ ├── rpl_parallel_single_grpcmt.test │ │ │ ├── rpl_parallel_slave_bgc_kill.result │ │ │ ├── rpl_parallel_slave_bgc_kill.test │ │ │ ├── rpl_parallel_stop_on_con_kill.result │ │ │ ├── rpl_parallel_stop_on_con_kill.test │ │ │ ├── rpl_parallel_stop_slave.result │ │ │ ├── rpl_parallel_stop_slave.test │ │ │ ├── rpl_parallel_wrong_binlog_order.result │ │ │ ├── rpl_parallel_wrong_binlog_order.test │ │ │ ├── rpl_parallel_wrong_exec_master_pos.result │ │ │ ├── rpl_parallel_wrong_exec_master_pos.test │ │ │ ├── rpl_relayrotate-slave.opt │ │ │ ├── rpl_relayrotate.result │ │ │ ├── rpl_relayrotate.test │ │ │ ├── rpl_semi_sync.result │ │ │ ├── rpl_semi_sync.test │ │ │ ├── rpl_skip_replication.cnf │ │ │ ├── rpl_skip_replication.result │ │ │ ├── rpl_skip_replication.test │ │ │ ├── rpl_special_charset.opt │ │ │ ├── rpl_special_charset.result │ │ │ ├── rpl_special_charset.test │ │ │ ├── rpl_sporadic_master-master.opt │ │ │ ├── rpl_sporadic_master.result │ │ │ ├── rpl_sporadic_master.test │ │ │ ├── rpl_ssl.result │ │ │ ├── rpl_ssl.test │ │ │ ├── rpl_stm_relay_ign_space-slave.opt │ │ │ ├── rpl_stm_relay_ign_space.result │ │ │ ├── rpl_stm_relay_ign_space.test │ │ │ ├── rpl_switch_stm_row_mixed.result │ │ │ ├── rpl_switch_stm_row_mixed.test │ │ │ ├── rpl_sync-master.opt │ │ │ ├── rpl_sync-slave.opt │ │ │ ├── rpl_sync.result │ │ │ ├── rpl_sync.test │ │ │ ├── rpl_temporal_format_default_to_default.cnf │ │ │ ├── rpl_temporal_format_default_to_default.result │ │ │ ├── rpl_temporal_format_default_to_default.test │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56.cnf │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56.result │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56.test │ │ │ ├── rpl_temporal_format_mysql56_to_mariadb53.cnf │ │ │ ├── rpl_temporal_format_mysql56_to_mariadb53.result │ │ │ ├── rpl_temporal_format_mysql56_to_mariadb53.test │ │ │ ├── rpl_typeconv.result │ │ │ ├── rpl_typeconv.test │ │ │ ├── suite.pm │ │ │ └── testdata.inc │ │ ├── client/ │ │ │ ├── mariadb-conv-cp932.result │ │ │ ├── mariadb-conv-cp932.test │ │ │ ├── mariadb-conv-utf16.result │ │ │ ├── mariadb-conv-utf16.test │ │ │ ├── mariadb-conv-utf8.result │ │ │ ├── mariadb-conv-utf8.test │ │ │ ├── mariadb-conv.result │ │ │ └── mariadb-conv.test │ │ ├── compat/ │ │ │ ├── README.txt │ │ │ ├── maxdb/ │ │ │ │ ├── rpl_mariadb_timestamp.result │ │ │ │ ├── rpl_mariadb_timestamp.test │ │ │ │ ├── type_timestamp.result │ │ │ │ └── type_timestamp.test │ │ │ ├── mssql/ │ │ │ │ ├── parser.result │ │ │ │ └── parser.test │ │ │ └── oracle/ │ │ │ ├── r/ │ │ │ │ ├── anonymous_derived.result │ │ │ │ ├── binlog_ptr_mysqlbinlog.result │ │ │ │ ├── binlog_stm_ps.result │ │ │ │ ├── binlog_stm_sp.result │ │ │ │ ├── binlog_stm_sp_package.result │ │ │ │ ├── column_compression.result │ │ │ │ ├── custom_aggregate_functions.result │ │ │ │ ├── empty_string_literal.result │ │ │ │ ├── events.result │ │ │ │ ├── exception.result │ │ │ │ ├── func_add_months.result │ │ │ │ ├── func_case.result │ │ │ │ ├── func_concat.result │ │ │ │ ├── func_decode.result │ │ │ │ ├── func_length.result │ │ │ │ ├── func_misc.result │ │ │ │ ├── func_pad.result │ │ │ │ ├── func_replace.result │ │ │ │ ├── func_substr.result │ │ │ │ ├── func_time.result │ │ │ │ ├── func_to_char.result │ │ │ │ ├── func_trim.result │ │ │ │ ├── gis-debug.result │ │ │ │ ├── gis.result │ │ │ │ ├── information_schema_parameters.result │ │ │ │ ├── keywords.result │ │ │ │ ├── minus.result │ │ │ │ ├── misc.result │ │ │ │ ├── mysqldump_restore.result │ │ │ │ ├── parser.result │ │ │ │ ├── plugin.result │ │ │ │ ├── ps.result │ │ │ │ ├── rpl_mariadb_date.result │ │ │ │ ├── rpl_sp_package.result │ │ │ │ ├── rpl_sp_package_variables.result │ │ │ │ ├── sequence.result │ │ │ │ ├── sp-anchor-row-type-table.result │ │ │ │ ├── sp-anonymous.result │ │ │ │ ├── sp-code.result │ │ │ │ ├── sp-cursor-decl.result │ │ │ │ ├── sp-cursor-rowtype.result │ │ │ │ ├── sp-cursor.result │ │ │ │ ├── sp-expr.result │ │ │ │ ├── sp-goto-debug.result │ │ │ │ ├── sp-goto.result │ │ │ │ ├── sp-package-code.result │ │ │ │ ├── sp-package-concurrent-dml-db.result │ │ │ │ ├── sp-package-concurrent-dml-package.result │ │ │ │ ├── sp-package-concurrent-dml-trigger.result │ │ │ │ ├── sp-package-concurrent-dml-view.result │ │ │ │ ├── sp-package-innodb.result │ │ │ │ ├── sp-package-mdl.result │ │ │ │ ├── sp-package-mysqldump.result │ │ │ │ ├── sp-package-security.result │ │ │ │ ├── sp-package.result │ │ │ │ ├── sp-param.result │ │ │ │ ├── sp-row.result │ │ │ │ ├── sp-security.result │ │ │ │ ├── sp.result │ │ │ │ ├── statement-expr.result │ │ │ │ ├── table_value_constr.result │ │ │ │ ├── trigger.result │ │ │ │ ├── truncate.result │ │ │ │ ├── type_blob.result │ │ │ │ ├── type_clob.result │ │ │ │ ├── type_date.result │ │ │ │ ├── type_number.result │ │ │ │ ├── type_raw.result │ │ │ │ ├── type_varchar.result │ │ │ │ ├── type_varchar2.result │ │ │ │ ├── update_innodb.result │ │ │ │ ├── variables.result │ │ │ │ ├── vcol.result │ │ │ │ ├── versioning.result │ │ │ │ └── win.result │ │ │ └── t/ │ │ │ ├── anonymous_derived.test │ │ │ ├── binlog_ptr_mysqlbinlog-master.opt │ │ │ ├── binlog_ptr_mysqlbinlog.test │ │ │ ├── binlog_stm_ps.test │ │ │ ├── binlog_stm_sp.test │ │ │ ├── binlog_stm_sp_package.test │ │ │ ├── column_compression.test │ │ │ ├── custom_aggregate_functions.test │ │ │ ├── empty_string_literal.test │ │ │ ├── events.test │ │ │ ├── exception.test │ │ │ ├── func_add_months.test │ │ │ ├── func_case.test │ │ │ ├── func_concat.test │ │ │ ├── func_decode.test │ │ │ ├── func_length.test │ │ │ ├── func_misc.test │ │ │ ├── func_pad.test │ │ │ ├── func_replace.test │ │ │ ├── func_substr.test │ │ │ ├── func_time.test │ │ │ ├── func_to_char.test │ │ │ ├── func_trim.test │ │ │ ├── gis-debug.test │ │ │ ├── gis.test │ │ │ ├── information_schema_parameters.test │ │ │ ├── keywords.test │ │ │ ├── minus.test │ │ │ ├── misc.test │ │ │ ├── mysqldump_restore.test │ │ │ ├── parser.test │ │ │ ├── plugin.test │ │ │ ├── ps.test │ │ │ ├── rpl_mariadb_date.test │ │ │ ├── rpl_sp_package.test │ │ │ ├── rpl_sp_package_variables.test │ │ │ ├── sequence.test │ │ │ ├── sp-anchor-row-type-table.test │ │ │ ├── sp-anonymous.test │ │ │ ├── sp-cache-invalidate.inc │ │ │ ├── sp-code.test │ │ │ ├── sp-cursor-decl.test │ │ │ ├── sp-cursor-rowtype.test │ │ │ ├── sp-cursor.test │ │ │ ├── sp-expr.test │ │ │ ├── sp-goto-debug.test │ │ │ ├── sp-goto.test │ │ │ ├── sp-package-code.test │ │ │ ├── sp-package-concurrent-dml-db.test │ │ │ ├── sp-package-concurrent-dml-package.test │ │ │ ├── sp-package-concurrent-dml-trigger.test │ │ │ ├── sp-package-concurrent-dml-view.test │ │ │ ├── sp-package-concurrent-dml.inc │ │ │ ├── sp-package-innodb.test │ │ │ ├── sp-package-mdl.test │ │ │ ├── sp-package-mysqldump.test │ │ │ ├── sp-package-security.test │ │ │ ├── sp-package.test │ │ │ ├── sp-param.inc │ │ │ ├── sp-param.test │ │ │ ├── sp-row-vs-var.inc │ │ │ ├── sp-row.test │ │ │ ├── sp-security.test │ │ │ ├── sp.test │ │ │ ├── statement-expr.test │ │ │ ├── table_value_constr.test │ │ │ ├── trigger.test │ │ │ ├── truncate.test │ │ │ ├── type_blob.test │ │ │ ├── type_clob.test │ │ │ ├── type_date.test │ │ │ ├── type_number.test │ │ │ ├── type_raw.test │ │ │ ├── type_varchar.test │ │ │ ├── type_varchar2.test │ │ │ ├── update_innodb.test │ │ │ ├── variables.test │ │ │ ├── vcol.test │ │ │ ├── versioning.test │ │ │ └── win.test │ │ ├── csv/ │ │ │ ├── csv.result │ │ │ ├── csv.test │ │ │ ├── csv_alter_table.result │ │ │ ├── csv_alter_table.test │ │ │ ├── csv_not_null.result │ │ │ ├── csv_not_null.test │ │ │ ├── flush.result │ │ │ ├── flush.test │ │ │ ├── read_only.result │ │ │ └── read_only.test │ │ ├── encryption/ │ │ │ ├── include/ │ │ │ │ ├── have_example_key_management_plugin.inc │ │ │ │ ├── have_example_key_management_plugin.opt │ │ │ │ ├── have_file_key_management_plugin.combinations │ │ │ │ ├── have_file_key_management_plugin.inc │ │ │ │ └── innodb-util.pl │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── aria_tiny.result │ │ │ │ ├── compressed_import_tablespace.result │ │ │ │ ├── corrupted_during_recovery.result │ │ │ │ ├── create_or_replace.result │ │ │ │ ├── create_or_replace_big.result │ │ │ │ ├── debug_key_management.result │ │ │ │ ├── encrypt_and_grep.result │ │ │ │ ├── encryption_force.result │ │ │ │ ├── encryption_key_corruption.result │ │ │ │ ├── file_creation.result │ │ │ │ ├── filekeys_emptyfile.result │ │ │ │ ├── filekeys_encfile.result │ │ │ │ ├── filekeys_encfile_bad.result │ │ │ │ ├── filekeys_encfile_badfile.result │ │ │ │ ├── filekeys_encfile_file.result │ │ │ │ ├── filekeys_encfile_no.result │ │ │ │ ├── filekeys_nofile.result │ │ │ │ ├── filekeys_syntax.result │ │ │ │ ├── filekeys_tooshort.result │ │ │ │ ├── filekeys_unencfile.result │ │ │ │ ├── innochecksum.result │ │ │ │ ├── innodb-bad-key-change.result │ │ │ │ ├── innodb-bad-key-change2.result │ │ │ │ ├── innodb-bad-key-change3.result │ │ │ │ ├── innodb-bad-key-change4.result │ │ │ │ ├── innodb-checksum-algorithm,32k.rdiff │ │ │ │ ├── innodb-checksum-algorithm,64k.rdiff │ │ │ │ ├── innodb-checksum-algorithm.result │ │ │ │ ├── innodb-compressed-blob.result │ │ │ │ ├── innodb-discard-import-change.result │ │ │ │ ├── innodb-discard-import.result │ │ │ │ ├── innodb-encr-threads.result │ │ │ │ ├── innodb-encryption-alter.result │ │ │ │ ├── innodb-encryption-disable.result │ │ │ │ ├── innodb-force-corrupt.result │ │ │ │ ├── innodb-key-rotation-disable.result │ │ │ │ ├── innodb-missing-key.result │ │ │ │ ├── innodb-page_encryption-32k.result │ │ │ │ ├── innodb-page_encryption.result │ │ │ │ ├── innodb-page_encryption_compression.result │ │ │ │ ├── innodb-page_encryption_log_encryption.result │ │ │ │ ├── innodb-read-only.result │ │ │ │ ├── innodb-redo-badkey.result │ │ │ │ ├── innodb-redo-nokeys.result │ │ │ │ ├── innodb-remove-encryption.result │ │ │ │ ├── innodb-spatial-index,full_crc32.rdiff │ │ │ │ ├── innodb-spatial-index,strict_full_crc32.rdiff │ │ │ │ ├── innodb-spatial-index.result │ │ │ │ ├── innodb_encrypt_freed.result │ │ │ │ ├── innodb_encrypt_key_rotation_age.result │ │ │ │ ├── innodb_encrypt_log.result │ │ │ │ ├── innodb_encrypt_log_corruption.result │ │ │ │ ├── innodb_encrypt_temporary_tables.result │ │ │ │ ├── innodb_encryption-page-compression.result │ │ │ │ ├── innodb_encryption.result │ │ │ │ ├── innodb_encryption_discard_import.result │ │ │ │ ├── innodb_encryption_filekeys.result │ │ │ │ ├── innodb_encryption_is.result │ │ │ │ ├── innodb_encryption_row_compressed.result │ │ │ │ ├── innodb_encryption_tables.result │ │ │ │ ├── innodb_first_page.result │ │ │ │ ├── innodb_import.result │ │ │ │ ├── innodb_onlinealter_encryption.result │ │ │ │ ├── innodb_page_encryption_key_change.result │ │ │ │ ├── instant_alter_import.result │ │ │ │ ├── key_version_rotation.result │ │ │ │ ├── second_plugin-12863.result │ │ │ │ ├── tempfiles.result │ │ │ │ └── tempfiles_encrypted.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── aria_tiny.test │ │ │ ├── compressed_import_tablespace.opt │ │ │ ├── compressed_import_tablespace.test │ │ │ ├── corrupted_during_recovery.combinations │ │ │ ├── corrupted_during_recovery.test │ │ │ ├── create_or_replace.opt │ │ │ ├── create_or_replace.test │ │ │ ├── create_or_replace_big.opt │ │ │ ├── create_or_replace_big.test │ │ │ ├── debug_key_management.opt │ │ │ ├── debug_key_management.test │ │ │ ├── encrypt_and_grep.opt │ │ │ ├── encrypt_and_grep.test │ │ │ ├── encryption_force.opt │ │ │ ├── encryption_force.test │ │ │ ├── encryption_key_corruption.combinations │ │ │ ├── encryption_key_corruption.opt │ │ │ ├── encryption_key_corruption.test │ │ │ ├── file_creation.opt │ │ │ ├── file_creation.test │ │ │ ├── filekeys-data.enc │ │ │ ├── filekeys-data.key │ │ │ ├── filekeys-tooshort.enc │ │ │ ├── filekeys_badtest.inc │ │ │ ├── filekeys_emptyfile.opt │ │ │ ├── filekeys_emptyfile.test │ │ │ ├── filekeys_encfile.opt │ │ │ ├── filekeys_encfile.test │ │ │ ├── filekeys_encfile_bad.opt │ │ │ ├── filekeys_encfile_bad.test │ │ │ ├── filekeys_encfile_badfile.opt │ │ │ ├── filekeys_encfile_badfile.test │ │ │ ├── filekeys_encfile_file.opt │ │ │ ├── filekeys_encfile_file.test │ │ │ ├── filekeys_encfile_no.opt │ │ │ ├── filekeys_encfile_no.test │ │ │ ├── filekeys_goodtest.inc │ │ │ ├── filekeys_nofile.test │ │ │ ├── filekeys_plugin.inc │ │ │ ├── filekeys_plugin.opt │ │ │ ├── filekeys_plugin_exists.inc │ │ │ ├── filekeys_syntax.opt │ │ │ ├── filekeys_syntax.test │ │ │ ├── filekeys_tooshort.opt │ │ │ ├── filekeys_tooshort.test │ │ │ ├── filekeys_unencfile.opt │ │ │ ├── filekeys_unencfile.test │ │ │ ├── innochecksum.test │ │ │ ├── innodb-bad-key-change.combinations │ │ │ ├── innodb-bad-key-change.opt │ │ │ ├── innodb-bad-key-change.test │ │ │ ├── innodb-bad-key-change2.combinations │ │ │ ├── innodb-bad-key-change2.opt │ │ │ ├── innodb-bad-key-change2.test │ │ │ ├── innodb-bad-key-change3.combinations │ │ │ ├── innodb-bad-key-change3.test │ │ │ ├── innodb-bad-key-change4.combinations │ │ │ ├── innodb-bad-key-change4.opt │ │ │ ├── innodb-bad-key-change4.test │ │ │ ├── innodb-checksum-algorithm.test │ │ │ ├── innodb-compressed-blob.opt │ │ │ ├── innodb-compressed-blob.test │ │ │ ├── innodb-discard-import-change.combinations │ │ │ ├── innodb-discard-import-change.test │ │ │ ├── innodb-discard-import.combinations │ │ │ ├── innodb-discard-import.test │ │ │ ├── innodb-encr-threads.test │ │ │ ├── innodb-encryption-alter.test │ │ │ ├── innodb-encryption-disable.opt │ │ │ ├── innodb-encryption-disable.test │ │ │ ├── innodb-first-page-read.opt │ │ │ ├── innodb-force-corrupt.opt │ │ │ ├── innodb-force-corrupt.test │ │ │ ├── innodb-key-rotation-disable.opt │ │ │ ├── innodb-key-rotation-disable.test │ │ │ ├── innodb-missing-key.opt │ │ │ ├── innodb-missing-key.test │ │ │ ├── innodb-page_encryption-32k.opt │ │ │ ├── innodb-page_encryption-32k.test │ │ │ ├── innodb-page_encryption.test │ │ │ ├── innodb-page_encryption_compression.test │ │ │ ├── innodb-page_encryption_log_encryption.opt │ │ │ ├── innodb-page_encryption_log_encryption.test │ │ │ ├── innodb-read-only.opt │ │ │ ├── innodb-read-only.test │ │ │ ├── innodb-redo-badkey.combinations │ │ │ ├── innodb-redo-badkey.opt │ │ │ ├── innodb-redo-badkey.test │ │ │ ├── innodb-redo-nokeys.opt │ │ │ ├── innodb-redo-nokeys.test │ │ │ ├── innodb-remove-encryption.test │ │ │ ├── innodb-spatial-index.opt │ │ │ ├── innodb-spatial-index.test │ │ │ ├── innodb_encrypt_freed.opt │ │ │ ├── innodb_encrypt_freed.test │ │ │ ├── innodb_encrypt_key_rotation_age.opt │ │ │ ├── innodb_encrypt_key_rotation_age.test │ │ │ ├── innodb_encrypt_log.opt │ │ │ ├── innodb_encrypt_log.test │ │ │ ├── innodb_encrypt_log_corruption.opt │ │ │ ├── innodb_encrypt_log_corruption.test │ │ │ ├── innodb_encrypt_temporary_tables.combinations │ │ │ ├── innodb_encrypt_temporary_tables.opt │ │ │ ├── innodb_encrypt_temporary_tables.test │ │ │ ├── innodb_encryption-page-compression.opt │ │ │ ├── innodb_encryption-page-compression.test │ │ │ ├── innodb_encryption.opt │ │ │ ├── innodb_encryption.test │ │ │ ├── innodb_encryption_discard_import.opt │ │ │ ├── innodb_encryption_discard_import.test │ │ │ ├── innodb_encryption_filekeys.opt │ │ │ ├── innodb_encryption_filekeys.test │ │ │ ├── innodb_encryption_is.opt │ │ │ ├── innodb_encryption_is.test │ │ │ ├── innodb_encryption_row_compressed.opt │ │ │ ├── innodb_encryption_row_compressed.test │ │ │ ├── innodb_encryption_tables.opt │ │ │ ├── innodb_encryption_tables.test │ │ │ ├── innodb_first_page.opt │ │ │ ├── innodb_first_page.test │ │ │ ├── innodb_import.combinations │ │ │ ├── innodb_import.opt │ │ │ ├── innodb_import.test │ │ │ ├── innodb_onlinealter_encryption.opt │ │ │ ├── innodb_onlinealter_encryption.test │ │ │ ├── innodb_page_encryption_key_change.test │ │ │ ├── instant_alter_import.test │ │ │ ├── key_version_rotation.opt │ │ │ ├── key_version_rotation.test │ │ │ ├── second_plugin-12863.test │ │ │ ├── tempfiles.combinations │ │ │ ├── tempfiles.opt │ │ │ ├── tempfiles.test │ │ │ ├── tempfiles_encrypted.opt │ │ │ └── tempfiles_encrypted.test │ │ ├── engines/ │ │ │ ├── README │ │ │ ├── funcs/ │ │ │ │ ├── combinations │ │ │ │ ├── disabled.def │ │ │ │ ├── r/ │ │ │ │ │ ├── ai_init_alter_table.result │ │ │ │ │ ├── ai_init_create_table.result │ │ │ │ │ ├── ai_init_insert.result │ │ │ │ │ ├── ai_init_insert_id.result │ │ │ │ │ ├── ai_overflow_error.result │ │ │ │ │ ├── ai_reset_by_truncate.result │ │ │ │ │ ├── ai_sql_auto_is_null.result │ │ │ │ │ ├── an_calendar.result │ │ │ │ │ ├── an_number.result │ │ │ │ │ ├── an_string.result │ │ │ │ │ ├── comment_column.result │ │ │ │ │ ├── comment_column2.result │ │ │ │ │ ├── comment_index.result │ │ │ │ │ ├── comment_table.result │ │ │ │ │ ├── crash_manycolumns_number.result │ │ │ │ │ ├── crash_manycolumns_string.result │ │ │ │ │ ├── crash_manyindexes_number.result │ │ │ │ │ ├── crash_manyindexes_string.result │ │ │ │ │ ├── crash_manytables_number.result │ │ │ │ │ ├── crash_manytables_string.result │ │ │ │ │ ├── date_function.result │ │ │ │ │ ├── datetime_function.result │ │ │ │ │ ├── db_alter_character_set.result │ │ │ │ │ ├── db_alter_character_set_collate.result │ │ │ │ │ ├── db_alter_collate_ascii.result │ │ │ │ │ ├── db_alter_collate_utf8.result │ │ │ │ │ ├── db_create_character_set.result │ │ │ │ │ ├── db_create_character_set_collate.result │ │ │ │ │ ├── db_create_drop.result │ │ │ │ │ ├── db_create_error.result │ │ │ │ │ ├── db_create_error_reserved.result │ │ │ │ │ ├── db_create_if_not_exists.result │ │ │ │ │ ├── db_drop_error.result │ │ │ │ │ ├── db_use_error.result │ │ │ │ │ ├── de_autoinc.result │ │ │ │ │ ├── de_calendar_range.result │ │ │ │ │ ├── de_ignore.result │ │ │ │ │ ├── de_limit.result │ │ │ │ │ ├── de_multi_db_table.result │ │ │ │ │ ├── de_multi_db_table_using.result │ │ │ │ │ ├── de_multi_table.result │ │ │ │ │ ├── de_multi_table_using.result │ │ │ │ │ ├── de_number_range.result │ │ │ │ │ ├── de_quick.result │ │ │ │ │ ├── de_string_range.result │ │ │ │ │ ├── de_truncate.result │ │ │ │ │ ├── de_truncate_autoinc.result │ │ │ │ │ ├── fu_aggregate_avg_number.result │ │ │ │ │ ├── fu_aggregate_count_number.result │ │ │ │ │ ├── fu_aggregate_max_number.result │ │ │ │ │ ├── fu_aggregate_max_subquery.result │ │ │ │ │ ├── fu_aggregate_min_number.result │ │ │ │ │ ├── fu_aggregate_sum_number.result │ │ │ │ │ ├── general_no_data.result │ │ │ │ │ ├── general_not_null.result │ │ │ │ │ ├── general_null.result │ │ │ │ │ ├── in_calendar_2_unique_constraints_duplicate_update.result │ │ │ │ │ ├── in_calendar_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_calendar_pk_constraint_error.result │ │ │ │ │ ├── in_calendar_pk_constraint_ignore.result │ │ │ │ │ ├── in_calendar_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_calendar_unique_constraint_error.result │ │ │ │ │ ├── in_calendar_unique_constraint_ignore.result │ │ │ │ │ ├── in_enum_null.result │ │ │ │ │ ├── in_enum_null_boundary_error.result │ │ │ │ │ ├── in_enum_null_large_error.result │ │ │ │ │ ├── in_insert_select.result │ │ │ │ │ ├── in_insert_select_autoinc.result │ │ │ │ │ ├── in_insert_select_unique_violation.result │ │ │ │ │ ├── in_lob_boundary_error.result │ │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_error.result │ │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_ignore.result │ │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_error.result │ │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_ignore.result │ │ │ │ │ ├── in_multicolumn_number_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_number_pk_constraint_error.result │ │ │ │ │ ├── in_multicolumn_number_pk_constraint_ignore.result │ │ │ │ │ ├── in_multicolumn_number_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_number_unique_constraint_error.result │ │ │ │ │ ├── in_multicolumn_number_unique_constraint_ignore.result │ │ │ │ │ ├── in_multicolumn_string_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_string_pk_constraint_error.result │ │ │ │ │ ├── in_multicolumn_string_pk_constraint_ignore.result │ │ │ │ │ ├── in_multicolumn_string_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_multicolumn_string_unique_constraint_error.result │ │ │ │ │ ├── in_multicolumn_string_unique_constraint_ignore.result │ │ │ │ │ ├── in_number_2_unique_constraints_duplicate_update.result │ │ │ │ │ ├── in_number_boundary_error.result │ │ │ │ │ ├── in_number_decimal_boundary_error.result │ │ │ │ │ ├── in_number_length.result │ │ │ │ │ ├── in_number_null.result │ │ │ │ │ ├── in_number_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_number_pk_constraint_error.result │ │ │ │ │ ├── in_number_pk_constraint_ignore.result │ │ │ │ │ ├── in_number_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_number_unique_constraint_error.result │ │ │ │ │ ├── in_number_unique_constraint_ignore.result │ │ │ │ │ ├── in_set_null.result │ │ │ │ │ ├── in_set_null_boundary_error.result │ │ │ │ │ ├── in_set_null_large.result │ │ │ │ │ ├── in_string_2_unique_constraints_duplicate_update.result │ │ │ │ │ ├── in_string_boundary_error.result │ │ │ │ │ ├── in_string_not_null.result │ │ │ │ │ ├── in_string_null.result │ │ │ │ │ ├── in_string_pk_constraint_duplicate_update.result │ │ │ │ │ ├── in_string_pk_constraint_error.result │ │ │ │ │ ├── in_string_pk_constraint_ignore.result │ │ │ │ │ ├── in_string_set_enum_fail.result │ │ │ │ │ ├── in_string_unique_constraint_duplicate_update.result │ │ │ │ │ ├── in_string_unique_constraint_error.result │ │ │ │ │ ├── in_string_unique_constraint_ignore.result │ │ │ │ │ ├── ix_drop.result │ │ │ │ │ ├── ix_drop_error.result │ │ │ │ │ ├── ix_index_decimals.result │ │ │ │ │ ├── ix_index_lob.result │ │ │ │ │ ├── ix_index_non_string.result │ │ │ │ │ ├── ix_index_string.result │ │ │ │ │ ├── ix_index_string_length.result │ │ │ │ │ ├── ix_unique_decimals.result │ │ │ │ │ ├── ix_unique_lob.result │ │ │ │ │ ├── ix_unique_non_string.result │ │ │ │ │ ├── ix_unique_string.result │ │ │ │ │ ├── ix_unique_string_length.result │ │ │ │ │ ├── ix_using_order.result │ │ │ │ │ ├── jp_comment_column.result │ │ │ │ │ ├── jp_comment_index.result │ │ │ │ │ ├── jp_comment_older_compatibility1.result │ │ │ │ │ ├── jp_comment_table.result │ │ │ │ │ ├── ld_all_number_string_calendar_types.result │ │ │ │ │ ├── ld_bit.result │ │ │ │ │ ├── ld_enum_set.result │ │ │ │ │ ├── ld_less_columns.result │ │ │ │ │ ├── ld_more_columns_truncated.result │ │ │ │ │ ├── ld_null.result │ │ │ │ │ ├── ld_quote.result │ │ │ │ │ ├── ld_simple.result │ │ │ │ │ ├── ld_starting.result │ │ │ │ │ ├── ld_unique_error1.result │ │ │ │ │ ├── ld_unique_error1_local.result │ │ │ │ │ ├── ld_unique_error2.result │ │ │ │ │ ├── ld_unique_error2_local.result │ │ │ │ │ ├── ld_unique_error3.result │ │ │ │ │ ├── ld_unique_error3_local.result │ │ │ │ │ ├── ps_number_length.result │ │ │ │ │ ├── ps_number_null.result │ │ │ │ │ ├── ps_string_not_null.result │ │ │ │ │ ├── ps_string_null.result │ │ │ │ │ ├── re_number_range.result │ │ │ │ │ ├── re_number_range_set.result │ │ │ │ │ ├── re_number_select.result │ │ │ │ │ ├── re_string_range.result │ │ │ │ │ ├── re_string_range_set.result │ │ │ │ │ ├── rpl_000010.result │ │ │ │ │ ├── rpl_000011.result │ │ │ │ │ ├── rpl_000013.result │ │ │ │ │ ├── rpl_000015.result │ │ │ │ │ ├── rpl_000017.result │ │ │ │ │ ├── rpl_LD_INFILE.result │ │ │ │ │ ├── rpl_alter,innodb.rdiff │ │ │ │ │ ├── rpl_alter.result │ │ │ │ │ ├── rpl_alter_db.result │ │ │ │ │ ├── rpl_bit.result │ │ │ │ │ ├── rpl_bit_npk.result │ │ │ │ │ ├── rpl_change_master.result │ │ │ │ │ ├── rpl_create_database.result │ │ │ │ │ ├── rpl_do_grant.result │ │ │ │ │ ├── rpl_drop.result │ │ │ │ │ ├── rpl_drop_db.result │ │ │ │ │ ├── rpl_dual_pos_advance.result │ │ │ │ │ ├── rpl_err_ignoredtable.result │ │ │ │ │ ├── rpl_flushlog_loop.result │ │ │ │ │ ├── rpl_free_items.result │ │ │ │ │ ├── rpl_get_lock.result │ │ │ │ │ ├── rpl_ignore_grant.result │ │ │ │ │ ├── rpl_ignore_revoke.result │ │ │ │ │ ├── rpl_ignore_table_update.result │ │ │ │ │ ├── rpl_init_slave.result │ │ │ │ │ ├── rpl_insert.result │ │ │ │ │ ├── rpl_insert_select.result │ │ │ │ │ ├── rpl_loaddata2.result │ │ │ │ │ ├── rpl_loaddata_m.result │ │ │ │ │ ├── rpl_loaddata_s.result │ │ │ │ │ ├── rpl_loaddatalocal.result │ │ │ │ │ ├── rpl_loadfile.result │ │ │ │ │ ├── rpl_log_pos.result │ │ │ │ │ ├── rpl_many_optimize.result │ │ │ │ │ ├── rpl_misc_functions.result │ │ │ │ │ ├── rpl_multi_delete.result │ │ │ │ │ ├── rpl_multi_delete2.result │ │ │ │ │ ├── rpl_multi_update4.result │ │ │ │ │ ├── rpl_ps.result │ │ │ │ │ ├── rpl_relayspace.result │ │ │ │ │ ├── rpl_replicate_ignore_db.result │ │ │ │ │ ├── rpl_row_NOW.result │ │ │ │ │ ├── rpl_row_USER.result │ │ │ │ │ ├── rpl_row_drop.result │ │ │ │ │ ├── rpl_row_func001.result │ │ │ │ │ ├── rpl_row_inexist_tbl.result │ │ │ │ │ ├── rpl_row_max_relay_size.result │ │ │ │ │ ├── rpl_row_reset_slave.result │ │ │ │ │ ├── rpl_row_sp001.result │ │ │ │ │ ├── rpl_row_sp005.result │ │ │ │ │ ├── rpl_row_sp008.result │ │ │ │ │ ├── rpl_row_sp009.result │ │ │ │ │ ├── rpl_row_sp010.result │ │ │ │ │ ├── rpl_row_sp011.result │ │ │ │ │ ├── rpl_row_sp012.result │ │ │ │ │ ├── rpl_row_stop_middle.result │ │ │ │ │ ├── rpl_row_trig001.result │ │ │ │ │ ├── rpl_row_trig002.result │ │ │ │ │ ├── rpl_row_trig003.result │ │ │ │ │ ├── rpl_row_until.result │ │ │ │ │ ├── rpl_row_view01.result │ │ │ │ │ ├── rpl_server_id1.result │ │ │ │ │ ├── rpl_server_id2.result │ │ │ │ │ ├── rpl_session_var.result │ │ │ │ │ ├── rpl_sf.result │ │ │ │ │ ├── rpl_skip_error.result │ │ │ │ │ ├── rpl_slave_status.result │ │ │ │ │ ├── rpl_sp,myisam,mix.rdiff │ │ │ │ │ ├── rpl_sp.result │ │ │ │ │ ├── rpl_sp004.result │ │ │ │ │ ├── rpl_sp_effects.result │ │ │ │ │ ├── rpl_start_stop_slave.result │ │ │ │ │ ├── rpl_stm_max_relay_size.result │ │ │ │ │ ├── rpl_stm_mystery22.result │ │ │ │ │ ├── rpl_stm_no_op.result │ │ │ │ │ ├── rpl_stm_reset_slave.result │ │ │ │ │ ├── rpl_switch_stm_row_mixed.result │ │ │ │ │ ├── rpl_temp_table.result │ │ │ │ │ ├── rpl_temporary.result │ │ │ │ │ ├── rpl_trigger.result │ │ │ │ │ ├── rpl_trunc_temp.result │ │ │ │ │ ├── rpl_user_variables.result │ │ │ │ │ ├── rpl_variables.result │ │ │ │ │ ├── rpl_view.result │ │ │ │ │ ├── se_join_cross.result │ │ │ │ │ ├── se_join_default.result │ │ │ │ │ ├── se_join_inner.result │ │ │ │ │ ├── se_join_left.result │ │ │ │ │ ├── se_join_left_outer.result │ │ │ │ │ ├── se_join_natural_left.result │ │ │ │ │ ├── se_join_natural_left_outer.result │ │ │ │ │ ├── se_join_natural_right.result │ │ │ │ │ ├── se_join_natural_right_outer.result │ │ │ │ │ ├── se_join_right.result │ │ │ │ │ ├── se_join_right_outer.result │ │ │ │ │ ├── se_join_straight.result │ │ │ │ │ ├── se_rowid.result │ │ │ │ │ ├── se_string_distinct.result │ │ │ │ │ ├── se_string_from.result │ │ │ │ │ ├── se_string_groupby.result │ │ │ │ │ ├── se_string_having.result │ │ │ │ │ ├── se_string_limit.result │ │ │ │ │ ├── se_string_orderby.result │ │ │ │ │ ├── se_string_union.result │ │ │ │ │ ├── se_string_where.result │ │ │ │ │ ├── se_string_where_and.result │ │ │ │ │ ├── se_string_where_or.result │ │ │ │ │ ├── sf_alter.result │ │ │ │ │ ├── sf_cursor.result │ │ │ │ │ ├── sf_simple1.result │ │ │ │ │ ├── sp_alter.result │ │ │ │ │ ├── sp_cursor.result │ │ │ │ │ ├── sp_simple1.result │ │ │ │ │ ├── sq_all.result │ │ │ │ │ ├── sq_any.result │ │ │ │ │ ├── sq_corr.result │ │ │ │ │ ├── sq_error.result │ │ │ │ │ ├── sq_exists.result │ │ │ │ │ ├── sq_from.result │ │ │ │ │ ├── sq_in.result │ │ │ │ │ ├── sq_row.result │ │ │ │ │ ├── sq_scalar.result │ │ │ │ │ ├── sq_some.result │ │ │ │ │ ├── ta_2part_column_to_pk.result │ │ │ │ │ ├── ta_2part_diff_string_to_pk.result │ │ │ │ │ ├── ta_2part_diff_to_pk.result │ │ │ │ │ ├── ta_2part_string_to_pk.result │ │ │ │ │ ├── ta_3part_column_to_pk.result │ │ │ │ │ ├── ta_3part_string_to_pk.result │ │ │ │ │ ├── ta_add_column.result │ │ │ │ │ ├── ta_add_column2.result │ │ │ │ │ ├── ta_add_column_first.result │ │ │ │ │ ├── ta_add_column_first2.result │ │ │ │ │ ├── ta_add_column_middle.result │ │ │ │ │ ├── ta_add_column_middle2.result │ │ │ │ │ ├── ta_add_string.result │ │ │ │ │ ├── ta_add_string2.result │ │ │ │ │ ├── ta_add_string_first.result │ │ │ │ │ ├── ta_add_string_first2.result │ │ │ │ │ ├── ta_add_string_middle.result │ │ │ │ │ ├── ta_add_string_middle2.result │ │ │ │ │ ├── ta_add_string_unique_index.result │ │ │ │ │ ├── ta_add_unique_index.result │ │ │ │ │ ├── ta_column_from_unsigned.result │ │ │ │ │ ├── ta_column_from_zerofill.result │ │ │ │ │ ├── ta_column_to_index.result │ │ │ │ │ ├── ta_column_to_not_null.result │ │ │ │ │ ├── ta_column_to_null.result │ │ │ │ │ ├── ta_column_to_pk.result │ │ │ │ │ ├── ta_column_to_unsigned.result │ │ │ │ │ ├── ta_column_to_zerofill.result │ │ │ │ │ ├── ta_drop_column.result │ │ │ │ │ ├── ta_drop_index.result │ │ │ │ │ ├── ta_drop_pk_autoincrement.result │ │ │ │ │ ├── ta_drop_pk_number.result │ │ │ │ │ ├── ta_drop_pk_string.result │ │ │ │ │ ├── ta_drop_string_index.result │ │ │ │ │ ├── ta_orderby.result │ │ │ │ │ ├── ta_rename.result │ │ │ │ │ ├── ta_set_drop_default.result │ │ │ │ │ ├── ta_string_drop_column.result │ │ │ │ │ ├── ta_string_to_index.result │ │ │ │ │ ├── ta_string_to_not_null.result │ │ │ │ │ ├── ta_string_to_null.result │ │ │ │ │ ├── ta_string_to_pk.result │ │ │ │ │ ├── tc_column_autoincrement.result │ │ │ │ │ ├── tc_column_comment.result │ │ │ │ │ ├── tc_column_comment_string.result │ │ │ │ │ ├── tc_column_default_decimal.result │ │ │ │ │ ├── tc_column_default_number.result │ │ │ │ │ ├── tc_column_default_string.result │ │ │ │ │ ├── tc_column_enum.result │ │ │ │ │ ├── tc_column_enum_long.result │ │ │ │ │ ├── tc_column_key.result │ │ │ │ │ ├── tc_column_key_length.result │ │ │ │ │ ├── tc_column_length.result │ │ │ │ │ ├── tc_column_length_decimals.result │ │ │ │ │ ├── tc_column_length_zero.result │ │ │ │ │ ├── tc_column_not_null.result │ │ │ │ │ ├── tc_column_null.result │ │ │ │ │ ├── tc_column_primary_key_number.result │ │ │ │ │ ├── tc_column_primary_key_string.result │ │ │ │ │ ├── tc_column_serial.result │ │ │ │ │ ├── tc_column_set.result │ │ │ │ │ ├── tc_column_set_long.result │ │ │ │ │ ├── tc_column_unique_key.result │ │ │ │ │ ├── tc_column_unique_key_string.result │ │ │ │ │ ├── tc_column_unsigned.result │ │ │ │ │ ├── tc_column_zerofill.result │ │ │ │ │ ├── tc_drop_table.result │ │ │ │ │ ├── tc_multicolumn_different.result │ │ │ │ │ ├── tc_multicolumn_same.result │ │ │ │ │ ├── tc_multicolumn_same_string.result │ │ │ │ │ ├── tc_partition_analyze.result │ │ │ │ │ ├── tc_partition_change_from_range_to_hash_key.result │ │ │ │ │ ├── tc_partition_check.result │ │ │ │ │ ├── tc_partition_hash.result │ │ │ │ │ ├── tc_partition_hash_date_function.result │ │ │ │ │ ├── tc_partition_key.result │ │ │ │ │ ├── tc_partition_linear_key.result │ │ │ │ │ ├── tc_partition_list_directory.result │ │ │ │ │ ├── tc_partition_list_error.result │ │ │ │ │ ├── tc_partition_optimize.result │ │ │ │ │ ├── tc_partition_rebuild.result │ │ │ │ │ ├── tc_partition_remove.result │ │ │ │ │ ├── tc_partition_reorg_divide.result │ │ │ │ │ ├── tc_partition_reorg_hash_key.result │ │ │ │ │ ├── tc_partition_reorg_merge.result │ │ │ │ │ ├── tc_partition_repair.result │ │ │ │ │ ├── tc_partition_sub1.result │ │ │ │ │ ├── tc_partition_sub2.result │ │ │ │ │ ├── tc_partition_value.result │ │ │ │ │ ├── tc_partition_value_error.result │ │ │ │ │ ├── tc_partition_value_specific.result │ │ │ │ │ ├── tc_rename.result │ │ │ │ │ ├── tc_rename_across_database.result │ │ │ │ │ ├── tc_rename_error.result │ │ │ │ │ ├── tc_structure_comment.result │ │ │ │ │ ├── tc_structure_create_like.result │ │ │ │ │ ├── tc_structure_create_like_string.result │ │ │ │ │ ├── tc_structure_create_select.result │ │ │ │ │ ├── tc_structure_create_select_string.result │ │ │ │ │ ├── tc_structure_string_comment.result │ │ │ │ │ ├── tc_temporary_column.result │ │ │ │ │ ├── tc_temporary_column_length.result │ │ │ │ │ ├── time_function.result │ │ │ │ │ ├── tr_all_type_triggers.result │ │ │ │ │ ├── tr_delete.result │ │ │ │ │ ├── tr_delete_new_error.result │ │ │ │ │ ├── tr_insert.result │ │ │ │ │ ├── tr_insert_after_error.result │ │ │ │ │ ├── tr_insert_old_error.result │ │ │ │ │ ├── tr_update.result │ │ │ │ │ ├── tr_update_after_error.result │ │ │ │ │ ├── up_calendar_range.result │ │ │ │ │ ├── up_ignore.result │ │ │ │ │ ├── up_limit.result │ │ │ │ │ ├── up_multi_db_table.result │ │ │ │ │ ├── up_multi_table.result │ │ │ │ │ ├── up_nullcheck.result │ │ │ │ │ ├── up_number_range.result │ │ │ │ │ └── up_string_range.result │ │ │ │ └── t/ │ │ │ │ ├── ai_init_alter_table.test │ │ │ │ ├── ai_init_create_table.test │ │ │ │ ├── ai_init_insert.test │ │ │ │ ├── ai_init_insert_id.test │ │ │ │ ├── ai_overflow_error.test │ │ │ │ ├── ai_reset_by_truncate.test │ │ │ │ ├── ai_sql_auto_is_null.test │ │ │ │ ├── an_calendar.test │ │ │ │ ├── an_number.test │ │ │ │ ├── an_string.test │ │ │ │ ├── comment_column.test │ │ │ │ ├── comment_column2.test │ │ │ │ ├── comment_index.test │ │ │ │ ├── comment_table.test │ │ │ │ ├── crash_manycolumns_number.test │ │ │ │ ├── crash_manycolumns_string.test │ │ │ │ ├── crash_manyindexes_number.test │ │ │ │ ├── crash_manyindexes_string.test │ │ │ │ ├── crash_manytables_number.test │ │ │ │ ├── crash_manytables_string.test │ │ │ │ ├── data1.inc │ │ │ │ ├── data2.inc │ │ │ │ ├── date_function.test │ │ │ │ ├── datetime_function.test │ │ │ │ ├── db_alter_character_set.test │ │ │ │ ├── db_alter_character_set_collate.test │ │ │ │ ├── db_alter_collate_ascii.test │ │ │ │ ├── db_alter_collate_utf8.test │ │ │ │ ├── db_create_character_set.test │ │ │ │ ├── db_create_character_set_collate.test │ │ │ │ ├── db_create_drop.test │ │ │ │ ├── db_create_error.test │ │ │ │ ├── db_create_error_reserved.test │ │ │ │ ├── db_create_if_not_exists.test │ │ │ │ ├── db_drop_error.test │ │ │ │ ├── db_use_error.test │ │ │ │ ├── de_autoinc.test │ │ │ │ ├── de_calendar_range.test │ │ │ │ ├── de_ignore.test │ │ │ │ ├── de_limit.test │ │ │ │ ├── de_multi_db_table.test │ │ │ │ ├── de_multi_db_table_using.test │ │ │ │ ├── de_multi_table.test │ │ │ │ ├── de_multi_table_using.test │ │ │ │ ├── de_number_range.test │ │ │ │ ├── de_quick.test │ │ │ │ ├── de_string_range.test │ │ │ │ ├── de_truncate.test │ │ │ │ ├── de_truncate_autoinc.test │ │ │ │ ├── fu_aggregate_avg_number.test │ │ │ │ ├── fu_aggregate_count_number.test │ │ │ │ ├── fu_aggregate_max_number.test │ │ │ │ ├── fu_aggregate_max_subquery.test │ │ │ │ ├── fu_aggregate_min_number.test │ │ │ │ ├── fu_aggregate_sum_number.test │ │ │ │ ├── general_no_data.test │ │ │ │ ├── general_not_null.test │ │ │ │ ├── general_null.test │ │ │ │ ├── in_calendar_2_unique_constraints_duplicate_update.test │ │ │ │ ├── in_calendar_pk_constraint_duplicate_update.test │ │ │ │ ├── in_calendar_pk_constraint_error.test │ │ │ │ ├── in_calendar_pk_constraint_ignore.test │ │ │ │ ├── in_calendar_unique_constraint_duplicate_update.test │ │ │ │ ├── in_calendar_unique_constraint_error.test │ │ │ │ ├── in_calendar_unique_constraint_ignore.test │ │ │ │ ├── in_enum_null.test │ │ │ │ ├── in_enum_null_boundary_error.test │ │ │ │ ├── in_enum_null_large_error.test │ │ │ │ ├── in_insert_select.test │ │ │ │ ├── in_insert_select_autoinc.test │ │ │ │ ├── in_insert_select_unique_violation.test │ │ │ │ ├── in_lob_boundary_error.test │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_error.test │ │ │ │ ├── in_multicolumn_calendar_pk_constraint_ignore.test │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_error.test │ │ │ │ ├── in_multicolumn_calendar_unique_constraint_ignore.test │ │ │ │ ├── in_multicolumn_number_pk_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_number_pk_constraint_error.test │ │ │ │ ├── in_multicolumn_number_pk_constraint_ignore.test │ │ │ │ ├── in_multicolumn_number_unique_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_number_unique_constraint_error.test │ │ │ │ ├── in_multicolumn_number_unique_constraint_ignore.test │ │ │ │ ├── in_multicolumn_string_pk_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_string_pk_constraint_error.test │ │ │ │ ├── in_multicolumn_string_pk_constraint_ignore.test │ │ │ │ ├── in_multicolumn_string_unique_constraint_duplicate_update.test │ │ │ │ ├── in_multicolumn_string_unique_constraint_error.test │ │ │ │ ├── in_multicolumn_string_unique_constraint_ignore.test │ │ │ │ ├── in_number_2_unique_constraints_duplicate_update.test │ │ │ │ ├── in_number_boundary_error.test │ │ │ │ ├── in_number_decimal_boundary_error.test │ │ │ │ ├── in_number_length.test │ │ │ │ ├── in_number_null.test │ │ │ │ ├── in_number_pk_constraint_duplicate_update.test │ │ │ │ ├── in_number_pk_constraint_error.test │ │ │ │ ├── in_number_pk_constraint_ignore.test │ │ │ │ ├── in_number_unique_constraint_duplicate_update.test │ │ │ │ ├── in_number_unique_constraint_error.test │ │ │ │ ├── in_number_unique_constraint_ignore.test │ │ │ │ ├── in_set_null.test │ │ │ │ ├── in_set_null_boundary_error.test │ │ │ │ ├── in_set_null_large.test │ │ │ │ ├── in_string_2_unique_constraints_duplicate_update.test │ │ │ │ ├── in_string_boundary_error.test │ │ │ │ ├── in_string_not_null.test │ │ │ │ ├── in_string_null.test │ │ │ │ ├── in_string_pk_constraint_duplicate_update.test │ │ │ │ ├── in_string_pk_constraint_error.test │ │ │ │ ├── in_string_pk_constraint_ignore.test │ │ │ │ ├── in_string_set_enum_fail.test │ │ │ │ ├── in_string_unique_constraint_duplicate_update.test │ │ │ │ ├── in_string_unique_constraint_error.test │ │ │ │ ├── in_string_unique_constraint_ignore.test │ │ │ │ ├── ix_drop.test │ │ │ │ ├── ix_drop_error.test │ │ │ │ ├── ix_index_decimals.test │ │ │ │ ├── ix_index_lob.test │ │ │ │ ├── ix_index_non_string.test │ │ │ │ ├── ix_index_string.test │ │ │ │ ├── ix_index_string_length.test │ │ │ │ ├── ix_unique_decimals.test │ │ │ │ ├── ix_unique_lob.test │ │ │ │ ├── ix_unique_non_string.test │ │ │ │ ├── ix_unique_string.test │ │ │ │ ├── ix_unique_string_length.test │ │ │ │ ├── ix_using_order.test │ │ │ │ ├── jp_comment_column.test │ │ │ │ ├── jp_comment_index.test │ │ │ │ ├── jp_comment_older_compatibility1.test │ │ │ │ ├── jp_comment_table.test │ │ │ │ ├── ld_all_number_string_calendar_types.test │ │ │ │ ├── ld_bit.test │ │ │ │ ├── ld_enum_set.test │ │ │ │ ├── ld_less_columns.test │ │ │ │ ├── ld_more_columns_truncated.test │ │ │ │ ├── ld_null.test │ │ │ │ ├── ld_quote.test │ │ │ │ ├── ld_simple.test │ │ │ │ ├── ld_starting.test │ │ │ │ ├── ld_unique_error1.test │ │ │ │ ├── ld_unique_error1_local.test │ │ │ │ ├── ld_unique_error2.test │ │ │ │ ├── ld_unique_error2_local.test │ │ │ │ ├── ld_unique_error3.test │ │ │ │ ├── ld_unique_error3_local.test │ │ │ │ ├── load_bit.inc │ │ │ │ ├── load_enum_set.inc │ │ │ │ ├── load_less_columns.inc │ │ │ │ ├── load_more_columns.inc │ │ │ │ ├── load_null.inc │ │ │ │ ├── load_null2.inc │ │ │ │ ├── load_quote.inc │ │ │ │ ├── load_simple.inc │ │ │ │ ├── load_starting.inc │ │ │ │ ├── load_unique_error1.inc │ │ │ │ ├── load_unique_error2.inc │ │ │ │ ├── load_unique_error3.inc │ │ │ │ ├── ps_number_length.test │ │ │ │ ├── ps_number_null.test │ │ │ │ ├── ps_string_not_null.test │ │ │ │ ├── ps_string_null.test │ │ │ │ ├── re_number_range.test │ │ │ │ ├── re_number_range_set.test │ │ │ │ ├── re_number_select.test │ │ │ │ ├── re_string_range.test │ │ │ │ ├── re_string_range_set.test │ │ │ │ ├── rpl_000010.test │ │ │ │ ├── rpl_000011.test │ │ │ │ ├── rpl_000013.test │ │ │ │ ├── rpl_000015.test │ │ │ │ ├── rpl_000017.test │ │ │ │ ├── rpl_LD_INFILE.test │ │ │ │ ├── rpl_alter.test │ │ │ │ ├── rpl_alter_db.test │ │ │ │ ├── rpl_bit.test │ │ │ │ ├── rpl_bit_npk.test │ │ │ │ ├── rpl_change_master.test │ │ │ │ ├── rpl_create_database-master.opt │ │ │ │ ├── rpl_create_database-slave.opt │ │ │ │ ├── rpl_create_database.test │ │ │ │ ├── rpl_do_grant.test │ │ │ │ ├── rpl_drop.test │ │ │ │ ├── rpl_drop_db.test │ │ │ │ ├── rpl_dual_pos_advance.test │ │ │ │ ├── rpl_err_ignoredtable-slave.opt │ │ │ │ ├── rpl_err_ignoredtable.test │ │ │ │ ├── rpl_flushlog_loop.test │ │ │ │ ├── rpl_free_items-slave.opt │ │ │ │ ├── rpl_free_items.test │ │ │ │ ├── rpl_get_lock.test │ │ │ │ ├── rpl_ignore_grant-slave.opt │ │ │ │ ├── rpl_ignore_grant.test │ │ │ │ ├── rpl_ignore_revoke-slave.opt │ │ │ │ ├── rpl_ignore_revoke.test │ │ │ │ ├── rpl_ignore_table_update-slave.opt │ │ │ │ ├── rpl_ignore_table_update.test │ │ │ │ ├── rpl_init_slave-slave.opt │ │ │ │ ├── rpl_init_slave.test │ │ │ │ ├── rpl_insert.test │ │ │ │ ├── rpl_insert_select.test │ │ │ │ ├── rpl_loaddata2.test │ │ │ │ ├── rpl_loaddata_m-master.opt │ │ │ │ ├── rpl_loaddata_m.test │ │ │ │ ├── rpl_loaddata_s-slave.opt │ │ │ │ ├── rpl_loaddata_s.test │ │ │ │ ├── rpl_loaddatalocal.test │ │ │ │ ├── rpl_loadfile.test │ │ │ │ ├── rpl_log_pos.test │ │ │ │ ├── rpl_many_optimize.test │ │ │ │ ├── rpl_misc_functions.test │ │ │ │ ├── rpl_multi_delete-slave.opt │ │ │ │ ├── rpl_multi_delete.test │ │ │ │ ├── rpl_multi_delete2-slave.opt │ │ │ │ ├── rpl_multi_delete2.test │ │ │ │ ├── rpl_multi_update4-slave.opt │ │ │ │ ├── rpl_multi_update4.test │ │ │ │ ├── rpl_ps.test │ │ │ │ ├── rpl_relayspace-slave.opt │ │ │ │ ├── rpl_relayspace.test │ │ │ │ ├── rpl_replicate_ignore_db-slave.opt │ │ │ │ ├── rpl_replicate_ignore_db.test │ │ │ │ ├── rpl_row_NOW.test │ │ │ │ ├── rpl_row_USER.test │ │ │ │ ├── rpl_row_drop.test │ │ │ │ ├── rpl_row_func001.test │ │ │ │ ├── rpl_row_inexist_tbl-slave.opt │ │ │ │ ├── rpl_row_inexist_tbl.test │ │ │ │ ├── rpl_row_max_relay_size.test │ │ │ │ ├── rpl_row_reset_slave.test │ │ │ │ ├── rpl_row_sp001.test │ │ │ │ ├── rpl_row_sp005.test │ │ │ │ ├── rpl_row_sp008.test │ │ │ │ ├── rpl_row_sp009.test │ │ │ │ ├── rpl_row_sp010.test │ │ │ │ ├── rpl_row_sp011.test │ │ │ │ ├── rpl_row_sp012.test │ │ │ │ ├── rpl_row_stop_middle.test │ │ │ │ ├── rpl_row_trig001.test │ │ │ │ ├── rpl_row_trig002.test │ │ │ │ ├── rpl_row_trig003.test │ │ │ │ ├── rpl_row_until.test │ │ │ │ ├── rpl_row_view01.test │ │ │ │ ├── rpl_server_id1.test │ │ │ │ ├── rpl_server_id2-slave.opt │ │ │ │ ├── rpl_server_id2.test │ │ │ │ ├── rpl_session_var.test │ │ │ │ ├── rpl_sf.test │ │ │ │ ├── rpl_skip_error-slave.opt │ │ │ │ ├── rpl_skip_error.test │ │ │ │ ├── rpl_slave_status.test │ │ │ │ ├── rpl_sp-master.opt │ │ │ │ ├── rpl_sp-slave.opt │ │ │ │ ├── rpl_sp.test │ │ │ │ ├── rpl_sp004.test │ │ │ │ ├── rpl_sp_effects-master.opt │ │ │ │ ├── rpl_sp_effects-slave.opt │ │ │ │ ├── rpl_sp_effects.test │ │ │ │ ├── rpl_start_stop_slave.test │ │ │ │ ├── rpl_stm_max_relay_size.test │ │ │ │ ├── rpl_stm_mystery22.test │ │ │ │ ├── rpl_stm_no_op.test │ │ │ │ ├── rpl_stm_reset_slave.test │ │ │ │ ├── rpl_switch_stm_row_mixed.test │ │ │ │ ├── rpl_temp_table.test │ │ │ │ ├── rpl_temporary.test │ │ │ │ ├── rpl_trigger.test │ │ │ │ ├── rpl_trunc_temp.test │ │ │ │ ├── rpl_user_variables.test │ │ │ │ ├── rpl_variables-master.opt │ │ │ │ ├── rpl_variables.test │ │ │ │ ├── rpl_view.test │ │ │ │ ├── se_join_cross.test │ │ │ │ ├── se_join_default.test │ │ │ │ ├── se_join_inner.test │ │ │ │ ├── se_join_left.test │ │ │ │ ├── se_join_left_outer.test │ │ │ │ ├── se_join_natural_left.test │ │ │ │ ├── se_join_natural_left_outer.test │ │ │ │ ├── se_join_natural_right.test │ │ │ │ ├── se_join_natural_right_outer.test │ │ │ │ ├── se_join_right.test │ │ │ │ ├── se_join_right_outer.test │ │ │ │ ├── se_join_straight.test │ │ │ │ ├── se_rowid.test │ │ │ │ ├── se_string_distinct.test │ │ │ │ ├── se_string_from.test │ │ │ │ ├── se_string_groupby.test │ │ │ │ ├── se_string_having.test │ │ │ │ ├── se_string_limit.test │ │ │ │ ├── se_string_orderby.test │ │ │ │ ├── se_string_union.test │ │ │ │ ├── se_string_where.test │ │ │ │ ├── se_string_where_and.test │ │ │ │ ├── se_string_where_or.test │ │ │ │ ├── sf_alter.test │ │ │ │ ├── sf_cursor.test │ │ │ │ ├── sf_simple1.test │ │ │ │ ├── sp_alter.test │ │ │ │ ├── sp_cursor.test │ │ │ │ ├── sp_simple1.test │ │ │ │ ├── sq_all.test │ │ │ │ ├── sq_any.test │ │ │ │ ├── sq_corr.test │ │ │ │ ├── sq_error.test │ │ │ │ ├── sq_exists.test │ │ │ │ ├── sq_from.test │ │ │ │ ├── sq_in.test │ │ │ │ ├── sq_row.test │ │ │ │ ├── sq_scalar.test │ │ │ │ ├── sq_some.test │ │ │ │ ├── ta_2part_column_to_pk.test │ │ │ │ ├── ta_2part_diff_string_to_pk.test │ │ │ │ ├── ta_2part_diff_to_pk.test │ │ │ │ ├── ta_2part_string_to_pk.test │ │ │ │ ├── ta_3part_column_to_pk.test │ │ │ │ ├── ta_3part_string_to_pk.test │ │ │ │ ├── ta_add_column.test │ │ │ │ ├── ta_add_column2.test │ │ │ │ ├── ta_add_column_first.test │ │ │ │ ├── ta_add_column_first2.test │ │ │ │ ├── ta_add_column_middle.test │ │ │ │ ├── ta_add_column_middle2.test │ │ │ │ ├── ta_add_string.test │ │ │ │ ├── ta_add_string2.test │ │ │ │ ├── ta_add_string_first.test │ │ │ │ ├── ta_add_string_first2.test │ │ │ │ ├── ta_add_string_middle.test │ │ │ │ ├── ta_add_string_middle2.test │ │ │ │ ├── ta_add_string_unique_index.test │ │ │ │ ├── ta_add_unique_index.test │ │ │ │ ├── ta_column_from_unsigned.test │ │ │ │ ├── ta_column_from_zerofill.test │ │ │ │ ├── ta_column_to_index.test │ │ │ │ ├── ta_column_to_not_null.test │ │ │ │ ├── ta_column_to_null.test │ │ │ │ ├── ta_column_to_pk.test │ │ │ │ ├── ta_column_to_unsigned.test │ │ │ │ ├── ta_column_to_zerofill.test │ │ │ │ ├── ta_drop_column.test │ │ │ │ ├── ta_drop_index.test │ │ │ │ ├── ta_drop_pk_autoincrement.test │ │ │ │ ├── ta_drop_pk_number.test │ │ │ │ ├── ta_drop_pk_string.test │ │ │ │ ├── ta_drop_string_index.test │ │ │ │ ├── ta_orderby.test │ │ │ │ ├── ta_rename.test │ │ │ │ ├── ta_set_drop_default.test │ │ │ │ ├── ta_string_drop_column.test │ │ │ │ ├── ta_string_to_index.test │ │ │ │ ├── ta_string_to_not_null.test │ │ │ │ ├── ta_string_to_null.test │ │ │ │ ├── ta_string_to_pk.test │ │ │ │ ├── tc_column_autoincrement.test │ │ │ │ ├── tc_column_comment.test │ │ │ │ ├── tc_column_comment_string.test │ │ │ │ ├── tc_column_default_decimal.test │ │ │ │ ├── tc_column_default_number.test │ │ │ │ ├── tc_column_default_string.test │ │ │ │ ├── tc_column_enum.test │ │ │ │ ├── tc_column_enum_long.test │ │ │ │ ├── tc_column_key.test │ │ │ │ ├── tc_column_key_length.test │ │ │ │ ├── tc_column_length.test │ │ │ │ ├── tc_column_length_decimals.test │ │ │ │ ├── tc_column_length_zero.test │ │ │ │ ├── tc_column_not_null.test │ │ │ │ ├── tc_column_null.test │ │ │ │ ├── tc_column_primary_key_number.test │ │ │ │ ├── tc_column_primary_key_string.test │ │ │ │ ├── tc_column_serial.test │ │ │ │ ├── tc_column_set.test │ │ │ │ ├── tc_column_set_long.test │ │ │ │ ├── tc_column_unique_key.test │ │ │ │ ├── tc_column_unique_key_string.test │ │ │ │ ├── tc_column_unsigned.test │ │ │ │ ├── tc_column_zerofill.test │ │ │ │ ├── tc_drop_table.test │ │ │ │ ├── tc_multicolumn_different.test │ │ │ │ ├── tc_multicolumn_same.test │ │ │ │ ├── tc_multicolumn_same_string.test │ │ │ │ ├── tc_partition_analyze.test │ │ │ │ ├── tc_partition_change_from_range_to_hash_key.test │ │ │ │ ├── tc_partition_check.test │ │ │ │ ├── tc_partition_hash.test │ │ │ │ ├── tc_partition_hash_date_function.test │ │ │ │ ├── tc_partition_key.test │ │ │ │ ├── tc_partition_linear_key.test │ │ │ │ ├── tc_partition_list_directory.opt │ │ │ │ ├── tc_partition_list_directory.test │ │ │ │ ├── tc_partition_list_error.test │ │ │ │ ├── tc_partition_optimize.test │ │ │ │ ├── tc_partition_rebuild.test │ │ │ │ ├── tc_partition_remove.test │ │ │ │ ├── tc_partition_reorg_divide.test │ │ │ │ ├── tc_partition_reorg_hash_key.test │ │ │ │ ├── tc_partition_reorg_merge.test │ │ │ │ ├── tc_partition_repair.test │ │ │ │ ├── tc_partition_sub1.test │ │ │ │ ├── tc_partition_sub2.test │ │ │ │ ├── tc_partition_value.test │ │ │ │ ├── tc_partition_value_error.test │ │ │ │ ├── tc_partition_value_specific.test │ │ │ │ ├── tc_rename.test │ │ │ │ ├── tc_rename_across_database.test │ │ │ │ ├── tc_rename_error.test │ │ │ │ ├── tc_structure_comment.test │ │ │ │ ├── tc_structure_create_like.test │ │ │ │ ├── tc_structure_create_like_string.test │ │ │ │ ├── tc_structure_create_select.test │ │ │ │ ├── tc_structure_create_select_string.test │ │ │ │ ├── tc_structure_string_comment.test │ │ │ │ ├── tc_temporary_column.test │ │ │ │ ├── tc_temporary_column_length.test │ │ │ │ ├── time_function.test │ │ │ │ ├── tr_all_type_triggers.test │ │ │ │ ├── tr_delete.test │ │ │ │ ├── tr_delete_new_error.test │ │ │ │ ├── tr_insert.test │ │ │ │ ├── tr_insert_after_error.test │ │ │ │ ├── tr_insert_old_error.test │ │ │ │ ├── tr_update.test │ │ │ │ ├── tr_update_after_error.test │ │ │ │ ├── up_calendar_range.test │ │ │ │ ├── up_ignore.test │ │ │ │ ├── up_limit.test │ │ │ │ ├── up_multi_db_table.test │ │ │ │ ├── up_multi_table.test │ │ │ │ ├── up_nullcheck.test │ │ │ │ ├── up_number_range.test │ │ │ │ ├── up_string_range.test │ │ │ │ ├── wait_show_pattern.inc │ │ │ │ └── wait_slave_status.inc │ │ │ ├── iuds/ │ │ │ │ ├── combinations │ │ │ │ ├── disabled.def │ │ │ │ ├── r/ │ │ │ │ │ ├── delete_decimal.result │ │ │ │ │ ├── delete_time.result │ │ │ │ │ ├── delete_year.result │ │ │ │ │ ├── insert_calendar.result │ │ │ │ │ ├── insert_decimal.result │ │ │ │ │ ├── insert_number.result │ │ │ │ │ ├── insert_time.result │ │ │ │ │ ├── insert_year.result │ │ │ │ │ ├── strings_charsets_update_delete.result │ │ │ │ │ ├── strings_update_delete.result │ │ │ │ │ ├── type_bit_iuds.result │ │ │ │ │ ├── update_decimal.result │ │ │ │ │ ├── update_delete_calendar.result │ │ │ │ │ ├── update_delete_number.result │ │ │ │ │ ├── update_time.result │ │ │ │ │ └── update_year.result │ │ │ │ ├── suite.opt │ │ │ │ └── t/ │ │ │ │ ├── delete_decimal.test │ │ │ │ ├── delete_time.test │ │ │ │ ├── delete_year.test │ │ │ │ ├── hindi.txt │ │ │ │ ├── insert_calendar.test │ │ │ │ ├── insert_decimal.test │ │ │ │ ├── insert_number.test │ │ │ │ ├── insert_time.test │ │ │ │ ├── insert_year.test │ │ │ │ ├── sample.txt │ │ │ │ ├── strings_charsets_update_delete.test │ │ │ │ ├── strings_update_delete.test │ │ │ │ ├── type_bit_iuds.test │ │ │ │ ├── update_decimal.test │ │ │ │ ├── update_delete_calendar.test │ │ │ │ ├── update_delete_number.test │ │ │ │ ├── update_time.test │ │ │ │ └── update_year.test │ │ │ └── rr_trx/ │ │ │ ├── check_consistency.sql │ │ │ ├── include/ │ │ │ │ ├── check_for_error_rollback.inc │ │ │ │ ├── check_for_error_rollback_skip.inc │ │ │ │ ├── check_repeatable_read_all_columns.inc │ │ │ │ ├── record_query_all_columns.inc │ │ │ │ └── rr_init.test │ │ │ ├── init_innodb.txt │ │ │ ├── r/ │ │ │ │ ├── init_innodb.result │ │ │ │ ├── rr_c_count_not_zero.result │ │ │ │ ├── rr_c_stats.result │ │ │ │ ├── rr_i_40-44.result │ │ │ │ ├── rr_id_3.result │ │ │ │ ├── rr_id_900.result │ │ │ │ ├── rr_insert_select_2.result │ │ │ │ ├── rr_iud_rollback-multi-50.result │ │ │ │ ├── rr_replace_7-8.result │ │ │ │ ├── rr_s_select-uncommitted.result │ │ │ │ ├── rr_sc_select-limit-nolimit_4.result │ │ │ │ ├── rr_sc_select-same_2.result │ │ │ │ ├── rr_sc_sum_total.result │ │ │ │ ├── rr_u_10-19.result │ │ │ │ ├── rr_u_10-19_nolimit.result │ │ │ │ └── rr_u_4.result │ │ │ ├── run.txt │ │ │ ├── run_stress_tx_rr.pl │ │ │ └── t/ │ │ │ ├── init_innodb.test │ │ │ ├── rr_c_count_not_zero.test │ │ │ ├── rr_c_stats.test │ │ │ ├── rr_i_40-44.test │ │ │ ├── rr_id_3.test │ │ │ ├── rr_id_900.test │ │ │ ├── rr_insert_select_2.test │ │ │ ├── rr_iud_rollback-multi-50.test │ │ │ ├── rr_replace_7-8.test │ │ │ ├── rr_s_select-uncommitted.test │ │ │ ├── rr_sc_select-limit-nolimit_4.test │ │ │ ├── rr_sc_select-same_2.test │ │ │ ├── rr_sc_sum_total.test │ │ │ ├── rr_u_10-19.test │ │ │ ├── rr_u_10-19_nolimit.test │ │ │ └── rr_u_4.test │ │ ├── federated/ │ │ │ ├── assisted_discovery.result │ │ │ ├── assisted_discovery.test │ │ │ ├── combinations │ │ │ ├── disabled.def │ │ │ ├── error_on_close-8313.result │ │ │ ├── error_on_close-8313.test │ │ │ ├── federated.result │ │ │ ├── federated.test │ │ │ ├── federated_archive.result │ │ │ ├── federated_archive.test │ │ │ ├── federated_bug_13118.result │ │ │ ├── federated_bug_13118.test │ │ │ ├── federated_bug_25714.result │ │ │ ├── federated_bug_25714.test │ │ │ ├── federated_bug_32426.result │ │ │ ├── federated_bug_32426.test │ │ │ ├── federated_bug_35333.result │ │ │ ├── federated_bug_35333.test │ │ │ ├── federated_bug_585688.result │ │ │ ├── federated_bug_585688.test │ │ │ ├── federated_debug-master.opt │ │ │ ├── federated_debug.result │ │ │ ├── federated_debug.test │ │ │ ├── federated_innodb.result │ │ │ ├── federated_innodb.test │ │ │ ├── federated_maybe_16324629.result │ │ │ ├── federated_maybe_16324629.test │ │ │ ├── federated_partition-slave.opt │ │ │ ├── federated_partition.result │ │ │ ├── federated_partition.test │ │ │ ├── federated_server.result │ │ │ ├── federated_server.test │ │ │ ├── federated_transactions.result │ │ │ ├── federated_transactions.test │ │ │ ├── federated_type_inet6.result │ │ │ ├── federated_type_inet6.test │ │ │ ├── federatedx.result │ │ │ ├── federatedx.test │ │ │ ├── federatedx_create_handlers.result │ │ │ ├── federatedx_create_handlers.test │ │ │ ├── federatedx_versioning.result │ │ │ ├── federatedx_versioning.test │ │ │ ├── have_federatedx.inc │ │ │ ├── have_federatedx.opt │ │ │ ├── include/ │ │ │ │ ├── federated.inc │ │ │ │ └── federated_cleanup.inc │ │ │ ├── my.cnf │ │ │ ├── net_thd_crash-12725.result │ │ │ ├── net_thd_crash-12725.test │ │ │ ├── net_thd_crash-12951.result │ │ │ ├── net_thd_crash-12951.test │ │ │ ├── optimizer.result │ │ │ ├── optimizer.test │ │ │ ├── rpl.result │ │ │ ├── rpl.test │ │ │ ├── suite.pm │ │ │ ├── timestamps.result │ │ │ └── timestamps.test │ │ ├── funcs_1/ │ │ │ ├── README.txt │ │ │ ├── bitdata/ │ │ │ │ └── bitdata_master.test │ │ │ ├── cursors/ │ │ │ │ └── cursors_master.test │ │ │ ├── datadict/ │ │ │ │ ├── basics_mixed1.inc │ │ │ │ ├── basics_mixed2.inc │ │ │ │ ├── basics_mixed3.inc │ │ │ │ ├── columns.inc │ │ │ │ ├── datadict.pre │ │ │ │ ├── datadict_bug_12777.inc │ │ │ │ ├── datadict_load.inc │ │ │ │ ├── datadict_priv.inc │ │ │ │ ├── is_key_column_usage.inc │ │ │ │ ├── is_routines.inc │ │ │ │ ├── is_schemata.inc │ │ │ │ ├── is_table_query.inc │ │ │ │ ├── is_tables.inc │ │ │ │ ├── is_triggers.inc │ │ │ │ ├── is_views.inc │ │ │ │ ├── processlist_priv.inc │ │ │ │ ├── processlist_val.inc │ │ │ │ ├── statistics.inc │ │ │ │ ├── table_constraints.inc │ │ │ │ ├── tables.inc │ │ │ │ ├── tables1.inc │ │ │ │ └── tables2.inc │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── bug28309_skip.inc │ │ │ │ ├── cleanup.inc │ │ │ │ ├── innodb_tb1.inc │ │ │ │ ├── innodb_tb2.inc │ │ │ │ ├── innodb_tb3.inc │ │ │ │ ├── innodb_tb4.inc │ │ │ │ ├── memory_tb1.inc │ │ │ │ ├── memory_tb2.inc │ │ │ │ ├── memory_tb3.inc │ │ │ │ ├── memory_tb4.inc │ │ │ │ ├── myisam_tb1.inc │ │ │ │ ├── myisam_tb2.inc │ │ │ │ ├── myisam_tb3.inc │ │ │ │ ├── myisam_tb4.inc │ │ │ │ ├── show_connection.inc │ │ │ │ ├── sp_tb.inc │ │ │ │ └── tb3.inc │ │ │ ├── lib/ │ │ │ │ ├── DataGen_local.pl │ │ │ │ └── DataGen_modify.pl │ │ │ ├── r/ │ │ │ │ ├── charset_collation.result │ │ │ │ ├── innodb_bitdata.result │ │ │ │ ├── innodb_cursors.result │ │ │ │ ├── innodb_func_view.result │ │ │ │ ├── innodb_storedproc_02.result │ │ │ │ ├── innodb_storedproc_03.result │ │ │ │ ├── innodb_storedproc_06.result │ │ │ │ ├── innodb_storedproc_07.result │ │ │ │ ├── innodb_storedproc_08.result │ │ │ │ ├── innodb_storedproc_10.result │ │ │ │ ├── innodb_trig_0102.result │ │ │ │ ├── innodb_trig_03.result │ │ │ │ ├── innodb_trig_03e.result │ │ │ │ ├── innodb_trig_0407.result │ │ │ │ ├── innodb_trig_08.result │ │ │ │ ├── innodb_trig_09.result │ │ │ │ ├── innodb_trig_1011ext.result │ │ │ │ ├── innodb_trig_frkey.result │ │ │ │ ├── innodb_views.result │ │ │ │ ├── is_basics_mixed.result │ │ │ │ ├── is_character_sets.result │ │ │ │ ├── is_check_constraints.result │ │ │ │ ├── is_cml_innodb.result │ │ │ │ ├── is_cml_memory.result │ │ │ │ ├── is_cml_myisam.result │ │ │ │ ├── is_coll_char_set_appl.result │ │ │ │ ├── is_collations.result │ │ │ │ ├── is_column_privileges.result │ │ │ │ ├── is_column_privileges_is_mysql_test.result │ │ │ │ ├── is_columns.result │ │ │ │ ├── is_columns_innodb.result │ │ │ │ ├── is_columns_is.result │ │ │ │ ├── is_columns_is_embedded.result │ │ │ │ ├── is_columns_memory.result │ │ │ │ ├── is_columns_myisam.result │ │ │ │ ├── is_columns_myisam_embedded.result │ │ │ │ ├── is_columns_mysql.result │ │ │ │ ├── is_columns_mysql_embedded.result │ │ │ │ ├── is_engines.result │ │ │ │ ├── is_engines_archive.result │ │ │ │ ├── is_engines_blackhole.result │ │ │ │ ├── is_engines_csv.result │ │ │ │ ├── is_engines_federated.result │ │ │ │ ├── is_engines_innodb.result │ │ │ │ ├── is_engines_memory.result │ │ │ │ ├── is_engines_merge.result │ │ │ │ ├── is_engines_myisam.result │ │ │ │ ├── is_events.result │ │ │ │ ├── is_key_column_usage.result │ │ │ │ ├── is_key_column_usage_embedded.result │ │ │ │ ├── is_routines.result │ │ │ │ ├── is_routines_embedded.result │ │ │ │ ├── is_schema_privileges.result │ │ │ │ ├── is_schema_privileges_is_mysql_test.result │ │ │ │ ├── is_schemata.result │ │ │ │ ├── is_schemata_embedded.result │ │ │ │ ├── is_schemata_is_mysql_test.result │ │ │ │ ├── is_statistics.result │ │ │ │ ├── is_statistics_is.result │ │ │ │ ├── is_statistics_mysql.result │ │ │ │ ├── is_statistics_mysql_embedded.result │ │ │ │ ├── is_table_constraints.result │ │ │ │ ├── is_table_constraints_is.result │ │ │ │ ├── is_table_constraints_mysql.result │ │ │ │ ├── is_table_constraints_mysql_embedded.result │ │ │ │ ├── is_table_privileges.result │ │ │ │ ├── is_tables.result │ │ │ │ ├── is_tables_embedded.result │ │ │ │ ├── is_tables_innodb.result │ │ │ │ ├── is_tables_is.result │ │ │ │ ├── is_tables_is_embedded.result │ │ │ │ ├── is_tables_memory.result │ │ │ │ ├── is_tables_myisam.result │ │ │ │ ├── is_tables_myisam_embedded.result │ │ │ │ ├── is_tables_mysql.result │ │ │ │ ├── is_tables_mysql_embedded.result │ │ │ │ ├── is_triggers.result │ │ │ │ ├── is_triggers_embedded.result │ │ │ │ ├── is_user_privileges.result │ │ │ │ ├── is_views.result │ │ │ │ ├── is_views_embedded.result │ │ │ │ ├── memory_bitdata.result │ │ │ │ ├── memory_cursors.result │ │ │ │ ├── memory_func_view.result │ │ │ │ ├── memory_storedproc_02.result │ │ │ │ ├── memory_storedproc_03.result │ │ │ │ ├── memory_storedproc_06.result │ │ │ │ ├── memory_storedproc_07.result │ │ │ │ ├── memory_storedproc_08.result │ │ │ │ ├── memory_storedproc_10.result │ │ │ │ ├── memory_trig_0102.result │ │ │ │ ├── memory_trig_03.result │ │ │ │ ├── memory_trig_03e.result │ │ │ │ ├── memory_trig_0407.result │ │ │ │ ├── memory_trig_08.result │ │ │ │ ├── memory_trig_09.result │ │ │ │ ├── memory_trig_1011ext.result │ │ │ │ ├── memory_views.result │ │ │ │ ├── myisam_bitdata.result │ │ │ │ ├── myisam_cursors.result │ │ │ │ ├── myisam_func_view.result │ │ │ │ ├── myisam_storedproc_02.result │ │ │ │ ├── myisam_storedproc_03.result │ │ │ │ ├── myisam_storedproc_06.result │ │ │ │ ├── myisam_storedproc_07.result │ │ │ │ ├── myisam_storedproc_08.result │ │ │ │ ├── myisam_storedproc_10.result │ │ │ │ ├── myisam_trig_0102.result │ │ │ │ ├── myisam_trig_03.result │ │ │ │ ├── myisam_trig_03e.result │ │ │ │ ├── myisam_trig_0407.result │ │ │ │ ├── myisam_trig_08.result │ │ │ │ ├── myisam_trig_09.result │ │ │ │ ├── myisam_trig_1011ext.result │ │ │ │ ├── myisam_views-big.result │ │ │ │ ├── processlist_priv_no_prot.result │ │ │ │ ├── processlist_priv_ps.result │ │ │ │ ├── processlist_val_no_prot.result │ │ │ │ ├── processlist_val_ps.result │ │ │ │ ├── row_count_func.result │ │ │ │ └── storedproc.result │ │ │ ├── storedproc/ │ │ │ │ ├── cleanup_sp_tb.inc │ │ │ │ ├── load_sp_tb.inc │ │ │ │ ├── param_check.inc │ │ │ │ ├── storedproc_02.inc │ │ │ │ ├── storedproc_03.inc │ │ │ │ ├── storedproc_06.inc │ │ │ │ ├── storedproc_07.inc │ │ │ │ ├── storedproc_08.inc │ │ │ │ ├── storedproc_08_show.inc │ │ │ │ └── storedproc_10.inc │ │ │ ├── t/ │ │ │ │ ├── charset_collation.test │ │ │ │ ├── innodb_bitdata.test │ │ │ │ ├── innodb_cursors.test │ │ │ │ ├── innodb_func_view.test │ │ │ │ ├── innodb_storedproc_02.test │ │ │ │ ├── innodb_storedproc_03.test │ │ │ │ ├── innodb_storedproc_06.test │ │ │ │ ├── innodb_storedproc_07.test │ │ │ │ ├── innodb_storedproc_08.test │ │ │ │ ├── innodb_storedproc_10.test │ │ │ │ ├── innodb_trig_0102.test │ │ │ │ ├── innodb_trig_03.test │ │ │ │ ├── innodb_trig_03e.test │ │ │ │ ├── innodb_trig_0407.test │ │ │ │ ├── innodb_trig_08.test │ │ │ │ ├── innodb_trig_09.test │ │ │ │ ├── innodb_trig_1011ext.test │ │ │ │ ├── innodb_trig_frkey.test │ │ │ │ ├── innodb_views.test │ │ │ │ ├── is_basics_mixed.test │ │ │ │ ├── is_character_sets.test │ │ │ │ ├── is_check_constraints.test │ │ │ │ ├── is_cml_innodb.test │ │ │ │ ├── is_cml_memory.test │ │ │ │ ├── is_cml_myisam.test │ │ │ │ ├── is_coll_char_set_appl.test │ │ │ │ ├── is_collations.test │ │ │ │ ├── is_column_privileges.test │ │ │ │ ├── is_column_privileges_is_mysql_test.test │ │ │ │ ├── is_columns.test │ │ │ │ ├── is_columns_innodb.test │ │ │ │ ├── is_columns_is.test │ │ │ │ ├── is_columns_is_embedded.test │ │ │ │ ├── is_columns_memory.test │ │ │ │ ├── is_columns_myisam.test │ │ │ │ ├── is_columns_myisam_embedded.test │ │ │ │ ├── is_columns_mysql.test │ │ │ │ ├── is_columns_mysql_embedded.test │ │ │ │ ├── is_engines.test │ │ │ │ ├── is_engines_archive.test │ │ │ │ ├── is_engines_blackhole.test │ │ │ │ ├── is_engines_csv.test │ │ │ │ ├── is_engines_federated.test │ │ │ │ ├── is_engines_innodb.test │ │ │ │ ├── is_engines_memory.test │ │ │ │ ├── is_engines_merge.test │ │ │ │ ├── is_engines_myisam.test │ │ │ │ ├── is_events.test │ │ │ │ ├── is_key_column_usage.test │ │ │ │ ├── is_key_column_usage_embedded.test │ │ │ │ ├── is_routines.test │ │ │ │ ├── is_routines_embedded.test │ │ │ │ ├── is_schema_privileges.test │ │ │ │ ├── is_schema_privileges_is_mysql_test.test │ │ │ │ ├── is_schemata.test │ │ │ │ ├── is_schemata_embedded.test │ │ │ │ ├── is_schemata_is_mysql_test.test │ │ │ │ ├── is_statistics.test │ │ │ │ ├── is_statistics_is.test │ │ │ │ ├── is_statistics_mysql.test │ │ │ │ ├── is_statistics_mysql_embedded.test │ │ │ │ ├── is_table_constraints.test │ │ │ │ ├── is_table_constraints_is.test │ │ │ │ ├── is_table_constraints_mysql.test │ │ │ │ ├── is_table_constraints_mysql_embedded.test │ │ │ │ ├── is_table_privileges.test │ │ │ │ ├── is_tables.test │ │ │ │ ├── is_tables_embedded.test │ │ │ │ ├── is_tables_innodb.test │ │ │ │ ├── is_tables_is.test │ │ │ │ ├── is_tables_is_embedded.test │ │ │ │ ├── is_tables_memory.test │ │ │ │ ├── is_tables_myisam.test │ │ │ │ ├── is_tables_myisam_embedded.test │ │ │ │ ├── is_tables_mysql.test │ │ │ │ ├── is_tables_mysql_embedded.test │ │ │ │ ├── is_triggers.test │ │ │ │ ├── is_triggers_embedded.test │ │ │ │ ├── is_user_privileges.test │ │ │ │ ├── is_views.test │ │ │ │ ├── is_views_embedded.test │ │ │ │ ├── memory_bitdata.test │ │ │ │ ├── memory_cursors.test │ │ │ │ ├── memory_func_view.test │ │ │ │ ├── memory_storedproc_02.test │ │ │ │ ├── memory_storedproc_03.test │ │ │ │ ├── memory_storedproc_06.test │ │ │ │ ├── memory_storedproc_07.test │ │ │ │ ├── memory_storedproc_08.test │ │ │ │ ├── memory_storedproc_10.test │ │ │ │ ├── memory_trig_0102.test │ │ │ │ ├── memory_trig_03.test │ │ │ │ ├── memory_trig_03e.test │ │ │ │ ├── memory_trig_0407.test │ │ │ │ ├── memory_trig_08.test │ │ │ │ ├── memory_trig_09.test │ │ │ │ ├── memory_trig_1011ext.test │ │ │ │ ├── memory_views.test │ │ │ │ ├── myisam_bitdata.test │ │ │ │ ├── myisam_cursors.test │ │ │ │ ├── myisam_func_view.test │ │ │ │ ├── myisam_storedproc_02.test │ │ │ │ ├── myisam_storedproc_03.test │ │ │ │ ├── myisam_storedproc_06.test │ │ │ │ ├── myisam_storedproc_07.test │ │ │ │ ├── myisam_storedproc_08.test │ │ │ │ ├── myisam_storedproc_10.test │ │ │ │ ├── myisam_trig_0102.test │ │ │ │ ├── myisam_trig_03.test │ │ │ │ ├── myisam_trig_03e.test │ │ │ │ ├── myisam_trig_0407.test │ │ │ │ ├── myisam_trig_08.test │ │ │ │ ├── myisam_trig_09.test │ │ │ │ ├── myisam_trig_1011ext.test │ │ │ │ ├── myisam_views-big.test │ │ │ │ ├── processlist_priv_no_prot.test │ │ │ │ ├── processlist_priv_ps.test │ │ │ │ ├── processlist_val_no_prot.test │ │ │ │ ├── processlist_val_ps.test │ │ │ │ ├── row_count_func-master.opt │ │ │ │ ├── row_count_func.test │ │ │ │ └── storedproc.test │ │ │ ├── triggers/ │ │ │ │ ├── trig_frkey.inc │ │ │ │ ├── trig_frkey2.inc │ │ │ │ ├── triggers_0102.inc │ │ │ │ ├── triggers_03.inc │ │ │ │ ├── triggers_03e_columns.inc │ │ │ │ ├── triggers_03e_db_level.inc │ │ │ │ ├── triggers_03e_db_table_mix.inc │ │ │ │ ├── triggers_03e_definer.inc │ │ │ │ ├── triggers_03e_global_db_mix.inc │ │ │ │ ├── triggers_03e_prepare.inc │ │ │ │ ├── triggers_03e_table_level.inc │ │ │ │ ├── triggers_03e_transaction.inc │ │ │ │ ├── triggers_0407.inc │ │ │ │ ├── triggers_08.inc │ │ │ │ ├── triggers_09.inc │ │ │ │ └── triggers_1011ext.inc │ │ │ └── views/ │ │ │ ├── func_view.inc │ │ │ ├── fv1.inc │ │ │ ├── fv2.inc │ │ │ ├── fv_cast.inc │ │ │ ├── fv_if1.inc │ │ │ ├── fv_if2.inc │ │ │ ├── fv_ifnull.inc │ │ │ └── views_master.inc │ │ ├── funcs_2/ │ │ │ ├── charset/ │ │ │ │ └── charset_master.test │ │ │ ├── data/ │ │ │ │ └── charset_utf8.txt │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── check_charset.inc │ │ │ │ ├── check_charset_ucs2.inc │ │ │ │ └── check_charset_utf8.inc │ │ │ ├── lib/ │ │ │ │ └── gen_charset_utf8.pl │ │ │ ├── r/ │ │ │ │ ├── innodb_charset.result │ │ │ │ ├── memory_charset.result │ │ │ │ └── myisam_charset.result │ │ │ ├── readme.txt │ │ │ ├── suite.opt │ │ │ └── t/ │ │ │ ├── innodb_charset.test │ │ │ ├── memory_charset.test │ │ │ └── myisam_charset.test │ │ ├── galera/ │ │ │ ├── disabled.def │ │ │ ├── galera_2nodes.cnf │ │ │ ├── galera_2nodes_as_master.cnf │ │ │ ├── galera_2nodes_as_slave.cnf │ │ │ ├── galera_3nodes_as_slave.cnf │ │ │ ├── galera_4nodes.cnf │ │ │ ├── include/ │ │ │ │ ├── auto_increment_offset_restore.inc │ │ │ │ ├── auto_increment_offset_save.inc │ │ │ │ ├── galera_base_port.inc │ │ │ │ ├── galera_concurrent_test.inc │ │ │ │ ├── galera_dump_sr_table.inc │ │ │ │ ├── galera_reset_cluster_address.inc │ │ │ │ ├── galera_sst_restore.inc │ │ │ │ ├── galera_sst_set_mysqldump.inc │ │ │ │ ├── galera_st_clean_slave.inc │ │ │ │ ├── galera_st_disconnect_slave.inc │ │ │ │ ├── galera_st_kill_slave.inc │ │ │ │ ├── galera_st_kill_slave_ddl.inc │ │ │ │ ├── galera_st_shutdown_slave.inc │ │ │ │ ├── galera_start_replication.inc │ │ │ │ ├── galera_stop_replication.inc │ │ │ │ ├── galera_wsrep_recover.inc │ │ │ │ ├── have_qpress.inc │ │ │ │ ├── have_stunnel.inc │ │ │ │ ├── have_wsrep_replicate_myisam.inc │ │ │ │ ├── kill_galera.inc │ │ │ │ ├── print_gtid.inc │ │ │ │ ├── reset_query_cache.inc │ │ │ │ ├── shutdown_mysqld.inc │ │ │ │ └── start_mysqld.inc │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── GAL-382.result │ │ │ │ ├── GAL-401.result │ │ │ │ ├── GAL-419.result │ │ │ │ ├── GAL-480.result │ │ │ │ ├── GCF-360.result │ │ │ │ ├── GCF-939.result │ │ │ │ ├── MDEV-10715.result │ │ │ │ ├── MDEV-15443.result │ │ │ │ ├── MDEV-16509.result │ │ │ │ ├── MDEV-18832.result │ │ │ │ ├── MDEV-20225.result │ │ │ │ ├── MDEV-20616.result │ │ │ │ ├── MDEV-20793.result │ │ │ │ ├── MDEV-22021.result │ │ │ │ ├── MDEV-22051.result │ │ │ │ ├── MDEV-22055.result │ │ │ │ ├── MDEV-22227.result │ │ │ │ ├── MDEV-22421.result │ │ │ │ ├── MDEV-22458.result │ │ │ │ ├── MDEV-22708.result │ │ │ │ ├── MDEV-24063.result │ │ │ │ ├── MDEV-24143.result │ │ │ │ ├── MDEV-24327.result │ │ │ │ ├── MDEV-25494.result │ │ │ │ ├── MDEV-25562.result │ │ │ │ ├── MDEV-25740.result │ │ │ │ ├── MDEV-26575.result │ │ │ │ ├── MDEV-27276.result │ │ │ │ ├── MDEV-27713.result │ │ │ │ ├── MDEV-27862.result │ │ │ │ ├── MDEV-28053.result │ │ │ │ ├── MDEV-6860.result │ │ │ │ ├── MENT-1047.result │ │ │ │ ├── MW-252.result │ │ │ │ ├── MW-258.result │ │ │ │ ├── MW-259.result │ │ │ │ ├── MW-284.result │ │ │ │ ├── MW-285.result │ │ │ │ ├── MW-286.result │ │ │ │ ├── MW-292.result │ │ │ │ ├── MW-309.result │ │ │ │ ├── MW-313.result │ │ │ │ ├── MW-329.result │ │ │ │ ├── MW-336.result │ │ │ │ ├── MW-357.result │ │ │ │ ├── MW-369.result │ │ │ │ ├── MW-388.result │ │ │ │ ├── MW-402.result │ │ │ │ ├── MW-416.result │ │ │ │ ├── MW-44.result │ │ │ │ ├── MW-86-wait1.result │ │ │ │ ├── MW-86-wait8.result │ │ │ │ ├── basic.result │ │ │ │ ├── binlog_checksum.result │ │ │ │ ├── create.result │ │ │ │ ├── enforce_storage_engine.result │ │ │ │ ├── enforce_storage_engine2.result │ │ │ │ ├── ev51914.result │ │ │ │ ├── fk.result │ │ │ │ ├── galera#414.result │ │ │ │ ├── galera#500.result │ │ │ │ ├── galera#505.result │ │ │ │ ├── galera-features#117.result │ │ │ │ ├── galera_FK_duplicate_client_insert.result │ │ │ │ ├── galera_UK_conflict.result │ │ │ │ ├── galera_admin.result │ │ │ │ ├── galera_alter_engine_innodb.result │ │ │ │ ├── galera_alter_engine_myisam.result │ │ │ │ ├── galera_alter_table_force.result │ │ │ │ ├── galera_applier_ftwrl_table.result │ │ │ │ ├── galera_applier_ftwrl_table_alter.result │ │ │ │ ├── galera_as_master.result │ │ │ │ ├── galera_as_master_large.result │ │ │ │ ├── galera_as_slave.result │ │ │ │ ├── galera_as_slave_autoinc.result │ │ │ │ ├── galera_as_slave_ctas.result │ │ │ │ ├── galera_as_slave_gtid.result │ │ │ │ ├── galera_as_slave_gtid_auto_engine.result │ │ │ │ ├── galera_as_slave_gtid_myisam.result │ │ │ │ ├── galera_as_slave_nonprim.result │ │ │ │ ├── galera_as_slave_replay.result │ │ │ │ ├── galera_autoinc_sst_mariabackup.result │ │ │ │ ├── galera_backup_stage.result │ │ │ │ ├── galera_bf_abort.result │ │ │ │ ├── galera_bf_abort_at_after_statement.result │ │ │ │ ├── galera_bf_abort_flush_for_export.result │ │ │ │ ├── galera_bf_abort_for_update.result │ │ │ │ ├── galera_bf_abort_ftwrl.result │ │ │ │ ├── galera_bf_abort_get_lock.result │ │ │ │ ├── galera_bf_abort_group_commit.result │ │ │ │ ├── galera_bf_abort_lock_table.result │ │ │ │ ├── galera_bf_abort_ps.result │ │ │ │ ├── galera_bf_abort_ps_bind.result │ │ │ │ ├── galera_bf_abort_ps_threadpool.result │ │ │ │ ├── galera_bf_abort_shutdown.result │ │ │ │ ├── galera_bf_abort_sleep.result │ │ │ │ ├── galera_bf_background_statistics.result │ │ │ │ ├── galera_bf_kill.result │ │ │ │ ├── galera_bf_kill_debug.result │ │ │ │ ├── galera_bf_lock_wait.result │ │ │ │ ├── galera_binlog_cache_size.result │ │ │ │ ├── galera_binlog_checksum.result │ │ │ │ ├── galera_binlog_event_max_size_max.result │ │ │ │ ├── galera_binlog_event_max_size_min.result │ │ │ │ ├── galera_binlog_row_image.result │ │ │ │ ├── galera_binlog_stmt_autoinc.result │ │ │ │ ├── galera_can_run_toi.result │ │ │ │ ├── galera_change_user.result │ │ │ │ ├── galera_commit_empty.result │ │ │ │ ├── galera_concurrent_ctas.result │ │ │ │ ├── galera_create_function.result │ │ │ │ ├── galera_create_procedure.result │ │ │ │ ├── galera_create_table_as_select.result │ │ │ │ ├── galera_create_table_like.result │ │ │ │ ├── galera_create_trigger.result │ │ │ │ ├── galera_create_view.result │ │ │ │ ├── galera_ctas.result │ │ │ │ ├── galera_ddl_fk_conflict.result │ │ │ │ ├── galera_ddl_fk_no_conflict.result │ │ │ │ ├── galera_ddl_multiline.result │ │ │ │ ├── galera_defaults.result │ │ │ │ ├── galera_delete_limit.result │ │ │ │ ├── galera_desync_overlapped.result │ │ │ │ ├── galera_disallow_local_gtid.result │ │ │ │ ├── galera_drop_database.result │ │ │ │ ├── galera_drop_multi.result │ │ │ │ ├── galera_encrypt_tmp_files.result │ │ │ │ ├── galera_enum.result │ │ │ │ ├── galera_events.result │ │ │ │ ├── galera_events2.result │ │ │ │ ├── galera_fk_cascade_delete.result │ │ │ │ ├── galera_fk_cascade_delete_debug.result │ │ │ │ ├── galera_fk_cascade_update.result │ │ │ │ ├── galera_fk_conflict.result │ │ │ │ ├── galera_fk_lock_wait.result │ │ │ │ ├── galera_fk_mismatch.result │ │ │ │ ├── galera_fk_multibyte.result │ │ │ │ ├── galera_fk_multicolumn.result │ │ │ │ ├── galera_fk_multitable.result │ │ │ │ ├── galera_fk_no_pk.result │ │ │ │ ├── galera_fk_selfreferential.result │ │ │ │ ├── galera_fk_setnull.result │ │ │ │ ├── galera_fk_truncate.result │ │ │ │ ├── galera_flush_local.result │ │ │ │ ├── galera_forced_binlog_format.result │ │ │ │ ├── galera_ftwrl.result │ │ │ │ ├── galera_ftwrl_drain.result │ │ │ │ ├── galera_fulltext.result │ │ │ │ ├── galera_gcache_recover.result │ │ │ │ ├── galera_gcache_recover_full_gcache.result │ │ │ │ ├── galera_gcache_recover_manytrx.result │ │ │ │ ├── galera_gcs_fc_limit.result │ │ │ │ ├── galera_gcs_fragment.result │ │ │ │ ├── galera_gcs_max_packet_size.result │ │ │ │ ├── galera_gra_log.result │ │ │ │ ├── galera_gtid.result │ │ │ │ ├── galera_gtid_server_id.result │ │ │ │ ├── galera_gtid_slave.result │ │ │ │ ├── galera_gtid_slave_sst_rsync.result │ │ │ │ ├── galera_gtid_trx_conflict.result │ │ │ │ ├── galera_inject_bf_long_wait.result │ │ │ │ ├── galera_insert_ignore.result │ │ │ │ ├── galera_insert_multi.result │ │ │ │ ├── galera_ist_MDEV-28423,debug.rdiff │ │ │ │ ├── galera_ist_MDEV-28423.result │ │ │ │ ├── galera_ist_MDEV-28583,debug.rdiff │ │ │ │ ├── galera_ist_MDEV-28583.result │ │ │ │ ├── galera_ist_mariabackup,debug.rdiff │ │ │ │ ├── galera_ist_mariabackup.result │ │ │ │ ├── galera_ist_mariabackup_innodb_flush_logs,debug.rdiff │ │ │ │ ├── galera_ist_mariabackup_innodb_flush_logs.result │ │ │ │ ├── galera_ist_mysqldump,debug.rdiff │ │ │ │ ├── galera_ist_mysqldump,release.rdiff │ │ │ │ ├── galera_ist_mysqldump.result │ │ │ │ ├── galera_ist_progress.result │ │ │ │ ├── galera_ist_recv_bind.result │ │ │ │ ├── galera_ist_restart_joiner.result │ │ │ │ ├── galera_ist_rsync,debug.rdiff │ │ │ │ ├── galera_ist_rsync.result │ │ │ │ ├── galera_kill_applier.result │ │ │ │ ├── galera_kill_ddl.result │ │ │ │ ├── galera_kill_nochanges.result │ │ │ │ ├── galera_kill_smallchanges.result │ │ │ │ ├── galera_last_committed_id.result │ │ │ │ ├── galera_load_data.result │ │ │ │ ├── galera_lock_table.result │ │ │ │ ├── galera_lock_tables_in_transaction.result │ │ │ │ ├── galera_log_bin.result │ │ │ │ ├── galera_log_bin_ext.result │ │ │ │ ├── galera_log_bin_ext_mariabackup.result │ │ │ │ ├── galera_log_bin_opt.result │ │ │ │ ├── galera_log_output_csv.result │ │ │ │ ├── galera_many_columns.result │ │ │ │ ├── galera_many_indexes.result │ │ │ │ ├── galera_many_rows.result │ │ │ │ ├── galera_many_tables_nopk.result │ │ │ │ ├── galera_many_tables_pk.result │ │ │ │ ├── galera_mdev_10812.result │ │ │ │ ├── galera_mdev_13787.result │ │ │ │ ├── galera_mdev_15611.result │ │ │ │ ├── galera_mdl_race.result │ │ │ │ ├── galera_multi_database.result │ │ │ │ ├── galera_multirow_rollback.result │ │ │ │ ├── galera_myisam_autocommit.result │ │ │ │ ├── galera_myisam_transactions.result │ │ │ │ ├── galera_nonPK_and_PA.result │ │ │ │ ├── galera_nopk_bit.result │ │ │ │ ├── galera_nopk_blob.result │ │ │ │ ├── galera_nopk_large_varchar.result │ │ │ │ ├── galera_nopk_unicode.result │ │ │ │ ├── galera_parallel_apply_lock_table.result │ │ │ │ ├── galera_parallel_autoinc_largetrx.result │ │ │ │ ├── galera_parallel_autoinc_manytrx.result │ │ │ │ ├── galera_parallel_simple.result │ │ │ │ ├── galera_partition.result │ │ │ │ ├── galera_password.result │ │ │ │ ├── galera_pc_ignore_sb.result │ │ │ │ ├── galera_pc_recovery.result │ │ │ │ ├── galera_performance_schema.result │ │ │ │ ├── galera_pk_bigint_signed.result │ │ │ │ ├── galera_pk_bigint_unsigned.result │ │ │ │ ├── galera_prepared_statement.result │ │ │ │ ├── galera_query_cache.result │ │ │ │ ├── galera_query_cache_sync_wait.result │ │ │ │ ├── galera_read_only.result │ │ │ │ ├── galera_repair_view.result │ │ │ │ ├── galera_repl_key_format_flat16.result │ │ │ │ ├── galera_repl_max_ws_size.result │ │ │ │ ├── galera_restart_nochanges.result │ │ │ │ ├── galera_restart_on_unknown_option.result │ │ │ │ ├── galera_roles.result │ │ │ │ ├── galera_rsu_add_pk.result │ │ │ │ ├── galera_rsu_drop_pk.result │ │ │ │ ├── galera_rsu_error.result │ │ │ │ ├── galera_rsu_simple.result │ │ │ │ ├── galera_rsu_wsrep_desync.result │ │ │ │ ├── galera_sbr.result │ │ │ │ ├── galera_sbr_binlog.result │ │ │ │ ├── galera_schema.result │ │ │ │ ├── galera_schema_dirty_reads.result │ │ │ │ ├── galera_sequences.result │ │ │ │ ├── galera_serializable.result │ │ │ │ ├── galera_server.result │ │ │ │ ├── galera_set_position_after_cert_failure.result │ │ │ │ ├── galera_set_position_after_dummy_writeset.result │ │ │ │ ├── galera_shutdown_nonprim.result │ │ │ │ ├── galera_slave_replay.result │ │ │ │ ├── galera_sp_bf_abort.result │ │ │ │ ├── galera_sp_insert_parallel.result │ │ │ │ ├── galera_split_brain.result │ │ │ │ ├── galera_sql_log_bin_zero.result │ │ │ │ ├── galera_ssl.result │ │ │ │ ├── galera_ssl_compression.result │ │ │ │ ├── galera_ssl_upgrade.result │ │ │ │ ├── galera_sst_encrypted.result │ │ │ │ ├── galera_sst_mariabackup,debug.rdiff │ │ │ │ ├── galera_sst_mariabackup.result │ │ │ │ ├── galera_sst_mariabackup_data_dir,debug.rdiff │ │ │ │ ├── galera_sst_mariabackup_data_dir.result │ │ │ │ ├── galera_sst_mariabackup_encrypt_with_key-openssl.result │ │ │ │ ├── galera_sst_mariabackup_encrypt_with_key.result │ │ │ │ ├── galera_sst_mariabackup_encrypt_with_key_server.result │ │ │ │ ├── galera_sst_mariabackup_force_recovery,debug.rdiff │ │ │ │ ├── galera_sst_mariabackup_force_recovery.result │ │ │ │ ├── galera_sst_mariabackup_logarchive,debug.rdiff │ │ │ │ ├── galera_sst_mariabackup_logarchive.result │ │ │ │ ├── galera_sst_mariabackup_lost_found.result │ │ │ │ ├── galera_sst_mariabackup_qpress.result │ │ │ │ ├── galera_sst_mariabackup_table_options.result │ │ │ │ ├── galera_sst_mysqldump,debug.rdiff │ │ │ │ ├── galera_sst_mysqldump,release.rdiff │ │ │ │ ├── galera_sst_mysqldump.result │ │ │ │ ├── galera_sst_mysqldump_with_key,debug.rdiff │ │ │ │ ├── galera_sst_mysqldump_with_key,release.rdiff │ │ │ │ ├── galera_sst_mysqldump_with_key.result │ │ │ │ ├── galera_sst_rsync,debug.rdiff │ │ │ │ ├── galera_sst_rsync.result │ │ │ │ ├── galera_sst_rsync2,debug.rdiff │ │ │ │ ├── galera_sst_rsync2.result │ │ │ │ ├── galera_sst_rsync_binlogname.result │ │ │ │ ├── galera_sst_rsync_data_dir,debug.rdiff │ │ │ │ ├── galera_sst_rsync_data_dir.result │ │ │ │ ├── galera_sst_rsync_encrypt_with_capath,debug.rdiff │ │ │ │ ├── galera_sst_rsync_encrypt_with_capath.result │ │ │ │ ├── galera_sst_rsync_encrypt_with_key,debug.rdiff │ │ │ │ ├── galera_sst_rsync_encrypt_with_key.result │ │ │ │ ├── galera_sst_rsync_encrypt_with_server,debug.rdiff │ │ │ │ ├── galera_sst_rsync_encrypt_with_server.result │ │ │ │ ├── galera_sst_rsync_logbasename.result │ │ │ │ ├── galera_sst_rsync_recv_auto,debug.rdiff │ │ │ │ ├── galera_sst_rsync_recv_auto.result │ │ │ │ ├── galera_status_cluster.result │ │ │ │ ├── galera_status_local_index.result │ │ │ │ ├── galera_status_local_state.result │ │ │ │ ├── galera_strict_require_innodb.result │ │ │ │ ├── galera_strict_require_primary_key.result │ │ │ │ ├── galera_suspend_slave.result │ │ │ │ ├── galera_sync_wait_show.result │ │ │ │ ├── galera_sync_wait_upto.result │ │ │ │ ├── galera_toi_alter_auto_increment.result │ │ │ │ ├── galera_toi_ddl_error.result │ │ │ │ ├── galera_toi_ddl_fk_insert.result │ │ │ │ ├── galera_toi_ddl_fk_update.result │ │ │ │ ├── galera_toi_ddl_locking.result │ │ │ │ ├── galera_toi_ddl_nonconflicting.result │ │ │ │ ├── galera_toi_ddl_sequential.result │ │ │ │ ├── galera_toi_drop_database.result │ │ │ │ ├── galera_toi_ftwrl.result │ │ │ │ ├── galera_toi_lock_exclusive.result │ │ │ │ ├── galera_toi_lock_shared.result │ │ │ │ ├── galera_toi_truncate.result │ │ │ │ ├── galera_transaction_read_only.result │ │ │ │ ├── galera_transaction_replay.result │ │ │ │ ├── galera_trigger.result │ │ │ │ ├── galera_truncate.result │ │ │ │ ├── galera_truncate_temporary.result │ │ │ │ ├── galera_unicode_identifiers.result │ │ │ │ ├── galera_unicode_pk.result │ │ │ │ ├── galera_update_limit.result │ │ │ │ ├── galera_v1_row_events.result │ │ │ │ ├── galera_var_OSU_method.result │ │ │ │ ├── galera_var_OSU_method2.result │ │ │ │ ├── galera_var_auto_inc_control_off.result │ │ │ │ ├── galera_var_auto_inc_control_on.result │ │ │ │ ├── galera_var_certify_nonPK_off.result │ │ │ │ ├── galera_var_cluster_address.result │ │ │ │ ├── galera_var_cluster_conf_id.result │ │ │ │ ├── galera_var_desync_on.result │ │ │ │ ├── galera_var_dirty_reads.result │ │ │ │ ├── galera_var_fkchecks.result │ │ │ │ ├── galera_var_gtid_domain_id.result │ │ │ │ ├── galera_var_ignore_apply_errors.result │ │ │ │ ├── galera_var_load_data_splitting.result │ │ │ │ ├── galera_var_log_bin.result │ │ │ │ ├── galera_var_max_ws_rows.result │ │ │ │ ├── galera_var_max_ws_size.result │ │ │ │ ├── galera_var_mysql_replication_bundle.result │ │ │ │ ├── galera_var_node_address.result │ │ │ │ ├── galera_var_notify_cmd.result │ │ │ │ ├── galera_var_reject_queries.result │ │ │ │ ├── galera_var_replicate_aria_off.result │ │ │ │ ├── galera_var_replicate_aria_on.result │ │ │ │ ├── galera_var_replicate_myisam_off.result │ │ │ │ ├── galera_var_replicate_myisam_on.result │ │ │ │ ├── galera_var_retry_autocommit.result │ │ │ │ ├── galera_var_slave_threads.result │ │ │ │ ├── galera_var_sst_auth.result │ │ │ │ ├── galera_var_sync_wait.result │ │ │ │ ├── galera_var_trx_fragment_size.result │ │ │ │ ├── galera_var_wsrep_mode.result │ │ │ │ ├── galera_var_wsrep_on_off.result │ │ │ │ ├── galera_var_wsrep_provider_options.result │ │ │ │ ├── galera_var_wsrep_start_position.result │ │ │ │ ├── galera_var_wsrep_strict_ddl.result │ │ │ │ ├── galera_view.result │ │ │ │ ├── galera_virtual_blob.result │ │ │ │ ├── galera_virtual_column.result │ │ │ │ ├── galera_vote_rejoin_ddl.result │ │ │ │ ├── galera_vote_rejoin_dml.result │ │ │ │ ├── galera_wan.result │ │ │ │ ├── galera_wan_restart_ist.result │ │ │ │ ├── galera_wan_restart_sst.result │ │ │ │ ├── galera_wsrep_desync_wsrep_on.result │ │ │ │ ├── galera_wsrep_log_conficts.result │ │ │ │ ├── galera_wsrep_mode.result │ │ │ │ ├── galera_wsrep_new_cluster.result │ │ │ │ ├── galera_wsrep_provider_options_syntax.result │ │ │ │ ├── galera_zero_length_column.result │ │ │ │ ├── grant.result │ │ │ │ ├── have_wsrep_replicate_myisam.require │ │ │ │ ├── lp1276424.result │ │ │ │ ├── lp1347768.result │ │ │ │ ├── lp1376747-2.result │ │ │ │ ├── lp1376747-3.result │ │ │ │ ├── lp1376747-4.result │ │ │ │ ├── lp1376747.result │ │ │ │ ├── lp1438990.result │ │ │ │ ├── lp959512.result │ │ │ │ ├── mariadb_tzinfo_to_sql.result │ │ │ │ ├── mdev-22543.result │ │ │ │ ├── mdev_10518.result │ │ │ │ ├── mdev_18730.result │ │ │ │ ├── mdev_21025.result │ │ │ │ ├── mdev_21718.result │ │ │ │ ├── mdev_9290.result │ │ │ │ ├── mysql-wsrep#110.result │ │ │ │ ├── mysql-wsrep#198.result │ │ │ │ ├── mysql-wsrep#201.result │ │ │ │ ├── mysql-wsrep#237.result │ │ │ │ ├── mysql-wsrep#247.result │ │ │ │ ├── mysql-wsrep#31.result │ │ │ │ ├── mysql-wsrep#33,debug.rdiff │ │ │ │ ├── mysql-wsrep#33,release.rdiff │ │ │ │ ├── mysql-wsrep#33.result │ │ │ │ ├── mysql-wsrep#332.result │ │ │ │ ├── mysql-wsrep#90.result │ │ │ │ ├── mysql-wsrep-bugs-607.result │ │ │ │ ├── mysql_tzinfo_to_sql.result │ │ │ │ ├── partition.result │ │ │ │ ├── query_cache.result │ │ │ │ ├── rename.result │ │ │ │ ├── rpl_row_annotate.result │ │ │ │ ├── sql_log_bin.result │ │ │ │ ├── unique_key.result │ │ │ │ ├── versioning_trx_id.result │ │ │ │ ├── view.result │ │ │ │ ├── wsrep_mode_strict_replication.result │ │ │ │ ├── wsrep_slave_threads_basic.result │ │ │ │ └── wsrep_trx_fragment_size_sr.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── GAL-382.test │ │ │ ├── GAL-401.test │ │ │ ├── GAL-419.test │ │ │ ├── GAL-480.test │ │ │ ├── GCF-360.cnf │ │ │ ├── GCF-360.test │ │ │ ├── GCF-939.test │ │ │ ├── MDEV-10715.cnf │ │ │ ├── MDEV-10715.test │ │ │ ├── MDEV-15443.cnf │ │ │ ├── MDEV-15443.test │ │ │ ├── MDEV-16509.test │ │ │ ├── MDEV-18832.cnf │ │ │ ├── MDEV-18832.test │ │ │ ├── MDEV-20225.test │ │ │ ├── MDEV-20616.test │ │ │ ├── MDEV-20793.test │ │ │ ├── MDEV-22021.combinations │ │ │ ├── MDEV-22021.test │ │ │ ├── MDEV-22051.test │ │ │ ├── MDEV-22055.test │ │ │ ├── MDEV-22227.test │ │ │ ├── MDEV-22421.test │ │ │ ├── MDEV-22458.test │ │ │ ├── MDEV-22708.cnf │ │ │ ├── MDEV-22708.test │ │ │ ├── MDEV-24063.test │ │ │ ├── MDEV-24143.test │ │ │ ├── MDEV-24327.cnf │ │ │ ├── MDEV-24327.test │ │ │ ├── MDEV-25494.test │ │ │ ├── MDEV-25562.test │ │ │ ├── MDEV-25740.test │ │ │ ├── MDEV-26575.test │ │ │ ├── MDEV-27276.test │ │ │ ├── MDEV-27713.test │ │ │ ├── MDEV-27862.combinations │ │ │ ├── MDEV-27862.test │ │ │ ├── MDEV-28053.cnf │ │ │ ├── MDEV-28053.test │ │ │ ├── MDEV-6860.cnf │ │ │ ├── MDEV-6860.test │ │ │ ├── MENT-1047.test │ │ │ ├── MW-252.test │ │ │ ├── MW-258.test │ │ │ ├── MW-259.test │ │ │ ├── MW-284.cnf │ │ │ ├── MW-284.test │ │ │ ├── MW-285.test │ │ │ ├── MW-286.test │ │ │ ├── MW-292.test │ │ │ ├── MW-309.test │ │ │ ├── MW-313.cnf │ │ │ ├── MW-313.test │ │ │ ├── MW-329.cnf │ │ │ ├── MW-329.test │ │ │ ├── MW-336.cnf │ │ │ ├── MW-336.test │ │ │ ├── MW-357.test │ │ │ ├── MW-360-master.opt │ │ │ ├── MW-369.inc │ │ │ ├── MW-369.test │ │ │ ├── MW-388.test │ │ │ ├── MW-402.test │ │ │ ├── MW-416.test │ │ │ ├── MW-44-master.opt │ │ │ ├── MW-44.test │ │ │ ├── MW-86-wait1.test │ │ │ ├── MW-86-wait8.cnf │ │ │ ├── MW-86-wait8.test │ │ │ ├── basic.test │ │ │ ├── binlog_checksum.test │ │ │ ├── create.test │ │ │ ├── enforce_storage_engine.test │ │ │ ├── enforce_storage_engine2.cnf │ │ │ ├── enforce_storage_engine2.test │ │ │ ├── ev51914.test │ │ │ ├── fk.test │ │ │ ├── galera#414.cnf │ │ │ ├── galera#414.test │ │ │ ├── galera#500.test │ │ │ ├── galera#505.test │ │ │ ├── galera-features#117.cnf │ │ │ ├── galera-features#117.test │ │ │ ├── galera_FK_duplicate_client_insert.test │ │ │ ├── galera_UK_conflict.test │ │ │ ├── galera_admin.test │ │ │ ├── galera_alter_engine_innodb.test │ │ │ ├── galera_alter_engine_myisam.test │ │ │ ├── galera_alter_table_force.test │ │ │ ├── galera_applier_ftwrl_table.test │ │ │ ├── galera_applier_ftwrl_table_alter-master.opt │ │ │ ├── galera_applier_ftwrl_table_alter.cnf │ │ │ ├── galera_applier_ftwrl_table_alter.test │ │ │ ├── galera_as_master.cnf │ │ │ ├── galera_as_master.test │ │ │ ├── galera_as_master_large.cnf │ │ │ ├── galera_as_master_large.test │ │ │ ├── galera_as_slave.cnf │ │ │ ├── galera_as_slave.test │ │ │ ├── galera_as_slave_autoinc.cnf │ │ │ ├── galera_as_slave_autoinc.test │ │ │ ├── galera_as_slave_ctas.cnf │ │ │ ├── galera_as_slave_ctas.test │ │ │ ├── galera_as_slave_gtid.cnf │ │ │ ├── galera_as_slave_gtid.inc │ │ │ ├── galera_as_slave_gtid.test │ │ │ ├── galera_as_slave_gtid_auto_engine.cnf │ │ │ ├── galera_as_slave_gtid_auto_engine.test │ │ │ ├── galera_as_slave_gtid_myisam.cnf │ │ │ ├── galera_as_slave_gtid_myisam.test │ │ │ ├── galera_as_slave_gtid_replicate_do_db_cc.cnf │ │ │ ├── galera_as_slave_nonprim.cnf │ │ │ ├── galera_as_slave_nonprim.test │ │ │ ├── galera_as_slave_replay.cnf │ │ │ ├── galera_as_slave_replay.test │ │ │ ├── galera_autoinc_sst_mariabackup.cnf │ │ │ ├── galera_autoinc_sst_mariabackup.test │ │ │ ├── galera_backup_stage.test │ │ │ ├── galera_bad_wsrep_new_cluster.cnf │ │ │ ├── galera_bf_abort.test │ │ │ ├── galera_bf_abort_at_after_statement.cnf │ │ │ ├── galera_bf_abort_at_after_statement.test │ │ │ ├── galera_bf_abort_flush_for_export.test │ │ │ ├── galera_bf_abort_for_update.test │ │ │ ├── galera_bf_abort_ftwrl.test │ │ │ ├── galera_bf_abort_get_lock.test │ │ │ ├── galera_bf_abort_group_commit.cnf │ │ │ ├── galera_bf_abort_group_commit.test │ │ │ ├── galera_bf_abort_lock_table.test │ │ │ ├── galera_bf_abort_ps.cnf │ │ │ ├── galera_bf_abort_ps.test │ │ │ ├── galera_bf_abort_ps_bind.cnf │ │ │ ├── galera_bf_abort_ps_bind.test │ │ │ ├── galera_bf_abort_ps_threadpool.cnf │ │ │ ├── galera_bf_abort_ps_threadpool.test │ │ │ ├── galera_bf_abort_shutdown.test │ │ │ ├── galera_bf_abort_sleep.test │ │ │ ├── galera_bf_background_statistics.cnf │ │ │ ├── galera_bf_background_statistics.test │ │ │ ├── galera_bf_kill.cnf │ │ │ ├── galera_bf_kill.test │ │ │ ├── galera_bf_kill_debug.cnf │ │ │ ├── galera_bf_kill_debug.test │ │ │ ├── galera_bf_lock_wait.cnf │ │ │ ├── galera_bf_lock_wait.test │ │ │ ├── galera_binlog_cache_size.test │ │ │ ├── galera_binlog_checksum.cnf │ │ │ ├── galera_binlog_checksum.test │ │ │ ├── galera_binlog_event_max_size_max.cnf │ │ │ ├── galera_binlog_event_max_size_max.test │ │ │ ├── galera_binlog_event_max_size_min.cnf │ │ │ ├── galera_binlog_event_max_size_min.test │ │ │ ├── galera_binlog_row_image.test │ │ │ ├── galera_binlog_stmt_autoinc.cnf │ │ │ ├── galera_binlog_stmt_autoinc.test │ │ │ ├── galera_can_run_toi.test │ │ │ ├── galera_change_user.test │ │ │ ├── galera_commit_empty.test │ │ │ ├── galera_concurrent_ctas.test │ │ │ ├── galera_create_function.test │ │ │ ├── galera_create_procedure.test │ │ │ ├── galera_create_table_as_select.test │ │ │ ├── galera_create_table_like.test │ │ │ ├── galera_create_trigger.test │ │ │ ├── galera_create_view.test │ │ │ ├── galera_ctas.test │ │ │ ├── galera_ddl_fk_conflict.inc │ │ │ ├── galera_ddl_fk_conflict.test │ │ │ ├── galera_ddl_fk_conflict_with_tmp.inc │ │ │ ├── galera_ddl_fk_no_conflict.inc │ │ │ ├── galera_ddl_fk_no_conflict.test │ │ │ ├── galera_ddl_multiline.test │ │ │ ├── galera_defaults.cnf │ │ │ ├── galera_defaults.test │ │ │ ├── galera_delete_limit.test │ │ │ ├── galera_desync_overlapped.test │ │ │ ├── galera_disallow_local_gtid.test │ │ │ ├── galera_drop_database.test │ │ │ ├── galera_drop_multi.test │ │ │ ├── galera_encrypt_tmp_files.cnf │ │ │ ├── galera_encrypt_tmp_files.test │ │ │ ├── galera_enum.test │ │ │ ├── galera_events.test │ │ │ ├── galera_events2.test │ │ │ ├── galera_fk_cascade_delete.test │ │ │ ├── galera_fk_cascade_delete_debug.test │ │ │ ├── galera_fk_cascade_update.test │ │ │ ├── galera_fk_conflict.test │ │ │ ├── galera_fk_lock_wait.test │ │ │ ├── galera_fk_mismatch.test │ │ │ ├── galera_fk_multibyte.test │ │ │ ├── galera_fk_multicolumn.test │ │ │ ├── galera_fk_multitable.test │ │ │ ├── galera_fk_no_pk.test │ │ │ ├── galera_fk_selfreferential.test │ │ │ ├── galera_fk_setnull.test │ │ │ ├── galera_fk_truncate.test │ │ │ ├── galera_flush_local.test │ │ │ ├── galera_forced_binlog_format-master.opt │ │ │ ├── galera_forced_binlog_format.test │ │ │ ├── galera_ftwrl.test │ │ │ ├── galera_ftwrl_drain.test │ │ │ ├── galera_fulltext.test │ │ │ ├── galera_gcache_recover.cnf │ │ │ ├── galera_gcache_recover.test │ │ │ ├── galera_gcache_recover_full_gcache.cnf │ │ │ ├── galera_gcache_recover_full_gcache.test │ │ │ ├── galera_gcache_recover_manytrx.cnf │ │ │ ├── galera_gcache_recover_manytrx.test │ │ │ ├── galera_gcs_fc_limit.test │ │ │ ├── galera_gcs_fragment.cnf │ │ │ ├── galera_gcs_fragment.test │ │ │ ├── galera_gcs_max_packet_size.cnf │ │ │ ├── galera_gcs_max_packet_size.test │ │ │ ├── galera_gra_log.test │ │ │ ├── galera_gtid-master.opt │ │ │ ├── galera_gtid.cnf │ │ │ ├── galera_gtid.test │ │ │ ├── galera_gtid_server_id.cnf │ │ │ ├── galera_gtid_server_id.test │ │ │ ├── galera_gtid_slave.cnf │ │ │ ├── galera_gtid_slave.test │ │ │ ├── galera_gtid_slave_sst_rsync.cnf │ │ │ ├── galera_gtid_slave_sst_rsync.test │ │ │ ├── galera_gtid_trx_conflict.cnf │ │ │ ├── galera_gtid_trx_conflict.test │ │ │ ├── galera_inject_bf_long_wait.test │ │ │ ├── galera_insert_ignore.test │ │ │ ├── galera_insert_multi.test │ │ │ ├── galera_ist_MDEV-28423.cnf │ │ │ ├── galera_ist_MDEV-28423.test │ │ │ ├── galera_ist_MDEV-28583.cnf │ │ │ ├── galera_ist_MDEV-28583.test │ │ │ ├── galera_ist_mariabackup.cnf │ │ │ ├── galera_ist_mariabackup.test │ │ │ ├── galera_ist_mariabackup_innodb_flush_logs.cnf │ │ │ ├── galera_ist_mariabackup_innodb_flush_logs.test │ │ │ ├── galera_ist_mysqldump.cnf │ │ │ ├── galera_ist_mysqldump.test │ │ │ ├── galera_ist_progress.cnf │ │ │ ├── galera_ist_progress.test │ │ │ ├── galera_ist_recv_bind.cnf │ │ │ ├── galera_ist_recv_bind.test │ │ │ ├── galera_ist_restart_joiner.cnf │ │ │ ├── galera_ist_restart_joiner.test │ │ │ ├── galera_ist_rsync.cnf │ │ │ ├── galera_ist_rsync.test │ │ │ ├── galera_kill_applier.cnf │ │ │ ├── galera_kill_applier.test │ │ │ ├── galera_kill_ddl.test │ │ │ ├── galera_kill_nochanges.test │ │ │ ├── galera_kill_smallchanges.test │ │ │ ├── galera_last_committed_id.cnf │ │ │ ├── galera_last_committed_id.combinations │ │ │ ├── galera_last_committed_id.test │ │ │ ├── galera_load_data.cnf │ │ │ ├── galera_load_data.test │ │ │ ├── galera_lock_table.test │ │ │ ├── galera_lock_tables_in_transaction.test │ │ │ ├── galera_log_bin.cnf │ │ │ ├── galera_log_bin.inc │ │ │ ├── galera_log_bin.test │ │ │ ├── galera_log_bin_ext.cnf │ │ │ ├── galera_log_bin_ext.test │ │ │ ├── galera_log_bin_ext_mariabackup.cnf │ │ │ ├── galera_log_bin_ext_mariabackup.test │ │ │ ├── galera_log_bin_opt-master.opt │ │ │ ├── galera_log_bin_opt.cnf │ │ │ ├── galera_log_bin_opt.test │ │ │ ├── galera_log_bin_sst.inc │ │ │ ├── galera_log_output_csv-master.opt │ │ │ ├── galera_log_output_csv.test │ │ │ ├── galera_many_columns.test │ │ │ ├── galera_many_indexes.test │ │ │ ├── galera_many_rows.cnf │ │ │ ├── galera_many_rows.test │ │ │ ├── galera_many_tables_nopk.test │ │ │ ├── galera_many_tables_pk.test │ │ │ ├── galera_mdev_10812.test │ │ │ ├── galera_mdev_13787.cnf │ │ │ ├── galera_mdev_13787.test │ │ │ ├── galera_mdev_15611.cnf │ │ │ ├── galera_mdev_15611.test │ │ │ ├── galera_mdl_race.test │ │ │ ├── galera_multi_database.test │ │ │ ├── galera_multirow_rollback.combinations │ │ │ ├── galera_multirow_rollback.test │ │ │ ├── galera_myisam_autocommit.test │ │ │ ├── galera_myisam_transactions.test │ │ │ ├── galera_nonPK_and_PA.test │ │ │ ├── galera_nopk_bit.test │ │ │ ├── galera_nopk_blob.test │ │ │ ├── galera_nopk_large_varchar.test │ │ │ ├── galera_nopk_unicode.test │ │ │ ├── galera_parallel_apply_lock_table.test │ │ │ ├── galera_parallel_autoinc_largetrx.test │ │ │ ├── galera_parallel_autoinc_manytrx.test │ │ │ ├── galera_parallel_simple.test │ │ │ ├── galera_partition.cnf │ │ │ ├── galera_partition.test │ │ │ ├── galera_password.test │ │ │ ├── galera_pc_ignore_sb.cnf │ │ │ ├── galera_pc_ignore_sb.test │ │ │ ├── galera_pc_recovery.test │ │ │ ├── galera_performance_schema.test │ │ │ ├── galera_pk_bigint_signed.test │ │ │ ├── galera_pk_bigint_unsigned.test │ │ │ ├── galera_prepared_statement.test │ │ │ ├── galera_query_cache.cnf │ │ │ ├── galera_query_cache.test │ │ │ ├── galera_query_cache_sync_wait.cnf │ │ │ ├── galera_query_cache_sync_wait.test │ │ │ ├── galera_read_only.test │ │ │ ├── galera_repair_view.test │ │ │ ├── galera_repl_key_format_flat16.test │ │ │ ├── galera_repl_max_ws_size.test │ │ │ ├── galera_restart_nochanges.test │ │ │ ├── galera_restart_on_unknown_option.test │ │ │ ├── galera_roles.test │ │ │ ├── galera_rsu_add_pk.test │ │ │ ├── galera_rsu_drop_pk.test │ │ │ ├── galera_rsu_error.test │ │ │ ├── galera_rsu_simple.test │ │ │ ├── galera_rsu_wsrep_desync.test │ │ │ ├── galera_sbr.test │ │ │ ├── galera_sbr_binlog.cnf │ │ │ ├── galera_sbr_binlog.test │ │ │ ├── galera_schema.test │ │ │ ├── galera_schema_dirty_reads.test │ │ │ ├── galera_sequences.test │ │ │ ├── galera_serializable.test │ │ │ ├── galera_server.test │ │ │ ├── galera_set_position_after_cert_failure.test │ │ │ ├── galera_set_position_after_dummy_writeset.test │ │ │ ├── galera_shutdown_nonprim.test │ │ │ ├── galera_slave_replay.cnf │ │ │ ├── galera_slave_replay.test │ │ │ ├── galera_sp_bf_abort.cnf │ │ │ ├── galera_sp_bf_abort.inc │ │ │ ├── galera_sp_bf_abort.test │ │ │ ├── galera_sp_insert_parallel.test │ │ │ ├── galera_split_brain.test │ │ │ ├── galera_sql_log_bin_zero.test │ │ │ ├── galera_ssl.cnf │ │ │ ├── galera_ssl.test │ │ │ ├── galera_ssl_compression.cnf │ │ │ ├── galera_ssl_compression.test │ │ │ ├── galera_ssl_upgrade.cnf │ │ │ ├── galera_ssl_upgrade.test │ │ │ ├── galera_sst_encrypted.cnf │ │ │ ├── galera_sst_encrypted.test │ │ │ ├── galera_sst_mariabackup.cnf │ │ │ ├── galera_sst_mariabackup.test │ │ │ ├── galera_sst_mariabackup_data_dir.cnf │ │ │ ├── galera_sst_mariabackup_data_dir.test │ │ │ ├── galera_sst_mariabackup_encrypt_with_key-openssl.cnf │ │ │ ├── galera_sst_mariabackup_encrypt_with_key-openssl.test │ │ │ ├── galera_sst_mariabackup_encrypt_with_key.cnf │ │ │ ├── galera_sst_mariabackup_encrypt_with_key.test │ │ │ ├── galera_sst_mariabackup_encrypt_with_key_server.cnf │ │ │ ├── galera_sst_mariabackup_encrypt_with_key_server.test │ │ │ ├── galera_sst_mariabackup_force_recovery-master.opt │ │ │ ├── galera_sst_mariabackup_force_recovery.cnf │ │ │ ├── galera_sst_mariabackup_force_recovery.test │ │ │ ├── galera_sst_mariabackup_logarchive.cnf │ │ │ ├── galera_sst_mariabackup_logarchive.test │ │ │ ├── galera_sst_mariabackup_lost_found.cnf │ │ │ ├── galera_sst_mariabackup_lost_found.test │ │ │ ├── galera_sst_mariabackup_qpress.cnf │ │ │ ├── galera_sst_mariabackup_qpress.test │ │ │ ├── galera_sst_mariabackup_table_options.cnf │ │ │ ├── galera_sst_mariabackup_table_options.test │ │ │ ├── galera_sst_mysqldump.cnf │ │ │ ├── galera_sst_mysqldump.test │ │ │ ├── galera_sst_mysqldump_with_key.cnf │ │ │ ├── galera_sst_mysqldump_with_key.test │ │ │ ├── galera_sst_rsync.cnf │ │ │ ├── galera_sst_rsync.test │ │ │ ├── galera_sst_rsync2.cnf │ │ │ ├── galera_sst_rsync2.test │ │ │ ├── galera_sst_rsync_binlogname.cnf │ │ │ ├── galera_sst_rsync_binlogname.test │ │ │ ├── galera_sst_rsync_data_dir.cnf │ │ │ ├── galera_sst_rsync_data_dir.test │ │ │ ├── galera_sst_rsync_encrypt_with_capath.cnf │ │ │ ├── galera_sst_rsync_encrypt_with_capath.test │ │ │ ├── galera_sst_rsync_encrypt_with_key.cnf │ │ │ ├── galera_sst_rsync_encrypt_with_key.test │ │ │ ├── galera_sst_rsync_encrypt_with_server.cnf │ │ │ ├── galera_sst_rsync_encrypt_with_server.test │ │ │ ├── galera_sst_rsync_logbasename.cnf │ │ │ ├── galera_sst_rsync_logbasename.test │ │ │ ├── galera_sst_rsync_recv_auto.cnf │ │ │ ├── galera_sst_rsync_recv_auto.test │ │ │ ├── galera_status_cluster.test │ │ │ ├── galera_status_local_index.test │ │ │ ├── galera_status_local_state.test │ │ │ ├── galera_strict_require_innodb.test │ │ │ ├── galera_strict_require_primary_key.test │ │ │ ├── galera_suspend_slave.test │ │ │ ├── galera_sync_wait_show.test │ │ │ ├── galera_sync_wait_upto-master.opt │ │ │ ├── galera_sync_wait_upto.cnf │ │ │ ├── galera_sync_wait_upto.combinations │ │ │ ├── galera_sync_wait_upto.test │ │ │ ├── galera_toi_alter_auto_increment.test │ │ │ ├── galera_toi_ddl_error.test │ │ │ ├── galera_toi_ddl_fk_insert.test │ │ │ ├── galera_toi_ddl_fk_update.test │ │ │ ├── galera_toi_ddl_locking.test │ │ │ ├── galera_toi_ddl_nonconflicting.test │ │ │ ├── galera_toi_ddl_sequential.test │ │ │ ├── galera_toi_drop_database.test │ │ │ ├── galera_toi_ftwrl.test │ │ │ ├── galera_toi_lock_exclusive.test │ │ │ ├── galera_toi_lock_shared.test │ │ │ ├── galera_toi_truncate.test │ │ │ ├── galera_transaction_read_only.test │ │ │ ├── galera_transaction_replay.test │ │ │ ├── galera_trigger.test │ │ │ ├── galera_truncate.test │ │ │ ├── galera_truncate_temporary.test │ │ │ ├── galera_udf.cnf │ │ │ ├── galera_unicode_identifiers.test │ │ │ ├── galera_unicode_pk.cnf │ │ │ ├── galera_unicode_pk.test │ │ │ ├── galera_update_limit.cnf │ │ │ ├── galera_update_limit.test │ │ │ ├── galera_v1_row_events.cnf │ │ │ ├── galera_v1_row_events.test │ │ │ ├── galera_var_OSU_method.test │ │ │ ├── galera_var_OSU_method2.test │ │ │ ├── galera_var_auto_inc_control_off.test │ │ │ ├── galera_var_auto_inc_control_on.cnf │ │ │ ├── galera_var_auto_inc_control_on.test │ │ │ ├── galera_var_certify_nonPK_off.test │ │ │ ├── galera_var_cluster_address.test │ │ │ ├── galera_var_cluster_conf_id.test │ │ │ ├── galera_var_desync_on.test │ │ │ ├── galera_var_dirty_reads.test │ │ │ ├── galera_var_fkchecks.test │ │ │ ├── galera_var_gtid_domain_id.cnf │ │ │ ├── galera_var_gtid_domain_id.test │ │ │ ├── galera_var_ignore_apply_errors.cnf │ │ │ ├── galera_var_ignore_apply_errors.test │ │ │ ├── galera_var_load_data_splitting.test │ │ │ ├── galera_var_log_bin.cnf │ │ │ ├── galera_var_log_bin.test │ │ │ ├── galera_var_max_ws_rows.test │ │ │ ├── galera_var_max_ws_size.test │ │ │ ├── galera_var_mysql_replication_bundle.test │ │ │ ├── galera_var_node_address.cnf │ │ │ ├── galera_var_node_address.test │ │ │ ├── galera_var_notify_cmd-master.opt │ │ │ ├── galera_var_notify_cmd.test │ │ │ ├── galera_var_reject_queries.test │ │ │ ├── galera_var_replicate_aria_off.test │ │ │ ├── galera_var_replicate_aria_on.test │ │ │ ├── galera_var_replicate_myisam_off.test │ │ │ ├── galera_var_replicate_myisam_on.test │ │ │ ├── galera_var_retry_autocommit.test │ │ │ ├── galera_var_slave_threads.cnf │ │ │ ├── galera_var_slave_threads.test │ │ │ ├── galera_var_sst_auth.cnf │ │ │ ├── galera_var_sst_auth.test │ │ │ ├── galera_var_sync_wait.test │ │ │ ├── galera_var_trx_fragment_size.test │ │ │ ├── galera_var_wsrep_mode.test │ │ │ ├── galera_var_wsrep_on_off.test │ │ │ ├── galera_var_wsrep_provider_options.test │ │ │ ├── galera_var_wsrep_start_position.test │ │ │ ├── galera_var_wsrep_strict_ddl.test │ │ │ ├── galera_view.test │ │ │ ├── galera_virtual_blob.test │ │ │ ├── galera_virtual_column.test │ │ │ ├── galera_vote_drop_temporary-master.opt │ │ │ ├── galera_vote_rejoin_ddl.cnf │ │ │ ├── galera_vote_rejoin_ddl.test │ │ │ ├── galera_vote_rejoin_dml.cnf │ │ │ ├── galera_vote_rejoin_dml.test │ │ │ ├── galera_wan.cnf │ │ │ ├── galera_wan.test │ │ │ ├── galera_wan_restart_ist.cnf │ │ │ ├── galera_wan_restart_ist.test │ │ │ ├── galera_wan_restart_sst.cnf │ │ │ ├── galera_wan_restart_sst.test │ │ │ ├── galera_wsrep_desync_wsrep_on.test │ │ │ ├── galera_wsrep_log_conficts.cnf │ │ │ ├── galera_wsrep_log_conficts.test │ │ │ ├── galera_wsrep_mode.test │ │ │ ├── galera_wsrep_new_cluster-master.opt │ │ │ ├── galera_wsrep_new_cluster.test │ │ │ ├── galera_wsrep_provider_options_syntax.test │ │ │ ├── galera_zero_length_column.test │ │ │ ├── grant.test │ │ │ ├── lp1276424.test │ │ │ ├── lp1347768.test │ │ │ ├── lp1376747-2.test │ │ │ ├── lp1376747-3.test │ │ │ ├── lp1376747-4.test │ │ │ ├── lp1376747.test │ │ │ ├── lp1438990.test │ │ │ ├── lp959512.test │ │ │ ├── mariadb_tzinfo_to_sql.opt │ │ │ ├── mariadb_tzinfo_to_sql.test │ │ │ ├── mdev-22543.test │ │ │ ├── mdev_10518.cnf │ │ │ ├── mdev_10518.test │ │ │ ├── mdev_18730.test │ │ │ ├── mdev_21025.test │ │ │ ├── mdev_21718.cnf │ │ │ ├── mdev_21718.test │ │ │ ├── mdev_9290.test │ │ │ ├── mysql-wsrep#110.test │ │ │ ├── mysql-wsrep#198.cnf │ │ │ ├── mysql-wsrep#198.test │ │ │ ├── mysql-wsrep#201.cnf │ │ │ ├── mysql-wsrep#201.test │ │ │ ├── mysql-wsrep#237.test │ │ │ ├── mysql-wsrep#247.test │ │ │ ├── mysql-wsrep#31.test │ │ │ ├── mysql-wsrep#33.cnf │ │ │ ├── mysql-wsrep#33.test │ │ │ ├── mysql-wsrep#332.test │ │ │ ├── mysql-wsrep#90.test │ │ │ ├── mysql-wsrep-bugs-607.test │ │ │ ├── mysql_tzinfo_to_sql.opt │ │ │ ├── mysql_tzinfo_to_sql.test │ │ │ ├── partition.test │ │ │ ├── query_cache.cnf │ │ │ ├── query_cache.test │ │ │ ├── rename.test │ │ │ ├── rpl_row_annotate.cnf │ │ │ ├── rpl_row_annotate.test │ │ │ ├── sql_log_bin.test │ │ │ ├── unique_key.test │ │ │ ├── versioning_trx_id.cnf │ │ │ ├── versioning_trx_id.test │ │ │ ├── view.test │ │ │ ├── wsrep_mode_strict_replication.test │ │ │ ├── wsrep_slave_threads_basic.test │ │ │ └── wsrep_trx_fragment_size_sr.test │ │ ├── galera_3nodes/ │ │ │ ├── disabled.def │ │ │ ├── galera_2x3nodes.cnf │ │ │ ├── galera_3nodes.cnf │ │ │ ├── include/ │ │ │ │ ├── galera_resume.inc │ │ │ │ └── have_garbd.inc │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── GAL-501.result │ │ │ │ ├── GCF-354.result │ │ │ │ ├── GCF-363.result │ │ │ │ ├── GCF-376.result │ │ │ │ ├── galera-features#119.result │ │ │ │ ├── galera_2_cluster.result │ │ │ │ ├── galera_certification_ccc.result │ │ │ │ ├── galera_certification_double_failure.result │ │ │ │ ├── galera_dynamic_protocol.result │ │ │ │ ├── galera_evs_suspect_timeout.result │ │ │ │ ├── galera_garbd.result │ │ │ │ ├── galera_garbd_backup.result │ │ │ │ ├── galera_gtid_2_cluster.result │ │ │ │ ├── galera_ipv6_mariabackup.result │ │ │ │ ├── galera_ipv6_mariabackup_section.result │ │ │ │ ├── galera_ipv6_mysqldump.result │ │ │ │ ├── galera_ipv6_rsync.result │ │ │ │ ├── galera_ipv6_rsync_section.result │ │ │ │ ├── galera_ist_gcache_rollover.result │ │ │ │ ├── galera_join_with_cc_A.result │ │ │ │ ├── galera_join_with_cc_B.result │ │ │ │ ├── galera_join_with_cc_C.result │ │ │ │ ├── galera_parallel_apply_3nodes.result │ │ │ │ ├── galera_pc_bootstrap.result │ │ │ │ ├── galera_pc_weight.result │ │ │ │ ├── galera_safe_to_bootstrap.result │ │ │ │ ├── galera_slave_options_do.result │ │ │ │ ├── galera_slave_options_ignore.result │ │ │ │ ├── galera_ssl_reload.result │ │ │ │ ├── galera_toi_vote.result │ │ │ │ ├── galera_var_dirty_reads2.result │ │ │ │ ├── galera_vote_rejoin_mysqldump.result │ │ │ │ ├── galera_wsrep_schema.result │ │ │ │ ├── galera_wsrep_schema_init.result │ │ │ │ └── inconsistency_shutdown.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── GAL-501.cnf │ │ │ ├── GAL-501.test │ │ │ ├── GCF-354.cnf │ │ │ ├── GCF-354.test │ │ │ ├── GCF-363.cnf │ │ │ ├── GCF-363.test │ │ │ ├── GCF-376.cnf │ │ │ ├── GCF-376.test │ │ │ ├── galera-features#119.test │ │ │ ├── galera_2_cluster.cnf │ │ │ ├── galera_2_cluster.test │ │ │ ├── galera_certification_ccc.test │ │ │ ├── galera_certification_double_failure.test │ │ │ ├── galera_dynamic_protocol.cnf │ │ │ ├── galera_dynamic_protocol.test │ │ │ ├── galera_evs_suspect_timeout.test │ │ │ ├── galera_garbd.test │ │ │ ├── galera_garbd_backup.cnf │ │ │ ├── galera_garbd_backup.test │ │ │ ├── galera_gtid_2_cluster.cnf │ │ │ ├── galera_gtid_2_cluster.test │ │ │ ├── galera_ipv6_mariabackup.cnf │ │ │ ├── galera_ipv6_mariabackup.test │ │ │ ├── galera_ipv6_mariabackup_section.cnf │ │ │ ├── galera_ipv6_mariabackup_section.test │ │ │ ├── galera_ipv6_mysqldump.cnf │ │ │ ├── galera_ipv6_mysqldump.test │ │ │ ├── galera_ipv6_rsync.cnf │ │ │ ├── galera_ipv6_rsync.test │ │ │ ├── galera_ipv6_rsync_section.cnf │ │ │ ├── galera_ipv6_rsync_section.test │ │ │ ├── galera_ist_gcache_rollover.cnf │ │ │ ├── galera_ist_gcache_rollover.test │ │ │ ├── galera_join_with_cc_A.test │ │ │ ├── galera_join_with_cc_B.test │ │ │ ├── galera_join_with_cc_C.test │ │ │ ├── galera_parallel_apply_3nodes.test │ │ │ ├── galera_pc_bootstrap.cnf │ │ │ ├── galera_pc_bootstrap.test │ │ │ ├── galera_pc_weight.cnf │ │ │ ├── galera_pc_weight.test │ │ │ ├── galera_safe_to_bootstrap.cnf │ │ │ ├── galera_safe_to_bootstrap.test │ │ │ ├── galera_slave_options_do.cnf │ │ │ ├── galera_slave_options_do.test │ │ │ ├── galera_slave_options_ignore.cnf │ │ │ ├── galera_slave_options_ignore.test │ │ │ ├── galera_ssl_reload.cnf │ │ │ ├── galera_ssl_reload.test │ │ │ ├── galera_toi_vote.cnf │ │ │ ├── galera_toi_vote.test │ │ │ ├── galera_var_dirty_reads2.test │ │ │ ├── galera_vote_rejoin_mysqldump.cnf │ │ │ ├── galera_vote_rejoin_mysqldump.test │ │ │ ├── galera_wsrep_schema.test │ │ │ ├── galera_wsrep_schema_init.cnf │ │ │ ├── galera_wsrep_schema_init.test │ │ │ ├── inconsistency_shutdown.cnf │ │ │ └── inconsistency_shutdown.test │ │ ├── galera_3nodes_sr/ │ │ │ ├── disabled.def │ │ │ ├── galera_3nodes.cnf │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── GCF-336.result │ │ │ │ ├── GCF-582.result │ │ │ │ ├── GCF-606.result │ │ │ │ ├── GCF-609.result │ │ │ │ ├── GCF-810A.result │ │ │ │ ├── GCF-810B.result │ │ │ │ ├── GCF-810C.result │ │ │ │ ├── GCF-817.result │ │ │ │ ├── GCF-832.result │ │ │ │ ├── MDEV-26707.result │ │ │ │ ├── galera_sr_isolate_master.result │ │ │ │ ├── galera_sr_join_slave.result │ │ │ │ ├── galera_sr_kill_master.result │ │ │ │ ├── galera_sr_kill_slave_after_apply.result │ │ │ │ ├── galera_sr_kill_slave_after_apply_rollback.result │ │ │ │ ├── galera_sr_kill_slave_after_apply_rollback2.result │ │ │ │ ├── galera_sr_kill_slave_before_apply.result │ │ │ │ ├── galera_sr_threeway_split.result │ │ │ │ ├── galera_sr_threeway_split_no_primary.result │ │ │ │ └── galera_vote_sr.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── GCF-336.test │ │ │ ├── GCF-582.test │ │ │ ├── GCF-606.test │ │ │ ├── GCF-609.test │ │ │ ├── GCF-810A.test │ │ │ ├── GCF-810B.test │ │ │ ├── GCF-810C.test │ │ │ ├── GCF-817.test │ │ │ ├── GCF-832.test │ │ │ ├── MDEV-26707.test │ │ │ ├── galera_sr_isolate_master.test │ │ │ ├── galera_sr_join_slave.test │ │ │ ├── galera_sr_kill_master.test │ │ │ ├── galera_sr_kill_slave_after_apply.test │ │ │ ├── galera_sr_kill_slave_after_apply_rollback.test │ │ │ ├── galera_sr_kill_slave_after_apply_rollback2.test │ │ │ ├── galera_sr_kill_slave_before_apply.test │ │ │ ├── galera_sr_threeway_split.cnf │ │ │ ├── galera_sr_threeway_split.test │ │ │ ├── galera_sr_threeway_split_no_primary.test │ │ │ ├── galera_vote_sr-master.opt │ │ │ ├── galera_vote_sr.inc │ │ │ └── galera_vote_sr.test │ │ ├── galera_sr/ │ │ │ ├── disabled.def │ │ │ ├── galera_2nodes.cnf │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── GCF-1008.result │ │ │ │ ├── GCF-1018.result │ │ │ │ ├── GCF-1018B.result │ │ │ │ ├── GCF-1051.result │ │ │ │ ├── GCF-1060.result │ │ │ │ ├── GCF-561.result │ │ │ │ ├── GCF-571.result │ │ │ │ ├── GCF-572.result │ │ │ │ ├── GCF-580.result │ │ │ │ ├── GCF-585.result │ │ │ │ ├── GCF-597.result │ │ │ │ ├── GCF-620.result │ │ │ │ ├── GCF-623.result │ │ │ │ ├── GCF-627.result │ │ │ │ ├── GCF-845.result │ │ │ │ ├── GCF-851.result │ │ │ │ ├── GCF-867.result │ │ │ │ ├── GCF-889.result │ │ │ │ ├── GCF-900.result │ │ │ │ ├── MDEV-18585.result │ │ │ │ ├── MDEV-21613.result │ │ │ │ ├── MDEV-22616.result │ │ │ │ ├── MDEV-23623.result │ │ │ │ ├── MDEV-25226.result │ │ │ │ ├── MDEV-25717.result │ │ │ │ ├── MDEV-25718.result │ │ │ │ ├── MDEV-27553.result │ │ │ │ ├── MDEV-27615.result │ │ │ │ ├── galera-features#56.result │ │ │ │ ├── galera_sr_bf_abort.result │ │ │ │ ├── galera_sr_blob.result │ │ │ │ ├── galera_sr_cc_master.result │ │ │ │ ├── galera_sr_cc_no_primary.result │ │ │ │ ├── galera_sr_cc_slave.result │ │ │ │ ├── galera_sr_concurrent.result │ │ │ │ ├── galera_sr_conflict.result │ │ │ │ ├── galera_sr_conflict_on_commit.result │ │ │ │ ├── galera_sr_conflict_on_commit2.result │ │ │ │ ├── galera_sr_conflict_with_rollback_master.result │ │ │ │ ├── galera_sr_create_drop.result │ │ │ │ ├── galera_sr_ddl_master.result │ │ │ │ ├── galera_sr_ddl_schema.result │ │ │ │ ├── galera_sr_ddl_slave.result │ │ │ │ ├── galera_sr_ddl_unrelated.result │ │ │ │ ├── galera_sr_dupkey_error.result │ │ │ │ ├── galera_sr_fk_conflict.result │ │ │ │ ├── galera_sr_gtid.result │ │ │ │ ├── galera_sr_insert_select.result │ │ │ │ ├── galera_sr_kill_all_nobootstrap.result │ │ │ │ ├── galera_sr_kill_all_norecovery.result │ │ │ │ ├── galera_sr_kill_all_pcrecovery.result │ │ │ │ ├── galera_sr_kill_connection.result │ │ │ │ ├── galera_sr_kill_query.result │ │ │ │ ├── galera_sr_kill_slave.result │ │ │ │ ├── galera_sr_large_fragment.result │ │ │ │ ├── galera_sr_load_data.result │ │ │ │ ├── galera_sr_load_data_splitting.result │ │ │ │ ├── galera_sr_log_bin.result │ │ │ │ ├── galera_sr_many_fragments.result │ │ │ │ ├── galera_sr_multirow_rollback.result │ │ │ │ ├── galera_sr_myisam.result │ │ │ │ ├── galera_sr_mysqldump_sst.result │ │ │ │ ├── galera_sr_nonPK_and_PA.result │ │ │ │ ├── galera_sr_parallel_apply.result │ │ │ │ ├── galera_sr_rollback.result │ │ │ │ ├── galera_sr_rollback_retry.result │ │ │ │ ├── galera_sr_rollback_savepoint.result │ │ │ │ ├── galera_sr_rollback_statement.result │ │ │ │ ├── galera_sr_shutdown_master.result │ │ │ │ ├── galera_sr_shutdown_slave.result │ │ │ │ ├── galera_sr_slow.result │ │ │ │ ├── galera_sr_small_gcache.result │ │ │ │ ├── galera_sr_transaction_replay.result │ │ │ │ ├── galera_sr_unit_statements.result │ │ │ │ ├── galera_sr_v1_row_events.result │ │ │ │ ├── galera_sr_ws_size.result │ │ │ │ ├── galera_sr_ws_size2.result │ │ │ │ ├── galera_var_ignore_apply_errors_sr.result │ │ │ │ ├── mdev_18631.result │ │ │ │ ├── mysql-wsrep#215.result │ │ │ │ ├── mysql-wsrep-bugs-900.result │ │ │ │ ├── mysql-wsrep-features#136.result │ │ │ │ ├── mysql-wsrep-features#138.result │ │ │ │ ├── mysql-wsrep-features#14.result │ │ │ │ ├── mysql-wsrep-features#148.result │ │ │ │ ├── mysql-wsrep-features#15.result │ │ │ │ ├── mysql-wsrep-features#165.result │ │ │ │ ├── mysql-wsrep-features#22.result │ │ │ │ ├── mysql-wsrep-features#27.result │ │ │ │ ├── mysql-wsrep-features#32.result │ │ │ │ ├── mysql-wsrep-features#35.result │ │ │ │ ├── mysql-wsrep-features#8.result │ │ │ │ ├── mysql-wsrep-features#9.result │ │ │ │ ├── mysql-wsrep-features#93.result │ │ │ │ └── mysql-wsrep-features#96.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── GCF-1008.inc │ │ │ ├── GCF-1008.test │ │ │ ├── GCF-1018.test │ │ │ ├── GCF-1018B.test │ │ │ ├── GCF-1051.test │ │ │ ├── GCF-1060.test │ │ │ ├── GCF-561.test │ │ │ ├── GCF-571.test │ │ │ ├── GCF-572.test │ │ │ ├── GCF-580.test │ │ │ ├── GCF-585.test │ │ │ ├── GCF-597.test │ │ │ ├── GCF-620.test │ │ │ ├── GCF-623.test │ │ │ ├── GCF-627.test │ │ │ ├── GCF-845.test │ │ │ ├── GCF-851.test │ │ │ ├── GCF-867.test │ │ │ ├── GCF-889.test │ │ │ ├── GCF-900.test │ │ │ ├── MDEV-18585.cnf │ │ │ ├── MDEV-18585.test │ │ │ ├── MDEV-21613.cnf │ │ │ ├── MDEV-21613.test │ │ │ ├── MDEV-22616.test │ │ │ ├── MDEV-23623.test │ │ │ ├── MDEV-25226.test │ │ │ ├── MDEV-25717.test │ │ │ ├── MDEV-25718.cnf │ │ │ ├── MDEV-25718.test │ │ │ ├── MDEV-27553.test │ │ │ ├── MDEV-27615.test │ │ │ ├── galera-features#56.test │ │ │ ├── galera_sr_bf_abort.inc │ │ │ ├── galera_sr_bf_abort.test │ │ │ ├── galera_sr_blob.test │ │ │ ├── galera_sr_cc_master.test │ │ │ ├── galera_sr_cc_no_primary.test │ │ │ ├── galera_sr_cc_slave.test │ │ │ ├── galera_sr_concurrent.test │ │ │ ├── galera_sr_conflict.test │ │ │ ├── galera_sr_conflict_on_commit.test │ │ │ ├── galera_sr_conflict_on_commit2.test │ │ │ ├── galera_sr_conflict_with_rollback_master.test │ │ │ ├── galera_sr_create_drop.test │ │ │ ├── galera_sr_ddl_master.test │ │ │ ├── galera_sr_ddl_schema.test │ │ │ ├── galera_sr_ddl_slave.test │ │ │ ├── galera_sr_ddl_unrelated.test │ │ │ ├── galera_sr_dupkey_error.test │ │ │ ├── galera_sr_fk_conflict.test │ │ │ ├── galera_sr_gtid-master.opt │ │ │ ├── galera_sr_gtid.test │ │ │ ├── galera_sr_insert_select.test │ │ │ ├── galera_sr_kill_all_nobootstrap.test │ │ │ ├── galera_sr_kill_all_norecovery.cnf │ │ │ ├── galera_sr_kill_all_norecovery.test │ │ │ ├── galera_sr_kill_all_pcrecovery.test │ │ │ ├── galera_sr_kill_connection.test │ │ │ ├── galera_sr_kill_query.test │ │ │ ├── galera_sr_kill_slave.cnf │ │ │ ├── galera_sr_kill_slave.test │ │ │ ├── galera_sr_large_fragment-master.opt │ │ │ ├── galera_sr_large_fragment.test │ │ │ ├── galera_sr_load_data.test │ │ │ ├── galera_sr_load_data_splitting.test │ │ │ ├── galera_sr_log_bin-master.opt │ │ │ ├── galera_sr_log_bin.test │ │ │ ├── galera_sr_many_fragments.test │ │ │ ├── galera_sr_multirow_rollback.combinations │ │ │ ├── galera_sr_multirow_rollback.test │ │ │ ├── galera_sr_myisam.test │ │ │ ├── galera_sr_mysqldump_sst.cnf │ │ │ ├── galera_sr_mysqldump_sst.test │ │ │ ├── galera_sr_nonPK_and_PA.test │ │ │ ├── galera_sr_parallel_apply.test │ │ │ ├── galera_sr_rollback.test │ │ │ ├── galera_sr_rollback_retry.test │ │ │ ├── galera_sr_rollback_savepoint.test │ │ │ ├── galera_sr_rollback_statement.test │ │ │ ├── galera_sr_shutdown_master.test │ │ │ ├── galera_sr_shutdown_slave.test │ │ │ ├── galera_sr_slow.test │ │ │ ├── galera_sr_small_gcache.cnf │ │ │ ├── galera_sr_small_gcache.test │ │ │ ├── galera_sr_transaction_replay.test │ │ │ ├── galera_sr_unit_statements.test │ │ │ ├── galera_sr_v1_row_events-master.opt │ │ │ ├── galera_sr_v1_row_events.test │ │ │ ├── galera_sr_ws_size.test │ │ │ ├── galera_sr_ws_size2.test │ │ │ ├── galera_var_ignore_apply_errors_sr.test │ │ │ ├── mdev_18631.cnf │ │ │ ├── mdev_18631.test │ │ │ ├── mysql-wsrep#215.test │ │ │ ├── mysql-wsrep-bugs-900.test │ │ │ ├── mysql-wsrep-features#136-master.opt │ │ │ ├── mysql-wsrep-features#136.test │ │ │ ├── mysql-wsrep-features#138.test │ │ │ ├── mysql-wsrep-features#14.test │ │ │ ├── mysql-wsrep-features#148.test │ │ │ ├── mysql-wsrep-features#15.test │ │ │ ├── mysql-wsrep-features#165.inc │ │ │ ├── mysql-wsrep-features#165.test │ │ │ ├── mysql-wsrep-features#22.test │ │ │ ├── mysql-wsrep-features#27.test │ │ │ ├── mysql-wsrep-features#32-master.opt │ │ │ ├── mysql-wsrep-features#32.test │ │ │ ├── mysql-wsrep-features#35.test │ │ │ ├── mysql-wsrep-features#8.test │ │ │ ├── mysql-wsrep-features#9.test │ │ │ ├── mysql-wsrep-features#93.test │ │ │ └── mysql-wsrep-features#96.test │ │ ├── gcol/ │ │ │ ├── inc/ │ │ │ │ ├── gcol_blocked_sql_funcs_main.inc │ │ │ │ ├── gcol_cleanup.inc │ │ │ │ ├── gcol_column_def_options.inc │ │ │ │ ├── gcol_dependancies_on_vcol.inc │ │ │ │ ├── gcol_handler.inc │ │ │ │ ├── gcol_ins_upd.inc │ │ │ │ ├── gcol_keys.inc │ │ │ │ ├── gcol_non_stored_columns.inc │ │ │ │ ├── gcol_partition.inc │ │ │ │ ├── gcol_select.inc │ │ │ │ ├── gcol_supported_sql_funcs.inc │ │ │ │ ├── gcol_supported_sql_funcs_main.inc │ │ │ │ ├── gcol_trigger_sp.inc │ │ │ │ ├── gcol_unsupported_storage_engines.inc │ │ │ │ ├── gcol_view.inc │ │ │ │ └── innodb_v_large_col.inc │ │ │ ├── r/ │ │ │ │ ├── federated_gcol.result │ │ │ │ ├── gcol_archive.result │ │ │ │ ├── gcol_blackhole.result │ │ │ │ ├── gcol_blocked_sql_funcs_innodb.result │ │ │ │ ├── gcol_blocked_sql_funcs_myisam.result │ │ │ │ ├── gcol_bug20746926.result │ │ │ │ ├── gcol_bugfixes.result │ │ │ │ ├── gcol_column_def_options_innodb.result │ │ │ │ ├── gcol_column_def_options_myisam.result │ │ │ │ ├── gcol_csv.result │ │ │ │ ├── gcol_falcon.result │ │ │ │ ├── gcol_handler_innodb.result │ │ │ │ ├── gcol_handler_myisam.result │ │ │ │ ├── gcol_ins_upd_innodb.result │ │ │ │ ├── gcol_ins_upd_myisam.result │ │ │ │ ├── gcol_keys_innodb.result │ │ │ │ ├── gcol_keys_myisam.result │ │ │ │ ├── gcol_memory.result │ │ │ │ ├── gcol_merge.result │ │ │ │ ├── gcol_ndb.result │ │ │ │ ├── gcol_non_stored_columns_innodb.result │ │ │ │ ├── gcol_non_stored_columns_myisam.result │ │ │ │ ├── gcol_partition_innodb.result │ │ │ │ ├── gcol_partition_myisam.result │ │ │ │ ├── gcol_purge.result │ │ │ │ ├── gcol_rejected_innodb.result │ │ │ │ ├── gcol_rollback.result │ │ │ │ ├── gcol_select_innodb.result │ │ │ │ ├── gcol_select_myisam.result │ │ │ │ ├── gcol_supported_sql_funcs_innodb.result │ │ │ │ ├── gcol_supported_sql_funcs_myisam.result │ │ │ │ ├── gcol_trigger_sp_innodb.result │ │ │ │ ├── gcol_trigger_sp_myisam.result │ │ │ │ ├── gcol_update.result │ │ │ │ ├── gcol_view_innodb.result │ │ │ │ ├── gcol_view_myisam.result │ │ │ │ ├── innodb_partition.result │ │ │ │ ├── innodb_prefix_index_check.result │ │ │ │ ├── innodb_virtual_basic.result │ │ │ │ ├── innodb_virtual_blob.result │ │ │ │ ├── innodb_virtual_debug.result │ │ │ │ ├── innodb_virtual_debug_purge.result │ │ │ │ ├── innodb_virtual_fk.result │ │ │ │ ├── innodb_virtual_fk_restart.result │ │ │ │ ├── innodb_virtual_index.result │ │ │ │ ├── innodb_virtual_purge.result │ │ │ │ ├── innodb_virtual_rebuild.result │ │ │ │ ├── innodb_virtual_stats.result │ │ │ │ ├── innodb_wl8114.result │ │ │ │ ├── main_alter_table.result │ │ │ │ ├── main_mysqldump.result │ │ │ │ ├── rpl_gcol.result │ │ │ │ └── virtual_index_drop.result │ │ │ └── t/ │ │ │ ├── gcol_archive.test │ │ │ ├── gcol_blackhole.test │ │ │ ├── gcol_blocked_sql_funcs_innodb.test │ │ │ ├── gcol_blocked_sql_funcs_myisam.test │ │ │ ├── gcol_bug20746926.test │ │ │ ├── gcol_bugfixes.test │ │ │ ├── gcol_column_def_options_innodb.test │ │ │ ├── gcol_column_def_options_myisam.test │ │ │ ├── gcol_handler_innodb.test │ │ │ ├── gcol_handler_myisam.test │ │ │ ├── gcol_ins_upd_innodb.test │ │ │ ├── gcol_ins_upd_myisam.test │ │ │ ├── gcol_keys_innodb.test │ │ │ ├── gcol_keys_myisam.test │ │ │ ├── gcol_memory.test │ │ │ ├── gcol_merge.test │ │ │ ├── gcol_non_stored_columns_innodb.test │ │ │ ├── gcol_non_stored_columns_myisam.test │ │ │ ├── gcol_partition_innodb.test │ │ │ ├── gcol_partition_myisam.test │ │ │ ├── gcol_purge.test │ │ │ ├── gcol_rejected_innodb.test │ │ │ ├── gcol_rollback.test │ │ │ ├── gcol_select_innodb.test │ │ │ ├── gcol_select_myisam.test │ │ │ ├── gcol_supported_sql_funcs_innodb.test │ │ │ ├── gcol_supported_sql_funcs_myisam.test │ │ │ ├── gcol_trigger_sp_innodb.test │ │ │ ├── gcol_trigger_sp_myisam.test │ │ │ ├── gcol_update.test │ │ │ ├── gcol_view_innodb.test │ │ │ ├── gcol_view_myisam.test │ │ │ ├── innodb_partition.test │ │ │ ├── innodb_prefix_index_check.test │ │ │ ├── innodb_virtual_basic.test │ │ │ ├── innodb_virtual_blob.test │ │ │ ├── innodb_virtual_debug.test │ │ │ ├── innodb_virtual_debug_purge.opt │ │ │ ├── innodb_virtual_debug_purge.test │ │ │ ├── innodb_virtual_fk.test │ │ │ ├── innodb_virtual_fk_restart.test │ │ │ ├── innodb_virtual_index.opt │ │ │ ├── innodb_virtual_index.test │ │ │ ├── innodb_virtual_purge.test │ │ │ ├── innodb_virtual_rebuild.test │ │ │ ├── innodb_virtual_stats.test │ │ │ ├── innodb_wl8114.test │ │ │ ├── main_alter_table.test │ │ │ ├── main_mysqldump.test │ │ │ ├── rpl_gcol.test │ │ │ └── virtual_index_drop.test │ │ ├── handler/ │ │ │ ├── aria.result │ │ │ ├── aria.test │ │ │ ├── disconnect_4480.result │ │ │ ├── disconnect_4480.test │ │ │ ├── handler.inc │ │ │ ├── heap.result │ │ │ ├── heap.test │ │ │ ├── init.inc │ │ │ ├── innodb.result │ │ │ ├── innodb.test │ │ │ ├── interface.result │ │ │ ├── interface.test │ │ │ ├── myisam.result │ │ │ ├── myisam.test │ │ │ ├── ps.result │ │ │ ├── ps.test │ │ │ └── savepoint.inc │ │ ├── heap/ │ │ │ ├── btree_varchar_null.result │ │ │ ├── btree_varchar_null.test │ │ │ ├── drop.result │ │ │ ├── drop.test │ │ │ ├── heap.result │ │ │ ├── heap.test │ │ │ ├── heap_auto_increment.result │ │ │ ├── heap_auto_increment.test │ │ │ ├── heap_btree.result │ │ │ ├── heap_btree.test │ │ │ ├── heap_hash.result │ │ │ └── heap_hash.test │ │ ├── innodb/ │ │ │ ├── include/ │ │ │ │ ├── alter_table_pk_no_sort.inc │ │ │ │ ├── autoinc_persist_alter.inc │ │ │ │ ├── crc32.pl │ │ │ │ ├── dml_ops.inc │ │ │ │ ├── have_innodb_punchhole.inc │ │ │ │ ├── have_undo_tablespaces.combinations │ │ │ │ ├── have_undo_tablespaces.inc │ │ │ │ ├── ibd_convert.pl │ │ │ │ ├── import.inc │ │ │ │ ├── innodb-util.pl │ │ │ │ ├── innodb-wl6045.inc │ │ │ │ ├── innodb_binlog.combinations │ │ │ │ ├── innodb_binlog.inc │ │ │ │ ├── innodb_bulk_create_index.inc │ │ │ │ ├── innodb_bulk_create_index_debug.inc │ │ │ │ ├── innodb_dict.inc │ │ │ │ ├── innodb_isolation_selects.inc │ │ │ │ ├── innodb_merge_threshold_delete.inc │ │ │ │ ├── innodb_merge_threshold_secondary.inc │ │ │ │ ├── innodb_merge_threshold_update.inc │ │ │ │ ├── innodb_stats.inc │ │ │ │ ├── log_file_cleanup.inc │ │ │ │ ├── no_checkpoint_end.inc │ │ │ │ ├── no_checkpoint_start.inc │ │ │ │ ├── restart_and_reinit.inc │ │ │ │ ├── show_i_s_tables.inc │ │ │ │ ├── show_i_s_tablespaces.inc │ │ │ │ └── wait_all_purged.inc │ │ │ ├── r/ │ │ │ │ ├── 101_compatibility.result │ │ │ │ ├── add_constraint.result │ │ │ │ ├── alter_algorithm,INPLACE.rdiff │ │ │ │ ├── alter_algorithm,INSTANT.rdiff │ │ │ │ ├── alter_algorithm,NOCOPY.rdiff │ │ │ │ ├── alter_algorithm.result │ │ │ │ ├── alter_algorithm2.result │ │ │ │ ├── alter_candidate_key.result │ │ │ │ ├── alter_copy.result │ │ │ │ ├── alter_crash.result │ │ │ │ ├── alter_crash_rebuild.result │ │ │ │ ├── alter_dml_apply.result │ │ │ │ ├── alter_foreign_crash.result │ │ │ │ ├── alter_inplace_perfschema.result │ │ │ │ ├── alter_key_block_size-11757.result │ │ │ │ ├── alter_kill.result │ │ │ │ ├── alter_large_dml.result │ │ │ │ ├── alter_mdl_timeout.result │ │ │ │ ├── alter_missing_tablespace.result │ │ │ │ ├── alter_not_null,COPY,NON-STRICT.rdiff │ │ │ │ ├── alter_not_null,COPY,STRICT.rdiff │ │ │ │ ├── alter_not_null,INPLACE,STRICT.rdiff │ │ │ │ ├── alter_not_null.result │ │ │ │ ├── alter_not_null_debug,STRICT.rdiff │ │ │ │ ├── alter_not_null_debug.result │ │ │ │ ├── alter_partitioned.result │ │ │ │ ├── alter_partitioned_debug.result │ │ │ │ ├── alter_partitioned_xa.result │ │ │ │ ├── alter_persistent_autoinc.result │ │ │ │ ├── alter_primary_key.result │ │ │ │ ├── alter_rename_existing.result │ │ │ │ ├── alter_table.result │ │ │ │ ├── alter_varchar_change.result │ │ │ │ ├── analyze_table.result │ │ │ │ ├── auto_increment_dup.result │ │ │ │ ├── autoinc_debug.result │ │ │ │ ├── autoinc_persist.result │ │ │ │ ├── binlog_consistent.result │ │ │ │ ├── blob-crash.result │ │ │ │ ├── blob-update-debug.result │ │ │ │ ├── blob_cmp_empty.result │ │ │ │ ├── blob_unique2pk.result │ │ │ │ ├── buf_pool_resize_oom.result │ │ │ │ ├── change_column_collation.result │ │ │ │ ├── check_ibd_filesize,32k.rdiff │ │ │ │ ├── check_ibd_filesize,4k.rdiff │ │ │ │ ├── check_ibd_filesize,64k.rdiff │ │ │ │ ├── check_ibd_filesize,8k.rdiff │ │ │ │ ├── check_ibd_filesize.result │ │ │ │ ├── corrupted_during_recovery.result │ │ │ │ ├── count_distinct.result │ │ │ │ ├── create-index.result │ │ │ │ ├── create_isl_with_direct.result │ │ │ │ ├── create_select.result │ │ │ │ ├── create_table_insert_skip_locked.result │ │ │ │ ├── cursor-restore-locking.result │ │ │ │ ├── data_types.result │ │ │ │ ├── ddl_purge.result │ │ │ │ ├── deadlock_detect,ON.rdiff │ │ │ │ ├── deadlock_detect.result │ │ │ │ ├── deadlock_victim_race.result │ │ │ │ ├── default_row_format_alter,compact.rdiff │ │ │ │ ├── default_row_format_alter,redundant.rdiff │ │ │ │ ├── default_row_format_alter.result │ │ │ │ ├── default_row_format_compatibility.result │ │ │ │ ├── default_row_format_create,dynamic.rdiff │ │ │ │ ├── default_row_format_create,redundant.rdiff │ │ │ │ ├── default_row_format_create.result │ │ │ │ ├── defrag_mdl-9155.result │ │ │ │ ├── dml_purge.result │ │ │ │ ├── doublewrite.result │ │ │ │ ├── dropdb.result │ │ │ │ ├── dropdb_cs.result │ │ │ │ ├── encryption_threads_shutdown.result │ │ │ │ ├── evict_tables_on_commit_debug.result │ │ │ │ ├── file_format_defaults.result │ │ │ │ ├── flush.result │ │ │ │ ├── foreign-keys.result │ │ │ │ ├── foreign_key.result │ │ │ │ ├── foreign_key_debug.result │ │ │ │ ├── foreign_key_not_windows.result │ │ │ │ ├── full_crc32_import.result │ │ │ │ ├── gap_lock_split.result │ │ │ │ ├── gap_locks.result │ │ │ │ ├── group_commit.result │ │ │ │ ├── group_commit_binlog_pos.result │ │ │ │ ├── group_commit_binlog_pos_no_optimize_thread.result │ │ │ │ ├── group_commit_crash.result │ │ │ │ ├── group_commit_crash_no_optimize_thread.result │ │ │ │ ├── group_commit_force_recovery.result │ │ │ │ ├── group_commit_no_optimize_thread.result │ │ │ │ ├── help_url.result │ │ │ │ ├── ibuf_delete.result │ │ │ │ ├── ibuf_not_empty.result │ │ │ │ ├── implicit_gap_lock_convertion.result │ │ │ │ ├── import_bugs.result │ │ │ │ ├── import_corrupted.result │ │ │ │ ├── index_merge_threshold.result │ │ │ │ ├── index_tree_operation.result │ │ │ │ ├── index_vcol_purge_startup.result │ │ │ │ ├── information_schema_grants.result │ │ │ │ ├── innodb-16k.result │ │ │ │ ├── innodb-32k-crash.result │ │ │ │ ├── innodb-32k.result │ │ │ │ ├── innodb-64k-crash.result │ │ │ │ ├── innodb-64k.result │ │ │ │ ├── innodb-agregate.result │ │ │ │ ├── innodb-alter-autoinc.result │ │ │ │ ├── innodb-alter-debug.result │ │ │ │ ├── innodb-alter-nullable.result │ │ │ │ ├── innodb-alter-table.result │ │ │ │ ├── innodb-alter-tempfile.result │ │ │ │ ├── innodb-alter-timestamp.result │ │ │ │ ├── innodb-alter.result │ │ │ │ ├── innodb-analyze.result │ │ │ │ ├── innodb-autoinc-18274.result │ │ │ │ ├── innodb-autoinc-44030.result │ │ │ │ ├── innodb-autoinc-56228.result │ │ │ │ ├── innodb-autoinc-61209.result │ │ │ │ ├── innodb-autoinc-optimize.result │ │ │ │ ├── innodb-autoinc-part.result │ │ │ │ ├── innodb-autoinc.result │ │ │ │ ├── innodb-bigblob.result │ │ │ │ ├── innodb-blob.result │ │ │ │ ├── innodb-bug-14068765.result │ │ │ │ ├── innodb-bug-14084530.result │ │ │ │ ├── innodb-change-buffer-recovery.result │ │ │ │ ├── innodb-consistent.result │ │ │ │ ├── innodb-corrupted-table.result │ │ │ │ ├── innodb-dict.result │ │ │ │ ├── innodb-enlarge-blob.result │ │ │ │ ├── innodb-fk-virtual.result │ │ │ │ ├── innodb-fk-warnings.result │ │ │ │ ├── innodb-fk.result │ │ │ │ ├── innodb-fkcheck.result │ │ │ │ ├── innodb-get-fk.result │ │ │ │ ├── innodb-index,debug.rdiff │ │ │ │ ├── innodb-index-debug.result │ │ │ │ ├── innodb-index-online,crypt.rdiff │ │ │ │ ├── innodb-index-online-delete.result │ │ │ │ ├── innodb-index-online-fk.result │ │ │ │ ├── innodb-index-online-norebuild.result │ │ │ │ ├── innodb-index-online-purge.result │ │ │ │ ├── innodb-index-online.result │ │ │ │ ├── innodb-index.result │ │ │ │ ├── innodb-index_ucs2.result │ │ │ │ ├── innodb-isolation.result │ │ │ │ ├── innodb-lock.result │ │ │ │ ├── innodb-lru-force-no-free-page.result │ │ │ │ ├── innodb-mdev-7408.result │ │ │ │ ├── innodb-mdev-7513.result │ │ │ │ ├── innodb-mdev7046.result │ │ │ │ ├── innodb-on-duplicate-update.result │ │ │ │ ├── innodb-online-alter-gis.result │ │ │ │ ├── innodb-read-view.result │ │ │ │ ├── innodb-replace-debug.result │ │ │ │ ├── innodb-replace.result │ │ │ │ ├── innodb-rollback.result │ │ │ │ ├── innodb-semi-consistent.result │ │ │ │ ├── innodb-stats-initialize-failure.result │ │ │ │ ├── innodb-stats-modified-counter.result │ │ │ │ ├── innodb-stats-sample.result │ │ │ │ ├── innodb-system-table-view.result │ │ │ │ ├── innodb-table-online,crypt.rdiff │ │ │ │ ├── innodb-table-online.result │ │ │ │ ├── innodb-timeout.result │ │ │ │ ├── innodb-trim.result │ │ │ │ ├── innodb-truncate.result │ │ │ │ ├── innodb-ucs2.result │ │ │ │ ├── innodb-update-insert.result │ │ │ │ ├── innodb-virtual-columns-debug.result │ │ │ │ ├── innodb-virtual-columns.result │ │ │ │ ├── innodb-virtual-columns2.result │ │ │ │ ├── innodb-wl5522,crc32.rdiff │ │ │ │ ├── innodb-wl5522,strict_crc32.rdiff │ │ │ │ ├── innodb-wl5522-1.result │ │ │ │ ├── innodb-wl5522-debug.result │ │ │ │ ├── innodb-wl5522.result │ │ │ │ ├── innodb-wl5980-alter.result │ │ │ │ ├── innodb-xa.result │ │ │ │ ├── innodb.result │ │ │ │ ├── innodb_28867993.result │ │ │ │ ├── innodb_autoinc_lock_mode_zero.result │ │ │ │ ├── innodb_buffer_pool_dump_pct.result │ │ │ │ ├── innodb_buffer_pool_fail.result │ │ │ │ ├── innodb_buffer_pool_load_now.result │ │ │ │ ├── innodb_buffer_pool_resize.result │ │ │ │ ├── innodb_buffer_pool_resize_bigtest.result │ │ │ │ ├── innodb_buffer_pool_resize_temporary.result │ │ │ │ ├── innodb_buffer_pool_resize_with_chunks.result │ │ │ │ ├── innodb_bug11754376.result │ │ │ │ ├── innodb_bug12400341.result │ │ │ │ ├── innodb_bug12661768.result │ │ │ │ ├── innodb_bug12902967.result │ │ │ │ ├── innodb_bug13510739.result │ │ │ │ ├── innodb_bug14007649.result │ │ │ │ ├── innodb_bug14147491.result │ │ │ │ ├── innodb_bug14676111.result │ │ │ │ ├── innodb_bug21704.result │ │ │ │ ├── innodb_bug27216817.result │ │ │ │ ├── innodb_bug30113362.result │ │ │ │ ├── innodb_bug30423.result │ │ │ │ ├── innodb_bug30919.result │ │ │ │ ├── innodb_bug34300.result │ │ │ │ ├── innodb_bug35220.result │ │ │ │ ├── innodb_bug38231.result │ │ │ │ ├── innodb_bug39438.result │ │ │ │ ├── innodb_bug40360.result │ │ │ │ ├── innodb_bug40565.result │ │ │ │ ├── innodb_bug41904.result │ │ │ │ ├── innodb_bug42419.result │ │ │ │ ├── innodb_bug44032.result │ │ │ │ ├── innodb_bug44369.result │ │ │ │ ├── innodb_bug44571.result │ │ │ │ ├── innodb_bug45357.result │ │ │ │ ├── innodb_bug46000.result │ │ │ │ ├── innodb_bug46676.result │ │ │ │ ├── innodb_bug47621.result │ │ │ │ ├── innodb_bug47622.result │ │ │ │ ├── innodb_bug47777.result │ │ │ │ ├── innodb_bug48024.result │ │ │ │ ├── innodb_bug49164.result │ │ │ │ ├── innodb_bug51378.result │ │ │ │ ├── innodb_bug51920.result │ │ │ │ ├── innodb_bug52199.result │ │ │ │ ├── innodb_bug52663.result │ │ │ │ ├── innodb_bug53046.result │ │ │ │ ├── innodb_bug53290.result │ │ │ │ ├── innodb_bug53592.result │ │ │ │ ├── innodb_bug53674.result │ │ │ │ ├── innodb_bug53756.result │ │ │ │ ├── innodb_bug54044.result │ │ │ │ ├── innodb_bug56143.result │ │ │ │ ├── innodb_bug56716.result │ │ │ │ ├── innodb_bug56947.result │ │ │ │ ├── innodb_bug57252.result │ │ │ │ ├── innodb_bug57255.result │ │ │ │ ├── innodb_bug57904.result │ │ │ │ ├── innodb_bug59307.result │ │ │ │ ├── innodb_bug59410.result │ │ │ │ ├── innodb_bug59641.result │ │ │ │ ├── innodb_bug59733.result │ │ │ │ ├── innodb_bug60049.result │ │ │ │ ├── innodb_bug60196.result │ │ │ │ ├── innodb_bug60229.result │ │ │ │ ├── innodb_bug68148.result │ │ │ │ ├── innodb_bug84958.result │ │ │ │ ├── innodb_bulk_create_index.result │ │ │ │ ├── innodb_bulk_create_index_debug.result │ │ │ │ ├── innodb_bulk_create_index_replication.result │ │ │ │ ├── innodb_bulk_create_index_small.result │ │ │ │ ├── innodb_corrupt_bit.result │ │ │ │ ├── innodb_ctype_big5.result │ │ │ │ ├── innodb_ctype_latin1.result │ │ │ │ ├── innodb_ctype_ldml.result │ │ │ │ ├── innodb_ctype_tis620.result │ │ │ │ ├── innodb_ctype_utf8.result │ │ │ │ ├── innodb_defrag_binlog.result │ │ │ │ ├── innodb_defrag_concurrent.result │ │ │ │ ├── innodb_defrag_stats.result │ │ │ │ ├── innodb_defrag_stats_many_tables.result │ │ │ │ ├── innodb_defragment.result │ │ │ │ ├── innodb_defragment_fill_factor.result │ │ │ │ ├── innodb_defragment_small.result │ │ │ │ ├── innodb_force_pk.result │ │ │ │ ├── innodb_force_recovery.result │ │ │ │ ├── innodb_force_recovery_rollback.result │ │ │ │ ├── innodb_gis.result │ │ │ │ ├── innodb_information_schema.result │ │ │ │ ├── innodb_information_schema_buffer.result │ │ │ │ ├── innodb_information_schema_tables.result │ │ │ │ ├── innodb_lock_wait_timeout_1.result │ │ │ │ ├── innodb_max_recordsize_32k.result │ │ │ │ ├── innodb_max_recordsize_64k.result │ │ │ │ ├── innodb_multi_update.result │ │ │ │ ├── innodb_mysql.result │ │ │ │ ├── innodb_mysql_rbk.result │ │ │ │ ├── innodb_notembedded.result │ │ │ │ ├── innodb_page_compressed.result │ │ │ │ ├── innodb_prefix_index_restart_server.result │ │ │ │ ├── innodb_query_cache.result │ │ │ │ ├── innodb_rename_index.result │ │ │ │ ├── innodb_scrub.result │ │ │ │ ├── innodb_skip_innodb_is_tables.result │ │ │ │ ├── innodb_stats.result │ │ │ │ ├── innodb_stats_create_on_corrupted.result │ │ │ │ ├── innodb_stats_create_table.result │ │ │ │ ├── innodb_stats_drop_locked.result │ │ │ │ ├── innodb_stats_fetch.result │ │ │ │ ├── innodb_stats_fetch_corrupted.result │ │ │ │ ├── innodb_stats_fetch_nonexistent.result │ │ │ │ ├── innodb_stats_persistent.result │ │ │ │ ├── innodb_stats_persistent_debug.result │ │ │ │ ├── innodb_stats_rename_table.result │ │ │ │ ├── innodb_stats_rename_table_if_exists.result │ │ │ │ ├── innodb_status_variables.result │ │ │ │ ├── innodb_sys_var_valgrind.result │ │ │ │ ├── innodb_timeout_rollback.result │ │ │ │ ├── innodb_trx_weight.result │ │ │ │ ├── innodb_uninstall.result │ │ │ │ ├── innodb_wl6326.result │ │ │ │ ├── insert_debug.result │ │ │ │ ├── insert_into_empty.result │ │ │ │ ├── insert_into_empty_debug.result │ │ │ │ ├── instant_alter,32k.rdiff │ │ │ │ ├── instant_alter,4k.rdiff │ │ │ │ ├── instant_alter,64k.rdiff │ │ │ │ ├── instant_alter,8k.rdiff │ │ │ │ ├── instant_alter.result │ │ │ │ ├── instant_alter_bugs.result │ │ │ │ ├── instant_alter_charset,redundant.rdiff │ │ │ │ ├── instant_alter_charset.result │ │ │ │ ├── instant_alter_crash.result │ │ │ │ ├── instant_alter_debug,redundant.rdiff │ │ │ │ ├── instant_alter_debug.result │ │ │ │ ├── instant_alter_extend,utf8.rdiff │ │ │ │ ├── instant_alter_extend.result │ │ │ │ ├── instant_alter_import.result │ │ │ │ ├── instant_alter_index_rename.result │ │ │ │ ├── instant_alter_inject.result │ │ │ │ ├── instant_alter_limit,16k.rdiff │ │ │ │ ├── instant_alter_limit,32k.rdiff │ │ │ │ ├── instant_alter_limit,4k.rdiff │ │ │ │ ├── instant_alter_limit,64k.rdiff │ │ │ │ ├── instant_alter_limit,8k.rdiff │ │ │ │ ├── instant_alter_limit.result │ │ │ │ ├── instant_alter_null.result │ │ │ │ ├── instant_alter_purge,release.rdiff │ │ │ │ ├── instant_alter_purge.result │ │ │ │ ├── instant_alter_rollback.result │ │ │ │ ├── instant_alter_upgrade.result │ │ │ │ ├── instant_auto_inc.result │ │ │ │ ├── instant_drop.result │ │ │ │ ├── leaf_page_corrupted_during_recovery.result │ │ │ │ ├── lock_delete_updated.result │ │ │ │ ├── lock_deleted.result │ │ │ │ ├── lock_insert_into_empty.result │ │ │ │ ├── log_corruption.result │ │ │ │ ├── log_data_file_size.result │ │ │ │ ├── log_file.result │ │ │ │ ├── log_file_name.result │ │ │ │ ├── log_file_name_debug.result │ │ │ │ ├── log_file_size.result │ │ │ │ ├── max_record_size,16k,compact,innodb.rdiff │ │ │ │ ├── max_record_size,16k,dynamic,innodb.rdiff │ │ │ │ ├── max_record_size,16k,innodb,redundant.rdiff │ │ │ │ ├── max_record_size,32k,compact,innodb.rdiff │ │ │ │ ├── max_record_size,32k,dynamic,innodb.rdiff │ │ │ │ ├── max_record_size,32k,innodb,redundant.rdiff │ │ │ │ ├── max_record_size,4k,compact,innodb.rdiff │ │ │ │ ├── max_record_size,4k,dynamic,innodb.rdiff │ │ │ │ ├── max_record_size,4k,innodb,redundant.rdiff │ │ │ │ ├── max_record_size,64k,compact,innodb.rdiff │ │ │ │ ├── max_record_size,64k,dynamic,innodb.rdiff │ │ │ │ ├── max_record_size,64k,innodb,redundant.rdiff │ │ │ │ ├── max_record_size,8k,compact,innodb.rdiff │ │ │ │ ├── max_record_size,8k,dynamic,innodb.rdiff │ │ │ │ ├── max_record_size.result │ │ │ │ ├── mdev-117.result │ │ │ │ ├── mdev-14846.result │ │ │ │ ├── mdev-15707.result │ │ │ │ ├── missing_tablespaces.result │ │ │ │ ├── monitor.result │ │ │ │ ├── multi_repair-7404.result │ │ │ │ ├── mvcc.result │ │ │ │ ├── mvcc_secondary.result │ │ │ │ ├── no_pad.result │ │ │ │ ├── online_table_rebuild.result │ │ │ │ ├── page_cleaner.result │ │ │ │ ├── page_id_innochecksum.result │ │ │ │ ├── page_reorganize.result │ │ │ │ ├── partition_locking.result │ │ │ │ ├── purge.result │ │ │ │ ├── purge_secondary.result │ │ │ │ ├── purge_thread_shutdown.result │ │ │ │ ├── read_only_recover_committed.result │ │ │ │ ├── read_only_recovery.result │ │ │ │ ├── readahead.result │ │ │ │ ├── recovery_memory.result │ │ │ │ ├── recovery_shutdown.result │ │ │ │ ├── rename_table.result │ │ │ │ ├── restart,16k,innodb.rdiff │ │ │ │ ├── restart,32k,innodb.rdiff │ │ │ │ ├── restart,4k,innodb.rdiff │ │ │ │ ├── restart,64k,innodb.rdiff │ │ │ │ ├── restart,8k,innodb.rdiff │ │ │ │ ├── restart.result │ │ │ │ ├── row_format_redundant.result │ │ │ │ ├── row_lock.result │ │ │ │ ├── row_size_error_log_warnings_3.result │ │ │ │ ├── skip_locked_nowait.result │ │ │ │ ├── skip_symbolic_links.result │ │ │ │ ├── snapshot.result │ │ │ │ ├── sp_temp_table.result │ │ │ │ ├── stat_tables.result │ │ │ │ ├── stats_persistent.result │ │ │ │ ├── stored_fk.result │ │ │ │ ├── strict_mode.result │ │ │ │ ├── system_tables.result │ │ │ │ ├── table_definition_cache_debug.result │ │ │ │ ├── table_flags,32k.rdiff │ │ │ │ ├── table_flags,64k.rdiff │ │ │ │ ├── table_flags.result │ │ │ │ ├── table_index_statistics.result │ │ │ │ ├── temp_table.result │ │ │ │ ├── temp_table_savepoint.result │ │ │ │ ├── temporary_table.result │ │ │ │ ├── temporary_table_optimization.result │ │ │ │ ├── tmpdir.result │ │ │ │ ├── trigger.result │ │ │ │ ├── trigger_error.result │ │ │ │ ├── truncate.result │ │ │ │ ├── truncate_crash.result │ │ │ │ ├── truncate_foreign.result │ │ │ │ ├── truncate_missing.result │ │ │ │ ├── trx_id_future.result │ │ │ │ ├── undo_log.result │ │ │ │ ├── undo_truncate.result │ │ │ │ ├── undo_truncate_recover.result │ │ │ │ ├── update-cascade.result │ │ │ │ ├── update_time.result │ │ │ │ ├── update_time_wl6658.result │ │ │ │ ├── xa_debug.result │ │ │ │ ├── xa_recovery.result │ │ │ │ └── xa_recovery_debug.result │ │ │ └── t/ │ │ │ ├── 101_compatibility.test │ │ │ ├── add_constraint.test │ │ │ ├── alter_algorithm.combinations │ │ │ ├── alter_algorithm.inc │ │ │ ├── alter_algorithm.test │ │ │ ├── alter_algorithm2.test │ │ │ ├── alter_candidate_key.test │ │ │ ├── alter_copy.test │ │ │ ├── alter_crash.opt │ │ │ ├── alter_crash.test │ │ │ ├── alter_crash_rebuild.test │ │ │ ├── alter_dml_apply.opt │ │ │ ├── alter_dml_apply.test │ │ │ ├── alter_foreign_crash.test │ │ │ ├── alter_inplace_perfschema.opt │ │ │ ├── alter_inplace_perfschema.test │ │ │ ├── alter_key_block_size-11757.test │ │ │ ├── alter_kill-master.opt │ │ │ ├── alter_kill.test │ │ │ ├── alter_large_dml.opt │ │ │ ├── alter_large_dml.test │ │ │ ├── alter_mdl_timeout.opt │ │ │ ├── alter_mdl_timeout.test │ │ │ ├── alter_missing_tablespace.test │ │ │ ├── alter_non_null.inc │ │ │ ├── alter_not_null.combinations │ │ │ ├── alter_not_null.test │ │ │ ├── alter_not_null_debug.test │ │ │ ├── alter_partitioned.test │ │ │ ├── alter_partitioned_debug.test │ │ │ ├── alter_partitioned_xa.test │ │ │ ├── alter_persistent_autoinc.test │ │ │ ├── alter_primary_key.test │ │ │ ├── alter_rename_existing.test │ │ │ ├── alter_sql_mode.combinations │ │ │ ├── alter_sql_mode.inc │ │ │ ├── alter_table.test │ │ │ ├── alter_varchar_change.test │ │ │ ├── analyze_table.test │ │ │ ├── auto_increment_dup.opt │ │ │ ├── auto_increment_dup.test │ │ │ ├── autoinc_debug.test │ │ │ ├── autoinc_persist.test │ │ │ ├── binlog_consistent.test │ │ │ ├── blob-crash.test │ │ │ ├── blob-update-debug.test │ │ │ ├── blob_cmp_empty.test │ │ │ ├── blob_unique2pk.test │ │ │ ├── buf_pool_resize_oom.opt │ │ │ ├── buf_pool_resize_oom.test │ │ │ ├── change_column_collation.test │ │ │ ├── check_ibd_filesize.test │ │ │ ├── corrupted_during_recovery.opt │ │ │ ├── corrupted_during_recovery.test │ │ │ ├── count_distinct.test │ │ │ ├── create-index.test │ │ │ ├── create_isl_with_direct.opt │ │ │ ├── create_isl_with_direct.test │ │ │ ├── create_select.test │ │ │ ├── create_table_insert_skip_locked.test │ │ │ ├── cursor-restore-locking.test │ │ │ ├── data_types.opt │ │ │ ├── data_types.test │ │ │ ├── ddl_purge.test │ │ │ ├── deadlock_detect.combinations │ │ │ ├── deadlock_detect.test │ │ │ ├── deadlock_victim_race.test │ │ │ ├── default_row_format_alter.test │ │ │ ├── default_row_format_compatibility.test │ │ │ ├── default_row_format_create.test │ │ │ ├── defrag_mdl-9155.test │ │ │ ├── dml_purge.test │ │ │ ├── doublewrite.combinations │ │ │ ├── doublewrite.test │ │ │ ├── dropdb.test │ │ │ ├── dropdb_cs.test │ │ │ ├── encryption_threads_shutdown.opt │ │ │ ├── encryption_threads_shutdown.test │ │ │ ├── evict_tables_on_commit_debug.test │ │ │ ├── file_format_defaults.test │ │ │ ├── flush.opt │ │ │ ├── flush.test │ │ │ ├── foreign-keys.test │ │ │ ├── foreign_key.combinations │ │ │ ├── foreign_key.test │ │ │ ├── foreign_key_debug.test │ │ │ ├── foreign_key_not_windows.test │ │ │ ├── full_crc32_import.test │ │ │ ├── gap_lock_split.test │ │ │ ├── gap_locks.test │ │ │ ├── group_commit.test │ │ │ ├── group_commit_binlog_pos-master.opt │ │ │ ├── group_commit_binlog_pos.test │ │ │ ├── group_commit_binlog_pos_no_optimize_thread-master.opt │ │ │ ├── group_commit_binlog_pos_no_optimize_thread.test │ │ │ ├── group_commit_crash-master.opt │ │ │ ├── group_commit_crash.test │ │ │ ├── group_commit_crash_no_optimize_thread-master.opt │ │ │ ├── group_commit_crash_no_optimize_thread.test │ │ │ ├── group_commit_force_recovery-master.opt │ │ │ ├── group_commit_force_recovery.test │ │ │ ├── group_commit_no_optimize_thread-master.opt │ │ │ ├── group_commit_no_optimize_thread.test │ │ │ ├── help_url.test │ │ │ ├── ibuf_delete.test │ │ │ ├── ibuf_not_empty.combinations │ │ │ ├── ibuf_not_empty.test │ │ │ ├── implicit_gap_lock_convertion.test │ │ │ ├── import_bugs.test │ │ │ ├── import_corrupted.test │ │ │ ├── index_merge_threshold.opt │ │ │ ├── index_merge_threshold.test │ │ │ ├── index_tree_operation.opt │ │ │ ├── index_tree_operation.test │ │ │ ├── index_vcol_purge_startup.test │ │ │ ├── information_schema_grants.opt │ │ │ ├── information_schema_grants.test │ │ │ ├── innodb-16k-master.opt │ │ │ ├── innodb-16k.test │ │ │ ├── innodb-32k-crash-master.opt │ │ │ ├── innodb-32k-crash.test │ │ │ ├── innodb-32k-master.opt │ │ │ ├── innodb-32k.test │ │ │ ├── innodb-64k-crash-master.opt │ │ │ ├── innodb-64k-crash.test │ │ │ ├── innodb-64k-master.opt │ │ │ ├── innodb-64k.test │ │ │ ├── innodb-agregate.test │ │ │ ├── innodb-alter-autoinc.test │ │ │ ├── innodb-alter-debug.test │ │ │ ├── innodb-alter-nullable.test │ │ │ ├── innodb-alter-table.test │ │ │ ├── innodb-alter-tempfile.test │ │ │ ├── innodb-alter-timestamp.test │ │ │ ├── innodb-alter.opt │ │ │ ├── innodb-alter.test │ │ │ ├── innodb-analyze.test │ │ │ ├── innodb-autoinc-18274.test │ │ │ ├── innodb-autoinc-44030.test │ │ │ ├── innodb-autoinc-56228-master.opt │ │ │ ├── innodb-autoinc-56228.test │ │ │ ├── innodb-autoinc-61209.test │ │ │ ├── innodb-autoinc-optimize.test │ │ │ ├── innodb-autoinc-part.test │ │ │ ├── innodb-autoinc.opt │ │ │ ├── innodb-autoinc.test │ │ │ ├── innodb-bigblob.opt │ │ │ ├── innodb-bigblob.test │ │ │ ├── innodb-blob.test │ │ │ ├── innodb-bug-14068765.test │ │ │ ├── innodb-bug-14084530.test │ │ │ ├── innodb-change-buffer-recovery-master.opt │ │ │ ├── innodb-change-buffer-recovery.test │ │ │ ├── innodb-consistent-master.opt │ │ │ ├── innodb-consistent.test │ │ │ ├── innodb-corrupted-table.test │ │ │ ├── innodb-dict.test │ │ │ ├── innodb-enlarge-blob.opt │ │ │ ├── innodb-enlarge-blob.test │ │ │ ├── innodb-fk-virtual.test │ │ │ ├── innodb-fk-warnings.test │ │ │ ├── innodb-fk.test │ │ │ ├── innodb-fkcheck.test │ │ │ ├── innodb-get-fk.test │ │ │ ├── innodb-index-debug.opt │ │ │ ├── innodb-index-debug.test │ │ │ ├── innodb-index-online-delete.test │ │ │ ├── innodb-index-online-fk.opt │ │ │ ├── innodb-index-online-fk.test │ │ │ ├── innodb-index-online-norebuild.opt │ │ │ ├── innodb-index-online-norebuild.test │ │ │ ├── innodb-index-online-purge.test │ │ │ ├── innodb-index-online.opt │ │ │ ├── innodb-index-online.test │ │ │ ├── innodb-index.opt │ │ │ ├── innodb-index.test │ │ │ ├── innodb-index_ucs2.opt │ │ │ ├── innodb-index_ucs2.test │ │ │ ├── innodb-isolation.test │ │ │ ├── innodb-lock.test │ │ │ ├── innodb-lru-force-no-free-page.test │ │ │ ├── innodb-master.opt │ │ │ ├── innodb-mdev-7408.opt │ │ │ ├── innodb-mdev-7408.test │ │ │ ├── innodb-mdev-7513-master.opt │ │ │ ├── innodb-mdev-7513.test │ │ │ ├── innodb-mdev7046.test │ │ │ ├── innodb-on-duplicate-update.test │ │ │ ├── innodb-online-alter-gis.test │ │ │ ├── innodb-read-view.test │ │ │ ├── innodb-replace-debug.test │ │ │ ├── innodb-replace.test │ │ │ ├── innodb-rollback.test │ │ │ ├── innodb-semi-consistent-master.opt │ │ │ ├── innodb-semi-consistent.test │ │ │ ├── innodb-stats-initialize-failure.test │ │ │ ├── innodb-stats-modified-counter.opt │ │ │ ├── innodb-stats-modified-counter.test │ │ │ ├── innodb-stats-sample.test │ │ │ ├── innodb-system-table-view.opt │ │ │ ├── innodb-system-table-view.test │ │ │ ├── innodb-table-online-master.opt │ │ │ ├── innodb-table-online.test │ │ │ ├── innodb-timeout.test │ │ │ ├── innodb-trim.test │ │ │ ├── innodb-truncate.test │ │ │ ├── innodb-ucs2.test │ │ │ ├── innodb-update-insert.test │ │ │ ├── innodb-virtual-columns-debug.test │ │ │ ├── innodb-virtual-columns.test │ │ │ ├── innodb-virtual-columns2.test │ │ │ ├── innodb-wl5522-1.test │ │ │ ├── innodb-wl5522-debug.test │ │ │ ├── innodb-wl5522.test │ │ │ ├── innodb-wl5980-alter.opt │ │ │ ├── innodb-wl5980-alter.test │ │ │ ├── innodb-xa.test │ │ │ ├── innodb.opt │ │ │ ├── innodb.test │ │ │ ├── innodb_28867993.test │ │ │ ├── innodb_autoinc_lock_mode_zero-master.opt │ │ │ ├── innodb_autoinc_lock_mode_zero.test │ │ │ ├── innodb_buffer_pool_dump_pct.test │ │ │ ├── innodb_buffer_pool_fail.test │ │ │ ├── innodb_buffer_pool_load_now.opt │ │ │ ├── innodb_buffer_pool_load_now.test │ │ │ ├── innodb_buffer_pool_resize.opt │ │ │ ├── innodb_buffer_pool_resize.test │ │ │ ├── innodb_buffer_pool_resize_bigtest.opt │ │ │ ├── innodb_buffer_pool_resize_bigtest.test │ │ │ ├── innodb_buffer_pool_resize_debug.opt │ │ │ ├── innodb_buffer_pool_resize_temporary.test │ │ │ ├── innodb_buffer_pool_resize_with_chunks.opt │ │ │ ├── innodb_buffer_pool_resize_with_chunks.test │ │ │ ├── innodb_bug11754376.test │ │ │ ├── innodb_bug12400341.test │ │ │ ├── innodb_bug12661768.test │ │ │ ├── innodb_bug12902967.test │ │ │ ├── innodb_bug13510739.test │ │ │ ├── innodb_bug14007649.test │ │ │ ├── innodb_bug14147491-master.opt │ │ │ ├── innodb_bug14147491.test │ │ │ ├── innodb_bug14676111.opt │ │ │ ├── innodb_bug14676111.test │ │ │ ├── innodb_bug21704.test │ │ │ ├── innodb_bug30113362.opt │ │ │ ├── innodb_bug30113362.test │ │ │ ├── innodb_bug30423.test │ │ │ ├── innodb_bug30919-master.opt │ │ │ ├── innodb_bug30919.test │ │ │ ├── innodb_bug34300.test │ │ │ ├── innodb_bug35220.test │ │ │ ├── innodb_bug38231.test │ │ │ ├── innodb_bug39438-master.opt │ │ │ ├── innodb_bug39438.test │ │ │ ├── innodb_bug40360.test │ │ │ ├── innodb_bug40565.test │ │ │ ├── innodb_bug41904.test │ │ │ ├── innodb_bug42419.test │ │ │ ├── innodb_bug44032.test │ │ │ ├── innodb_bug44369.test │ │ │ ├── innodb_bug44571.test │ │ │ ├── innodb_bug45357.test │ │ │ ├── innodb_bug46000.test │ │ │ ├── innodb_bug46676.test │ │ │ ├── innodb_bug47621.test │ │ │ ├── innodb_bug47622.test │ │ │ ├── innodb_bug47777.test │ │ │ ├── innodb_bug48024.test │ │ │ ├── innodb_bug49164.test │ │ │ ├── innodb_bug51378.test │ │ │ ├── innodb_bug51920.test │ │ │ ├── innodb_bug52199.test │ │ │ ├── innodb_bug52663.test │ │ │ ├── innodb_bug53046.test │ │ │ ├── innodb_bug53290.test │ │ │ ├── innodb_bug53592.test │ │ │ ├── innodb_bug53674-master.opt │ │ │ ├── innodb_bug53674.test │ │ │ ├── innodb_bug53756-master.opt │ │ │ ├── innodb_bug53756.test │ │ │ ├── innodb_bug54044.test │ │ │ ├── innodb_bug56143.test │ │ │ ├── innodb_bug56716.test │ │ │ ├── innodb_bug56947.test │ │ │ ├── innodb_bug57252.test │ │ │ ├── innodb_bug57255.test │ │ │ ├── innodb_bug57904.test │ │ │ ├── innodb_bug59307.test │ │ │ ├── innodb_bug59410.test │ │ │ ├── innodb_bug59641.test │ │ │ ├── innodb_bug59733.test │ │ │ ├── innodb_bug60196-master.opt │ │ │ ├── innodb_bug60196.test │ │ │ ├── innodb_bug60229.test │ │ │ ├── innodb_bug68148.test │ │ │ ├── innodb_bug84958.test │ │ │ ├── innodb_bulk_create_index.test │ │ │ ├── innodb_bulk_create_index_debug.test │ │ │ ├── innodb_bulk_create_index_flush.opt │ │ │ ├── innodb_bulk_create_index_replication.test │ │ │ ├── innodb_bulk_create_index_small.test │ │ │ ├── innodb_corrupt_bit.opt │ │ │ ├── innodb_corrupt_bit.test │ │ │ ├── innodb_ctype_big5.test │ │ │ ├── innodb_ctype_latin1.test │ │ │ ├── innodb_ctype_ldml-master.opt │ │ │ ├── innodb_ctype_ldml.test │ │ │ ├── innodb_ctype_tis620.test │ │ │ ├── innodb_ctype_utf8.test │ │ │ ├── innodb_default_row_format.combinations │ │ │ ├── innodb_default_row_format.inc │ │ │ ├── innodb_defrag_binlog.opt │ │ │ ├── innodb_defrag_binlog.test │ │ │ ├── innodb_defrag_concurrent.opt │ │ │ ├── innodb_defrag_concurrent.test │ │ │ ├── innodb_defrag_stats.opt │ │ │ ├── innodb_defrag_stats.test │ │ │ ├── innodb_defrag_stats_many_tables.opt │ │ │ ├── innodb_defrag_stats_many_tables.test │ │ │ ├── innodb_defragment.opt │ │ │ ├── innodb_defragment.test │ │ │ ├── innodb_defragment_fill_factor.opt │ │ │ ├── innodb_defragment_fill_factor.test │ │ │ ├── innodb_defragment_small.test │ │ │ ├── innodb_force_pk.opt │ │ │ ├── innodb_force_pk.test │ │ │ ├── innodb_force_recovery.test │ │ │ ├── innodb_force_recovery_rollback.test │ │ │ ├── innodb_gis.test │ │ │ ├── innodb_information_schema.test │ │ │ ├── innodb_information_schema_buffer.opt │ │ │ ├── innodb_information_schema_buffer.test │ │ │ ├── innodb_information_schema_tables.opt │ │ │ ├── innodb_information_schema_tables.test │ │ │ ├── innodb_lock_wait_timeout_1-master.opt │ │ │ ├── innodb_lock_wait_timeout_1.test │ │ │ ├── innodb_max_recordsize_32k.opt │ │ │ ├── innodb_max_recordsize_32k.test │ │ │ ├── innodb_max_recordsize_64k.opt │ │ │ ├── innodb_max_recordsize_64k.test │ │ │ ├── innodb_multi_update.test │ │ │ ├── innodb_mysql-master.opt │ │ │ ├── innodb_mysql.test │ │ │ ├── innodb_mysql_rbk-master.opt │ │ │ ├── innodb_mysql_rbk.test │ │ │ ├── innodb_notembedded.test │ │ │ ├── innodb_page_compressed.combinations │ │ │ ├── innodb_page_compressed.test │ │ │ ├── innodb_prefix_index_restart_server.test │ │ │ ├── innodb_query_cache.test │ │ │ ├── innodb_rename_index.test │ │ │ ├── innodb_scrub.opt │ │ │ ├── innodb_scrub.test │ │ │ ├── innodb_skip_innodb_is_tables.opt │ │ │ ├── innodb_skip_innodb_is_tables.test │ │ │ ├── innodb_stats.test │ │ │ ├── innodb_stats_create_on_corrupted.test │ │ │ ├── innodb_stats_create_table.test │ │ │ ├── innodb_stats_drop_locked.test │ │ │ ├── innodb_stats_fetch.test │ │ │ ├── innodb_stats_fetch_corrupted.test │ │ │ ├── innodb_stats_fetch_nonexistent.test │ │ │ ├── innodb_stats_persistent.test │ │ │ ├── innodb_stats_persistent_debug.test │ │ │ ├── innodb_stats_rename_table.test │ │ │ ├── innodb_stats_rename_table_if_exists.test │ │ │ ├── innodb_status_variables.test │ │ │ ├── innodb_sys_var_valgrind.test │ │ │ ├── innodb_timeout_rollback-master.opt │ │ │ ├── innodb_timeout_rollback.test │ │ │ ├── innodb_trx_weight.test │ │ │ ├── innodb_uninstall.opt │ │ │ ├── innodb_uninstall.test │ │ │ ├── innodb_wl6326.opt │ │ │ ├── innodb_wl6326.test │ │ │ ├── insert_debug.test │ │ │ ├── insert_into_empty.test │ │ │ ├── insert_into_empty_debug.test │ │ │ ├── instant_alter.opt │ │ │ ├── instant_alter.test │ │ │ ├── instant_alter_bugs.test │ │ │ ├── instant_alter_charset.test │ │ │ ├── instant_alter_crash.test │ │ │ ├── instant_alter_debug.combinations │ │ │ ├── instant_alter_debug.test │ │ │ ├── instant_alter_extend.combinations │ │ │ ├── instant_alter_extend.test │ │ │ ├── instant_alter_import.test │ │ │ ├── instant_alter_index_rename.test │ │ │ ├── instant_alter_inject.test │ │ │ ├── instant_alter_limit.test │ │ │ ├── instant_alter_null.test │ │ │ ├── instant_alter_purge.test │ │ │ ├── instant_alter_rollback.test │ │ │ ├── instant_alter_upgrade.test │ │ │ ├── instant_auto_inc.test │ │ │ ├── instant_drop.test │ │ │ ├── leaf_page_corrupted_during_recovery.combinations │ │ │ ├── leaf_page_corrupted_during_recovery.opt │ │ │ ├── leaf_page_corrupted_during_recovery.test │ │ │ ├── lock_delete_updated.test │ │ │ ├── lock_deleted.test │ │ │ ├── lock_insert_into_empty.test │ │ │ ├── log_corruption.test │ │ │ ├── log_data_file_size.opt │ │ │ ├── log_data_file_size.test │ │ │ ├── log_file.test │ │ │ ├── log_file_name.test │ │ │ ├── log_file_name_debug.test │ │ │ ├── log_file_size.test │ │ │ ├── max_record_size.test │ │ │ ├── mdev-117.test │ │ │ ├── mdev-14846.opt │ │ │ ├── mdev-14846.test │ │ │ ├── mdev-15707.opt │ │ │ ├── mdev-15707.test │ │ │ ├── missing_tablespaces.test │ │ │ ├── monitor.test │ │ │ ├── multi_repair-7404.test │ │ │ ├── mvcc.test │ │ │ ├── mvcc_secondary.test │ │ │ ├── no_pad.test │ │ │ ├── online_table_rebuild.opt │ │ │ ├── online_table_rebuild.test │ │ │ ├── page_cleaner.test │ │ │ ├── page_id_innochecksum.test │ │ │ ├── page_reorganize.test │ │ │ ├── partition_locking.test │ │ │ ├── purge.test │ │ │ ├── purge_secondary.opt │ │ │ ├── purge_secondary.test │ │ │ ├── purge_thread_shutdown.test │ │ │ ├── read_only_recover_committed.test │ │ │ ├── read_only_recovery.test │ │ │ ├── readahead.test │ │ │ ├── recovery_memory.opt │ │ │ ├── recovery_memory.test │ │ │ ├── recovery_shutdown.test │ │ │ ├── rename_table.opt │ │ │ ├── rename_table.test │ │ │ ├── restart.opt │ │ │ ├── restart.test │ │ │ ├── row_format_redundant.opt │ │ │ ├── row_format_redundant.test │ │ │ ├── row_lock.test │ │ │ ├── row_size_error_log_warnings_3.test │ │ │ ├── skip_locked_nowait.test │ │ │ ├── skip_symbolic_links.opt │ │ │ ├── skip_symbolic_links.test │ │ │ ├── snapshot.test │ │ │ ├── sp_temp_table.test │ │ │ ├── stat_tables.test │ │ │ ├── stats_persistent.test │ │ │ ├── stored_fk.test │ │ │ ├── strict_mode.test │ │ │ ├── system_tables.test │ │ │ ├── table_definition_cache_debug.opt │ │ │ ├── table_definition_cache_debug.test │ │ │ ├── table_flags.combinations │ │ │ ├── table_flags.opt │ │ │ ├── table_flags.test │ │ │ ├── table_index_statistics.inc │ │ │ ├── table_index_statistics.test │ │ │ ├── temp_table.test │ │ │ ├── temp_table_savepoint.test │ │ │ ├── temporary_table.test │ │ │ ├── temporary_table_optimization.opt │ │ │ ├── temporary_table_optimization.test │ │ │ ├── tmpdir.test │ │ │ ├── trigger.test │ │ │ ├── trigger_error.test │ │ │ ├── truncate.test │ │ │ ├── truncate_crash.test │ │ │ ├── truncate_foreign.test │ │ │ ├── truncate_missing.test │ │ │ ├── trx_id_future.combinations │ │ │ ├── trx_id_future.test │ │ │ ├── undo_log.test │ │ │ ├── undo_truncate.opt │ │ │ ├── undo_truncate.test │ │ │ ├── undo_truncate_recover.combinations │ │ │ ├── undo_truncate_recover.opt │ │ │ ├── undo_truncate_recover.test │ │ │ ├── update-cascade.test │ │ │ ├── update_time-master.opt │ │ │ ├── update_time.test │ │ │ ├── update_time_wl6658.test │ │ │ ├── xa_debug.test │ │ │ ├── xa_recovery.test │ │ │ └── xa_recovery_debug.test │ │ ├── innodb_fts/ │ │ │ ├── r/ │ │ │ │ ├── basic.result │ │ │ │ ├── bug_32831765.result │ │ │ │ ├── concurrent_insert.result │ │ │ │ ├── crash_recovery.result │ │ │ │ ├── create.result │ │ │ │ ├── ft_result_cache_limit.result │ │ │ │ ├── fts_kill_query.result │ │ │ │ ├── fulltext.result │ │ │ │ ├── fulltext2.result │ │ │ │ ├── fulltext3.result │ │ │ │ ├── fulltext_cache.result │ │ │ │ ├── fulltext_distinct.result │ │ │ │ ├── fulltext_left_join.result │ │ │ │ ├── fulltext_misc.result │ │ │ │ ├── fulltext_multi.result │ │ │ │ ├── fulltext_order_by.result │ │ │ │ ├── fulltext_update.result │ │ │ │ ├── fulltext_var.result │ │ │ │ ├── innodb-fts-ddl.result │ │ │ │ ├── innodb-fts-fic.result │ │ │ │ ├── innodb-fts-stopword.result │ │ │ │ ├── innodb_ft_aux_table.result │ │ │ │ ├── innodb_fts_large_records.result │ │ │ │ ├── innodb_fts_misc.result │ │ │ │ ├── innodb_fts_misc_1.result │ │ │ │ ├── innodb_fts_multiple_index.result │ │ │ │ ├── innodb_fts_plugin.result │ │ │ │ ├── innodb_fts_proximity.result │ │ │ │ ├── innodb_fts_result_cache_limit.result │ │ │ │ ├── innodb_fts_stopword_charset.result │ │ │ │ ├── innodb_fts_transaction.result │ │ │ │ ├── misc_debug.result │ │ │ │ ├── misc_debug2.result │ │ │ │ ├── stopword.result │ │ │ │ ├── sync.result │ │ │ │ └── sync_ddl.result │ │ │ └── t/ │ │ │ ├── basic.test │ │ │ ├── bug_32831765.test │ │ │ ├── concurrent_insert.test │ │ │ ├── crash_recovery.opt │ │ │ ├── crash_recovery.test │ │ │ ├── create.opt │ │ │ ├── create.test │ │ │ ├── ft_result_cache_limit.test │ │ │ ├── fts_kill_query.test │ │ │ ├── fulltext.test │ │ │ ├── fulltext2.test │ │ │ ├── fulltext3.test │ │ │ ├── fulltext_cache.test │ │ │ ├── fulltext_distinct.test │ │ │ ├── fulltext_left_join.test │ │ │ ├── fulltext_misc.test │ │ │ ├── fulltext_multi.test │ │ │ ├── fulltext_order_by.test │ │ │ ├── fulltext_update.test │ │ │ ├── fulltext_var.test │ │ │ ├── innodb-fts-ddl.opt │ │ │ ├── innodb-fts-ddl.test │ │ │ ├── innodb-fts-fic.test │ │ │ ├── innodb-fts-stopword.opt │ │ │ ├── innodb-fts-stopword.test │ │ │ ├── innodb_ft_aux_table.opt │ │ │ ├── innodb_ft_aux_table.test │ │ │ ├── innodb_fts_large_records.test │ │ │ ├── innodb_fts_misc.test │ │ │ ├── innodb_fts_misc_1.opt │ │ │ ├── innodb_fts_misc_1.test │ │ │ ├── innodb_fts_multiple_index.test │ │ │ ├── innodb_fts_plugin.test │ │ │ ├── innodb_fts_proximity.test │ │ │ ├── innodb_fts_result_cache_limit.test │ │ │ ├── innodb_fts_stopword_charset.test │ │ │ ├── innodb_fts_transaction.test │ │ │ ├── misc_debug.test │ │ │ ├── misc_debug2.test │ │ │ ├── stopword.opt │ │ │ ├── stopword.test │ │ │ ├── sync.opt │ │ │ ├── sync.test │ │ │ └── sync_ddl.test │ │ ├── innodb_gis/ │ │ │ ├── disabled.def │ │ │ ├── r/ │ │ │ │ ├── 0.result │ │ │ │ ├── 1.result │ │ │ │ ├── alter_spatial_index.result │ │ │ │ ├── bug16236208.result │ │ │ │ ├── bug16266012.result │ │ │ │ ├── bug17057168.result │ │ │ │ ├── check_rtree.result │ │ │ │ ├── create_spatial_index.result │ │ │ │ ├── geometry.result │ │ │ │ ├── gis.result │ │ │ │ ├── gis_split_inf.result │ │ │ │ ├── gis_split_nan.result │ │ │ │ ├── innodb_gis_rtree.result │ │ │ │ ├── kill_server.result │ │ │ │ ├── multi_pk.result │ │ │ │ ├── point_basic.result │ │ │ │ ├── point_big.result │ │ │ │ ├── precise.result │ │ │ │ ├── repeatable_spatial.result │ │ │ │ ├── rollback.result │ │ │ │ ├── rt_precise.result │ │ │ │ ├── rtree.result │ │ │ │ ├── rtree_add_index.result │ │ │ │ ├── rtree_compress.result │ │ │ │ ├── rtree_compress2.result │ │ │ │ ├── rtree_concurrent_srch.result │ │ │ │ ├── rtree_create_inplace.result │ │ │ │ ├── rtree_debug.result │ │ │ │ ├── rtree_drop_index.result │ │ │ │ ├── rtree_estimate.result │ │ │ │ ├── rtree_multi_pk.result │ │ │ │ ├── rtree_purge.result │ │ │ │ ├── rtree_recovery.result │ │ │ │ ├── rtree_rollback1.result │ │ │ │ ├── rtree_rollback2.result │ │ │ │ ├── rtree_search.result │ │ │ │ ├── rtree_split.result │ │ │ │ ├── rtree_temporary.result │ │ │ │ ├── rtree_undo.result │ │ │ │ ├── types.result │ │ │ │ └── update_root.result │ │ │ └── t/ │ │ │ ├── 0.test │ │ │ ├── 1.test │ │ │ ├── alter_spatial_index.test │ │ │ ├── bug16236208.test │ │ │ ├── bug16266012.test │ │ │ ├── bug17057168.test │ │ │ ├── check_rtree.test │ │ │ ├── create_spatial_index.test │ │ │ ├── geometry.test │ │ │ ├── gis.test │ │ │ ├── gis_split_inf.test │ │ │ ├── gis_split_nan.test │ │ │ ├── innodb_gis_rtree.test │ │ │ ├── kill_server.test │ │ │ ├── multi_pk.test │ │ │ ├── point_basic.test │ │ │ ├── point_big.test │ │ │ ├── precise.test │ │ │ ├── repeatable_spatial.test │ │ │ ├── rollback.test │ │ │ ├── rt_precise.test │ │ │ ├── rtree.test │ │ │ ├── rtree_add_index.test │ │ │ ├── rtree_compress.test │ │ │ ├── rtree_compress2.test │ │ │ ├── rtree_concurrent_srch.test │ │ │ ├── rtree_create_inplace.test │ │ │ ├── rtree_debug.test │ │ │ ├── rtree_drop_index.test │ │ │ ├── rtree_estimate.test │ │ │ ├── rtree_multi_pk.test │ │ │ ├── rtree_purge.test │ │ │ ├── rtree_recovery.test │ │ │ ├── rtree_rollback1.test │ │ │ ├── rtree_rollback2.test │ │ │ ├── rtree_search.test │ │ │ ├── rtree_split.test │ │ │ ├── rtree_temporary.test │ │ │ ├── rtree_undo.test │ │ │ ├── types.test │ │ │ └── update_root.test │ │ ├── innodb_i_s/ │ │ │ ├── innodb_buffer_page.result │ │ │ ├── innodb_buffer_page.test │ │ │ ├── innodb_buffer_page_lru.result │ │ │ ├── innodb_buffer_page_lru.test │ │ │ ├── innodb_buffer_pool_stats.result │ │ │ ├── innodb_buffer_pool_stats.test │ │ │ ├── innodb_cmp.opt │ │ │ ├── innodb_cmp.result │ │ │ ├── innodb_cmp.test │ │ │ ├── innodb_cmp_per_index.result │ │ │ ├── innodb_cmp_per_index.test │ │ │ ├── innodb_cmp_per_index_reset.opt │ │ │ ├── innodb_cmp_per_index_reset.result │ │ │ ├── innodb_cmp_per_index_reset.test │ │ │ ├── innodb_cmp_reset.opt │ │ │ ├── innodb_cmp_reset.result │ │ │ ├── innodb_cmp_reset.test │ │ │ ├── innodb_cmpmem.result │ │ │ ├── innodb_cmpmem.test │ │ │ ├── innodb_cmpmem_reset.opt │ │ │ ├── innodb_cmpmem_reset.result │ │ │ ├── innodb_cmpmem_reset.test │ │ │ ├── innodb_ft_being_deleted.opt │ │ │ ├── innodb_ft_being_deleted.result │ │ │ ├── innodb_ft_being_deleted.test │ │ │ ├── innodb_ft_config.opt │ │ │ ├── innodb_ft_config.result │ │ │ ├── innodb_ft_config.test │ │ │ ├── innodb_ft_default_stopword.opt │ │ │ ├── innodb_ft_default_stopword.result │ │ │ ├── innodb_ft_default_stopword.test │ │ │ ├── innodb_ft_deleted.opt │ │ │ ├── innodb_ft_deleted.result │ │ │ ├── innodb_ft_deleted.test │ │ │ ├── innodb_ft_index_cache.opt │ │ │ ├── innodb_ft_index_cache.result │ │ │ ├── innodb_ft_index_cache.test │ │ │ ├── innodb_ft_index_table.opt │ │ │ ├── innodb_ft_index_table.result │ │ │ ├── innodb_ft_index_table.test │ │ │ ├── innodb_lock_waits.result │ │ │ ├── innodb_lock_waits.test │ │ │ ├── innodb_locks.result │ │ │ ├── innodb_locks.test │ │ │ ├── innodb_metrics.result │ │ │ ├── innodb_metrics.test │ │ │ ├── innodb_sys_columns.result │ │ │ ├── innodb_sys_columns.test │ │ │ ├── innodb_sys_fields.result │ │ │ ├── innodb_sys_fields.test │ │ │ ├── innodb_sys_foreign.result │ │ │ ├── innodb_sys_foreign.test │ │ │ ├── innodb_sys_foreign_cols.result │ │ │ ├── innodb_sys_foreign_cols.test │ │ │ ├── innodb_sys_indexes.result │ │ │ ├── innodb_sys_indexes.test │ │ │ ├── innodb_sys_tables.result │ │ │ ├── innodb_sys_tables.test │ │ │ ├── innodb_sys_tablespaces.opt │ │ │ ├── innodb_sys_tablespaces.result │ │ │ ├── innodb_sys_tablespaces.test │ │ │ ├── innodb_sys_tablestats.opt │ │ │ ├── innodb_sys_tablestats.result │ │ │ ├── innodb_sys_tablestats.test │ │ │ ├── innodb_sys_virtual.result │ │ │ ├── innodb_sys_virtual.test │ │ │ ├── innodb_tablespaces_encryption.opt │ │ │ ├── innodb_tablespaces_encryption.result │ │ │ ├── innodb_tablespaces_encryption.test │ │ │ ├── innodb_trx.result │ │ │ └── innodb_trx.test │ │ ├── innodb_zip/ │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── have_no_undo_tablespaces.inc │ │ │ │ ├── innodb_create_tab_indx.inc │ │ │ │ ├── innodb_dml_ops.inc │ │ │ │ ├── innodb_fetch_records.inc │ │ │ │ ├── innodb_load_data.inc │ │ │ │ ├── innodb_stats_comp_index.inc │ │ │ │ └── innodb_stats_restart.inc │ │ │ ├── r/ │ │ │ │ ├── 16k,full_crc32.rdiff │ │ │ │ ├── 16k,strict_full_crc32.rdiff │ │ │ │ ├── 8k,full_crc32.rdiff │ │ │ │ ├── 8k,strict_full_crc32.rdiff │ │ │ │ ├── blob.result │ │ │ │ ├── bug36169.result │ │ │ │ ├── bug52745.result │ │ │ │ ├── bug53591.result │ │ │ │ ├── bug56680.result │ │ │ │ ├── cmp_drop_table.result │ │ │ │ ├── cmp_per_index.result │ │ │ │ ├── create_options.result │ │ │ │ ├── index_large_prefix.result │ │ │ │ ├── index_large_prefix_4k.result │ │ │ │ ├── index_large_prefix_8k.result │ │ │ │ ├── innochecksum.result │ │ │ │ ├── innochecksum_2.result │ │ │ │ ├── innochecksum_3.result │ │ │ │ ├── innodb-zip.result │ │ │ │ ├── large_blob.result │ │ │ │ ├── page_size,4k.rdiff │ │ │ │ ├── page_size,8k.rdiff │ │ │ │ ├── page_size.result │ │ │ │ ├── prefix_index_liftedlimit.result │ │ │ │ ├── recover.result │ │ │ │ ├── restart.result │ │ │ │ ├── wl5522_debug_zip.result │ │ │ │ ├── wl5522_zip.result │ │ │ │ ├── wl6344_compress_level.result │ │ │ │ └── wl6347_comp_indx_stat.result │ │ │ └── t/ │ │ │ ├── blob.test │ │ │ ├── bug36169.test │ │ │ ├── bug52745.test │ │ │ ├── bug53591.test │ │ │ ├── bug56680.test │ │ │ ├── cmp_drop_table-master.opt │ │ │ ├── cmp_drop_table.test │ │ │ ├── cmp_per_index.opt │ │ │ ├── cmp_per_index.test │ │ │ ├── create_options.test │ │ │ ├── index_large_prefix.test │ │ │ ├── index_large_prefix_4k.test │ │ │ ├── index_large_prefix_8k.test │ │ │ ├── innochecksum.test │ │ │ ├── innochecksum_2.opt │ │ │ ├── innochecksum_2.test │ │ │ ├── innochecksum_3.combinations │ │ │ ├── innochecksum_3.opt │ │ │ ├── innochecksum_3.test │ │ │ ├── innodb-zip.test │ │ │ ├── large_blob-master.opt │ │ │ ├── large_blob.test │ │ │ ├── page_size.opt │ │ │ ├── page_size.test │ │ │ ├── prefix_index_liftedlimit.test │ │ │ ├── recover.test │ │ │ ├── restart.opt │ │ │ ├── restart.test │ │ │ ├── wl5522_debug_zip.test │ │ │ ├── wl5522_zip.test │ │ │ ├── wl6344_compress_level.test │ │ │ └── wl6347_comp_indx_stat.test │ │ ├── jp/ │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ └── trim_sjis.inc │ │ │ ├── r/ │ │ │ │ ├── jp_alter_sjis.result │ │ │ │ ├── jp_alter_ucs2.result │ │ │ │ ├── jp_alter_ujis.result │ │ │ │ ├── jp_alter_utf8.result │ │ │ │ ├── jp_charlength_sjis.result │ │ │ │ ├── jp_charlength_ucs2.result │ │ │ │ ├── jp_charlength_ujis.result │ │ │ │ ├── jp_charlength_utf8.result │ │ │ │ ├── jp_charset_sjis.result │ │ │ │ ├── jp_charset_ucs2.result │ │ │ │ ├── jp_charset_ujis.result │ │ │ │ ├── jp_charset_utf8.result │ │ │ │ ├── jp_convert_sjis.result │ │ │ │ ├── jp_convert_ucs2.result │ │ │ │ ├── jp_convert_ujis.result │ │ │ │ ├── jp_convert_utf8.result │ │ │ │ ├── jp_create_db_sjis.result │ │ │ │ ├── jp_create_db_ucs2.result │ │ │ │ ├── jp_create_db_ujis.result │ │ │ │ ├── jp_create_db_utf8.result │ │ │ │ ├── jp_create_tbl_sjis.result │ │ │ │ ├── jp_create_tbl_ucs2.result │ │ │ │ ├── jp_create_tbl_ujis.result │ │ │ │ ├── jp_create_tbl_utf8.result │ │ │ │ ├── jp_enum_sjis.result │ │ │ │ ├── jp_enum_ucs2.result │ │ │ │ ├── jp_enum_ujis.result │ │ │ │ ├── jp_enum_utf8.result │ │ │ │ ├── jp_insert_sjis.result │ │ │ │ ├── jp_insert_ucs2.result │ │ │ │ ├── jp_insert_ujis.result │ │ │ │ ├── jp_insert_utf8.result │ │ │ │ ├── jp_instr_sjis.result │ │ │ │ ├── jp_instr_ucs2.result │ │ │ │ ├── jp_instr_ujis.result │ │ │ │ ├── jp_instr_utf8.result │ │ │ │ ├── jp_join_sjis.result │ │ │ │ ├── jp_join_ucs2.result │ │ │ │ ├── jp_join_ujis.result │ │ │ │ ├── jp_join_utf8.result │ │ │ │ ├── jp_left_sjis.result │ │ │ │ ├── jp_left_ucs2.result │ │ │ │ ├── jp_left_ujis.result │ │ │ │ ├── jp_left_utf8.result │ │ │ │ ├── jp_length_sjis.result │ │ │ │ ├── jp_length_ucs2.result │ │ │ │ ├── jp_length_ujis.result │ │ │ │ ├── jp_length_utf8.result │ │ │ │ ├── jp_like_sjis.result │ │ │ │ ├── jp_like_ucs2.result │ │ │ │ ├── jp_like_ujis.result │ │ │ │ ├── jp_like_utf8.result │ │ │ │ ├── jp_locate_sjis.result │ │ │ │ ├── jp_locate_ucs2.result │ │ │ │ ├── jp_locate_ujis.result │ │ │ │ ├── jp_locate_utf8.result │ │ │ │ ├── jp_lpad_sjis.result │ │ │ │ ├── jp_lpad_ucs2.result │ │ │ │ ├── jp_lpad_ujis.result │ │ │ │ ├── jp_lpad_utf8.result │ │ │ │ ├── jp_ltrim_sjis.result │ │ │ │ ├── jp_ltrim_ucs2.result │ │ │ │ ├── jp_ltrim_ujis.result │ │ │ │ ├── jp_ltrim_utf8.result │ │ │ │ ├── jp_ps_sjis.result │ │ │ │ ├── jp_ps_ujis.result │ │ │ │ ├── jp_replace_sjis.result │ │ │ │ ├── jp_replace_ucs2.result │ │ │ │ ├── jp_replace_ujis.result │ │ │ │ ├── jp_replace_utf8.result │ │ │ │ ├── jp_reverse_sjis.result │ │ │ │ ├── jp_reverse_ucs2.result │ │ │ │ ├── jp_reverse_ujis.result │ │ │ │ ├── jp_reverse_utf8.result │ │ │ │ ├── jp_right_sjis.result │ │ │ │ ├── jp_right_ucs2.result │ │ │ │ ├── jp_right_ujis.result │ │ │ │ ├── jp_right_utf8.result │ │ │ │ ├── jp_rpad_sjis.result │ │ │ │ ├── jp_rpad_ucs2.result │ │ │ │ ├── jp_rpad_ujis.result │ │ │ │ ├── jp_rpad_utf8.result │ │ │ │ ├── jp_rtrim_sjis.result │ │ │ │ ├── jp_rtrim_ucs2.result │ │ │ │ ├── jp_rtrim_ujis.result │ │ │ │ ├── jp_rtrim_utf8.result │ │ │ │ ├── jp_select_sjis.result │ │ │ │ ├── jp_select_ucs2.result │ │ │ │ ├── jp_select_ujis.result │ │ │ │ ├── jp_select_utf8.result │ │ │ │ ├── jp_subquery_sjis.result │ │ │ │ ├── jp_subquery_ucs2.result │ │ │ │ ├── jp_subquery_ujis.result │ │ │ │ ├── jp_subquery_utf8.result │ │ │ │ ├── jp_substring_sjis.result │ │ │ │ ├── jp_substring_ucs2.result │ │ │ │ ├── jp_substring_ujis.result │ │ │ │ ├── jp_substring_utf8.result │ │ │ │ ├── jp_trim_sjis.result │ │ │ │ ├── jp_trim_ucs2.result │ │ │ │ ├── jp_trim_ujis.result │ │ │ │ ├── jp_trim_utf8.result │ │ │ │ ├── jp_union_ujis.result │ │ │ │ ├── jp_update_sjis.result │ │ │ │ ├── jp_update_ucs2.result │ │ │ │ ├── jp_update_ujis.result │ │ │ │ ├── jp_update_utf8.result │ │ │ │ ├── jp_where_sjis.result │ │ │ │ ├── jp_where_ucs2.result │ │ │ │ ├── jp_where_ujis.result │ │ │ │ └── jp_where_utf8.result │ │ │ └── t/ │ │ │ ├── jp_alter_sjis.test │ │ │ ├── jp_alter_ucs2.test │ │ │ ├── jp_alter_ujis.test │ │ │ ├── jp_alter_utf8.test │ │ │ ├── jp_charlength_sjis.test │ │ │ ├── jp_charlength_ucs2.test │ │ │ ├── jp_charlength_ujis.test │ │ │ ├── jp_charlength_utf8.test │ │ │ ├── jp_charset_sjis.test │ │ │ ├── jp_charset_ucs2.test │ │ │ ├── jp_charset_ujis.test │ │ │ ├── jp_charset_utf8.test │ │ │ ├── jp_convert_sjis.test │ │ │ ├── jp_convert_ucs2.test │ │ │ ├── jp_convert_ujis.test │ │ │ ├── jp_convert_utf8.test │ │ │ ├── jp_create_db_sjis.test │ │ │ ├── jp_create_db_ucs2.test │ │ │ ├── jp_create_db_ujis.test │ │ │ ├── jp_create_db_utf8.test │ │ │ ├── jp_create_tbl_sjis.test │ │ │ ├── jp_create_tbl_ucs2.test │ │ │ ├── jp_create_tbl_ujis.test │ │ │ ├── jp_create_tbl_utf8.test │ │ │ ├── jp_enum_sjis.test │ │ │ ├── jp_enum_ucs2.test │ │ │ ├── jp_enum_ujis.test │ │ │ ├── jp_enum_utf8.test │ │ │ ├── jp_insert_sjis.test │ │ │ ├── jp_insert_ucs2.test │ │ │ ├── jp_insert_ujis.test │ │ │ ├── jp_insert_utf8.test │ │ │ ├── jp_instr_sjis.test │ │ │ ├── jp_instr_ucs2.test │ │ │ ├── jp_instr_ujis.test │ │ │ ├── jp_instr_utf8.test │ │ │ ├── jp_join_sjis.test │ │ │ ├── jp_join_ucs2.test │ │ │ ├── jp_join_ujis.test │ │ │ ├── jp_join_utf8.test │ │ │ ├── jp_left_sjis.test │ │ │ ├── jp_left_ucs2.test │ │ │ ├── jp_left_ujis.test │ │ │ ├── jp_left_utf8.test │ │ │ ├── jp_length_sjis.test │ │ │ ├── jp_length_ucs2.test │ │ │ ├── jp_length_ujis.test │ │ │ ├── jp_length_utf8.test │ │ │ ├── jp_like_sjis.test │ │ │ ├── jp_like_ucs2.test │ │ │ ├── jp_like_ujis.test │ │ │ ├── jp_like_utf8.test │ │ │ ├── jp_locate_sjis.test │ │ │ ├── jp_locate_ucs2.test │ │ │ ├── jp_locate_ujis.test │ │ │ ├── jp_locate_utf8.test │ │ │ ├── jp_lpad_sjis.test │ │ │ ├── jp_lpad_ucs2.test │ │ │ ├── jp_lpad_ujis.test │ │ │ ├── jp_lpad_utf8.test │ │ │ ├── jp_ltrim_sjis.test │ │ │ ├── jp_ltrim_ucs2.test │ │ │ ├── jp_ltrim_ujis.test │ │ │ ├── jp_ltrim_utf8.test │ │ │ ├── jp_ps_sjis.test │ │ │ ├── jp_ps_ujis.test │ │ │ ├── jp_replace_sjis.test │ │ │ ├── jp_replace_ucs2.test │ │ │ ├── jp_replace_ujis.test │ │ │ ├── jp_replace_utf8.test │ │ │ ├── jp_reverse_sjis.test │ │ │ ├── jp_reverse_ucs2.test │ │ │ ├── jp_reverse_ujis.test │ │ │ ├── jp_reverse_utf8.test │ │ │ ├── jp_right_sjis.test │ │ │ ├── jp_right_ucs2.test │ │ │ ├── jp_right_ujis.test │ │ │ ├── jp_right_utf8.test │ │ │ ├── jp_rpad_sjis.test │ │ │ ├── jp_rpad_ucs2.test │ │ │ ├── jp_rpad_ujis.test │ │ │ ├── jp_rpad_utf8.test │ │ │ ├── jp_rtrim_sjis.test │ │ │ ├── jp_rtrim_ucs2.test │ │ │ ├── jp_rtrim_ujis.test │ │ │ ├── jp_rtrim_utf8.test │ │ │ ├── jp_select_sjis.test │ │ │ ├── jp_select_ucs2.test │ │ │ ├── jp_select_ujis.test │ │ │ ├── jp_select_utf8.test │ │ │ ├── jp_subquery_sjis.test │ │ │ ├── jp_subquery_ucs2.test │ │ │ ├── jp_subquery_ujis.test │ │ │ ├── jp_subquery_utf8.test │ │ │ ├── jp_substring_sjis.test │ │ │ ├── jp_substring_ucs2.test │ │ │ ├── jp_substring_ujis.test │ │ │ ├── jp_substring_utf8.test │ │ │ ├── jp_trim_sjis.test │ │ │ ├── jp_trim_ucs2.test │ │ │ ├── jp_trim_ujis.test │ │ │ ├── jp_trim_utf8.test │ │ │ ├── jp_union_ujis.test │ │ │ ├── jp_update_sjis.test │ │ │ ├── jp_update_ucs2.test │ │ │ ├── jp_update_ujis.test │ │ │ ├── jp_update_utf8.test │ │ │ ├── jp_where_sjis.test │ │ │ ├── jp_where_ucs2.test │ │ │ ├── jp_where_ujis.test │ │ │ └── jp_where_utf8.test │ │ ├── json/ │ │ │ ├── r/ │ │ │ │ ├── json_no_table.result │ │ │ │ ├── json_table.result │ │ │ │ ├── json_table_binlog.result │ │ │ │ ├── json_table_mysql.result │ │ │ │ ├── json_table_notembedded.result │ │ │ │ ├── rpl_json_char.result │ │ │ │ ├── rpl_json_longtext.result │ │ │ │ ├── rpl_json_mediumtext.result │ │ │ │ ├── rpl_json_text.result │ │ │ │ ├── rpl_json_tinytext.result │ │ │ │ ├── rpl_json_varchar.result │ │ │ │ └── type_json.result │ │ │ └── t/ │ │ │ ├── json_no_table.test │ │ │ ├── json_table.test │ │ │ ├── json_table_binlog.test │ │ │ ├── json_table_mysql.test │ │ │ ├── json_table_notembedded.test │ │ │ ├── rpl_json_char.test │ │ │ ├── rpl_json_longtext.test │ │ │ ├── rpl_json_mediumtext.test │ │ │ ├── rpl_json_text.test │ │ │ ├── rpl_json_tinytext.test │ │ │ ├── rpl_json_varchar.test │ │ │ └── type_json.test │ │ ├── large_tests/ │ │ │ ├── README.TXT │ │ │ ├── r/ │ │ │ │ ├── alter_table.result │ │ │ │ ├── lock_tables_big.result │ │ │ │ ├── maria_recover_encrypted.result │ │ │ │ └── rpl_slave_net_timeout.result │ │ │ └── t/ │ │ │ ├── alter_table.test │ │ │ ├── lock_tables_big.test │ │ │ ├── maria_recover_encrypted.test │ │ │ ├── rpl_slave_net_timeout-slave.opt │ │ │ └── rpl_slave_net_timeout.test │ │ ├── maria/ │ │ │ ├── alter.result │ │ │ ├── alter.test │ │ │ ├── aria_pack_mdev14183.result │ │ │ ├── aria_pack_mdev14183.test │ │ │ ├── aria_sort_buffer.result │ │ │ ├── aria_sort_buffer.test │ │ │ ├── bulk_insert_crash.opt │ │ │ ├── bulk_insert_crash.result │ │ │ ├── bulk_insert_crash.test │ │ │ ├── collations.result │ │ │ ├── collations.test │ │ │ ├── compat_aliases-master.opt │ │ │ ├── concurrent.result │ │ │ ├── concurrent.test │ │ │ ├── create.opt │ │ │ ├── create.result │ │ │ ├── create.test │ │ │ ├── disabled.def │ │ │ ├── distinct.result │ │ │ ├── distinct.test │ │ │ ├── dynamic.result │ │ │ ├── dynamic.test │ │ │ ├── encrypt-no-key.result │ │ │ ├── encrypt-no-key.test │ │ │ ├── encrypt-wrong-key.result │ │ │ ├── encrypt-wrong-key.test │ │ │ ├── fulltext2.result │ │ │ ├── fulltext2.test │ │ │ ├── group_commit.result │ │ │ ├── group_commit.test │ │ │ ├── icp.result │ │ │ ├── icp.test │ │ │ ├── insert_select-7314.result │ │ │ ├── insert_select-7314.test │ │ │ ├── insert_select.result │ │ │ ├── insert_select.test │ │ │ ├── kill.result │ │ │ ├── kill.test │ │ │ ├── lock.result │ │ │ ├── lock.test │ │ │ ├── locking.result │ │ │ ├── locking.test │ │ │ ├── maria-autoinc.result │ │ │ ├── maria-autoinc.test │ │ │ ├── maria-autozerofill.result │ │ │ ├── maria-autozerofill.test │ │ │ ├── maria-big.result │ │ │ ├── maria-big.test │ │ │ ├── maria-big2.result │ │ │ ├── maria-big2.test │ │ │ ├── maria-connect.result │ │ │ ├── maria-connect.test │ │ │ ├── maria-gis-recovery.opt │ │ │ ├── maria-gis-recovery.result │ │ │ ├── maria-gis-recovery.test │ │ │ ├── maria-gis-rtree-dynamic.result │ │ │ ├── maria-gis-rtree-dynamic.test │ │ │ ├── maria-gis-rtree-trans.result │ │ │ ├── maria-gis-rtree-trans.test │ │ │ ├── maria-gis-rtree.result │ │ │ ├── maria-gis-rtree.test │ │ │ ├── maria-mvcc.result │ │ │ ├── maria-mvcc.test │ │ │ ├── maria-no-logging.result │ │ │ ├── maria-no-logging.test │ │ │ ├── maria-page-checksum.result │ │ │ ├── maria-page-checksum.test │ │ │ ├── maria-partitioning.result │ │ │ ├── maria-partitioning.test │ │ │ ├── maria-preload.result │ │ │ ├── maria-preload.test │ │ │ ├── maria-purge.result │ │ │ ├── maria-purge.test │ │ │ ├── maria-recover-master.opt │ │ │ ├── maria-recover.result │ │ │ ├── maria-recover.test │ │ │ ├── maria-recovery-big-master.opt │ │ │ ├── maria-recovery-big.result │ │ │ ├── maria-recovery-big.test │ │ │ ├── maria-recovery-bitmap-master.opt │ │ │ ├── maria-recovery-bitmap.result │ │ │ ├── maria-recovery-bitmap.test │ │ │ ├── maria-recovery-master.opt │ │ │ ├── maria-recovery-rtree-ft-master.opt │ │ │ ├── maria-recovery-rtree-ft.result │ │ │ ├── maria-recovery-rtree-ft.test │ │ │ ├── maria-recovery.result │ │ │ ├── maria-recovery.test │ │ │ ├── maria-recovery2-master.opt │ │ │ ├── maria-recovery2.result │ │ │ ├── maria-recovery2.test │ │ │ ├── maria-recovery3-master.opt │ │ │ ├── maria-recovery3.result │ │ │ ├── maria-recovery3.test │ │ │ ├── maria-ucs2.result │ │ │ ├── maria-ucs2.test │ │ │ ├── maria.result │ │ │ ├── maria.test │ │ │ ├── maria2.result │ │ │ ├── maria2.test │ │ │ ├── maria3.result │ │ │ ├── maria3.test │ │ │ ├── maria_notembedded.result │ │ │ ├── maria_notembedded.test │ │ │ ├── maria_partition.result │ │ │ ├── maria_partition.test │ │ │ ├── maria_showlog_error.result │ │ │ ├── maria_showlog_error.test │ │ │ ├── max_length.result │ │ │ ├── max_length.test │ │ │ ├── mrr.result │ │ │ ├── mrr.test │ │ │ ├── optimize.result │ │ │ ├── optimize.test │ │ │ ├── partition.result │ │ │ ├── partition.test │ │ │ ├── ps_maria.result │ │ │ ├── ps_maria.test │ │ │ ├── repair.result │ │ │ ├── repair.test │ │ │ ├── rollback.result │ │ │ ├── rollback.test │ │ │ ├── small_blocksize-master.opt │ │ │ ├── small_blocksize.result │ │ │ ├── small_blocksize.test │ │ │ ├── suite.pm │ │ │ ├── system_tables.result │ │ │ ├── system_tables.test │ │ │ ├── temporary.result │ │ │ ├── temporary.test │ │ │ ├── transaction.result │ │ │ ├── transaction.test │ │ │ ├── truncate.result │ │ │ └── truncate.test │ │ ├── mariabackup/ │ │ │ ├── absolute_ibdata_paths.opt │ │ │ ├── absolute_ibdata_paths.result │ │ │ ├── absolute_ibdata_paths.test │ │ │ ├── alter_copy_excluded.opt │ │ │ ├── alter_copy_excluded.result │ │ │ ├── alter_copy_excluded.test │ │ │ ├── alter_copy_race.result │ │ │ ├── alter_copy_race.test │ │ │ ├── apply-log-only-incr.result │ │ │ ├── apply-log-only-incr.test │ │ │ ├── apply-log-only.result │ │ │ ├── apply-log-only.test │ │ │ ├── auth_plugin_win.opt │ │ │ ├── auth_plugin_win.result │ │ │ ├── auth_plugin_win.test │ │ │ ├── backup_grants.result │ │ │ ├── backup_grants.test │ │ │ ├── backup_lock_wait_timeout.result │ │ │ ├── backup_lock_wait_timeout.test │ │ │ ├── backup_ssl.result │ │ │ ├── backup_ssl.test │ │ │ ├── big_innodb_log.result │ │ │ ├── big_innodb_log.test │ │ │ ├── binlog.result │ │ │ ├── binlog.test │ │ │ ├── compress_qpress.result │ │ │ ├── compress_qpress.test │ │ │ ├── create_during_backup.result │ │ │ ├── create_during_backup.test │ │ │ ├── create_with_data_directory_during_backup.result │ │ │ ├── create_with_data_directory_during_backup.test │ │ │ ├── data_directory.result │ │ │ ├── data_directory.test │ │ │ ├── defer_space.result │ │ │ ├── defer_space.test │ │ │ ├── disabled.def │ │ │ ├── drop_table_during_backup.result │ │ │ ├── drop_table_during_backup.test │ │ │ ├── encrypted_page_compressed.opt │ │ │ ├── encrypted_page_compressed.result │ │ │ ├── encrypted_page_compressed.test │ │ │ ├── encrypted_page_corruption,full_crc32.rdiff │ │ │ ├── encrypted_page_corruption.combinations │ │ │ ├── encrypted_page_corruption.opt │ │ │ ├── encrypted_page_corruption.result │ │ │ ├── encrypted_page_corruption.test │ │ │ ├── error_during_copyback.result │ │ │ ├── error_during_copyback.test │ │ │ ├── extra_lsndir.result │ │ │ ├── extra_lsndir.test │ │ │ ├── extra_lsndir_stream.result │ │ │ ├── extra_lsndir_stream.test │ │ │ ├── filekeys-data.enc │ │ │ ├── filekeys-data.key │ │ │ ├── full_backup.result │ │ │ ├── full_backup.test │ │ │ ├── huge_lsn.combinations │ │ │ ├── huge_lsn.opt │ │ │ ├── huge_lsn.result │ │ │ ├── huge_lsn.test │ │ │ ├── include/ │ │ │ │ ├── corrupt-page.pl │ │ │ │ ├── restart_and_restore.inc │ │ │ │ ├── show_xtrabackup_slave_info.inc │ │ │ │ └── show_xtrabackup_slave_info_out.inc │ │ │ ├── incremental_backup.result │ │ │ ├── incremental_backup.test │ │ │ ├── incremental_backup_newdb_before_inc.result │ │ │ ├── incremental_backup_newdb_before_inc.test │ │ │ ├── incremental_ddl_before_backup.result │ │ │ ├── incremental_ddl_before_backup.test │ │ │ ├── incremental_ddl_during_backup.result │ │ │ ├── incremental_ddl_during_backup.test │ │ │ ├── incremental_encrypted.opt │ │ │ ├── incremental_encrypted.result │ │ │ ├── incremental_encrypted.test │ │ │ ├── incremental_newdb_while_backup.result │ │ │ ├── incremental_newdb_while_backup.test │ │ │ ├── incremental_rocksdb.opt │ │ │ ├── incremental_rocksdb.result │ │ │ ├── incremental_rocksdb.test │ │ │ ├── innodb_force_recovery.result │ │ │ ├── innodb_force_recovery.test │ │ │ ├── innodb_redo_log_overwrite.opt │ │ │ ├── innodb_redo_log_overwrite.result │ │ │ ├── innodb_redo_log_overwrite.test │ │ │ ├── innodb_redo_overwrite.opt │ │ │ ├── innodb_redo_overwrite.result │ │ │ ├── innodb_redo_overwrite.test │ │ │ ├── lock_ddl_per_table.opt │ │ │ ├── lock_ddl_per_table.result │ │ │ ├── lock_ddl_per_table.test │ │ │ ├── log_checksum_mismatch.result │ │ │ ├── log_checksum_mismatch.test │ │ │ ├── log_copy_interval.result │ │ │ ├── log_copy_interval.test │ │ │ ├── log_page_corruption.opt │ │ │ ├── log_page_corruption.result │ │ │ ├── log_page_corruption.test │ │ │ ├── mdev-14447.opt │ │ │ ├── mdev-14447.result │ │ │ ├── mdev-14447.test │ │ │ ├── mdev-18438.result │ │ │ ├── mdev-18438.test │ │ │ ├── missing_ibd.result │ │ │ ├── missing_ibd.test │ │ │ ├── nolock_ddl_during_backup_end.result │ │ │ ├── nolock_ddl_during_backup_end.test │ │ │ ├── options_check.result │ │ │ ├── options_check.test │ │ │ ├── page_compression_level.result │ │ │ ├── page_compression_level.test │ │ │ ├── partial.result │ │ │ ├── partial.test │ │ │ ├── partial_exclude.opt │ │ │ ├── partial_exclude.result │ │ │ ├── partial_exclude.test │ │ │ ├── partition_datadir.result │ │ │ ├── partition_datadir.test │ │ │ ├── partition_partial.opt │ │ │ ├── partition_partial.result │ │ │ ├── partition_partial.test │ │ │ ├── recreate_table_during_backup.result │ │ │ ├── recreate_table_during_backup.test │ │ │ ├── rename_during_backup.result │ │ │ ├── rename_during_backup.test │ │ │ ├── rename_during_mdl_lock.result │ │ │ ├── rename_during_mdl_lock.test │ │ │ ├── row_format_redundant.result │ │ │ ├── row_format_redundant.test │ │ │ ├── rpl_slave_info.result │ │ │ ├── rpl_slave_info.test │ │ │ ├── skip_innodb.opt │ │ │ ├── skip_innodb.result │ │ │ ├── skip_innodb.test │ │ │ ├── slave_info_norpl.result │ │ │ ├── slave_info_norpl.test │ │ │ ├── small_ibd.result │ │ │ ├── small_ibd.test │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ ├── system_versioning.result │ │ │ ├── system_versioning.test │ │ │ ├── truncate_during_backup.result │ │ │ ├── truncate_during_backup.test │ │ │ ├── undo_space_id.opt │ │ │ ├── undo_space_id.result │ │ │ ├── undo_space_id.test │ │ │ ├── unencrypted_page_compressed.result │ │ │ ├── unencrypted_page_compressed.test │ │ │ ├── unsupported_redo.result │ │ │ ├── unsupported_redo.test │ │ │ ├── xb_aws_key_management.opt │ │ │ ├── xb_aws_key_management.result │ │ │ ├── xb_aws_key_management.test │ │ │ ├── xb_compressed_encrypted.opt │ │ │ ├── xb_compressed_encrypted.result │ │ │ ├── xb_compressed_encrypted.test │ │ │ ├── xb_file_key_management.opt │ │ │ ├── xb_file_key_management.result │ │ │ ├── xb_file_key_management.test │ │ │ ├── xb_fulltext_encrypted.opt │ │ │ ├── xb_fulltext_encrypted.result │ │ │ ├── xb_fulltext_encrypted.test │ │ │ ├── xb_history.result │ │ │ ├── xb_history.test │ │ │ ├── xb_page_compress.result │ │ │ ├── xb_page_compress.test │ │ │ ├── xb_partition.result │ │ │ ├── xb_partition.test │ │ │ ├── xb_rocksdb.opt │ │ │ ├── xb_rocksdb.result │ │ │ ├── xb_rocksdb.test │ │ │ ├── xb_rocksdb_datadir.opt │ │ │ ├── xb_rocksdb_datadir.result │ │ │ ├── xb_rocksdb_datadir.test │ │ │ ├── xb_rocksdb_datadir_debug.opt │ │ │ ├── xb_rocksdb_datadir_debug.result │ │ │ ├── xb_rocksdb_datadir_debug.test │ │ │ ├── xbstream.result │ │ │ └── xbstream.test │ │ ├── mtr/ │ │ │ └── t/ │ │ │ ├── combs.combinations │ │ │ ├── combs.inc │ │ │ ├── inc.inc │ │ │ ├── newcomb.result │ │ │ ├── newcomb.test │ │ │ ├── proxy.inc │ │ │ ├── self.result │ │ │ ├── self.test │ │ │ ├── simple,c2,s1.rdiff │ │ │ ├── simple,s2,c2.rdiff │ │ │ ├── simple,s2.result │ │ │ ├── simple.combinations │ │ │ ├── simple.result │ │ │ ├── simple.test │ │ │ ├── single.result │ │ │ ├── single.test │ │ │ ├── source.result │ │ │ ├── source.test │ │ │ ├── test2.result │ │ │ ├── test2.test │ │ │ ├── testsh.result │ │ │ └── testsh.test │ │ ├── mtr2/ │ │ │ ├── combinations │ │ │ ├── overlay.inc │ │ │ ├── single.result │ │ │ └── single.test │ │ ├── multi_source/ │ │ │ ├── disabled.def │ │ │ ├── gtid.cnf │ │ │ ├── gtid.result │ │ │ ├── gtid.test │ │ │ ├── gtid_ignore_duplicates.cnf │ │ │ ├── gtid_ignore_duplicates.result │ │ │ ├── gtid_ignore_duplicates.test │ │ │ ├── gtid_slave_pos.result │ │ │ ├── gtid_slave_pos.test │ │ │ ├── info_logs-master.opt │ │ │ ├── info_logs.result │ │ │ ├── info_logs.test │ │ │ ├── load_data.result │ │ │ ├── load_data.test │ │ │ ├── mdev-8874.cnf │ │ │ ├── mdev-8874.result │ │ │ ├── mdev-8874.test │ │ │ ├── mdev-9544.cnf │ │ │ ├── mdev-9544.result │ │ │ ├── mdev-9544.test │ │ │ ├── multi_parallel.cnf │ │ │ ├── multi_parallel.result │ │ │ ├── multi_parallel.test │ │ │ ├── multi_parallel_loop.inc │ │ │ ├── multi_source_slave_alias_replica.result │ │ │ ├── multi_source_slave_alias_replica.test │ │ │ ├── multisource.result │ │ │ ├── multisource.test │ │ │ ├── my.cnf │ │ │ ├── relaylog_events.result │ │ │ ├── relaylog_events.test │ │ │ ├── reset_slave.result │ │ │ ├── reset_slave.test │ │ │ ├── simple.result │ │ │ ├── simple.test │ │ │ ├── skip_counter.result │ │ │ ├── skip_counter.test │ │ │ ├── status_vars.result │ │ │ ├── status_vars.test │ │ │ ├── syntax.result │ │ │ └── syntax.test │ │ ├── optimizer_unfixed_bugs/ │ │ │ ├── README.txt │ │ │ ├── disabled.def │ │ │ ├── r/ │ │ │ │ ├── bug36981.result │ │ │ │ ├── bug40992.result │ │ │ │ ├── bug41029.result │ │ │ │ ├── bug41996-extra1-innodb-innodb.result │ │ │ │ ├── bug41996-extra1-innodb.result │ │ │ │ ├── bug41996-extra1.result │ │ │ │ ├── bug41996-extra2-innodb-innodb.result │ │ │ │ ├── bug41996-extra2-innodb.result │ │ │ │ ├── bug41996-extra2.result │ │ │ │ ├── bug41996-extra3-innodb-innodb.result │ │ │ │ ├── bug41996-extra3-innodb.result │ │ │ │ ├── bug41996-extra3.result │ │ │ │ ├── bug41996-extra4-innodb-innodb.result │ │ │ │ ├── bug41996-extra4-innodb.result │ │ │ │ ├── bug41996-extra4.result │ │ │ │ ├── bug41996.result │ │ │ │ ├── bug42991.result │ │ │ │ ├── bug43101.result │ │ │ │ ├── bug43249.result │ │ │ │ ├── bug43360.result │ │ │ │ ├── bug43448.result │ │ │ │ ├── bug43617.result │ │ │ │ ├── bug43618.result │ │ │ │ ├── bug45219.result │ │ │ │ ├── bug45221.result │ │ │ │ └── bug49129.result │ │ │ └── t/ │ │ │ ├── bug36981.test │ │ │ ├── bug40992.test │ │ │ ├── bug41029-master.opt │ │ │ ├── bug41029.test │ │ │ ├── bug41996-extra1-innodb.test │ │ │ ├── bug41996-extra1.test │ │ │ ├── bug41996-extra2-innodb.test │ │ │ ├── bug41996-extra2.test │ │ │ ├── bug41996-extra3-innodb.test │ │ │ ├── bug41996-extra3.test │ │ │ ├── bug41996-extra4-innodb.test │ │ │ ├── bug41996-extra4.test │ │ │ ├── bug41996.test │ │ │ ├── bug42991.test │ │ │ ├── bug43101.test │ │ │ ├── bug43249.test │ │ │ ├── bug43360.test │ │ │ ├── bug43448.test │ │ │ ├── bug43617.test │ │ │ ├── bug43618.test │ │ │ ├── bug45219.test │ │ │ ├── bug45221.test │ │ │ └── bug49129.test │ │ ├── parts/ │ │ │ ├── disabled.def │ │ │ ├── inc/ │ │ │ │ ├── methods1.inc │ │ │ │ ├── part_alter_values.inc │ │ │ │ ├── part_blocked_sql_funcs_main.inc │ │ │ │ ├── part_exch_drop_tabs.inc │ │ │ │ ├── part_exch_qa.inc │ │ │ │ ├── part_exch_qa_1.inc │ │ │ │ ├── part_exch_qa_13.inc │ │ │ │ ├── part_exch_qa_4.inc │ │ │ │ ├── part_exch_qa_5.inc │ │ │ │ ├── part_exch_qa_7.inc │ │ │ │ ├── part_exch_qa_8.inc │ │ │ │ ├── part_exch_tabs.inc │ │ │ │ ├── part_supported_sql_funcs_delete.inc │ │ │ │ ├── part_supported_sql_funcs_main.inc │ │ │ │ ├── partition.pre │ │ │ │ ├── partition_10.inc │ │ │ │ ├── partition_11.inc │ │ │ │ ├── partition_12.inc │ │ │ │ ├── partition_20.inc │ │ │ │ ├── partition_alter1_1.inc │ │ │ │ ├── partition_alter1_1_2.inc │ │ │ │ ├── partition_alter1_2.inc │ │ │ │ ├── partition_alter2_1.inc │ │ │ │ ├── partition_alter2_2.inc │ │ │ │ ├── partition_alter3.inc │ │ │ │ ├── partition_alter4.inc │ │ │ │ ├── partition_alter_1.inc │ │ │ │ ├── partition_alter_11.inc │ │ │ │ ├── partition_alter_13.inc │ │ │ │ ├── partition_alter_41.inc │ │ │ │ ├── partition_auto_increment.inc │ │ │ │ ├── partition_basic.inc │ │ │ │ ├── partition_basic_symlink.inc │ │ │ │ ├── partition_bigint.inc │ │ │ │ ├── partition_binary.inc │ │ │ │ ├── partition_bit.inc │ │ │ │ ├── partition_blob.inc │ │ │ │ ├── partition_blocked_sql_funcs.inc │ │ │ │ ├── partition_char.inc │ │ │ │ ├── partition_check.inc │ │ │ │ ├── partition_check_drop.inc │ │ │ │ ├── partition_check_read.inc │ │ │ │ ├── partition_check_read1.inc │ │ │ │ ├── partition_check_read2.inc │ │ │ │ ├── partition_cleanup.inc │ │ │ │ ├── partition_crash.inc │ │ │ │ ├── partition_crash_add.inc │ │ │ │ ├── partition_crash_change.inc │ │ │ │ ├── partition_crash_drop.inc │ │ │ │ ├── partition_crash_exchange.inc │ │ │ │ ├── partition_crash_t2.inc │ │ │ │ ├── partition_date.inc │ │ │ │ ├── partition_datetime.inc │ │ │ │ ├── partition_decimal.inc │ │ │ │ ├── partition_directory.inc │ │ │ │ ├── partition_double.inc │ │ │ │ ├── partition_engine.inc │ │ │ │ ├── partition_enum.inc │ │ │ │ ├── partition_exchange.inc │ │ │ │ ├── partition_fail.inc │ │ │ │ ├── partition_fail_add.inc │ │ │ │ ├── partition_fail_change.inc │ │ │ │ ├── partition_fail_drop.inc │ │ │ │ ├── partition_fail_exchange.inc │ │ │ │ ├── partition_fail_t2.inc │ │ │ │ ├── partition_float.inc │ │ │ │ ├── partition_int.inc │ │ │ │ ├── partition_key_16col.inc │ │ │ │ ├── partition_key_32col.inc │ │ │ │ ├── partition_key_4col.inc │ │ │ │ ├── partition_key_8col.inc │ │ │ │ ├── partition_layout.inc │ │ │ │ ├── partition_layout_check1.inc │ │ │ │ ├── partition_layout_check2.inc │ │ │ │ ├── partition_mediumint.inc │ │ │ │ ├── partition_methods1.inc │ │ │ │ ├── partition_methods2.inc │ │ │ │ ├── partition_mgm.inc │ │ │ │ ├── partition_mgm_crash.inc │ │ │ │ ├── partition_set.inc │ │ │ │ ├── partition_smallint.inc │ │ │ │ ├── partition_supported_sql_funcs.inc │ │ │ │ ├── partition_syntax.inc │ │ │ │ ├── partition_syntax_1.inc │ │ │ │ ├── partition_syntax_2.inc │ │ │ │ ├── partition_text.inc │ │ │ │ ├── partition_time.inc │ │ │ │ ├── partition_timestamp.inc │ │ │ │ ├── partition_tinyint.inc │ │ │ │ ├── partition_trigg1.inc │ │ │ │ ├── partition_trigg2.inc │ │ │ │ ├── partition_trigg3.inc │ │ │ │ ├── partition_value.inc │ │ │ │ ├── partition_varbinary.inc │ │ │ │ ├── partition_varchar.inc │ │ │ │ └── partition_year.inc │ │ │ ├── r/ │ │ │ │ ├── alter_data_directory_innodb.result │ │ │ │ ├── alter_table.result │ │ │ │ ├── backup_log.result │ │ │ │ ├── backup_log_rocksdb.result │ │ │ │ ├── cache.result │ │ │ │ ├── debug_innodb_crash.result │ │ │ │ ├── debug_innodb_fail.result │ │ │ │ ├── debug_myisam_crash.result │ │ │ │ ├── debug_myisam_fail.result │ │ │ │ ├── fulltext.result │ │ │ │ ├── insert_ignore-5421.result │ │ │ │ ├── longname.result │ │ │ │ ├── optimizer.result │ │ │ │ ├── part_blocked_sql_func_innodb.result │ │ │ │ ├── part_blocked_sql_func_myisam.result │ │ │ │ ├── part_ctype_utf32.result │ │ │ │ ├── part_supported_sql_func_innodb.result │ │ │ │ ├── part_supported_sql_func_myisam.result │ │ │ │ ├── partition_alter1_1_2_innodb.result │ │ │ │ ├── partition_alter1_1_2_myisam.result │ │ │ │ ├── partition_alter1_1_innodb.result │ │ │ │ ├── partition_alter1_1_myisam.result │ │ │ │ ├── partition_alter1_2_innodb.result │ │ │ │ ├── partition_alter1_2_myisam.result │ │ │ │ ├── partition_alter2_1_1_innodb.result │ │ │ │ ├── partition_alter2_1_2_innodb.result │ │ │ │ ├── partition_alter2_1_maria.result │ │ │ │ ├── partition_alter2_1_myisam.result │ │ │ │ ├── partition_alter2_2_1_innodb.result │ │ │ │ ├── partition_alter2_2_2_innodb.result │ │ │ │ ├── partition_alter2_2_maria.result │ │ │ │ ├── partition_alter2_2_myisam.result │ │ │ │ ├── partition_alter3_innodb.result │ │ │ │ ├── partition_alter3_myisam.result │ │ │ │ ├── partition_alter4_innodb.result │ │ │ │ ├── partition_alter4_myisam.result │ │ │ │ ├── partition_alter_innodb.result │ │ │ │ ├── partition_alter_instant.result │ │ │ │ ├── partition_alter_maria.result │ │ │ │ ├── partition_alter_myisam.result │ │ │ │ ├── partition_auto_increment_archive.result │ │ │ │ ├── partition_auto_increment_blackhole.result │ │ │ │ ├── partition_auto_increment_innodb.result │ │ │ │ ├── partition_auto_increment_maria.result │ │ │ │ ├── partition_auto_increment_max.result │ │ │ │ ├── partition_auto_increment_memory.result │ │ │ │ ├── partition_auto_increment_myisam.result │ │ │ │ ├── partition_basic_innodb.result │ │ │ │ ├── partition_basic_myisam.result │ │ │ │ ├── partition_basic_symlink_innodb.result │ │ │ │ ├── partition_basic_symlink_myisam.result │ │ │ │ ├── partition_bigint_innodb.result │ │ │ │ ├── partition_bigint_myisam.result │ │ │ │ ├── partition_bit_innodb.result │ │ │ │ ├── partition_bit_myisam.result │ │ │ │ ├── partition_char_innodb.result │ │ │ │ ├── partition_char_myisam.result │ │ │ │ ├── partition_datetime_innodb.result │ │ │ │ ├── partition_datetime_myisam.result │ │ │ │ ├── partition_debug.result │ │ │ │ ├── partition_debug_innodb.result │ │ │ │ ├── partition_debug_sync_innodb.result │ │ │ │ ├── partition_decimal_innodb.result │ │ │ │ ├── partition_decimal_myisam.result │ │ │ │ ├── partition_double_innodb.result │ │ │ │ ├── partition_double_myisam.result │ │ │ │ ├── partition_engine_innodb.result │ │ │ │ ├── partition_engine_myisam.result │ │ │ │ ├── partition_exch_innodb.result │ │ │ │ ├── partition_exch_myisam.result │ │ │ │ ├── partition_exch_myisam_innodb.result │ │ │ │ ├── partition_exch_qa.result │ │ │ │ ├── partition_exch_qa_10.result │ │ │ │ ├── partition_exch_qa_11.result │ │ │ │ ├── partition_exch_qa_12.result │ │ │ │ ├── partition_exch_qa_13.result │ │ │ │ ├── partition_exch_qa_14.result │ │ │ │ ├── partition_exch_qa_15.result │ │ │ │ ├── partition_exch_qa_1_innodb.result │ │ │ │ ├── partition_exch_qa_1_myisam.result │ │ │ │ ├── partition_exch_qa_2.result │ │ │ │ ├── partition_exch_qa_3.result │ │ │ │ ├── partition_exch_qa_4_innodb.result │ │ │ │ ├── partition_exch_qa_4_myisam.result │ │ │ │ ├── partition_exch_qa_5_innodb.result │ │ │ │ ├── partition_exch_qa_5_myisam.result │ │ │ │ ├── partition_exch_qa_6.result │ │ │ │ ├── partition_exch_qa_7_innodb.result │ │ │ │ ├── partition_exch_qa_7_myisam.result │ │ │ │ ├── partition_exch_qa_8_innodb.result │ │ │ │ ├── partition_exch_qa_8_myisam.result │ │ │ │ ├── partition_exchange_archive.result │ │ │ │ ├── partition_exchange_blackhole.result │ │ │ │ ├── partition_exchange_innodb.result │ │ │ │ ├── partition_exchange_memory.result │ │ │ │ ├── partition_exchange_myisam.result │ │ │ │ ├── partition_float_innodb.result │ │ │ │ ├── partition_float_myisam.result │ │ │ │ ├── partition_innodb_status_file.result │ │ │ │ ├── partition_int_innodb.result │ │ │ │ ├── partition_int_myisam.result │ │ │ │ ├── partition_mdev6067.result │ │ │ │ ├── partition_mediumint_innodb.result │ │ │ │ ├── partition_mediumint_myisam.result │ │ │ │ ├── partition_mgm_lc0_archive.result │ │ │ │ ├── partition_mgm_lc0_innodb.result │ │ │ │ ├── partition_mgm_lc0_memory.result │ │ │ │ ├── partition_mgm_lc0_myisam.result │ │ │ │ ├── partition_mgm_lc1_archive.result │ │ │ │ ├── partition_mgm_lc1_innodb.result │ │ │ │ ├── partition_mgm_lc1_memory.result │ │ │ │ ├── partition_mgm_lc1_myisam.result │ │ │ │ ├── partition_mgm_lc2_archive.result │ │ │ │ ├── partition_mgm_lc2_innodb.result │ │ │ │ ├── partition_mgm_lc2_memory.result │ │ │ │ ├── partition_mgm_lc2_myisam.result │ │ │ │ ├── partition_open.result │ │ │ │ ├── partition_recover_myisam.result │ │ │ │ ├── partition_repair_myisam.result │ │ │ │ ├── partition_smallint_innodb.result │ │ │ │ ├── partition_smallint_myisam.result │ │ │ │ ├── partition_special_innodb.result │ │ │ │ ├── partition_special_myisam.result │ │ │ │ ├── partition_syntax_innodb.result │ │ │ │ ├── partition_syntax_myisam.result │ │ │ │ ├── partition_tinyint_innodb.result │ │ │ │ ├── partition_tinyint_myisam.result │ │ │ │ ├── partition_value_innodb.result │ │ │ │ ├── partition_value_myisam.result │ │ │ │ ├── percona_nonflushing_analyze_debug.result │ │ │ │ ├── print_error.result │ │ │ │ ├── reorganize.result │ │ │ │ ├── reorganize_partition_innodb.result │ │ │ │ ├── rpl_partition.result │ │ │ │ ├── show_create.result │ │ │ │ ├── truncate_locked.result │ │ │ │ └── update_and_cache.result │ │ │ └── t/ │ │ │ ├── alter_data_directory_innodb.test │ │ │ ├── alter_table.test │ │ │ ├── backup_log.test │ │ │ ├── backup_log_rocksdb.opt │ │ │ ├── backup_log_rocksdb.test │ │ │ ├── cache.test │ │ │ ├── debug_innodb_crash-master.opt │ │ │ ├── debug_innodb_crash.test │ │ │ ├── debug_innodb_fail-master.opt │ │ │ ├── debug_innodb_fail.test │ │ │ ├── debug_myisam_crash-master.opt │ │ │ ├── debug_myisam_crash.test │ │ │ ├── debug_myisam_fail-master.opt │ │ │ ├── debug_myisam_fail.test │ │ │ ├── fulltext.test │ │ │ ├── insert_ignore-5421.test │ │ │ ├── longname.test │ │ │ ├── optimizer.test │ │ │ ├── part_blocked_sql_func_innodb.test │ │ │ ├── part_blocked_sql_func_myisam.test │ │ │ ├── part_ctype_utf32.test │ │ │ ├── part_supported_sql_func_innodb.test │ │ │ ├── part_supported_sql_func_myisam.test │ │ │ ├── partition_alter1_1_2_innodb.test │ │ │ ├── partition_alter1_1_2_myisam.test │ │ │ ├── partition_alter1_1_innodb.test │ │ │ ├── partition_alter1_1_myisam.test │ │ │ ├── partition_alter1_2_innodb.test │ │ │ ├── partition_alter1_2_myisam.test │ │ │ ├── partition_alter2_1_1_innodb.test │ │ │ ├── partition_alter2_1_2_innodb.test │ │ │ ├── partition_alter2_1_maria.test │ │ │ ├── partition_alter2_1_myisam.test │ │ │ ├── partition_alter2_2_1_innodb.test │ │ │ ├── partition_alter2_2_2_innodb.test │ │ │ ├── partition_alter2_2_maria.test │ │ │ ├── partition_alter2_2_myisam.test │ │ │ ├── partition_alter3_innodb.test │ │ │ ├── partition_alter3_myisam.test │ │ │ ├── partition_alter4_innodb.test │ │ │ ├── partition_alter4_myisam.test │ │ │ ├── partition_alter_innodb.test │ │ │ ├── partition_alter_instant.test │ │ │ ├── partition_alter_maria.test │ │ │ ├── partition_alter_myisam.test │ │ │ ├── partition_auto_increment_archive.test │ │ │ ├── partition_auto_increment_blackhole.test │ │ │ ├── partition_auto_increment_innodb.test │ │ │ ├── partition_auto_increment_maria.test │ │ │ ├── partition_auto_increment_max.test │ │ │ ├── partition_auto_increment_memory.test │ │ │ ├── partition_auto_increment_myisam.test │ │ │ ├── partition_basic_innodb.test │ │ │ ├── partition_basic_myisam.test │ │ │ ├── partition_basic_symlink_innodb.test │ │ │ ├── partition_basic_symlink_myisam.test │ │ │ ├── partition_bigint_innodb.test │ │ │ ├── partition_bigint_myisam.test │ │ │ ├── partition_bit_innodb.test │ │ │ ├── partition_bit_myisam.test │ │ │ ├── partition_char_innodb.test │ │ │ ├── partition_char_myisam.test │ │ │ ├── partition_datetime_innodb.test │ │ │ ├── partition_datetime_myisam.test │ │ │ ├── partition_debug.test │ │ │ ├── partition_debug_innodb-master.opt │ │ │ ├── partition_debug_innodb.test │ │ │ ├── partition_debug_sync_innodb-master.opt │ │ │ ├── partition_debug_sync_innodb.test │ │ │ ├── partition_decimal_innodb.test │ │ │ ├── partition_decimal_myisam.test │ │ │ ├── partition_double_innodb.test │ │ │ ├── partition_double_myisam.test │ │ │ ├── partition_engine_innodb.test │ │ │ ├── partition_engine_myisam.test │ │ │ ├── partition_exch_innodb.test │ │ │ ├── partition_exch_myisam.test │ │ │ ├── partition_exch_myisam_innodb.test │ │ │ ├── partition_exch_qa.test │ │ │ ├── partition_exch_qa_10.test │ │ │ ├── partition_exch_qa_11.test │ │ │ ├── partition_exch_qa_12.test │ │ │ ├── partition_exch_qa_13.test │ │ │ ├── partition_exch_qa_14.test │ │ │ ├── partition_exch_qa_15.test │ │ │ ├── partition_exch_qa_1_innodb.test │ │ │ ├── partition_exch_qa_1_myisam.test │ │ │ ├── partition_exch_qa_2.test │ │ │ ├── partition_exch_qa_3.test │ │ │ ├── partition_exch_qa_4_innodb.test │ │ │ ├── partition_exch_qa_4_myisam.test │ │ │ ├── partition_exch_qa_5_innodb.test │ │ │ ├── partition_exch_qa_5_myisam.test │ │ │ ├── partition_exch_qa_6.test │ │ │ ├── partition_exch_qa_7_innodb.test │ │ │ ├── partition_exch_qa_7_myisam.test │ │ │ ├── partition_exch_qa_8_innodb.test │ │ │ ├── partition_exch_qa_8_myisam.test │ │ │ ├── partition_exchange_archive.test │ │ │ ├── partition_exchange_blackhole.test │ │ │ ├── partition_exchange_innodb.test │ │ │ ├── partition_exchange_memory.test │ │ │ ├── partition_exchange_myisam.test │ │ │ ├── partition_float_innodb.test │ │ │ ├── partition_float_myisam.test │ │ │ ├── partition_innodb_status_file-master.opt │ │ │ ├── partition_innodb_status_file.test │ │ │ ├── partition_int_innodb.test │ │ │ ├── partition_int_myisam.test │ │ │ ├── partition_mdev6067.test │ │ │ ├── partition_mediumint_innodb.test │ │ │ ├── partition_mediumint_myisam.test │ │ │ ├── partition_mgm_lc0_archive.test │ │ │ ├── partition_mgm_lc0_innodb.test │ │ │ ├── partition_mgm_lc0_memory.test │ │ │ ├── partition_mgm_lc0_myisam.test │ │ │ ├── partition_mgm_lc1_archive-master.opt │ │ │ ├── partition_mgm_lc1_archive.test │ │ │ ├── partition_mgm_lc1_innodb-master.opt │ │ │ ├── partition_mgm_lc1_innodb.test │ │ │ ├── partition_mgm_lc1_memory-master.opt │ │ │ ├── partition_mgm_lc1_memory.test │ │ │ ├── partition_mgm_lc1_myisam-master.opt │ │ │ ├── partition_mgm_lc1_myisam.test │ │ │ ├── partition_mgm_lc2_archive-master.opt │ │ │ ├── partition_mgm_lc2_archive.test │ │ │ ├── partition_mgm_lc2_innodb-master.opt │ │ │ ├── partition_mgm_lc2_innodb.test │ │ │ ├── partition_mgm_lc2_memory-master.opt │ │ │ ├── partition_mgm_lc2_memory.test │ │ │ ├── partition_mgm_lc2_myisam-master.opt │ │ │ ├── partition_mgm_lc2_myisam.test │ │ │ ├── partition_open.test │ │ │ ├── partition_recover_myisam-master.opt │ │ │ ├── partition_recover_myisam.test │ │ │ ├── partition_repair_myisam-master.opt │ │ │ ├── partition_repair_myisam.test │ │ │ ├── partition_smallint_innodb.test │ │ │ ├── partition_smallint_myisam.test │ │ │ ├── partition_special_innodb.test │ │ │ ├── partition_special_myisam.test │ │ │ ├── partition_syntax_innodb.test │ │ │ ├── partition_syntax_myisam.test │ │ │ ├── partition_tinyint_innodb.test │ │ │ ├── partition_tinyint_myisam.test │ │ │ ├── partition_value_innodb.test │ │ │ ├── partition_value_myisam.test │ │ │ ├── percona_nonflushing_analyze_debug.test │ │ │ ├── print_error.test │ │ │ ├── reorganize.test │ │ │ ├── reorganize_partition_innodb.test │ │ │ ├── rpl_partition.test │ │ │ ├── show_create.test │ │ │ ├── truncate_locked.test │ │ │ └── update_and_cache.test │ │ ├── perfschema/ │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── binlog_common.inc │ │ │ │ ├── binlog_edge_common.inc │ │ │ │ ├── binlog_ok_common.inc │ │ │ │ ├── cleanup_helper.inc │ │ │ │ ├── connection_cleanup.inc │ │ │ │ ├── connection_load.inc │ │ │ │ ├── connection_setup.inc │ │ │ │ ├── default_mysqld_autosize.cnf │ │ │ │ ├── digest_cleanup.inc │ │ │ │ ├── digest_execution.inc │ │ │ │ ├── digest_setup.inc │ │ │ │ ├── disable_instruments.inc │ │ │ │ ├── enable_instruments.inc │ │ │ │ ├── event_aggregate_cleanup.inc │ │ │ │ ├── event_aggregate_load.inc │ │ │ │ ├── event_aggregate_setup.inc │ │ │ │ ├── have_aligned_memory.inc │ │ │ │ ├── have_timer_cycle.inc │ │ │ │ ├── hostcache_dump.inc │ │ │ │ ├── hostcache_set_state.inc │ │ │ │ ├── memory_aggregate_cleanup.inc │ │ │ │ ├── memory_aggregate_load.inc │ │ │ │ ├── memory_aggregate_setup.inc │ │ │ │ ├── pfs_no_running_event_scheduler.inc │ │ │ │ ├── pfs_running_event_scheduler.inc │ │ │ │ ├── pfs_upgrade.inc │ │ │ │ ├── prepared_stmts_deallocation.inc │ │ │ │ ├── prepared_stmts_execution.inc │ │ │ │ ├── prepared_stmts_setup.inc │ │ │ │ ├── privilege.inc │ │ │ │ ├── processlist_load.inc │ │ │ │ ├── processlist_set.inc │ │ │ │ ├── program_cleanup.inc │ │ │ │ ├── program_execution.inc │ │ │ │ ├── program_nested_cleanup.inc │ │ │ │ ├── program_nested_execution.inc │ │ │ │ ├── program_nested_setup.inc │ │ │ │ ├── program_setup.inc │ │ │ │ ├── reset_transaction_gtid.inc │ │ │ │ ├── rpl_statements_truncate.inc │ │ │ │ ├── schema.inc │ │ │ │ ├── setup_helper.inc │ │ │ │ ├── show_aggregate.inc │ │ │ │ ├── show_plugin_verifier.inc │ │ │ │ ├── show_transaction_gtid.inc │ │ │ │ ├── socket_check1.inc │ │ │ │ ├── socket_event.inc │ │ │ │ ├── socket_event_dbg.inc │ │ │ │ ├── socket_ipv6.inc │ │ │ │ ├── socket_summary_check.inc │ │ │ │ ├── socket_summary_check_dbg.inc │ │ │ │ ├── stage_cleanup.inc │ │ │ │ ├── stage_setup.inc │ │ │ │ ├── start_server_common.inc │ │ │ │ ├── table_aggregate_cleanup.inc │ │ │ │ ├── table_aggregate_load.inc │ │ │ │ ├── table_aggregate_setup.inc │ │ │ │ ├── table_io_basic_dml.inc │ │ │ │ ├── table_io_cleanup_helper.inc │ │ │ │ ├── table_io_result_helper.inc │ │ │ │ ├── table_io_setup_helper.inc │ │ │ │ ├── transaction_cleanup.inc │ │ │ │ ├── transaction_nested_events_verifier.inc │ │ │ │ ├── transaction_setup.inc │ │ │ │ ├── upgrade_check.inc │ │ │ │ ├── wait_for_pfs_thread_count.inc │ │ │ │ └── wait_till_sleep.inc │ │ │ ├── r/ │ │ │ │ ├── all_tests.result │ │ │ │ ├── alter_table_progress.result │ │ │ │ ├── bad_option.result │ │ │ │ ├── batch_table_io_func.result │ │ │ │ ├── binlog_edge_mix.result │ │ │ │ ├── binlog_edge_row.result │ │ │ │ ├── binlog_edge_stmt.result │ │ │ │ ├── binlog_mix.result │ │ │ │ ├── binlog_ok_mix.result │ │ │ │ ├── binlog_ok_row.result │ │ │ │ ├── binlog_ok_stmt.result │ │ │ │ ├── binlog_row.result │ │ │ │ ├── binlog_stmt.result │ │ │ │ ├── checksum.result │ │ │ │ ├── cnf_option.result │ │ │ │ ├── column_privilege.result │ │ │ │ ├── connect_attrs.result │ │ │ │ ├── connection.result │ │ │ │ ├── connection_3a.result │ │ │ │ ├── connection_3a_3u.result │ │ │ │ ├── connection_3u.result │ │ │ │ ├── connection_type_notwin.result │ │ │ │ ├── connection_type_win.result │ │ │ │ ├── csv_table_io.result │ │ │ │ ├── ddl_accounts.result │ │ │ │ ├── ddl_cond_instances.result │ │ │ │ ├── ddl_esgs_by_account_by_event_name.result │ │ │ │ ├── ddl_esgs_by_host_by_event_name.result │ │ │ │ ├── ddl_esgs_by_thread_by_event_name.result │ │ │ │ ├── ddl_esgs_by_user_by_event_name.result │ │ │ │ ├── ddl_esgs_global_by_event_name.result │ │ │ │ ├── ddl_esms_by_account_by_event_name.result │ │ │ │ ├── ddl_esms_by_digest.result │ │ │ │ ├── ddl_esms_by_host_by_event_name.result │ │ │ │ ├── ddl_esms_by_program.result │ │ │ │ ├── ddl_esms_by_thread_by_event_name.result │ │ │ │ ├── ddl_esms_by_user_by_event_name.result │ │ │ │ ├── ddl_esms_global_by_event_name.result │ │ │ │ ├── ddl_ets_by_account_by_event_name.result │ │ │ │ ├── ddl_ets_by_host_by_event_name.result │ │ │ │ ├── ddl_ets_by_thread_by_event_name.result │ │ │ │ ├── ddl_ets_by_user_by_event_name.result │ │ │ │ ├── ddl_ets_global_by_event_name.result │ │ │ │ ├── ddl_events_stages_current.result │ │ │ │ ├── ddl_events_stages_history.result │ │ │ │ ├── ddl_events_stages_history_long.result │ │ │ │ ├── ddl_events_statements_current.result │ │ │ │ ├── ddl_events_statements_history.result │ │ │ │ ├── ddl_events_statements_history_long.result │ │ │ │ ├── ddl_events_transactions_current.result │ │ │ │ ├── ddl_events_transactions_history.result │ │ │ │ ├── ddl_events_transactions_history_long.result │ │ │ │ ├── ddl_events_waits_current.result │ │ │ │ ├── ddl_events_waits_history.result │ │ │ │ ├── ddl_events_waits_history_long.result │ │ │ │ ├── ddl_ews_by_account_by_event_name.result │ │ │ │ ├── ddl_ews_by_host_by_event_name.result │ │ │ │ ├── ddl_ews_by_instance.result │ │ │ │ ├── ddl_ews_by_thread_by_event_name.result │ │ │ │ ├── ddl_ews_by_user_by_event_name.result │ │ │ │ ├── ddl_ews_global_by_event_name.result │ │ │ │ ├── ddl_file_instances.result │ │ │ │ ├── ddl_fs_by_event_name.result │ │ │ │ ├── ddl_fs_by_instance.result │ │ │ │ ├── ddl_global_status.result │ │ │ │ ├── ddl_global_variables.result │ │ │ │ ├── ddl_host_cache.result │ │ │ │ ├── ddl_hosts.result │ │ │ │ ├── ddl_mems_by_account_by_event_name.result │ │ │ │ ├── ddl_mems_by_host_by_event_name.result │ │ │ │ ├── ddl_mems_by_thread_by_event_name.result │ │ │ │ ├── ddl_mems_by_user_by_event_name.result │ │ │ │ ├── ddl_mems_global_by_event_name.result │ │ │ │ ├── ddl_metadata_locks.result │ │ │ │ ├── ddl_mutex_instances.result │ │ │ │ ├── ddl_os_global_by_type.result │ │ │ │ ├── ddl_performance_timers.result │ │ │ │ ├── ddl_prepared_statements_instances.result │ │ │ │ ├── ddl_processlist.result │ │ │ │ ├── ddl_replication_applier_configuration.result │ │ │ │ ├── ddl_replication_applier_status.result │ │ │ │ ├── ddl_replication_applier_status_by_coordinator.result │ │ │ │ ├── ddl_replication_applier_status_by_worker.result │ │ │ │ ├── ddl_replication_connection_configuration.result │ │ │ │ ├── ddl_replication_connection_status.result │ │ │ │ ├── ddl_replication_group_member_stats.result │ │ │ │ ├── ddl_replication_group_members.result │ │ │ │ ├── ddl_rwlock_instances.result │ │ │ │ ├── ddl_session_account_connect_attrs.result │ │ │ │ ├── ddl_session_connect_attrs.result │ │ │ │ ├── ddl_session_status.result │ │ │ │ ├── ddl_session_variables.result │ │ │ │ ├── ddl_setup_actors.result │ │ │ │ ├── ddl_setup_consumers.result │ │ │ │ ├── ddl_setup_instruments.result │ │ │ │ ├── ddl_setup_objects.result │ │ │ │ ├── ddl_setup_timers.result │ │ │ │ ├── ddl_socket_instances.result │ │ │ │ ├── ddl_socket_summary_by_event_name.result │ │ │ │ ├── ddl_socket_summary_by_instance.result │ │ │ │ ├── ddl_status_by_account.result │ │ │ │ ├── ddl_status_by_host.result │ │ │ │ ├── ddl_status_by_thread.result │ │ │ │ ├── ddl_status_by_user.result │ │ │ │ ├── ddl_table_handles.result │ │ │ │ ├── ddl_threads.result │ │ │ │ ├── ddl_tiws_by_index_usage.result │ │ │ │ ├── ddl_tiws_by_table.result │ │ │ │ ├── ddl_tlws_by_table.result │ │ │ │ ├── ddl_users.result │ │ │ │ ├── ddl_uvar_by_thread.result │ │ │ │ ├── ddl_variables_by_thread.result │ │ │ │ ├── digest_null_literal.result │ │ │ │ ├── digest_table_full.result │ │ │ │ ├── digest_view.result │ │ │ │ ├── discovery.result │ │ │ │ ├── dml_accounts.result │ │ │ │ ├── dml_cond_instances.result │ │ │ │ ├── dml_esgs_by_account_by_event_name.result │ │ │ │ ├── dml_esgs_by_host_by_event_name.result │ │ │ │ ├── dml_esgs_by_thread_by_event_name.result │ │ │ │ ├── dml_esgs_by_user_by_event_name.result │ │ │ │ ├── dml_esgs_global_by_event_name.result │ │ │ │ ├── dml_esms_by_account_by_event_name.result │ │ │ │ ├── dml_esms_by_digest.result │ │ │ │ ├── dml_esms_by_host_by_event_name.result │ │ │ │ ├── dml_esms_by_program.result │ │ │ │ ├── dml_esms_by_thread_by_event_name.result │ │ │ │ ├── dml_esms_by_user_by_event_name.result │ │ │ │ ├── dml_esms_global_by_event_name.result │ │ │ │ ├── dml_ets_by_account_by_event_name.result │ │ │ │ ├── dml_ets_by_host_by_event_name.result │ │ │ │ ├── dml_ets_by_thread_by_event_name.result │ │ │ │ ├── dml_ets_by_user_by_event_name.result │ │ │ │ ├── dml_ets_global_by_event_name.result │ │ │ │ ├── dml_events_stages_current.result │ │ │ │ ├── dml_events_stages_history.result │ │ │ │ ├── dml_events_stages_history_long.result │ │ │ │ ├── dml_events_statements_current.result │ │ │ │ ├── dml_events_statements_history.result │ │ │ │ ├── dml_events_statements_history_long.result │ │ │ │ ├── dml_events_transactions_current.result │ │ │ │ ├── dml_events_transactions_history.result │ │ │ │ ├── dml_events_transactions_history_long.result │ │ │ │ ├── dml_events_waits_current.result │ │ │ │ ├── dml_events_waits_history.result │ │ │ │ ├── dml_events_waits_history_long.result │ │ │ │ ├── dml_ews_by_account_by_event_name.result │ │ │ │ ├── dml_ews_by_host_by_event_name.result │ │ │ │ ├── dml_ews_by_instance.result │ │ │ │ ├── dml_ews_by_thread_by_event_name.result │ │ │ │ ├── dml_ews_by_user_by_event_name.result │ │ │ │ ├── dml_ews_global_by_event_name.result │ │ │ │ ├── dml_file_instances.result │ │ │ │ ├── dml_fs_by_event_name.result │ │ │ │ ├── dml_fs_by_instance.result │ │ │ │ ├── dml_global_status.result │ │ │ │ ├── dml_global_variables.result │ │ │ │ ├── dml_handler.result │ │ │ │ ├── dml_host_cache.result │ │ │ │ ├── dml_hosts.result │ │ │ │ ├── dml_mems_by_account_by_event_name.result │ │ │ │ ├── dml_mems_by_host_by_event_name.result │ │ │ │ ├── dml_mems_by_thread_by_event_name.result │ │ │ │ ├── dml_mems_by_user_by_event_name.result │ │ │ │ ├── dml_mems_global_by_event_name.result │ │ │ │ ├── dml_metadata_locks.result │ │ │ │ ├── dml_mutex_instances.result │ │ │ │ ├── dml_os_global_by_type.result │ │ │ │ ├── dml_performance_timers.result │ │ │ │ ├── dml_prepared_statements_instances.result │ │ │ │ ├── dml_processlist.result │ │ │ │ ├── dml_replication_applier_configuration.result │ │ │ │ ├── dml_replication_applier_status.result │ │ │ │ ├── dml_replication_applier_status_by_coordinator.result │ │ │ │ ├── dml_replication_applier_status_by_worker.result │ │ │ │ ├── dml_replication_connection_configuration.result │ │ │ │ ├── dml_replication_connection_status.result │ │ │ │ ├── dml_replication_group_member_stats.result │ │ │ │ ├── dml_replication_group_members.result │ │ │ │ ├── dml_rwlock_instances.result │ │ │ │ ├── dml_session_account_connect_attrs.result │ │ │ │ ├── dml_session_connect_attrs.result │ │ │ │ ├── dml_session_status.result │ │ │ │ ├── dml_session_variables.result │ │ │ │ ├── dml_setup_actors.result │ │ │ │ ├── dml_setup_consumers.result │ │ │ │ ├── dml_setup_instruments.result │ │ │ │ ├── dml_setup_objects.result │ │ │ │ ├── dml_setup_timers.result │ │ │ │ ├── dml_socket_instances.result │ │ │ │ ├── dml_socket_summary_by_event_name.result │ │ │ │ ├── dml_socket_summary_by_instance.result │ │ │ │ ├── dml_status_by_account.result │ │ │ │ ├── dml_status_by_host.result │ │ │ │ ├── dml_status_by_thread.result │ │ │ │ ├── dml_status_by_user.result │ │ │ │ ├── dml_table_handles.result │ │ │ │ ├── dml_threads.result │ │ │ │ ├── dml_tiws_by_index_usage.result │ │ │ │ ├── dml_tiws_by_table.result │ │ │ │ ├── dml_tlws_by_table.result │ │ │ │ ├── dml_users.result │ │ │ │ ├── dml_uvar_by_thread.result │ │ │ │ ├── dml_variables_by_thread.result │ │ │ │ ├── event_aggregate.result │ │ │ │ ├── event_aggregate_no_a.result │ │ │ │ ├── event_aggregate_no_a_no_h.result │ │ │ │ ├── event_aggregate_no_a_no_u.result │ │ │ │ ├── event_aggregate_no_a_no_u_no_h.result │ │ │ │ ├── event_aggregate_no_h.result │ │ │ │ ├── event_aggregate_no_u.result │ │ │ │ ├── event_aggregate_no_u_no_h.result │ │ │ │ ├── file_misc.result │ │ │ │ ├── func_file_io.result │ │ │ │ ├── func_mutex.result │ │ │ │ ├── global_objects.result │ │ │ │ ├── global_read_lock.result │ │ │ │ ├── grant.result │ │ │ │ ├── hostcache_ipv4_addrinfo_again_allow.result │ │ │ │ ├── hostcache_ipv4_addrinfo_again_deny.result │ │ │ │ ├── hostcache_ipv4_addrinfo_bad_allow.result │ │ │ │ ├── hostcache_ipv4_addrinfo_bad_deny.result │ │ │ │ ├── hostcache_ipv4_addrinfo_good_allow.result │ │ │ │ ├── hostcache_ipv4_addrinfo_good_deny.result │ │ │ │ ├── hostcache_ipv4_addrinfo_noname_allow.result │ │ │ │ ├── hostcache_ipv4_addrinfo_noname_deny.result │ │ │ │ ├── hostcache_ipv4_auth_ed25519.result │ │ │ │ ├── hostcache_ipv4_auth_plugin.result │ │ │ │ ├── hostcache_ipv4_blocked.result │ │ │ │ ├── hostcache_ipv4_format.result │ │ │ │ ├── hostcache_ipv4_max_con.result │ │ │ │ ├── hostcache_ipv4_nameinfo_again_allow.result │ │ │ │ ├── hostcache_ipv4_nameinfo_again_deny.result │ │ │ │ ├── hostcache_ipv4_nameinfo_noname_allow.result │ │ │ │ ├── hostcache_ipv4_nameinfo_noname_deny.result │ │ │ │ ├── hostcache_ipv4_passwd.result │ │ │ │ ├── hostcache_ipv4_ssl.result │ │ │ │ ├── hostcache_ipv6_addrinfo_again_allow.result │ │ │ │ ├── hostcache_ipv6_addrinfo_again_deny.result │ │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow.result │ │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny.result │ │ │ │ ├── hostcache_ipv6_addrinfo_good_allow.result │ │ │ │ ├── hostcache_ipv6_addrinfo_good_deny.result │ │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow.result │ │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny.result │ │ │ │ ├── hostcache_ipv6_auth_plugin.result │ │ │ │ ├── hostcache_ipv6_blocked.result │ │ │ │ ├── hostcache_ipv6_max_con.result │ │ │ │ ├── hostcache_ipv6_nameinfo_again_allow.result │ │ │ │ ├── hostcache_ipv6_nameinfo_again_deny.result │ │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow.result │ │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny.result │ │ │ │ ├── hostcache_ipv6_passwd.result │ │ │ │ ├── hostcache_ipv6_ssl.result │ │ │ │ ├── hostcache_peer_addr.result │ │ │ │ ├── indexed_table_io.result │ │ │ │ ├── information_schema.result │ │ │ │ ├── innodb_events_transactions_history_long.result │ │ │ │ ├── innodb_table_io.result │ │ │ │ ├── io_cache.result │ │ │ │ ├── max_program_zero.result │ │ │ │ ├── mdl_func.result │ │ │ │ ├── memory_aggregate.result │ │ │ │ ├── memory_aggregate_32bit.result │ │ │ │ ├── memory_aggregate_no_a.result │ │ │ │ ├── memory_aggregate_no_a_no_h.result │ │ │ │ ├── memory_aggregate_no_a_no_u.result │ │ │ │ ├── memory_aggregate_no_a_no_u_no_h.result │ │ │ │ ├── memory_aggregate_no_h.result │ │ │ │ ├── memory_aggregate_no_u.result │ │ │ │ ├── memory_aggregate_no_u_no_h.result │ │ │ │ ├── memory_table_io.result │ │ │ │ ├── merge_table_io.result │ │ │ │ ├── misc.result │ │ │ │ ├── misc_global_status.result │ │ │ │ ├── mks_timer-6258.result │ │ │ │ ├── multi_table_io.result │ │ │ │ ├── myisam_file_io.result │ │ │ │ ├── myisam_table_io.result │ │ │ │ ├── nesting.result │ │ │ │ ├── no_threads.result │ │ │ │ ├── one_thread_per_con.result │ │ │ │ ├── ortho_iter.result │ │ │ │ ├── part_table_io.result │ │ │ │ ├── partition.result │ │ │ │ ├── pfs_upgrade_event.result │ │ │ │ ├── pfs_upgrade_func.result │ │ │ │ ├── pfs_upgrade_proc.result │ │ │ │ ├── pfs_upgrade_table.result │ │ │ │ ├── pfs_upgrade_view.result │ │ │ │ ├── prepared_statements.result │ │ │ │ ├── prepared_stmts_by_stored_programs.result │ │ │ │ ├── privilege.result │ │ │ │ ├── privilege_table_io.result │ │ │ │ ├── processlist.result │ │ │ │ ├── processlist_57.result │ │ │ │ ├── processlist_acl.result │ │ │ │ ├── processlist_anonymous.result │ │ │ │ ├── processlist_no_pfs.result │ │ │ │ ├── processlist_port.result │ │ │ │ ├── processlist_reg_user.result │ │ │ │ ├── query_cache.result │ │ │ │ ├── read_only.result │ │ │ │ ├── relaylog.result │ │ │ │ ├── rollback_table_io.result │ │ │ │ ├── rpl_group_member_stats.result │ │ │ │ ├── rpl_group_members.result │ │ │ │ ├── rpl_gtid_func.result │ │ │ │ ├── rpl_statements.result │ │ │ │ ├── rpl_threads.result │ │ │ │ ├── schema.result │ │ │ │ ├── selects.result │ │ │ │ ├── server_init.result │ │ │ │ ├── setup_actors.result │ │ │ │ ├── setup_actors_enabled.result │ │ │ │ ├── setup_actors_history.result │ │ │ │ ├── setup_consumers_defaults.result │ │ │ │ ├── setup_instruments_defaults.result │ │ │ │ ├── setup_object_table_lock_io.result │ │ │ │ ├── setup_objects.result │ │ │ │ ├── short_option_1.result │ │ │ │ ├── short_option_2.result │ │ │ │ ├── show_aggregate.result │ │ │ │ ├── show_coverage.result │ │ │ │ ├── show_misc.result │ │ │ │ ├── show_plugin.result │ │ │ │ ├── show_sanity.result │ │ │ │ ├── socket_connect.result │ │ │ │ ├── socket_instances_func.result │ │ │ │ ├── socket_instances_func_win.result │ │ │ │ ├── socket_summary_by_event_name_func.result │ │ │ │ ├── socket_summary_by_instance_func.result │ │ │ │ ├── socket_summary_by_instance_func_win.result │ │ │ │ ├── stage_mdl_function.result │ │ │ │ ├── stage_mdl_global.result │ │ │ │ ├── stage_mdl_procedure.result │ │ │ │ ├── stage_mdl_table.result │ │ │ │ ├── start_server_1_digest.result │ │ │ │ ├── start_server_disable_idle.result │ │ │ │ ├── start_server_disable_stages.result │ │ │ │ ├── start_server_disable_statements.result │ │ │ │ ├── start_server_disable_transactions.result │ │ │ │ ├── start_server_disable_waits.result │ │ │ │ ├── start_server_innodb.result │ │ │ │ ├── start_server_low_digest.result │ │ │ │ ├── start_server_low_digest_sql_length.result │ │ │ │ ├── start_server_low_index.result │ │ │ │ ├── start_server_low_table_lock.result │ │ │ │ ├── start_server_no_account.result │ │ │ │ ├── start_server_no_cond_class.result │ │ │ │ ├── start_server_no_cond_inst.result │ │ │ │ ├── start_server_no_digests.result │ │ │ │ ├── start_server_no_file_class.result │ │ │ │ ├── start_server_no_file_inst.result │ │ │ │ ├── start_server_no_host.result │ │ │ │ ├── start_server_no_index.result │ │ │ │ ├── start_server_no_mdl.result │ │ │ │ ├── start_server_no_memory_class.result │ │ │ │ ├── start_server_no_mutex_class.result │ │ │ │ ├── start_server_no_mutex_inst.result │ │ │ │ ├── start_server_no_prepared_stmts_instances.result │ │ │ │ ├── start_server_no_rwlock_class.result │ │ │ │ ├── start_server_no_rwlock_inst.result │ │ │ │ ├── start_server_no_setup_actors.result │ │ │ │ ├── start_server_no_setup_objects.result │ │ │ │ ├── start_server_no_socket_class.result │ │ │ │ ├── start_server_no_socket_inst.result │ │ │ │ ├── start_server_no_stage_class.result │ │ │ │ ├── start_server_no_stages_history.result │ │ │ │ ├── start_server_no_stages_history_long.result │ │ │ │ ├── start_server_no_statement_class.result │ │ │ │ ├── start_server_no_statements_history.result │ │ │ │ ├── start_server_no_statements_history_long.result │ │ │ │ ├── start_server_no_table_hdl.result │ │ │ │ ├── start_server_no_table_inst.result │ │ │ │ ├── start_server_no_table_lock.result │ │ │ │ ├── start_server_no_thread_class.result │ │ │ │ ├── start_server_no_thread_inst.result │ │ │ │ ├── start_server_no_transactions_history.result │ │ │ │ ├── start_server_no_transactions_history_long.result │ │ │ │ ├── start_server_no_user.result │ │ │ │ ├── start_server_no_waits_history.result │ │ │ │ ├── start_server_no_waits_history_long.result │ │ │ │ ├── start_server_nothing.result │ │ │ │ ├── start_server_off.result │ │ │ │ ├── start_server_on.result │ │ │ │ ├── start_server_variables.result │ │ │ │ ├── start_server_zero_digest_sql_length.result │ │ │ │ ├── statement_digest.result │ │ │ │ ├── statement_digest_charset.result │ │ │ │ ├── statement_digest_consumers.result │ │ │ │ ├── statement_digest_consumers2.result │ │ │ │ ├── statement_digest_long_query.result │ │ │ │ ├── statement_program_concurrency.result │ │ │ │ ├── statement_program_lost_inst.result │ │ │ │ ├── statement_program_nested.result │ │ │ │ ├── statement_program_nesting_event_check.result │ │ │ │ ├── statement_program_non_nested.result │ │ │ │ ├── status_reprepare.result │ │ │ │ ├── sxlock_func.result │ │ │ │ ├── table_aggregate_global_2u_2t.result │ │ │ │ ├── table_aggregate_global_2u_3t.result │ │ │ │ ├── table_aggregate_global_4u_2t.result │ │ │ │ ├── table_aggregate_global_4u_3t.result │ │ │ │ ├── table_aggregate_hist_2u_2t.result │ │ │ │ ├── table_aggregate_hist_2u_3t.result │ │ │ │ ├── table_aggregate_hist_4u_2t.result │ │ │ │ ├── table_aggregate_hist_4u_3t.result │ │ │ │ ├── table_aggregate_off.result │ │ │ │ ├── table_aggregate_thread_2u_2t.result │ │ │ │ ├── table_aggregate_thread_2u_3t.result │ │ │ │ ├── table_aggregate_thread_4u_2t.result │ │ │ │ ├── table_aggregate_thread_4u_3t.result │ │ │ │ ├── table_io_aggregate_global_2u_2t.result │ │ │ │ ├── table_io_aggregate_global_2u_3t.result │ │ │ │ ├── table_io_aggregate_global_4u_2t.result │ │ │ │ ├── table_io_aggregate_global_4u_3t.result │ │ │ │ ├── table_io_aggregate_hist_2u_2t.result │ │ │ │ ├── table_io_aggregate_hist_2u_3t.result │ │ │ │ ├── table_io_aggregate_hist_4u_2t.result │ │ │ │ ├── table_io_aggregate_hist_4u_3t.result │ │ │ │ ├── table_io_aggregate_thread_2u_2t.result │ │ │ │ ├── table_io_aggregate_thread_2u_3t.result │ │ │ │ ├── table_io_aggregate_thread_4u_2t.result │ │ │ │ ├── table_io_aggregate_thread_4u_3t.result │ │ │ │ ├── table_lock_aggregate_global_2u_2t.result │ │ │ │ ├── table_lock_aggregate_global_2u_3t.result │ │ │ │ ├── table_lock_aggregate_global_4u_2t.result │ │ │ │ ├── table_lock_aggregate_global_4u_3t.result │ │ │ │ ├── table_lock_aggregate_hist_2u_2t.result │ │ │ │ ├── table_lock_aggregate_hist_2u_3t.result │ │ │ │ ├── table_lock_aggregate_hist_4u_2t.result │ │ │ │ ├── table_lock_aggregate_hist_4u_3t.result │ │ │ │ ├── table_lock_aggregate_thread_2u_2t.result │ │ │ │ ├── table_lock_aggregate_thread_2u_3t.result │ │ │ │ ├── table_lock_aggregate_thread_4u_2t.result │ │ │ │ ├── table_lock_aggregate_thread_4u_3t.result │ │ │ │ ├── table_name.result │ │ │ │ ├── table_schema.result │ │ │ │ ├── temp_table_io.result │ │ │ │ ├── thread_cache.result │ │ │ │ ├── thread_misc.result │ │ │ │ ├── threads_history.result │ │ │ │ ├── threads_innodb.result │ │ │ │ ├── threads_insert_delayed.result │ │ │ │ ├── threads_mysql.result │ │ │ │ ├── threads_mysql_freebsd.result │ │ │ │ ├── threads_mysql_linux.result │ │ │ │ ├── threads_mysql_windows.result │ │ │ │ ├── transaction.result │ │ │ │ ├── transaction_gtid.result │ │ │ │ ├── transaction_nested_events.result │ │ │ │ ├── trigger_table_io.result │ │ │ │ ├── unary_digest.result │ │ │ │ ├── update_order-3837.result │ │ │ │ ├── user_var_func.result │ │ │ │ └── view_table_io.result │ │ │ └── t/ │ │ │ ├── all_tests.test │ │ │ ├── alter_table_progress.test │ │ │ ├── bad_option.test │ │ │ ├── batch_table_io_func.test │ │ │ ├── binlog_edge_mix-master.opt │ │ │ ├── binlog_edge_mix.test │ │ │ ├── binlog_edge_row-master.opt │ │ │ ├── binlog_edge_row.test │ │ │ ├── binlog_edge_stmt-master.opt │ │ │ ├── binlog_edge_stmt.test │ │ │ ├── binlog_mix.test │ │ │ ├── binlog_ok_mix-master.opt │ │ │ ├── binlog_ok_mix.test │ │ │ ├── binlog_ok_row-master.opt │ │ │ ├── binlog_ok_row.test │ │ │ ├── binlog_ok_stmt-master.opt │ │ │ ├── binlog_ok_stmt.test │ │ │ ├── binlog_row.test │ │ │ ├── binlog_stmt.test │ │ │ ├── checksum.test │ │ │ ├── cnf_option.cnf │ │ │ ├── cnf_option.test │ │ │ ├── column_privilege.test │ │ │ ├── connect_attrs.test │ │ │ ├── connection.test │ │ │ ├── connection_3a-master.opt │ │ │ ├── connection_3a.test │ │ │ ├── connection_3a_3u-master.opt │ │ │ ├── connection_3a_3u.test │ │ │ ├── connection_3u-master.opt │ │ │ ├── connection_3u.test │ │ │ ├── connection_type_notwin.test │ │ │ ├── connection_type_win.test │ │ │ ├── csv_table_io.test │ │ │ ├── ddl_accounts.test │ │ │ ├── ddl_cond_instances.test │ │ │ ├── ddl_esgs_by_account_by_event_name.test │ │ │ ├── ddl_esgs_by_host_by_event_name.test │ │ │ ├── ddl_esgs_by_thread_by_event_name.test │ │ │ ├── ddl_esgs_by_user_by_event_name.test │ │ │ ├── ddl_esgs_global_by_event_name.test │ │ │ ├── ddl_esms_by_account_by_event_name.test │ │ │ ├── ddl_esms_by_digest.test │ │ │ ├── ddl_esms_by_host_by_event_name.test │ │ │ ├── ddl_esms_by_program.test │ │ │ ├── ddl_esms_by_thread_by_event_name.test │ │ │ ├── ddl_esms_by_user_by_event_name.test │ │ │ ├── ddl_esms_global_by_event_name.test │ │ │ ├── ddl_ets_by_account_by_event_name.test │ │ │ ├── ddl_ets_by_host_by_event_name.test │ │ │ ├── ddl_ets_by_thread_by_event_name.test │ │ │ ├── ddl_ets_by_user_by_event_name.test │ │ │ ├── ddl_ets_global_by_event_name.test │ │ │ ├── ddl_events_stages_current.test │ │ │ ├── ddl_events_stages_history.test │ │ │ ├── ddl_events_stages_history_long.test │ │ │ ├── ddl_events_statements_current.test │ │ │ ├── ddl_events_statements_history.test │ │ │ ├── ddl_events_statements_history_long.test │ │ │ ├── ddl_events_transactions_current.test │ │ │ ├── ddl_events_transactions_history.test │ │ │ ├── ddl_events_transactions_history_long.test │ │ │ ├── ddl_events_waits_current.test │ │ │ ├── ddl_events_waits_history.test │ │ │ ├── ddl_events_waits_history_long.test │ │ │ ├── ddl_ews_by_account_by_event_name.test │ │ │ ├── ddl_ews_by_host_by_event_name.test │ │ │ ├── ddl_ews_by_instance.test │ │ │ ├── ddl_ews_by_thread_by_event_name.test │ │ │ ├── ddl_ews_by_user_by_event_name.test │ │ │ ├── ddl_ews_global_by_event_name.test │ │ │ ├── ddl_file_instances.test │ │ │ ├── ddl_fs_by_event_name.test │ │ │ ├── ddl_fs_by_instance.test │ │ │ ├── ddl_global_status.test │ │ │ ├── ddl_global_variables.test │ │ │ ├── ddl_host_cache.test │ │ │ ├── ddl_hosts.test │ │ │ ├── ddl_mems_by_account_by_event_name.test │ │ │ ├── ddl_mems_by_host_by_event_name.test │ │ │ ├── ddl_mems_by_thread_by_event_name.test │ │ │ ├── ddl_mems_by_user_by_event_name.test │ │ │ ├── ddl_mems_global_by_event_name.test │ │ │ ├── ddl_metadata_locks.test │ │ │ ├── ddl_mutex_instances.test │ │ │ ├── ddl_os_global_by_type.test │ │ │ ├── ddl_performance_timers.test │ │ │ ├── ddl_prepared_statements_instances.test │ │ │ ├── ddl_processlist.test │ │ │ ├── ddl_replication_applier_configuration.test │ │ │ ├── ddl_replication_applier_status.test │ │ │ ├── ddl_replication_applier_status_by_coordinator.test │ │ │ ├── ddl_replication_applier_status_by_worker.test │ │ │ ├── ddl_replication_connection_configuration.test │ │ │ ├── ddl_replication_connection_status.test │ │ │ ├── ddl_replication_group_member_stats.test │ │ │ ├── ddl_replication_group_members.test │ │ │ ├── ddl_rwlock_instances.test │ │ │ ├── ddl_session_account_connect_attrs.test │ │ │ ├── ddl_session_connect_attrs.test │ │ │ ├── ddl_session_status.test │ │ │ ├── ddl_session_variables.test │ │ │ ├── ddl_setup_actors.test │ │ │ ├── ddl_setup_consumers.test │ │ │ ├── ddl_setup_instruments.test │ │ │ ├── ddl_setup_objects.test │ │ │ ├── ddl_setup_timers.test │ │ │ ├── ddl_socket_instances.test │ │ │ ├── ddl_socket_summary_by_event_name.test │ │ │ ├── ddl_socket_summary_by_instance.test │ │ │ ├── ddl_status_by_account.test │ │ │ ├── ddl_status_by_host.test │ │ │ ├── ddl_status_by_thread.test │ │ │ ├── ddl_status_by_user.test │ │ │ ├── ddl_table_handles.test │ │ │ ├── ddl_threads.test │ │ │ ├── ddl_tiws_by_index_usage.test │ │ │ ├── ddl_tiws_by_table.test │ │ │ ├── ddl_tlws_by_table.test │ │ │ ├── ddl_users.test │ │ │ ├── ddl_uvar_by_thread.test │ │ │ ├── ddl_variables_by_thread.test │ │ │ ├── digest_null_literal.test │ │ │ ├── digest_table_full-master.opt │ │ │ ├── digest_table_full.test │ │ │ ├── digest_view.test │ │ │ ├── disabled.def │ │ │ ├── discovery.test │ │ │ ├── dml_accounts.test │ │ │ ├── dml_cond_instances.test │ │ │ ├── dml_esgs_by_account_by_event_name.test │ │ │ ├── dml_esgs_by_host_by_event_name.test │ │ │ ├── dml_esgs_by_thread_by_event_name.test │ │ │ ├── dml_esgs_by_user_by_event_name.test │ │ │ ├── dml_esgs_global_by_event_name.test │ │ │ ├── dml_esms_by_account_by_event_name.test │ │ │ ├── dml_esms_by_digest.test │ │ │ ├── dml_esms_by_host_by_event_name.test │ │ │ ├── dml_esms_by_program.test │ │ │ ├── dml_esms_by_thread_by_event_name.test │ │ │ ├── dml_esms_by_user_by_event_name.test │ │ │ ├── dml_esms_global_by_event_name.test │ │ │ ├── dml_ets_by_account_by_event_name.test │ │ │ ├── dml_ets_by_host_by_event_name.test │ │ │ ├── dml_ets_by_thread_by_event_name.test │ │ │ ├── dml_ets_by_user_by_event_name.test │ │ │ ├── dml_ets_global_by_event_name.test │ │ │ ├── dml_events_stages_current.test │ │ │ ├── dml_events_stages_history.test │ │ │ ├── dml_events_stages_history_long.test │ │ │ ├── dml_events_statements_current.test │ │ │ ├── dml_events_statements_history.test │ │ │ ├── dml_events_statements_history_long.test │ │ │ ├── dml_events_transactions_current.test │ │ │ ├── dml_events_transactions_history.test │ │ │ ├── dml_events_transactions_history_long.test │ │ │ ├── dml_events_waits_current.test │ │ │ ├── dml_events_waits_history.test │ │ │ ├── dml_events_waits_history_long.test │ │ │ ├── dml_ews_by_account_by_event_name.test │ │ │ ├── dml_ews_by_host_by_event_name.test │ │ │ ├── dml_ews_by_instance.test │ │ │ ├── dml_ews_by_thread_by_event_name.test │ │ │ ├── dml_ews_by_user_by_event_name.test │ │ │ ├── dml_ews_global_by_event_name.test │ │ │ ├── dml_file_instances.test │ │ │ ├── dml_fs_by_event_name.test │ │ │ ├── dml_fs_by_instance.test │ │ │ ├── dml_global_status.test │ │ │ ├── dml_global_variables.test │ │ │ ├── dml_handler.test │ │ │ ├── dml_host_cache.test │ │ │ ├── dml_hosts.test │ │ │ ├── dml_mems_by_account_by_event_name.test │ │ │ ├── dml_mems_by_host_by_event_name.test │ │ │ ├── dml_mems_by_thread_by_event_name.test │ │ │ ├── dml_mems_by_user_by_event_name.test │ │ │ ├── dml_mems_global_by_event_name.test │ │ │ ├── dml_metadata_locks.test │ │ │ ├── dml_mutex_instances.test │ │ │ ├── dml_os_global_by_type.test │ │ │ ├── dml_performance_timers.test │ │ │ ├── dml_prepared_statements_instances.test │ │ │ ├── dml_processlist.test │ │ │ ├── dml_replication_applier_configuration.test │ │ │ ├── dml_replication_applier_status.test │ │ │ ├── dml_replication_applier_status_by_coordinator.test │ │ │ ├── dml_replication_applier_status_by_worker.test │ │ │ ├── dml_replication_connection_configuration.test │ │ │ ├── dml_replication_connection_status.test │ │ │ ├── dml_replication_group_member_stats.test │ │ │ ├── dml_replication_group_members.test │ │ │ ├── dml_rwlock_instances.test │ │ │ ├── dml_session_account_connect_attrs.test │ │ │ ├── dml_session_connect_attrs.test │ │ │ ├── dml_session_status.test │ │ │ ├── dml_session_variables.test │ │ │ ├── dml_setup_actors.test │ │ │ ├── dml_setup_consumers.test │ │ │ ├── dml_setup_instruments.test │ │ │ ├── dml_setup_objects.test │ │ │ ├── dml_setup_timers.test │ │ │ ├── dml_socket_instances.test │ │ │ ├── dml_socket_summary_by_event_name.test │ │ │ ├── dml_socket_summary_by_instance.test │ │ │ ├── dml_status_by_account.test │ │ │ ├── dml_status_by_host.test │ │ │ ├── dml_status_by_thread.test │ │ │ ├── dml_status_by_user.test │ │ │ ├── dml_table_handles.test │ │ │ ├── dml_threads.test │ │ │ ├── dml_tiws_by_index_usage.test │ │ │ ├── dml_tiws_by_table.test │ │ │ ├── dml_tlws_by_table.test │ │ │ ├── dml_users.test │ │ │ ├── dml_uvar_by_thread.test │ │ │ ├── dml_variables_by_thread.test │ │ │ ├── event_aggregate-master.opt │ │ │ ├── event_aggregate.test │ │ │ ├── event_aggregate_no_a-master.opt │ │ │ ├── event_aggregate_no_a.test │ │ │ ├── event_aggregate_no_a_no_h-master.opt │ │ │ ├── event_aggregate_no_a_no_h.test │ │ │ ├── event_aggregate_no_a_no_u-master.opt │ │ │ ├── event_aggregate_no_a_no_u.test │ │ │ ├── event_aggregate_no_a_no_u_no_h-master.opt │ │ │ ├── event_aggregate_no_a_no_u_no_h.test │ │ │ ├── event_aggregate_no_h-master.opt │ │ │ ├── event_aggregate_no_h.test │ │ │ ├── event_aggregate_no_u-master.opt │ │ │ ├── event_aggregate_no_u.test │ │ │ ├── event_aggregate_no_u_no_h-master.opt │ │ │ ├── event_aggregate_no_u_no_h.test │ │ │ ├── file_misc-master.opt │ │ │ ├── file_misc.test │ │ │ ├── func_file_io.test │ │ │ ├── func_mutex.test │ │ │ ├── global_objects-master.opt │ │ │ ├── global_objects.test │ │ │ ├── global_read_lock.test │ │ │ ├── grant.test │ │ │ ├── hostcache_ipv4_addrinfo_again_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_again_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_bad_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_bad_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_good_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_good_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_noname_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_noname_deny.test │ │ │ ├── hostcache_ipv4_auth_ed25519.test │ │ │ ├── hostcache_ipv4_auth_plugin.test │ │ │ ├── hostcache_ipv4_blocked.test │ │ │ ├── hostcache_ipv4_format.test │ │ │ ├── hostcache_ipv4_max_con-master.opt │ │ │ ├── hostcache_ipv4_max_con.test │ │ │ ├── hostcache_ipv4_nameinfo_again_allow.test │ │ │ ├── hostcache_ipv4_nameinfo_again_deny.test │ │ │ ├── hostcache_ipv4_nameinfo_noname_allow.test │ │ │ ├── hostcache_ipv4_nameinfo_noname_deny.test │ │ │ ├── hostcache_ipv4_passwd.test │ │ │ ├── hostcache_ipv4_ssl.test │ │ │ ├── hostcache_ipv6_addrinfo_again_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_again_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_again_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_again_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_good_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_good_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_good_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_good_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny.test │ │ │ ├── hostcache_ipv6_auth_plugin-master.opt │ │ │ ├── hostcache_ipv6_auth_plugin.test │ │ │ ├── hostcache_ipv6_blocked-master.opt │ │ │ ├── hostcache_ipv6_blocked.test │ │ │ ├── hostcache_ipv6_max_con-master.opt │ │ │ ├── hostcache_ipv6_max_con.test │ │ │ ├── hostcache_ipv6_nameinfo_again_allow-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_again_allow.test │ │ │ ├── hostcache_ipv6_nameinfo_again_deny-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_again_deny.test │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow.test │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny.test │ │ │ ├── hostcache_ipv6_passwd-master.opt │ │ │ ├── hostcache_ipv6_passwd.test │ │ │ ├── hostcache_ipv6_ssl-master.opt │ │ │ ├── hostcache_ipv6_ssl.test │ │ │ ├── hostcache_peer_addr.test │ │ │ ├── indexed_table_io.test │ │ │ ├── information_schema.test │ │ │ ├── innodb_events_transactions_history_long.test │ │ │ ├── innodb_table_io.test │ │ │ ├── io_cache-master.opt │ │ │ ├── io_cache.test │ │ │ ├── max_program_zero-master.opt │ │ │ ├── max_program_zero.test │ │ │ ├── mdl_func.test │ │ │ ├── memory_aggregate-master.opt │ │ │ ├── memory_aggregate.test │ │ │ ├── memory_aggregate_32bit-master.opt │ │ │ ├── memory_aggregate_32bit.test │ │ │ ├── memory_aggregate_no_a-master.opt │ │ │ ├── memory_aggregate_no_a.test │ │ │ ├── memory_aggregate_no_a_no_h-master.opt │ │ │ ├── memory_aggregate_no_a_no_h.test │ │ │ ├── memory_aggregate_no_a_no_u-master.opt │ │ │ ├── memory_aggregate_no_a_no_u.test │ │ │ ├── memory_aggregate_no_a_no_u_no_h-master.opt │ │ │ ├── memory_aggregate_no_a_no_u_no_h.test │ │ │ ├── memory_aggregate_no_h-master.opt │ │ │ ├── memory_aggregate_no_h.test │ │ │ ├── memory_aggregate_no_u-master.opt │ │ │ ├── memory_aggregate_no_u.test │ │ │ ├── memory_aggregate_no_u_no_h-master.opt │ │ │ ├── memory_aggregate_no_u_no_h.test │ │ │ ├── memory_table_io.test │ │ │ ├── merge_table_io.test │ │ │ ├── misc.test │ │ │ ├── misc_global_status-master.opt │ │ │ ├── misc_global_status.test │ │ │ ├── mks_timer-6258.test │ │ │ ├── multi_table_io.test │ │ │ ├── myisam_file_io.opt │ │ │ ├── myisam_file_io.test │ │ │ ├── myisam_table_io.test │ │ │ ├── nesting.test │ │ │ ├── no_threads-master.opt │ │ │ ├── no_threads.test │ │ │ ├── one_thread_per_con-master.opt │ │ │ ├── one_thread_per_con.test │ │ │ ├── ortho_iter.test │ │ │ ├── part_table_io.test │ │ │ ├── partition.test │ │ │ ├── pfs_upgrade_event-master.opt │ │ │ ├── pfs_upgrade_event.test │ │ │ ├── pfs_upgrade_func-master.opt │ │ │ ├── pfs_upgrade_func.test │ │ │ ├── pfs_upgrade_proc-master.opt │ │ │ ├── pfs_upgrade_proc.test │ │ │ ├── pfs_upgrade_table-master.opt │ │ │ ├── pfs_upgrade_table.test │ │ │ ├── pfs_upgrade_view-master.opt │ │ │ ├── pfs_upgrade_view.test │ │ │ ├── prepared_statements.test │ │ │ ├── prepared_stmts_by_stored_programs.test │ │ │ ├── privilege.test │ │ │ ├── privilege_table_io.test │ │ │ ├── processlist-master.opt │ │ │ ├── processlist.test │ │ │ ├── processlist_57.test │ │ │ ├── processlist_acl-master.opt │ │ │ ├── processlist_acl.test │ │ │ ├── processlist_anonymous.test │ │ │ ├── processlist_no_pfs-master.opt │ │ │ ├── processlist_no_pfs.test │ │ │ ├── processlist_port-master.opt │ │ │ ├── processlist_port.test │ │ │ ├── processlist_reg_user.test │ │ │ ├── query_cache-master.opt │ │ │ ├── query_cache.test │ │ │ ├── read_only.test │ │ │ ├── relaylog.test │ │ │ ├── rollback_table_io.test │ │ │ ├── rpl_group_member_stats.test │ │ │ ├── rpl_group_members.test │ │ │ ├── rpl_gtid_func.test │ │ │ ├── rpl_statements.test │ │ │ ├── rpl_threads.test │ │ │ ├── schema.test │ │ │ ├── selects-master.opt │ │ │ ├── selects.test │ │ │ ├── server_init.test │ │ │ ├── setup_actors.test │ │ │ ├── setup_actors_enabled.test │ │ │ ├── setup_actors_history.test │ │ │ ├── setup_consumers_defaults-master.opt │ │ │ ├── setup_consumers_defaults.test │ │ │ ├── setup_instruments_defaults-master.opt │ │ │ ├── setup_instruments_defaults.test │ │ │ ├── setup_object_table_lock_io.test │ │ │ ├── setup_objects.test │ │ │ ├── short_option_1-master.opt │ │ │ ├── short_option_1.test │ │ │ ├── short_option_2-master.opt │ │ │ ├── short_option_2.test │ │ │ ├── show_aggregate.test │ │ │ ├── show_coverage.test │ │ │ ├── show_misc.test │ │ │ ├── show_plugin.test │ │ │ ├── show_sanity.test │ │ │ ├── socket_connect.test │ │ │ ├── socket_instances_func-master.opt │ │ │ ├── socket_instances_func.test │ │ │ ├── socket_instances_func_win-master.opt │ │ │ ├── socket_instances_func_win.test │ │ │ ├── socket_summary_by_event_name_func.test │ │ │ ├── socket_summary_by_instance_func.test │ │ │ ├── socket_summary_by_instance_func_win.test │ │ │ ├── stage_mdl_function.test │ │ │ ├── stage_mdl_global.opt │ │ │ ├── stage_mdl_global.test │ │ │ ├── stage_mdl_procedure.test │ │ │ ├── stage_mdl_table.test │ │ │ ├── start_server_1_digest-master.opt │ │ │ ├── start_server_1_digest.test │ │ │ ├── start_server_disable_idle-master.opt │ │ │ ├── start_server_disable_idle.test │ │ │ ├── start_server_disable_stages-master.opt │ │ │ ├── start_server_disable_stages.test │ │ │ ├── start_server_disable_statements-master.opt │ │ │ ├── start_server_disable_statements.test │ │ │ ├── start_server_disable_transactions-master.opt │ │ │ ├── start_server_disable_transactions.test │ │ │ ├── start_server_disable_waits-master.opt │ │ │ ├── start_server_disable_waits.test │ │ │ ├── start_server_innodb-master.opt │ │ │ ├── start_server_innodb.test │ │ │ ├── start_server_low_digest-master.opt │ │ │ ├── start_server_low_digest.test │ │ │ ├── start_server_low_digest_sql_length-master.opt │ │ │ ├── start_server_low_digest_sql_length.test │ │ │ ├── start_server_low_index-master.opt │ │ │ ├── start_server_low_index.test │ │ │ ├── start_server_low_table_lock-master.opt │ │ │ ├── start_server_low_table_lock.test │ │ │ ├── start_server_no_account-master.opt │ │ │ ├── start_server_no_account.test │ │ │ ├── start_server_no_cond_class-master.opt │ │ │ ├── start_server_no_cond_class.test │ │ │ ├── start_server_no_cond_inst-master.opt │ │ │ ├── start_server_no_cond_inst.test │ │ │ ├── start_server_no_digests-master.opt │ │ │ ├── start_server_no_digests.test │ │ │ ├── start_server_no_file_class-master.opt │ │ │ ├── start_server_no_file_class.test │ │ │ ├── start_server_no_file_inst-master.opt │ │ │ ├── start_server_no_file_inst.test │ │ │ ├── start_server_no_host-master.opt │ │ │ ├── start_server_no_host.test │ │ │ ├── start_server_no_index-master.opt │ │ │ ├── start_server_no_index.test │ │ │ ├── start_server_no_mdl-master.opt │ │ │ ├── start_server_no_mdl.test │ │ │ ├── start_server_no_memory_class-master.opt │ │ │ ├── start_server_no_memory_class.test │ │ │ ├── start_server_no_mutex_class-master.opt │ │ │ ├── start_server_no_mutex_class.test │ │ │ ├── start_server_no_mutex_inst-master.opt │ │ │ ├── start_server_no_mutex_inst.test │ │ │ ├── start_server_no_prepared_stmts_instances-master.opt │ │ │ ├── start_server_no_prepared_stmts_instances.test │ │ │ ├── start_server_no_rwlock_class-master.opt │ │ │ ├── start_server_no_rwlock_class.test │ │ │ ├── start_server_no_rwlock_inst-master.opt │ │ │ ├── start_server_no_rwlock_inst.test │ │ │ ├── start_server_no_setup_actors-master.opt │ │ │ ├── start_server_no_setup_actors.test │ │ │ ├── start_server_no_setup_objects-master.opt │ │ │ ├── start_server_no_setup_objects.test │ │ │ ├── start_server_no_socket_class-master.opt │ │ │ ├── start_server_no_socket_class.test │ │ │ ├── start_server_no_socket_inst-master.opt │ │ │ ├── start_server_no_socket_inst.test │ │ │ ├── start_server_no_stage_class-master.opt │ │ │ ├── start_server_no_stage_class.test │ │ │ ├── start_server_no_stages_history-master.opt │ │ │ ├── start_server_no_stages_history.test │ │ │ ├── start_server_no_stages_history_long-master.opt │ │ │ ├── start_server_no_stages_history_long.test │ │ │ ├── start_server_no_statement_class-master.opt │ │ │ ├── start_server_no_statement_class.test │ │ │ ├── start_server_no_statements_history-master.opt │ │ │ ├── start_server_no_statements_history.test │ │ │ ├── start_server_no_statements_history_long-master.opt │ │ │ ├── start_server_no_statements_history_long.test │ │ │ ├── start_server_no_table_hdl-master.opt │ │ │ ├── start_server_no_table_hdl.test │ │ │ ├── start_server_no_table_inst-master.opt │ │ │ ├── start_server_no_table_inst.test │ │ │ ├── start_server_no_table_lock-master.opt │ │ │ ├── start_server_no_table_lock.test │ │ │ ├── start_server_no_thread_class-master.opt │ │ │ ├── start_server_no_thread_class.test │ │ │ ├── start_server_no_thread_inst-master.opt │ │ │ ├── start_server_no_thread_inst.test │ │ │ ├── start_server_no_transactions_history-master.opt │ │ │ ├── start_server_no_transactions_history.test │ │ │ ├── start_server_no_transactions_history_long-master.opt │ │ │ ├── start_server_no_transactions_history_long.test │ │ │ ├── start_server_no_user-master.opt │ │ │ ├── start_server_no_user.test │ │ │ ├── start_server_no_waits_history-master.opt │ │ │ ├── start_server_no_waits_history.test │ │ │ ├── start_server_no_waits_history_long-master.opt │ │ │ ├── start_server_no_waits_history_long.test │ │ │ ├── start_server_nothing-master.opt │ │ │ ├── start_server_nothing.test │ │ │ ├── start_server_off-master.opt │ │ │ ├── start_server_off.test │ │ │ ├── start_server_on-master.opt │ │ │ ├── start_server_on.test │ │ │ ├── start_server_variables.test │ │ │ ├── start_server_zero_digest_sql_length-master.opt │ │ │ ├── start_server_zero_digest_sql_length.test │ │ │ ├── statement_digest.test │ │ │ ├── statement_digest_charset.test │ │ │ ├── statement_digest_consumers-master.opt │ │ │ ├── statement_digest_consumers.test │ │ │ ├── statement_digest_consumers2-master.opt │ │ │ ├── statement_digest_consumers2.test │ │ │ ├── statement_digest_long_query-master.opt │ │ │ ├── statement_digest_long_query.test │ │ │ ├── statement_program_concurrency-master.opt │ │ │ ├── statement_program_concurrency.test │ │ │ ├── statement_program_lost_inst-master.opt │ │ │ ├── statement_program_lost_inst.test │ │ │ ├── statement_program_nested-master.opt │ │ │ ├── statement_program_nested.test │ │ │ ├── statement_program_nesting_event_check-master.opt │ │ │ ├── statement_program_nesting_event_check.test │ │ │ ├── statement_program_non_nested-master.opt │ │ │ ├── statement_program_non_nested.test │ │ │ ├── status_reprepare.test │ │ │ ├── sxlock_func.test │ │ │ ├── table_aggregate_global_2u_2t.test │ │ │ ├── table_aggregate_global_2u_3t.test │ │ │ ├── table_aggregate_global_4u_2t.test │ │ │ ├── table_aggregate_global_4u_3t.test │ │ │ ├── table_aggregate_hist_2u_2t.test │ │ │ ├── table_aggregate_hist_2u_3t.test │ │ │ ├── table_aggregate_hist_4u_2t.test │ │ │ ├── table_aggregate_hist_4u_3t.test │ │ │ ├── table_aggregate_off.test │ │ │ ├── table_aggregate_thread_2u_2t.test │ │ │ ├── table_aggregate_thread_2u_3t.test │ │ │ ├── table_aggregate_thread_4u_2t.test │ │ │ ├── table_aggregate_thread_4u_3t.test │ │ │ ├── table_io_aggregate_global_2u_2t.test │ │ │ ├── table_io_aggregate_global_2u_3t.test │ │ │ ├── table_io_aggregate_global_4u_2t.test │ │ │ ├── table_io_aggregate_global_4u_3t.test │ │ │ ├── table_io_aggregate_hist_2u_2t.test │ │ │ ├── table_io_aggregate_hist_2u_3t.test │ │ │ ├── table_io_aggregate_hist_4u_2t.test │ │ │ ├── table_io_aggregate_hist_4u_3t.test │ │ │ ├── table_io_aggregate_thread_2u_2t.test │ │ │ ├── table_io_aggregate_thread_2u_3t.test │ │ │ ├── table_io_aggregate_thread_4u_2t.test │ │ │ ├── table_io_aggregate_thread_4u_3t.test │ │ │ ├── table_lock_aggregate_global_2u_2t.test │ │ │ ├── table_lock_aggregate_global_2u_3t.test │ │ │ ├── table_lock_aggregate_global_4u_2t.test │ │ │ ├── table_lock_aggregate_global_4u_3t.test │ │ │ ├── table_lock_aggregate_hist_2u_2t.test │ │ │ ├── table_lock_aggregate_hist_2u_3t.test │ │ │ ├── table_lock_aggregate_hist_4u_2t.test │ │ │ ├── table_lock_aggregate_hist_4u_3t.test │ │ │ ├── table_lock_aggregate_thread_2u_2t.test │ │ │ ├── table_lock_aggregate_thread_2u_3t.test │ │ │ ├── table_lock_aggregate_thread_4u_2t.test │ │ │ ├── table_lock_aggregate_thread_4u_3t.test │ │ │ ├── table_name.test │ │ │ ├── table_schema.test │ │ │ ├── temp_table_io.test │ │ │ ├── thread_cache-master.opt │ │ │ ├── thread_cache.test │ │ │ ├── thread_misc-master.opt │ │ │ ├── thread_misc.test │ │ │ ├── threads_history.test │ │ │ ├── threads_innodb.test │ │ │ ├── threads_mysql-master.opt │ │ │ ├── threads_mysql.test │ │ │ ├── threads_mysql_freebsd.test │ │ │ ├── threads_mysql_linux.test │ │ │ ├── threads_mysql_windows.test │ │ │ ├── transaction-master.opt │ │ │ ├── transaction.test │ │ │ ├── transaction_gtid.test │ │ │ ├── transaction_nested_events-master.opt │ │ │ ├── transaction_nested_events.test │ │ │ ├── trigger_table_io.test │ │ │ ├── unary_digest.test │ │ │ ├── update_order-3837.test │ │ │ ├── user_var_func.test │ │ │ └── view_table_io.test │ │ ├── perfschema_stress/ │ │ │ ├── README │ │ │ ├── include/ │ │ │ │ └── settings.inc │ │ │ ├── r/ │ │ │ │ ├── modify.result │ │ │ │ ├── read.result │ │ │ │ └── work.result │ │ │ ├── stress_init.txt │ │ │ ├── stress_tests.txt │ │ │ └── t/ │ │ │ ├── modify.test │ │ │ ├── read.test │ │ │ ├── setup.test │ │ │ └── work.test │ │ ├── period/ │ │ │ ├── create_triggers.inc │ │ │ ├── engines.combinations │ │ │ ├── engines.inc │ │ │ ├── r/ │ │ │ │ ├── alter.result │ │ │ │ ├── create.result │ │ │ │ ├── delete,myisam.rdiff │ │ │ │ ├── delete.result │ │ │ │ ├── long_unique.result │ │ │ │ ├── overlaps.result │ │ │ │ ├── update.result │ │ │ │ └── versioning.result │ │ │ └── t/ │ │ │ ├── alter.test │ │ │ ├── create.test │ │ │ ├── delete.test │ │ │ ├── long_unique.test │ │ │ ├── overlaps.test │ │ │ ├── update.test │ │ │ └── versioning.test │ │ ├── plugins/ │ │ │ ├── disabled.def │ │ │ ├── r/ │ │ │ │ ├── audit_null.result │ │ │ │ ├── audit_null_debug.result │ │ │ │ ├── auth_ed25519.result │ │ │ │ ├── auth_v0100.result │ │ │ │ ├── binlog-simple_plugin_check.result │ │ │ │ ├── cracklib_password_check.result │ │ │ │ ├── dialog.result │ │ │ │ ├── false_dupes-6543.result │ │ │ │ ├── feedback_plugin_install.result │ │ │ │ ├── feedback_plugin_load.result │ │ │ │ ├── feedback_plugin_send.result │ │ │ │ ├── fulltext_plugin.result │ │ │ │ ├── locales.result │ │ │ │ ├── max_password_errors_auth_named_pipe.result │ │ │ │ ├── max_password_errors_auth_socket.result │ │ │ │ ├── multiauth.result │ │ │ │ ├── pam.result │ │ │ │ ├── pam_cleartext.result │ │ │ │ ├── pam_v1.result │ │ │ │ ├── processlist.result │ │ │ │ ├── qc_info.result │ │ │ │ ├── qc_info_priv.result │ │ │ │ ├── server_audit.result │ │ │ │ ├── show_all_plugins.result │ │ │ │ ├── simple_password_check.result │ │ │ │ ├── sql_error_log.result │ │ │ │ ├── test_sql_service.result │ │ │ │ ├── thread_pool_server_audit.result │ │ │ │ ├── two_password_validations.result │ │ │ │ └── unix_socket.result │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── audit_null.test │ │ │ ├── audit_null_debug.test │ │ │ ├── auth_ed25519.test │ │ │ ├── auth_v0100.test │ │ │ ├── binlog-simple_plugin_check.test │ │ │ ├── cracklib_password_check.test │ │ │ ├── dialog.test │ │ │ ├── false_dupes-6543.test │ │ │ ├── feedback_plugin_install.opt │ │ │ ├── feedback_plugin_install.test │ │ │ ├── feedback_plugin_load.opt │ │ │ ├── feedback_plugin_load.test │ │ │ ├── feedback_plugin_send.test │ │ │ ├── fulltext_plugin.test │ │ │ ├── locales.opt │ │ │ ├── locales.test │ │ │ ├── max_password_errors_auth_named_pipe.opt │ │ │ ├── max_password_errors_auth_named_pipe.test │ │ │ ├── max_password_errors_auth_socket.opt │ │ │ ├── max_password_errors_auth_socket.test │ │ │ ├── multiauth.test │ │ │ ├── pam.test │ │ │ ├── pam_cleartext.opt │ │ │ ├── pam_cleartext.test │ │ │ ├── pam_init.inc │ │ │ ├── pam_v1.test │ │ │ ├── processlist.test │ │ │ ├── qc_info.test │ │ │ ├── qc_info_init.inc │ │ │ ├── qc_info_init.opt │ │ │ ├── qc_info_priv.test │ │ │ ├── server_audit.opt │ │ │ ├── server_audit.test │ │ │ ├── show_all_plugins.test │ │ │ ├── simple_password_check.test │ │ │ ├── sql_error_log.test │ │ │ ├── test_sql_service.opt │ │ │ ├── test_sql_service.test │ │ │ ├── thread_pool_server_audit.opt │ │ │ ├── thread_pool_server_audit.test │ │ │ ├── two_password_validations.test │ │ │ └── unix_socket.test │ │ ├── roles/ │ │ │ ├── acl_load_mutex-5170.result │ │ │ ├── acl_load_mutex-5170.test │ │ │ ├── acl_statistics.opt │ │ │ ├── acl_statistics.result │ │ │ ├── acl_statistics.test │ │ │ ├── admin.result │ │ │ ├── admin.test │ │ │ ├── create_and_drop_current.result │ │ │ ├── create_and_drop_current.test │ │ │ ├── create_and_drop_role.result │ │ │ ├── create_and_drop_role.test │ │ │ ├── create_and_drop_role_invalid_user_table.result │ │ │ ├── create_and_drop_role_invalid_user_table.test │ │ │ ├── create_and_grant_role.result │ │ │ ├── create_and_grant_role.test │ │ │ ├── current_role_view-12666.result │ │ │ ├── current_role_view-12666.test │ │ │ ├── default_create_user_not_role.result │ │ │ ├── default_create_user_not_role.test │ │ │ ├── definer.result │ │ │ ├── definer.test │ │ │ ├── drop_current_role.result │ │ │ ├── drop_current_role.test │ │ │ ├── drop_current_user-5176.result │ │ │ ├── drop_current_user-5176.test │ │ │ ├── drop_routines.result │ │ │ ├── drop_routines.test │ │ │ ├── flush_roles-12366.result │ │ │ ├── flush_roles-12366.test │ │ │ ├── flush_roles-17898.result │ │ │ ├── flush_roles-17898.test │ │ │ ├── grant-5771.result │ │ │ ├── grant-5771.test │ │ │ ├── grant_empty.result │ │ │ ├── grant_empty.test │ │ │ ├── grant_proxy-5526.result │ │ │ ├── grant_proxy-5526.test │ │ │ ├── grant_revoke_current.result │ │ │ ├── grant_revoke_current.test │ │ │ ├── grant_role_auto_create_user.result │ │ │ ├── grant_role_auto_create_user.test │ │ │ ├── i_s_applicable_roles_is_default.result │ │ │ ├── i_s_applicable_roles_is_default.test │ │ │ ├── ip-6401.result │ │ │ ├── ip-6401.test │ │ │ ├── none_public.result │ │ │ ├── none_public.test │ │ │ ├── password.result │ │ │ ├── password.test │ │ │ ├── prepare_stmt_with_role.result │ │ │ ├── prepare_stmt_with_role.test │ │ │ ├── ps.result │ │ │ ├── ps.test │ │ │ ├── rebuild_role_grants.result │ │ │ ├── rebuild_role_grants.test │ │ │ ├── recursive.inc │ │ │ ├── recursive.result │ │ │ ├── recursive.test │ │ │ ├── recursive_dbug.result │ │ │ ├── recursive_dbug.test │ │ │ ├── rename_user.result │ │ │ ├── rename_user.test │ │ │ ├── revoke_all.result │ │ │ ├── revoke_all.test │ │ │ ├── role_case_sensitive-10744.result │ │ │ ├── role_case_sensitive-10744.test │ │ │ ├── rpl_definer.result │ │ │ ├── rpl_definer.test │ │ │ ├── rpl_grant_revoke_current_role-8638.result │ │ │ ├── rpl_grant_revoke_current_role-8638.test │ │ │ ├── set_and_drop.result │ │ │ ├── set_and_drop.test │ │ │ ├── set_default_role_clear.result │ │ │ ├── set_default_role_clear.test │ │ │ ├── set_default_role_for.result │ │ │ ├── set_default_role_for.test │ │ │ ├── set_default_role_invalid.result │ │ │ ├── set_default_role_invalid.test │ │ │ ├── set_default_role_new_connection.result │ │ │ ├── set_default_role_new_connection.test │ │ │ ├── set_default_role_ps-6960.result │ │ │ ├── set_default_role_ps-6960.test │ │ │ ├── set_role-13655.result │ │ │ ├── set_role-13655.test │ │ │ ├── set_role-5232.result │ │ │ ├── set_role-5232.test │ │ │ ├── set_role-9614.result │ │ │ ├── set_role-9614.test │ │ │ ├── set_role-database-recursive.result │ │ │ ├── set_role-database-recursive.test │ │ │ ├── set_role-database-simple.result │ │ │ ├── set_role-database-simple.test │ │ │ ├── set_role-multiple-role.result │ │ │ ├── set_role-multiple-role.test │ │ │ ├── set_role-recursive.result │ │ │ ├── set_role-recursive.test │ │ │ ├── set_role-routine-simple.result │ │ │ ├── set_role-routine-simple.test │ │ │ ├── set_role-simple.result │ │ │ ├── set_role-simple.test │ │ │ ├── set_role-table-column-priv.result │ │ │ ├── set_role-table-column-priv.test │ │ │ ├── set_role-table-simple.result │ │ │ ├── set_role-table-simple.test │ │ │ ├── show_create_database-10463.result │ │ │ ├── show_create_database-10463.test │ │ │ ├── show_grants.result │ │ │ ├── show_grants.test │ │ │ ├── show_grants_replicated.result │ │ │ └── show_grants_replicated.test │ │ ├── rpl/ │ │ │ ├── README │ │ │ ├── disabled.def │ │ │ ├── extension/ │ │ │ │ ├── README.checksum │ │ │ │ └── checksum.pl │ │ │ ├── include/ │ │ │ │ ├── check_type.inc │ │ │ │ ├── create_recursive_construct.inc │ │ │ │ ├── delayed_slave_wait_on_query.inc │ │ │ │ ├── hrtime.inc │ │ │ │ ├── multisource.inc │ │ │ │ ├── rpl_EE_err.test │ │ │ │ ├── rpl_auto_increment.test │ │ │ │ ├── rpl_auto_increment_insert_view.test │ │ │ │ ├── rpl_auto_increment_invoke_trigger.test │ │ │ │ ├── rpl_autoinc_func_invokes_trigger.test │ │ │ │ ├── rpl_binlog_errors.inc │ │ │ │ ├── rpl_binlog_max_cache_size.test │ │ │ │ ├── rpl_blackhole.test │ │ │ │ ├── rpl_blackhole_basic.test │ │ │ │ ├── rpl_cant_read_event_incident.inc │ │ │ │ ├── rpl_charset.test │ │ │ │ ├── rpl_checksum.inc │ │ │ │ ├── rpl_checksum_cache.inc │ │ │ │ ├── rpl_commit_after_flush.test │ │ │ │ ├── rpl_conflicts.test │ │ │ │ ├── rpl_corruption.inc │ │ │ │ ├── rpl_ddl.test │ │ │ │ ├── rpl_deadlock.test │ │ │ │ ├── rpl_delete_no_where.test │ │ │ │ ├── rpl_drop_create_temp_table.inc │ │ │ │ ├── rpl_drop_create_temp_table.test │ │ │ │ ├── rpl_extra_col_master.test │ │ │ │ ├── rpl_extra_col_slave.test │ │ │ │ ├── rpl_failed_optimize.test │ │ │ │ ├── rpl_flsh_tbls.test │ │ │ │ ├── rpl_get_master_version_and_clock.test │ │ │ │ ├── rpl_gtid_basic.inc │ │ │ │ ├── rpl_implicit_commit_binlog.test │ │ │ │ ├── rpl_incident.inc │ │ │ │ ├── rpl_init_slave_errors.inc │ │ │ │ ├── rpl_innodb.test │ │ │ │ ├── rpl_innodb_rows_counters.inc │ │ │ │ ├── rpl_insert_delayed.test │ │ │ │ ├── rpl_insert_id.test │ │ │ │ ├── rpl_insert_id_pk.test │ │ │ │ ├── rpl_insert_ignore.test │ │ │ │ ├── rpl_loaddata.test │ │ │ │ ├── rpl_loaddata_local.inc │ │ │ │ ├── rpl_loadfile.inc │ │ │ │ ├── rpl_loadfile.test │ │ │ │ ├── rpl_log.test │ │ │ │ ├── rpl_lower_case_table_names.test │ │ │ │ ├── rpl_max_relay_size.test │ │ │ │ ├── rpl_mixed_check_db.inc │ │ │ │ ├── rpl_mixed_check_event.inc │ │ │ │ ├── rpl_mixed_check_select.inc │ │ │ │ ├── rpl_mixed_check_table.inc │ │ │ │ ├── rpl_mixed_check_user.inc │ │ │ │ ├── rpl_mixed_check_view.inc │ │ │ │ ├── rpl_mixed_clear_tables.inc │ │ │ │ ├── rpl_mixed_ddl.inc │ │ │ │ ├── rpl_mixed_dml.inc │ │ │ │ ├── rpl_mixed_show_binlog_format.inc │ │ │ │ ├── rpl_mixing_engines.inc │ │ │ │ ├── rpl_mixing_engines.test │ │ │ │ ├── rpl_multi_query.test │ │ │ │ ├── rpl_multi_update.test │ │ │ │ ├── rpl_multi_update2.test │ │ │ │ ├── rpl_multi_update3.test │ │ │ │ ├── rpl_not_null.test │ │ │ │ ├── rpl_packet.inc │ │ │ │ ├── rpl_parallel_29322.inc │ │ │ │ ├── rpl_parallel_analyze_table_hang.inc │ │ │ │ ├── rpl_parallel_deadlock_corrupt_binlog.inc │ │ │ │ ├── rpl_parallel_domain.inc │ │ │ │ ├── rpl_parallel_domain_slave_single_grp.inc │ │ │ │ ├── rpl_parallel_free_deferred_event.inc │ │ │ │ ├── rpl_parallel_gco_wait_kill.inc │ │ │ │ ├── rpl_parallel_gtid_slave_pos_update_fail.inc │ │ │ │ ├── rpl_parallel_ignore_error_on_rotate.inc │ │ │ │ ├── rpl_parallel_ignored_errors.inc │ │ │ │ ├── rpl_parallel_incorrect_relay_pos.inc │ │ │ │ ├── rpl_parallel_innodb_lock_conflict.inc │ │ │ │ ├── rpl_parallel_missed_error_handling.inc │ │ │ │ ├── rpl_parallel_mode.inc │ │ │ │ ├── rpl_parallel_partial_binlog_trans.inc │ │ │ │ ├── rpl_parallel_record_gtid_wakeup.inc │ │ │ │ ├── rpl_parallel_retry_deadlock.inc │ │ │ │ ├── rpl_parallel_rollback_assert.inc │ │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.inc │ │ │ │ ├── rpl_parallel_single_grpcmt.inc │ │ │ │ ├── rpl_parallel_slave_bgc_kill.inc │ │ │ │ ├── rpl_parallel_stop_on_con_kill.inc │ │ │ │ ├── rpl_parallel_stop_slave.inc │ │ │ │ ├── rpl_parallel_wrong_binlog_order.inc │ │ │ │ ├── rpl_parallel_wrong_exec_master_pos.inc │ │ │ │ ├── rpl_partition.inc │ │ │ │ ├── rpl_partition.test │ │ │ │ ├── rpl_record_compare.test │ │ │ │ ├── rpl_relayrotate.inc │ │ │ │ ├── rpl_relayrotate.test │ │ │ │ ├── rpl_reset_slave.test │ │ │ │ ├── rpl_reset_slave_all_check.inc │ │ │ │ ├── rpl_row_UUID.test │ │ │ │ ├── rpl_row_annotate.test │ │ │ │ ├── rpl_row_basic.test │ │ │ │ ├── rpl_row_blob.test │ │ │ │ ├── rpl_row_delayed_ins.test │ │ │ │ ├── rpl_row_func003.test │ │ │ │ ├── rpl_row_img.test │ │ │ │ ├── rpl_row_img_blobs.test │ │ │ │ ├── rpl_row_img_sequence.inc │ │ │ │ ├── rpl_row_sp002.test │ │ │ │ ├── rpl_row_sp003.test │ │ │ │ ├── rpl_row_sp006.test │ │ │ │ ├── rpl_row_sp007.test │ │ │ │ ├── rpl_row_tabledefs.test │ │ │ │ ├── rpl_semi_sync.inc │ │ │ │ ├── rpl_set_null.test │ │ │ │ ├── rpl_set_statement.inc │ │ │ │ ├── rpl_show_binlog_events.inc │ │ │ │ ├── rpl_show_log_events_with_varying_options.inc │ │ │ │ ├── rpl_show_relaylog_events.inc │ │ │ │ ├── rpl_shutdown_wait_slaves.inc │ │ │ │ ├── rpl_skip_replication.inc │ │ │ │ ├── rpl_special_charset.inc │ │ │ │ ├── rpl_sporadic_master.inc │ │ │ │ ├── rpl_ssl.inc │ │ │ │ ├── rpl_start_stop_slave.test │ │ │ │ ├── rpl_stm_EE_err2.test │ │ │ │ ├── rpl_stm_create_if_not_exists.test │ │ │ │ ├── rpl_stm_relay_ign_space.inc │ │ │ │ ├── rpl_stop_middle_group.test │ │ │ │ ├── rpl_stop_slave.test │ │ │ │ ├── rpl_sv_relay_space.test │ │ │ │ ├── rpl_switch_stm_row_mixed.inc │ │ │ │ ├── rpl_sync_test.inc │ │ │ │ ├── rpl_temporal_format_default_to_default.inc │ │ │ │ ├── rpl_test_framework.inc │ │ │ │ ├── rpl_tmp_table_and_DDL.test │ │ │ │ ├── rpl_trig004.test │ │ │ │ ├── rpl_truncate.test │ │ │ │ ├── rpl_truncate_helper.test │ │ │ │ ├── rpl_typeconv.inc │ │ │ │ ├── rpl_xa_mixed_engines.inc │ │ │ │ └── type_conversions.test │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── circular_serverid0.result │ │ │ │ ├── create_or_replace2.result │ │ │ │ ├── create_or_replace_mix.result │ │ │ │ ├── create_or_replace_row.result │ │ │ │ ├── create_or_replace_statement.result │ │ │ │ ├── create_select.result │ │ │ │ ├── failed_create_view-6409.result │ │ │ │ ├── grant_replication_slave.result │ │ │ │ ├── ignore_table_autoinc-9737.result │ │ │ │ ├── kill_hard-6290.result │ │ │ │ ├── kill_race_condition.result │ │ │ │ ├── last_insert_id.result │ │ │ │ ├── mdev_17588.result │ │ │ │ ├── mdev_24667.result │ │ │ │ ├── myisam_external_lock.result │ │ │ │ ├── mysql-wsrep#110-2.result │ │ │ │ ├── parallel_backup.result │ │ │ │ ├── parallel_conflicts.result │ │ │ │ ├── password_expiration.result │ │ │ │ ├── rename.result │ │ │ │ ├── replace.result │ │ │ │ ├── rpl000001.a.result │ │ │ │ ├── rpl000001.b.result │ │ │ │ ├── rpl_000010.result │ │ │ │ ├── rpl_000011.result │ │ │ │ ├── rpl_000013.result │ │ │ │ ├── rpl_000017.result │ │ │ │ ├── rpl_15867.result │ │ │ │ ├── rpl_15919.result │ │ │ │ ├── rpl_EE_err.result │ │ │ │ ├── rpl_LD_INFILE.result │ │ │ │ ├── rpl_alter.result │ │ │ │ ├── rpl_alter_db.result │ │ │ │ ├── rpl_alter_extra_persistent.result │ │ │ │ ├── rpl_alter_instant.result │ │ │ │ ├── rpl_auto_increment.result │ │ │ │ ├── rpl_auto_increment_11932.result │ │ │ │ ├── rpl_auto_increment_bug33029.result │ │ │ │ ├── rpl_auto_increment_bug45679.result │ │ │ │ ├── rpl_auto_increment_update_failure.result │ │ │ │ ├── rpl_autogen_query_multi_byte_char.result │ │ │ │ ├── rpl_begin_commit_rollback.result │ │ │ │ ├── rpl_binlog_compress.result │ │ │ │ ├── rpl_binlog_corruption.result │ │ │ │ ├── rpl_binlog_dump_slave_gtid_state_info.result │ │ │ │ ├── rpl_binlog_dup_entry.result │ │ │ │ ├── rpl_binlog_errors.result │ │ │ │ ├── rpl_binlog_grant.result │ │ │ │ ├── rpl_binlog_index.result │ │ │ │ ├── rpl_binlog_rollback_cleanup.result │ │ │ │ ├── rpl_bit.result │ │ │ │ ├── rpl_bit_npk.result │ │ │ │ ├── rpl_blackhole.result │ │ │ │ ├── rpl_blackhole_row_annotate.result │ │ │ │ ├── rpl_bug26395.result │ │ │ │ ├── rpl_bug31076.result │ │ │ │ ├── rpl_bug33931.result │ │ │ │ ├── rpl_bug37426.result │ │ │ │ ├── rpl_bug38694.result │ │ │ │ ├── rpl_bug41902.result │ │ │ │ ├── rpl_cant_read_event_incident.result │ │ │ │ ├── rpl_change_master.result │ │ │ │ ├── rpl_change_master_find_log_pos_err.result │ │ │ │ ├── rpl_charset.result │ │ │ │ ├── rpl_charset_sjis.result │ │ │ │ ├── rpl_checksum.result │ │ │ │ ├── rpl_checksum_cache.result │ │ │ │ ├── rpl_circular_for_4_hosts.result │ │ │ │ ├── rpl_circular_semi_sync.result │ │ │ │ ├── rpl_colSize.result │ │ │ │ ├── rpl_commit_after_flush.result │ │ │ │ ├── rpl_concurrency_error.result │ │ │ │ ├── rpl_conditional_comments.result │ │ │ │ ├── rpl_connection.result │ │ │ │ ├── rpl_corruption.result │ │ │ │ ├── rpl_create_database.result │ │ │ │ ├── rpl_create_drop_db.result │ │ │ │ ├── rpl_create_drop_event.result │ │ │ │ ├── rpl_create_drop_function.result │ │ │ │ ├── rpl_create_drop_index.result │ │ │ │ ├── rpl_create_drop_procedure.result │ │ │ │ ├── rpl_create_drop_role.result │ │ │ │ ├── rpl_create_drop_trigger.result │ │ │ │ ├── rpl_create_drop_udf.result │ │ │ │ ├── rpl_create_drop_user.result │ │ │ │ ├── rpl_create_drop_view.result │ │ │ │ ├── rpl_create_if_not_exists.result │ │ │ │ ├── rpl_create_or_replace_fail.result │ │ │ │ ├── rpl_create_tmp_table_if_not_exists.result │ │ │ │ ├── rpl_critical_errors.result │ │ │ │ ├── rpl_critical_errors.result.txt │ │ │ │ ├── rpl_cross_version.result │ │ │ │ ├── rpl_ctype_latin1.result │ │ │ │ ├── rpl_current_user.result │ │ │ │ ├── rpl_ddl.result │ │ │ │ ├── rpl_deadlock_innodb.result │ │ │ │ ├── rpl_default.result │ │ │ │ ├── rpl_delayed_slave,parallel.rdiff │ │ │ │ ├── rpl_delayed_slave.result │ │ │ │ ├── rpl_delayed_slave2.result │ │ │ │ ├── rpl_delete_no_where.result │ │ │ │ ├── rpl_do_grant.result │ │ │ │ ├── rpl_domain_id_filter.result │ │ │ │ ├── rpl_domain_id_filter_io_crash.result │ │ │ │ ├── rpl_domain_id_filter_master_crash.result │ │ │ │ ├── rpl_domain_id_filter_parallel.result │ │ │ │ ├── rpl_domain_id_filter_restart.result │ │ │ │ ├── rpl_drop.result │ │ │ │ ├── rpl_drop_db.result │ │ │ │ ├── rpl_drop_db_fail.result │ │ │ │ ├── rpl_drop_temp.result │ │ │ │ ├── rpl_drop_temp_table_invalid_lex.result │ │ │ │ ├── rpl_drop_view.result │ │ │ │ ├── rpl_dual_pos_advance.result │ │ │ │ ├── rpl_dump_request_retry_warning.result │ │ │ │ ├── rpl_empty_master_host.result │ │ │ │ ├── rpl_empty_string_is_null.result │ │ │ │ ├── rpl_err_ignoredtable.result │ │ │ │ ├── rpl_events.result │ │ │ │ ├── rpl_extra_col_master_innodb.result │ │ │ │ ├── rpl_extra_col_master_myisam.result │ │ │ │ ├── rpl_extra_col_slave_innodb.result │ │ │ │ ├── rpl_extra_col_slave_myisam.result │ │ │ │ ├── rpl_fail_register.result │ │ │ │ ├── rpl_failed_optimize.result │ │ │ │ ├── rpl_filter_dbs_dynamic.result │ │ │ │ ├── rpl_filter_revoke_missing_user.result │ │ │ │ ├── rpl_filter_set_var_missing_data.result │ │ │ │ ├── rpl_filter_tables_dynamic.result │ │ │ │ ├── rpl_filter_tables_not_exist.result │ │ │ │ ├── rpl_filter_wild_tables_dynamic.result │ │ │ │ ├── rpl_flush_logs.result │ │ │ │ ├── rpl_flushlog_loop.result │ │ │ │ ├── rpl_foreign_key_innodb.result │ │ │ │ ├── rpl_free_items.result │ │ │ │ ├── rpl_function_defaults.result │ │ │ │ ├── rpl_geometry.result │ │ │ │ ├── rpl_get_lock.result │ │ │ │ ├── rpl_get_master_version_and_clock.result │ │ │ │ ├── rpl_grant.result │ │ │ │ ├── rpl_gtid_basic.result │ │ │ │ ├── rpl_gtid_crash.result │ │ │ │ ├── rpl_gtid_crash_myisam.result │ │ │ │ ├── rpl_gtid_delete_domain.result │ │ │ │ ├── rpl_gtid_errorhandling.result │ │ │ │ ├── rpl_gtid_errorlog.result │ │ │ │ ├── rpl_gtid_excess_initial_delay.result │ │ │ │ ├── rpl_gtid_glle_no_terminate.result │ │ │ │ ├── rpl_gtid_grouping.result │ │ │ │ ├── rpl_gtid_ignored.result │ │ │ │ ├── rpl_gtid_master_promote.result │ │ │ │ ├── rpl_gtid_mdev4473.result │ │ │ │ ├── rpl_gtid_mdev4474.result │ │ │ │ ├── rpl_gtid_mdev4484.result │ │ │ │ ├── rpl_gtid_mdev4485.result │ │ │ │ ├── rpl_gtid_mdev4820.result │ │ │ │ ├── rpl_gtid_mdev9033.result │ │ │ │ ├── rpl_gtid_misc.result │ │ │ │ ├── rpl_gtid_nobinlog.result │ │ │ │ ├── rpl_gtid_reconnect.result │ │ │ │ ├── rpl_gtid_sort.result │ │ │ │ ├── rpl_gtid_startpos.result │ │ │ │ ├── rpl_gtid_stop_start.result │ │ │ │ ├── rpl_gtid_strict.result │ │ │ │ ├── rpl_gtid_until.result │ │ │ │ ├── rpl_heartbeat.result │ │ │ │ ├── rpl_heartbeat_2slaves.result │ │ │ │ ├── rpl_heartbeat_basic.result │ │ │ │ ├── rpl_heartbeat_debug.result │ │ │ │ ├── rpl_heartbeat_ssl.result │ │ │ │ ├── rpl_hrtime.result │ │ │ │ ├── rpl_hrtime_row.result │ │ │ │ ├── rpl_idempotency.result │ │ │ │ ├── rpl_ignore_grant.result │ │ │ │ ├── rpl_ignore_revoke.result │ │ │ │ ├── rpl_ignore_table.result │ │ │ │ ├── rpl_ignore_table_update.result │ │ │ │ ├── rpl_incident.result │ │ │ │ ├── rpl_incompatible_heartbeat.result │ │ │ │ ├── rpl_init_slave.result │ │ │ │ ├── rpl_init_slave_errors.result │ │ │ │ ├── rpl_innodb_bug28430.result │ │ │ │ ├── rpl_innodb_bug30888.result │ │ │ │ ├── rpl_innodb_bug68220.result │ │ │ │ ├── rpl_innodb_mixed_ddl.result │ │ │ │ ├── rpl_innodb_mixed_dml.result │ │ │ │ ├── rpl_insert.result │ │ │ │ ├── rpl_insert_delayed,stmt.rdiff │ │ │ │ ├── rpl_insert_delayed.result │ │ │ │ ├── rpl_insert_id.result │ │ │ │ ├── rpl_insert_id_pk.result │ │ │ │ ├── rpl_insert_ignore.result │ │ │ │ ├── rpl_invoked_features.result │ │ │ │ ├── rpl_iodku,stmt.rdiff │ │ │ │ ├── rpl_iodku.result │ │ │ │ ├── rpl_ip_mix.result │ │ │ │ ├── rpl_ip_mix2.result │ │ │ │ ├── rpl_ipv4_as_ipv6.result │ │ │ │ ├── rpl_ipv6.result │ │ │ │ ├── rpl_killed_ddl.result │ │ │ │ ├── rpl_known_bugs_detection.result │ │ │ │ ├── rpl_lcase_tblnames_rewrite_db.result │ │ │ │ ├── rpl_loaddata.result │ │ │ │ ├── rpl_loaddata_charset.result │ │ │ │ ├── rpl_loaddata_fatal.result │ │ │ │ ├── rpl_loaddata_m.result │ │ │ │ ├── rpl_loaddata_map.result │ │ │ │ ├── rpl_loaddata_s.result │ │ │ │ ├── rpl_loaddata_simple.result │ │ │ │ ├── rpl_loaddata_symlink.result │ │ │ │ ├── rpl_loaddatalocal.result │ │ │ │ ├── rpl_loadfile.result │ │ │ │ ├── rpl_locale.result │ │ │ │ ├── rpl_log_pos.result │ │ │ │ ├── rpl_lost_events_on_rotate.result │ │ │ │ ├── rpl_manual_change_index_file.result │ │ │ │ ├── rpl_many_optimize.result │ │ │ │ ├── rpl_mariadb_slave_capability.result │ │ │ │ ├── rpl_mark_optimize_tbl_ddl.result │ │ │ │ ├── rpl_master_pos_wait.result │ │ │ │ ├── rpl_mdev-11092.result │ │ │ │ ├── rpl_mdev10863.result │ │ │ │ ├── rpl_mdev12179.result │ │ │ │ ├── rpl_mdev359.result │ │ │ │ ├── rpl_mdev382.result │ │ │ │ ├── rpl_mdev6020.result │ │ │ │ ├── rpl_mdev6386.result │ │ │ │ ├── rpl_mdev8193.result │ │ │ │ ├── rpl_mdev_17614.result │ │ │ │ ├── rpl_misc_functions.result │ │ │ │ ├── rpl_mix_found_rows.result │ │ │ │ ├── rpl_mixed_binlog_max_cache_size.result │ │ │ │ ├── rpl_mixed_bit_pk.result │ │ │ │ ├── rpl_mixed_ddl_dml.result │ │ │ │ ├── rpl_mixed_drop_create_temp_table.result │ │ │ │ ├── rpl_mixed_implicit_commit_binlog.result │ │ │ │ ├── rpl_mixed_mixing_engines.result │ │ │ │ ├── rpl_mixed_row_innodb.result │ │ │ │ ├── rpl_multi_delete.result │ │ │ │ ├── rpl_multi_delete2.result │ │ │ │ ├── rpl_multi_engine.result │ │ │ │ ├── rpl_multi_update.result │ │ │ │ ├── rpl_multi_update2.result │ │ │ │ ├── rpl_multi_update3.result │ │ │ │ ├── rpl_multi_update4.result │ │ │ │ ├── rpl_mysql57_stm_temporal_round.result │ │ │ │ ├── rpl_mysql80_stm_temporal_round.result │ │ │ │ ├── rpl_mysql_manager_race_condition.result │ │ │ │ ├── rpl_mysql_upgrade.result │ │ │ │ ├── rpl_name_const.result │ │ │ │ ├── rpl_non_direct_mixed_mixing_engines.result │ │ │ │ ├── rpl_non_direct_row_mixing_engines.result │ │ │ │ ├── rpl_non_direct_stm_mixing_engines.result │ │ │ │ ├── rpl_nondeterministic_functions.result │ │ │ │ ├── rpl_not_null_innodb.result │ │ │ │ ├── rpl_not_null_myisam.result │ │ │ │ ├── rpl_old_decimal.result │ │ │ │ ├── rpl_old_master.result │ │ │ │ ├── rpl_old_master_29078.result │ │ │ │ ├── rpl_optimize.result │ │ │ │ ├── rpl_packet.result │ │ │ │ ├── rpl_parallel2.result │ │ │ │ ├── rpl_parallel_29322.result │ │ │ │ ├── rpl_parallel_analyze_table_hang.result │ │ │ │ ├── rpl_parallel_charset.result │ │ │ │ ├── rpl_parallel_conflicts.result │ │ │ │ ├── rpl_parallel_deadlock_corrupt_binlog.result │ │ │ │ ├── rpl_parallel_domain.result │ │ │ │ ├── rpl_parallel_domain_slave_single_grp.result │ │ │ │ ├── rpl_parallel_free_deferred_event.result │ │ │ │ ├── rpl_parallel_gco_wait_kill.result │ │ │ │ ├── rpl_parallel_gtid_slave_pos_update_fail.result │ │ │ │ ├── rpl_parallel_ignore_error_on_rotate.result │ │ │ │ ├── rpl_parallel_ignored_errors.result │ │ │ │ ├── rpl_parallel_incorrect_relay_pos.result │ │ │ │ ├── rpl_parallel_innodb_lock_conflict.result │ │ │ │ ├── rpl_parallel_mdev6589.result │ │ │ │ ├── rpl_parallel_missed_error_handling.result │ │ │ │ ├── rpl_parallel_mode.result │ │ │ │ ├── rpl_parallel_multilevel.result │ │ │ │ ├── rpl_parallel_multilevel2.result │ │ │ │ ├── rpl_parallel_no_log_slave_updates.result │ │ │ │ ├── rpl_parallel_optimistic.result │ │ │ │ ├── rpl_parallel_optimistic_nobinlog.result │ │ │ │ ├── rpl_parallel_optimistic_until.result │ │ │ │ ├── rpl_parallel_optimistic_xa.result │ │ │ │ ├── rpl_parallel_optimistic_xa_lsu_off.result │ │ │ │ ├── rpl_parallel_partial_binlog_trans.result │ │ │ │ ├── rpl_parallel_partition.result │ │ │ │ ├── rpl_parallel_record_gtid_wakeup.result │ │ │ │ ├── rpl_parallel_retry.result │ │ │ │ ├── rpl_parallel_retry_deadlock.result │ │ │ │ ├── rpl_parallel_rollback_assert.result │ │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.result │ │ │ │ ├── rpl_parallel_single_grpcmt.result │ │ │ │ ├── rpl_parallel_slave_bgc_kill.result │ │ │ │ ├── rpl_parallel_stop_on_con_kill.result │ │ │ │ ├── rpl_parallel_stop_slave.result │ │ │ │ ├── rpl_parallel_temptable.result │ │ │ │ ├── rpl_parallel_wrong_binlog_order.result │ │ │ │ ├── rpl_parallel_wrong_exec_master_pos.result │ │ │ │ ├── rpl_parallel_xa_same_xid.result │ │ │ │ ├── rpl_partition_archive.result │ │ │ │ ├── rpl_partition_innodb.result │ │ │ │ ├── rpl_partition_memory.result │ │ │ │ ├── rpl_partition_myisam.result │ │ │ │ ├── rpl_password_boundaries.result │ │ │ │ ├── rpl_performance_schema.result │ │ │ │ ├── rpl_perfschema_applier_config.result │ │ │ │ ├── rpl_perfschema_applier_status.result │ │ │ │ ├── rpl_perfschema_applier_status_by_coordinator.result │ │ │ │ ├── rpl_perfschema_applier_status_by_worker.result │ │ │ │ ├── rpl_perfschema_connect_config.result │ │ │ │ ├── rpl_plugin_load.result │ │ │ │ ├── rpl_ps.result │ │ │ │ ├── rpl_query_cache.result │ │ │ │ ├── rpl_rbr_monitor.result │ │ │ │ ├── rpl_rbr_to_sbr.result │ │ │ │ ├── rpl_read_new_relay_log_info.result │ │ │ │ ├── rpl_read_old_relay_log_info.result │ │ │ │ ├── rpl_read_only.result │ │ │ │ ├── rpl_read_only2.result │ │ │ │ ├── rpl_relay_max_extension.result │ │ │ │ ├── rpl_relay_space_innodb.result │ │ │ │ ├── rpl_relay_space_myisam.result │ │ │ │ ├── rpl_relayrotate.result │ │ │ │ ├── rpl_relayspace.result │ │ │ │ ├── rpl_reopen_temp_table.result │ │ │ │ ├── rpl_replicate_do.result │ │ │ │ ├── rpl_replicate_ignore_db.result │ │ │ │ ├── rpl_report.result │ │ │ │ ├── rpl_report_port.result │ │ │ │ ├── rpl_reset_slave_all_clears_filters.result │ │ │ │ ├── rpl_reset_slave_fail.result │ │ │ │ ├── rpl_rewrt_db.result │ │ │ │ ├── rpl_rotate_logs.result │ │ │ │ ├── rpl_rotate_purge_deadlock.result │ │ │ │ ├── rpl_row_001.result │ │ │ │ ├── rpl_row_4_bytes.result │ │ │ │ ├── rpl_row_NOW.result │ │ │ │ ├── rpl_row_USER.result │ │ │ │ ├── rpl_row_UUID.result │ │ │ │ ├── rpl_row_annotate_do.result │ │ │ │ ├── rpl_row_annotate_dont.result │ │ │ │ ├── rpl_row_basic_11bugs.result │ │ │ │ ├── rpl_row_basic_2myisam.result │ │ │ │ ├── rpl_row_basic_3innodb.result │ │ │ │ ├── rpl_row_basic_8partition.result │ │ │ │ ├── rpl_row_big_table_id,32bit.rdiff │ │ │ │ ├── rpl_row_big_table_id.result │ │ │ │ ├── rpl_row_binlog_max_cache_size.result │ │ │ │ ├── rpl_row_blob_innodb.result │ │ │ │ ├── rpl_row_blob_myisam.result │ │ │ │ ├── rpl_row_colSize.result │ │ │ │ ├── rpl_row_conflicts.result │ │ │ │ ├── rpl_row_corruption.result │ │ │ │ ├── rpl_row_create_select.result │ │ │ │ ├── rpl_row_create_table.result │ │ │ │ ├── rpl_row_delayed_ins.result │ │ │ │ ├── rpl_row_drop.result │ │ │ │ ├── rpl_row_drop_create_temp_table.result │ │ │ │ ├── rpl_row_drop_temp_table.result │ │ │ │ ├── rpl_row_end_of_statement_loss.result │ │ │ │ ├── rpl_row_err_ignoredtable.result │ │ │ │ ├── rpl_row_find_row.result │ │ │ │ ├── rpl_row_find_row_debug.result │ │ │ │ ├── rpl_row_flsh_tbls.result │ │ │ │ ├── rpl_row_func001.result │ │ │ │ ├── rpl_row_func002.result │ │ │ │ ├── rpl_row_func003.result │ │ │ │ ├── rpl_row_idempotency.result │ │ │ │ ├── rpl_row_img_blobs.result │ │ │ │ ├── rpl_row_img_eng_min.result │ │ │ │ ├── rpl_row_img_eng_noblob.result │ │ │ │ ├── rpl_row_img_sequence.result │ │ │ │ ├── rpl_row_implicit_commit_binlog.result │ │ │ │ ├── rpl_row_index_choice.result │ │ │ │ ├── rpl_row_inexist_tbl.result │ │ │ │ ├── rpl_row_lcase_tblnames.result │ │ │ │ ├── rpl_row_loaddata_concurrent.result │ │ │ │ ├── rpl_row_loaddata_m.result │ │ │ │ ├── rpl_row_log.result │ │ │ │ ├── rpl_row_log_innodb.result │ │ │ │ ├── rpl_row_max_relay_size.result │ │ │ │ ├── rpl_row_merge_engine.result │ │ │ │ ├── rpl_row_mixing_engines.result │ │ │ │ ├── rpl_row_multi_query.result │ │ │ │ ├── rpl_row_mysqlbinlog.result │ │ │ │ ├── rpl_row_rec_comp_innodb.result │ │ │ │ ├── rpl_row_rec_comp_myisam.result │ │ │ │ ├── rpl_row_reset_slave.result │ │ │ │ ├── rpl_row_rollback_to_savepoint.result │ │ │ │ ├── rpl_row_show_relaylog_events.result │ │ │ │ ├── rpl_row_sp001.result │ │ │ │ ├── rpl_row_sp002_innodb.result │ │ │ │ ├── rpl_row_sp003.result │ │ │ │ ├── rpl_row_sp005.result │ │ │ │ ├── rpl_row_sp006_InnoDB.result │ │ │ │ ├── rpl_row_sp007_innodb.result │ │ │ │ ├── rpl_row_sp008.result │ │ │ │ ├── rpl_row_sp009.result │ │ │ │ ├── rpl_row_sp010.result │ │ │ │ ├── rpl_row_sp011.result │ │ │ │ ├── rpl_row_sp012.result │ │ │ │ ├── rpl_row_spatial.result │ │ │ │ ├── rpl_row_tabledefs_2myisam.result │ │ │ │ ├── rpl_row_tabledefs_3innodb.result │ │ │ │ ├── rpl_row_tbl_metadata.result │ │ │ │ ├── rpl_row_to_stmt.result │ │ │ │ ├── rpl_row_trig001.result │ │ │ │ ├── rpl_row_trig002.result │ │ │ │ ├── rpl_row_trig003.result │ │ │ │ ├── rpl_row_trig004.result │ │ │ │ ├── rpl_row_triggers.result │ │ │ │ ├── rpl_row_trunc_temp.result │ │ │ │ ├── rpl_row_type_conv_err_msg.result │ │ │ │ ├── rpl_row_unsafe_funcs.result │ │ │ │ ├── rpl_row_until.result │ │ │ │ ├── rpl_row_utf16.result │ │ │ │ ├── rpl_row_utf32.result │ │ │ │ ├── rpl_row_vcol_crash.result │ │ │ │ ├── rpl_row_view01.result │ │ │ │ ├── rpl_row_virt.result │ │ │ │ ├── rpl_row_wide_table.result │ │ │ │ ├── rpl_savepoint.result │ │ │ │ ├── rpl_seconds_behind_master_spike.result │ │ │ │ ├── rpl_semi_sync.result │ │ │ │ ├── rpl_semi_sync_after_sync.result │ │ │ │ ├── rpl_semi_sync_after_sync_row.result │ │ │ │ ├── rpl_semi_sync_event.result │ │ │ │ ├── rpl_semi_sync_event_after_sync.result │ │ │ │ ├── rpl_semi_sync_fail_over.result │ │ │ │ ├── rpl_semi_sync_gtid_reconnect.result │ │ │ │ ├── rpl_semi_sync_master_shutdown.result │ │ │ │ ├── rpl_semi_sync_shutdown_await_ack.result │ │ │ │ ├── rpl_semi_sync_skip_repl.result │ │ │ │ ├── rpl_semi_sync_slave_compressed_protocol.result │ │ │ │ ├── rpl_semi_sync_slave_reply_fail.result │ │ │ │ ├── rpl_semi_sync_wait_no_slave.result │ │ │ │ ├── rpl_semi_sync_wait_point.result │ │ │ │ ├── rpl_semisync_ali_issues.result │ │ │ │ ├── rpl_server_id1.result │ │ │ │ ├── rpl_server_id2.result │ │ │ │ ├── rpl_server_id_ignore.result │ │ │ │ ├── rpl_session_var.result │ │ │ │ ├── rpl_set_charset.result │ │ │ │ ├── rpl_set_null_innodb.result │ │ │ │ ├── rpl_set_null_myisam.result │ │ │ │ ├── rpl_set_statement.result │ │ │ │ ├── rpl_set_statement_default_master.result │ │ │ │ ├── rpl_show_slave_hosts.result │ │ │ │ ├── rpl_show_slave_running.result │ │ │ │ ├── rpl_shutdown_wait_semisync_slaves.result │ │ │ │ ├── rpl_shutdown_wait_slaves.result │ │ │ │ ├── rpl_skip_error.result │ │ │ │ ├── rpl_skip_incident.result │ │ │ │ ├── rpl_skip_replication.result │ │ │ │ ├── rpl_slave_alias_replica.result │ │ │ │ ├── rpl_slave_grp_exec.result │ │ │ │ ├── rpl_slave_invalid_external_user.result │ │ │ │ ├── rpl_slave_load_in.result │ │ │ │ ├── rpl_slave_load_remove_tmpfile.result │ │ │ │ ├── rpl_slave_load_tmpdir_not_exist.result │ │ │ │ ├── rpl_slave_shutdown_mdev20821.result │ │ │ │ ├── rpl_slave_skip.result │ │ │ │ ├── rpl_slave_status.result │ │ │ │ ├── rpl_slow_query_log.result │ │ │ │ ├── rpl_sp.result │ │ │ │ ├── rpl_sp004.result │ │ │ │ ├── rpl_sp_effects.result │ │ │ │ ├── rpl_sp_variables.result │ │ │ │ ├── rpl_spec_variables.result │ │ │ │ ├── rpl_special_charset.result │ │ │ │ ├── rpl_sporadic_master.result │ │ │ │ ├── rpl_ssl.result │ │ │ │ ├── rpl_ssl1.result │ │ │ │ ├── rpl_start_stop_slave.result │ │ │ │ ├── rpl_stm_000001.result │ │ │ │ ├── rpl_stm_EE_err2.result │ │ │ │ ├── rpl_stm_auto_increment_bug33029.result │ │ │ │ ├── rpl_stm_binlog_max_cache_size.result │ │ │ │ ├── rpl_stm_conflicts.result │ │ │ │ ├── rpl_stm_drop_create_temp_table.result │ │ │ │ ├── rpl_stm_flsh_tbls.result │ │ │ │ ├── rpl_stm_found_rows.result │ │ │ │ ├── rpl_stm_implicit_commit_binlog.result │ │ │ │ ├── rpl_stm_innodb.result │ │ │ │ ├── rpl_stm_lcase_tblnames.result │ │ │ │ ├── rpl_stm_loaddata_concurrent.result │ │ │ │ ├── rpl_stm_loadfile.result │ │ │ │ ├── rpl_stm_log.result │ │ │ │ ├── rpl_stm_maria.result │ │ │ │ ├── rpl_stm_max_relay_size.result │ │ │ │ ├── rpl_stm_mix_show_relaylog_events.result │ │ │ │ ├── rpl_stm_mixing_engines.result │ │ │ │ ├── rpl_stm_multi_query.result │ │ │ │ ├── rpl_stm_no_op.result │ │ │ │ ├── rpl_stm_relay_ign_space.result │ │ │ │ ├── rpl_stm_reset_slave.result │ │ │ │ ├── rpl_stm_sp.result │ │ │ │ ├── rpl_stm_sql_mode.result │ │ │ │ ├── rpl_stm_start_stop_slave.result │ │ │ │ ├── rpl_stm_stop_middle_group.result │ │ │ │ ├── rpl_stm_until.result │ │ │ │ ├── rpl_stm_user_variables.result │ │ │ │ ├── rpl_stop_slave.result │ │ │ │ ├── rpl_stop_slave_error.result │ │ │ │ ├── rpl_strict_password_validation.result │ │ │ │ ├── rpl_switch_stm_row_mixed.result │ │ │ │ ├── rpl_sync.result │ │ │ │ ├── rpl_table_options.result │ │ │ │ ├── rpl_temp_table.result │ │ │ │ ├── rpl_temp_table_mix_row.result │ │ │ │ ├── rpl_temporal_format_default_to_default.result │ │ │ │ ├── rpl_temporal_format_mariadb53_to_mariadb53.result │ │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56.result │ │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56_dst.result │ │ │ │ ├── rpl_temporal_format_mysql56_to_mariadb53.result │ │ │ │ ├── rpl_temporal_format_mysql56_to_mysql56.result │ │ │ │ ├── rpl_temporal_mysql56.result │ │ │ │ ├── rpl_temporal_mysql56_to_mariadb.result │ │ │ │ ├── rpl_temporal_mysql56_to_mariadb53.result │ │ │ │ ├── rpl_temporal_round.result │ │ │ │ ├── rpl_temporary.result │ │ │ │ ├── rpl_temporary_error2.result │ │ │ │ ├── rpl_temporary_errors.result │ │ │ │ ├── rpl_test_framework.result │ │ │ │ ├── rpl_timestamp.result │ │ │ │ ├── rpl_timezone.result │ │ │ │ ├── rpl_tmp_table_and_DDL.result │ │ │ │ ├── rpl_tmp_table_and_DDL_innodb.result │ │ │ │ ├── rpl_trans_no_trans.result │ │ │ │ ├── rpl_trigger.result │ │ │ │ ├── rpl_trunc_temp.result │ │ │ │ ├── rpl_truncate_2myisam.result │ │ │ │ ├── rpl_truncate_3innodb.result │ │ │ │ ├── rpl_typeconv.result │ │ │ │ ├── rpl_typeconv_innodb.result │ │ │ │ ├── rpl_udf.result │ │ │ │ ├── rpl_unsafe_statements.result │ │ │ │ ├── rpl_update.result │ │ │ │ ├── rpl_upgrade_master_info.result │ │ │ │ ├── rpl_user.result │ │ │ │ ├── rpl_user_variables.result │ │ │ │ ├── rpl_variables.result │ │ │ │ ├── rpl_variables_stm.result │ │ │ │ ├── rpl_view.result │ │ │ │ ├── rpl_view_debug.result │ │ │ │ ├── rpl_view_multi.result │ │ │ │ ├── rpl_xa.result │ │ │ │ ├── rpl_xa_gap_lock.result │ │ │ │ ├── rpl_xa_gtid_pos_auto_engine.result │ │ │ │ ├── rpl_xa_survive_disconnect.result │ │ │ │ ├── rpl_xa_survive_disconnect_lsu_off.result │ │ │ │ ├── rpl_xa_survive_disconnect_mixed_engines.result │ │ │ │ ├── sec_behind_master-5114.result │ │ │ │ ├── semisync_future-7591.result │ │ │ │ ├── semisync_memleak_4066.result │ │ │ │ ├── sequence.result │ │ │ │ ├── show_status_stop_slave_race-7126.result │ │ │ │ ├── temporal_row-9560,old2new.rdiff │ │ │ │ └── temporal_row-9560.result │ │ │ ├── rpl_1slave_base.cnf │ │ │ └── t/ │ │ │ ├── circular_serverid0.cnf │ │ │ ├── circular_serverid0.test │ │ │ ├── create_or_replace.inc │ │ │ ├── create_or_replace2.test │ │ │ ├── create_or_replace_mix.cnf │ │ │ ├── create_or_replace_mix.test │ │ │ ├── create_or_replace_row.cnf │ │ │ ├── create_or_replace_row.test │ │ │ ├── create_or_replace_statement.cnf │ │ │ ├── create_or_replace_statement.test │ │ │ ├── create_select.cnf │ │ │ ├── create_select.test │ │ │ ├── failed_create_view-6409.test │ │ │ ├── grant_replication_slave.test │ │ │ ├── ignore_table_autoinc-9737.test │ │ │ ├── kill_hard-6290.test │ │ │ ├── kill_race_condition.test │ │ │ ├── last_insert_id.cnf │ │ │ ├── last_insert_id.test │ │ │ ├── mdev_17588-slave.opt │ │ │ ├── mdev_17588.test │ │ │ ├── mdev_24667.cnf │ │ │ ├── mdev_24667.test │ │ │ ├── myisam_external_lock-slave.opt │ │ │ ├── myisam_external_lock.test │ │ │ ├── mysql-wsrep#110-2.test │ │ │ ├── parallel_backup.test │ │ │ ├── password_expiration.test │ │ │ ├── rename.test │ │ │ ├── replace.test │ │ │ ├── rpl_000010-slave.opt │ │ │ ├── rpl_000010.test │ │ │ ├── rpl_000011-slave.opt │ │ │ ├── rpl_000011.test │ │ │ ├── rpl_000013.test │ │ │ ├── rpl_000017.test │ │ │ ├── rpl_15867.test │ │ │ ├── rpl_15919-slave.opt │ │ │ ├── rpl_15919.test │ │ │ ├── rpl_EE_err.test │ │ │ ├── rpl_LD_INFILE.test │ │ │ ├── rpl_alter.test │ │ │ ├── rpl_alter_db.test │ │ │ ├── rpl_alter_extra_persistent.test │ │ │ ├── rpl_alter_instant.test │ │ │ ├── rpl_auto_increment-master.opt │ │ │ ├── rpl_auto_increment-slave.opt │ │ │ ├── rpl_auto_increment.test │ │ │ ├── rpl_auto_increment_11932.test │ │ │ ├── rpl_auto_increment_bug33029.test │ │ │ ├── rpl_auto_increment_bug45679.test │ │ │ ├── rpl_auto_increment_update_failure.test │ │ │ ├── rpl_autogen_query_multi_byte_char.test │ │ │ ├── rpl_begin_commit_rollback-master.opt │ │ │ ├── rpl_begin_commit_rollback-slave.opt │ │ │ ├── rpl_begin_commit_rollback.test │ │ │ ├── rpl_binlog_compress.test │ │ │ ├── rpl_binlog_corruption.test │ │ │ ├── rpl_binlog_dump_slave_gtid_state_info.test │ │ │ ├── rpl_binlog_dup_entry.test │ │ │ ├── rpl_binlog_errors-master.opt │ │ │ ├── rpl_binlog_errors.test │ │ │ ├── rpl_binlog_grant.test │ │ │ ├── rpl_binlog_index.test │ │ │ ├── rpl_binlog_rollback_cleanup.test │ │ │ ├── rpl_bit.test │ │ │ ├── rpl_bit_npk.test │ │ │ ├── rpl_blackhole.test │ │ │ ├── rpl_blackhole_row_annotate-master.opt │ │ │ ├── rpl_blackhole_row_annotate-slave.opt │ │ │ ├── rpl_blackhole_row_annotate.test │ │ │ ├── rpl_bug26395.test │ │ │ ├── rpl_bug31076.test │ │ │ ├── rpl_bug33931.test │ │ │ ├── rpl_bug37426.test │ │ │ ├── rpl_bug38694-slave.opt │ │ │ ├── rpl_bug38694.test │ │ │ ├── rpl_bug41902.test │ │ │ ├── rpl_cant_read_event_incident.test │ │ │ ├── rpl_change_master.test │ │ │ ├── rpl_change_master_find_log_pos_err.test │ │ │ ├── rpl_charset.test │ │ │ ├── rpl_charset_sjis.test │ │ │ ├── rpl_checksum-master.opt │ │ │ ├── rpl_checksum.test │ │ │ ├── rpl_checksum_cache.test │ │ │ ├── rpl_circular_for_4_hosts.cnf │ │ │ ├── rpl_circular_for_4_hosts.test │ │ │ ├── rpl_circular_semi_sync.cnf │ │ │ ├── rpl_circular_semi_sync.test │ │ │ ├── rpl_colSize.test │ │ │ ├── rpl_commit_after_flush.test │ │ │ ├── rpl_concurrency_error-master.opt │ │ │ ├── rpl_concurrency_error.test │ │ │ ├── rpl_conditional_comments.test │ │ │ ├── rpl_connection.test │ │ │ ├── rpl_corruption-master.opt │ │ │ ├── rpl_corruption-slave.opt │ │ │ ├── rpl_corruption.test │ │ │ ├── rpl_create_database-master.opt │ │ │ ├── rpl_create_database-slave.opt │ │ │ ├── rpl_create_database.test │ │ │ ├── rpl_create_drop_db.test │ │ │ ├── rpl_create_drop_event.test │ │ │ ├── rpl_create_drop_function.test │ │ │ ├── rpl_create_drop_index.test │ │ │ ├── rpl_create_drop_procedure.test │ │ │ ├── rpl_create_drop_role.test │ │ │ ├── rpl_create_drop_trigger.test │ │ │ ├── rpl_create_drop_udf.test │ │ │ ├── rpl_create_drop_user.test │ │ │ ├── rpl_create_drop_view.test │ │ │ ├── rpl_create_if_not_exists.test │ │ │ ├── rpl_create_or_replace_fail.test │ │ │ ├── rpl_create_tmp_table_if_not_exists.test │ │ │ ├── rpl_create_xa_prepared.inc │ │ │ ├── rpl_critical_errors.test │ │ │ ├── rpl_cross_version-master.opt │ │ │ ├── rpl_cross_version.test │ │ │ ├── rpl_ctype_latin1.test │ │ │ ├── rpl_current_user.cnf │ │ │ ├── rpl_current_user.test │ │ │ ├── rpl_ddl-slave.opt │ │ │ ├── rpl_ddl.test │ │ │ ├── rpl_deadlock_innodb-slave.opt │ │ │ ├── rpl_deadlock_innodb.test │ │ │ ├── rpl_default.test │ │ │ ├── rpl_delayed_slave.combinations │ │ │ ├── rpl_delayed_slave.test │ │ │ ├── rpl_delayed_slave2.test │ │ │ ├── rpl_delete_no_where.test │ │ │ ├── rpl_do_grant.test │ │ │ ├── rpl_domain_id_filter.test │ │ │ ├── rpl_domain_id_filter_io_crash.test │ │ │ ├── rpl_domain_id_filter_master_crash.test │ │ │ ├── rpl_domain_id_filter_parallel.test │ │ │ ├── rpl_domain_id_filter_restart.test │ │ │ ├── rpl_drop.test │ │ │ ├── rpl_drop_db.test │ │ │ ├── rpl_drop_db_fail.test │ │ │ ├── rpl_drop_temp-slave.opt │ │ │ ├── rpl_drop_temp.test │ │ │ ├── rpl_drop_temp_table_invalid_lex.test │ │ │ ├── rpl_drop_view.test │ │ │ ├── rpl_dual_pos_advance.test │ │ │ ├── rpl_dump_request_retry_warning.test │ │ │ ├── rpl_empty_master_host.test │ │ │ ├── rpl_empty_string_is_null.test │ │ │ ├── rpl_err_ignoredtable-slave.opt │ │ │ ├── rpl_err_ignoredtable.test │ │ │ ├── rpl_events.test │ │ │ ├── rpl_extra_col_master_innodb.test │ │ │ ├── rpl_extra_col_master_myisam.test │ │ │ ├── rpl_extra_col_slave_innodb.test │ │ │ ├── rpl_extra_col_slave_myisam.test │ │ │ ├── rpl_fail_register.test │ │ │ ├── rpl_failed_drop_tbl_binlog.opt │ │ │ ├── rpl_failed_optimize.test │ │ │ ├── rpl_filter_dbs_dynamic.test │ │ │ ├── rpl_filter_revoke_missing_user.test │ │ │ ├── rpl_filter_set_var_missing_data.test │ │ │ ├── rpl_filter_tables_dynamic.test │ │ │ ├── rpl_filter_tables_not_exist-slave.opt │ │ │ ├── rpl_filter_tables_not_exist.test │ │ │ ├── rpl_filter_wild_tables_dynamic.test │ │ │ ├── rpl_flush_logs-master.opt │ │ │ ├── rpl_flush_logs.test │ │ │ ├── rpl_flushlog_loop-master.opt │ │ │ ├── rpl_flushlog_loop-slave.opt │ │ │ ├── rpl_flushlog_loop.test │ │ │ ├── rpl_foreign_key_innodb.test │ │ │ ├── rpl_free_items-slave.opt │ │ │ ├── rpl_free_items.test │ │ │ ├── rpl_function_defaults.test │ │ │ ├── rpl_geometry.test │ │ │ ├── rpl_get_lock.test │ │ │ ├── rpl_get_master_version_and_clock-slave.opt │ │ │ ├── rpl_get_master_version_and_clock.test │ │ │ ├── rpl_grant.test │ │ │ ├── rpl_gtid_basic.cnf │ │ │ ├── rpl_gtid_basic.test │ │ │ ├── rpl_gtid_crash-master.opt │ │ │ ├── rpl_gtid_crash-slave.opt │ │ │ ├── rpl_gtid_crash.test │ │ │ ├── rpl_gtid_crash_myisam-master.opt │ │ │ ├── rpl_gtid_crash_myisam.test │ │ │ ├── rpl_gtid_delete_domain.test │ │ │ ├── rpl_gtid_errorhandling.test │ │ │ ├── rpl_gtid_errorlog.test │ │ │ ├── rpl_gtid_excess_initial_delay.test │ │ │ ├── rpl_gtid_glle_no_terminate.test │ │ │ ├── rpl_gtid_grouping.test │ │ │ ├── rpl_gtid_ignored.test │ │ │ ├── rpl_gtid_master_promote.cnf │ │ │ ├── rpl_gtid_master_promote.test │ │ │ ├── rpl_gtid_mdev4473.cnf │ │ │ ├── rpl_gtid_mdev4473.test │ │ │ ├── rpl_gtid_mdev4474.cnf │ │ │ ├── rpl_gtid_mdev4474.test │ │ │ ├── rpl_gtid_mdev4484.test │ │ │ ├── rpl_gtid_mdev4485.cnf │ │ │ ├── rpl_gtid_mdev4485.test │ │ │ ├── rpl_gtid_mdev4820.test │ │ │ ├── rpl_gtid_mdev9033.cnf │ │ │ ├── rpl_gtid_mdev9033.test │ │ │ ├── rpl_gtid_misc.test │ │ │ ├── rpl_gtid_nobinlog.cnf │ │ │ ├── rpl_gtid_nobinlog.test │ │ │ ├── rpl_gtid_reconnect.test │ │ │ ├── rpl_gtid_sort.test │ │ │ ├── rpl_gtid_startpos.test │ │ │ ├── rpl_gtid_stop_start.cnf │ │ │ ├── rpl_gtid_stop_start.test │ │ │ ├── rpl_gtid_strict.test │ │ │ ├── rpl_gtid_until.test │ │ │ ├── rpl_heartbeat.test │ │ │ ├── rpl_heartbeat_2slaves.cnf │ │ │ ├── rpl_heartbeat_2slaves.test │ │ │ ├── rpl_heartbeat_basic.cnf │ │ │ ├── rpl_heartbeat_basic.test │ │ │ ├── rpl_heartbeat_debug.test │ │ │ ├── rpl_heartbeat_ssl.test │ │ │ ├── rpl_hrtime.test │ │ │ ├── rpl_hrtime_row.test │ │ │ ├── rpl_idempotency.test │ │ │ ├── rpl_ignore_grant-slave.opt │ │ │ ├── rpl_ignore_grant.test │ │ │ ├── rpl_ignore_revoke-slave.opt │ │ │ ├── rpl_ignore_revoke.test │ │ │ ├── rpl_ignore_table-slave.opt │ │ │ ├── rpl_ignore_table.test │ │ │ ├── rpl_ignore_table_update-slave.opt │ │ │ ├── rpl_ignore_table_update.test │ │ │ ├── rpl_incident.test │ │ │ ├── rpl_incompatible_heartbeat.test │ │ │ ├── rpl_init_slave-slave.opt │ │ │ ├── rpl_init_slave.test │ │ │ ├── rpl_init_slave_errors.test │ │ │ ├── rpl_innodb-master.opt │ │ │ ├── rpl_innodb_bug28430-master.opt │ │ │ ├── rpl_innodb_bug28430-slave.opt │ │ │ ├── rpl_innodb_bug28430.test │ │ │ ├── rpl_innodb_bug30888.opt │ │ │ ├── rpl_innodb_bug30888.test │ │ │ ├── rpl_innodb_bug68220.test │ │ │ ├── rpl_innodb_mixed_ddl.test │ │ │ ├── rpl_innodb_mixed_dml.test │ │ │ ├── rpl_insert.test │ │ │ ├── rpl_insert_delayed.test │ │ │ ├── rpl_insert_id.test │ │ │ ├── rpl_insert_id_pk.test │ │ │ ├── rpl_insert_ignore.test │ │ │ ├── rpl_invoked_features-master.opt │ │ │ ├── rpl_invoked_features.test │ │ │ ├── rpl_iodku.test │ │ │ ├── rpl_ip_mix.cnf │ │ │ ├── rpl_ip_mix.test │ │ │ ├── rpl_ip_mix2.cnf │ │ │ ├── rpl_ip_mix2.test │ │ │ ├── rpl_ipv4_as_ipv6.cnf │ │ │ ├── rpl_ipv4_as_ipv6.test │ │ │ ├── rpl_ipv6.cnf │ │ │ ├── rpl_ipv6.test │ │ │ ├── rpl_killed_ddl-master.opt │ │ │ ├── rpl_killed_ddl.test │ │ │ ├── rpl_known_bugs_detection-master.opt │ │ │ ├── rpl_known_bugs_detection.test │ │ │ ├── rpl_lcase_tblnames_rewrite_db-slave.opt │ │ │ ├── rpl_lcase_tblnames_rewrite_db.test │ │ │ ├── rpl_loaddata.test │ │ │ ├── rpl_loaddata_charset.test │ │ │ ├── rpl_loaddata_fatal-slave.opt │ │ │ ├── rpl_loaddata_fatal.test │ │ │ ├── rpl_loaddata_m-master.opt │ │ │ ├── rpl_loaddata_m.test │ │ │ ├── rpl_loaddata_map-master.opt │ │ │ ├── rpl_loaddata_map-slave.opt │ │ │ ├── rpl_loaddata_map.test │ │ │ ├── rpl_loaddata_s-slave.opt │ │ │ ├── rpl_loaddata_s.test │ │ │ ├── rpl_loaddata_simple.test │ │ │ ├── rpl_loaddata_symlink-master.opt │ │ │ ├── rpl_loaddata_symlink-master.sh │ │ │ ├── rpl_loaddata_symlink-slave.opt │ │ │ ├── rpl_loaddata_symlink-slave.sh │ │ │ ├── rpl_loaddata_symlink.test │ │ │ ├── rpl_loaddatalocal.test │ │ │ ├── rpl_loadfile.test │ │ │ ├── rpl_locale.test │ │ │ ├── rpl_log_pos.test │ │ │ ├── rpl_lost_events_on_rotate.test │ │ │ ├── rpl_manual_change_index_file.test │ │ │ ├── rpl_many_optimize.test │ │ │ ├── rpl_mariadb_slave_capability.test │ │ │ ├── rpl_mark_optimize_tbl_ddl.test │ │ │ ├── rpl_master_pos_wait.test │ │ │ ├── rpl_mdev-11092.opt │ │ │ ├── rpl_mdev-11092.test │ │ │ ├── rpl_mdev10863.test │ │ │ ├── rpl_mdev12179.test │ │ │ ├── rpl_mdev359.test │ │ │ ├── rpl_mdev382.test │ │ │ ├── rpl_mdev6020.test │ │ │ ├── rpl_mdev6386-slave.opt │ │ │ ├── rpl_mdev6386.test │ │ │ ├── rpl_mdev8193.test │ │ │ ├── rpl_mdev_17614.test │ │ │ ├── rpl_misc_functions-slave.sh │ │ │ ├── rpl_misc_functions.test │ │ │ ├── rpl_mix_found_rows.test │ │ │ ├── rpl_mixed_binlog_max_cache_size.test │ │ │ ├── rpl_mixed_bit_pk.test │ │ │ ├── rpl_mixed_ddl_dml.test │ │ │ ├── rpl_mixed_drop_create_temp_table.test │ │ │ ├── rpl_mixed_implicit_commit_binlog.test │ │ │ ├── rpl_mixed_mixing_engines.test │ │ │ ├── rpl_mixed_row_innodb-master.opt │ │ │ ├── rpl_multi_delete-slave.opt │ │ │ ├── rpl_multi_delete.test │ │ │ ├── rpl_multi_delete2-slave.opt │ │ │ ├── rpl_multi_delete2.test │ │ │ ├── rpl_multi_engine.test │ │ │ ├── rpl_multi_update.test │ │ │ ├── rpl_multi_update2-slave.opt │ │ │ ├── rpl_multi_update2.test │ │ │ ├── rpl_multi_update3.test │ │ │ ├── rpl_multi_update4-slave.opt │ │ │ ├── rpl_multi_update4.test │ │ │ ├── rpl_mysql57_stm_temporal_round.test │ │ │ ├── rpl_mysql80_stm_temporal_round.test │ │ │ ├── rpl_mysql_manager_race_condition-slave.opt │ │ │ ├── rpl_mysql_manager_race_condition.test │ │ │ ├── rpl_mysql_upgrade.test │ │ │ ├── rpl_name_const.test │ │ │ ├── rpl_non_direct_mixed_mixing_engines.test │ │ │ ├── rpl_non_direct_row_mixing_engines.test │ │ │ ├── rpl_non_direct_stm_mixing_engines.test │ │ │ ├── rpl_nondeterministic_functions.test │ │ │ ├── rpl_not_null_innodb.test │ │ │ ├── rpl_not_null_myisam.test │ │ │ ├── rpl_old_decimal.test │ │ │ ├── rpl_old_master.test │ │ │ ├── rpl_old_master_29078-master.opt │ │ │ ├── rpl_old_master_29078.test │ │ │ ├── rpl_optimize.test │ │ │ ├── rpl_packet-master.opt │ │ │ ├── rpl_packet-slave.opt │ │ │ ├── rpl_packet.test │ │ │ ├── rpl_parallel2.test │ │ │ ├── rpl_parallel_29322.test │ │ │ ├── rpl_parallel_analyze_table_hang.test │ │ │ ├── rpl_parallel_charset.test │ │ │ ├── rpl_parallel_conflicts.test │ │ │ ├── rpl_parallel_deadlock_corrupt_binlog.test │ │ │ ├── rpl_parallel_domain.test │ │ │ ├── rpl_parallel_domain_slave_single_grp.test │ │ │ ├── rpl_parallel_free_deferred_event.test │ │ │ ├── rpl_parallel_gco_wait_kill.test │ │ │ ├── rpl_parallel_gtid_slave_pos_update_fail.test │ │ │ ├── rpl_parallel_ignore_error_on_rotate.test │ │ │ ├── rpl_parallel_ignored_errors.test │ │ │ ├── rpl_parallel_incorrect_relay_pos.test │ │ │ ├── rpl_parallel_innodb_lock_conflict.test │ │ │ ├── rpl_parallel_mdev6589.test │ │ │ ├── rpl_parallel_missed_error_handling.test │ │ │ ├── rpl_parallel_mode.test │ │ │ ├── rpl_parallel_multilevel.cnf │ │ │ ├── rpl_parallel_multilevel.test │ │ │ ├── rpl_parallel_multilevel2.cnf │ │ │ ├── rpl_parallel_multilevel2.test │ │ │ ├── rpl_parallel_no_log_slave_updates-slave.opt │ │ │ ├── rpl_parallel_no_log_slave_updates.test │ │ │ ├── rpl_parallel_optimistic.test │ │ │ ├── rpl_parallel_optimistic_nobinlog.cnf │ │ │ ├── rpl_parallel_optimistic_nobinlog.test │ │ │ ├── rpl_parallel_optimistic_until.test │ │ │ ├── rpl_parallel_optimistic_xa.test │ │ │ ├── rpl_parallel_optimistic_xa_lsu_off-slave.opt │ │ │ ├── rpl_parallel_optimistic_xa_lsu_off.test │ │ │ ├── rpl_parallel_partial_binlog_trans.test │ │ │ ├── rpl_parallel_partition.test │ │ │ ├── rpl_parallel_record_gtid_wakeup.test │ │ │ ├── rpl_parallel_retry.test │ │ │ ├── rpl_parallel_retry_deadlock.test │ │ │ ├── rpl_parallel_rollback_assert.test │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.test │ │ │ ├── rpl_parallel_single_grpcmt.test │ │ │ ├── rpl_parallel_slave_bgc_kill.test │ │ │ ├── rpl_parallel_stop_on_con_kill.test │ │ │ ├── rpl_parallel_stop_slave.test │ │ │ ├── rpl_parallel_temptable-master.opt │ │ │ ├── rpl_parallel_temptable.test │ │ │ ├── rpl_parallel_wrong_binlog_order.test │ │ │ ├── rpl_parallel_wrong_exec_master_pos.test │ │ │ ├── rpl_parallel_xa_same_xid.test │ │ │ ├── rpl_partition_archive.test │ │ │ ├── rpl_partition_innodb-master.opt │ │ │ ├── rpl_partition_innodb.test │ │ │ ├── rpl_partition_memory.test │ │ │ ├── rpl_partition_myisam.test │ │ │ ├── rpl_password_boundaries.test │ │ │ ├── rpl_performance_schema.test │ │ │ ├── rpl_perfschema_applier_config.test │ │ │ ├── rpl_perfschema_applier_status.test │ │ │ ├── rpl_perfschema_applier_status_by_coordinator-slave.opt │ │ │ ├── rpl_perfschema_applier_status_by_coordinator.test │ │ │ ├── rpl_perfschema_applier_status_by_worker.test │ │ │ ├── rpl_perfschema_connect_config.test │ │ │ ├── rpl_plugin_load.test │ │ │ ├── rpl_ps.test │ │ │ ├── rpl_query_cache.test │ │ │ ├── rpl_rbr_monitor.test │ │ │ ├── rpl_rbr_to_sbr.test │ │ │ ├── rpl_read_new_relay_log_info.test │ │ │ ├── rpl_read_old_relay_log_info.test │ │ │ ├── rpl_read_only.test │ │ │ ├── rpl_read_only2.test │ │ │ ├── rpl_relay_max_extension.test │ │ │ ├── rpl_relay_space_innodb.test │ │ │ ├── rpl_relay_space_myisam.test │ │ │ ├── rpl_relayrotate-slave.opt │ │ │ ├── rpl_relayrotate.test │ │ │ ├── rpl_relayspace-slave.opt │ │ │ ├── rpl_relayspace.test │ │ │ ├── rpl_reopen_temp_table.test │ │ │ ├── rpl_replicate_do-slave.opt │ │ │ ├── rpl_replicate_do.test │ │ │ ├── rpl_replicate_ignore_db-slave.opt │ │ │ ├── rpl_replicate_ignore_db.test │ │ │ ├── rpl_report-slave.opt │ │ │ ├── rpl_report.test │ │ │ ├── rpl_report_port.test │ │ │ ├── rpl_reset_slave_all_clears_filters.test │ │ │ ├── rpl_reset_slave_fail.test │ │ │ ├── rpl_rewrt_db-slave.opt │ │ │ ├── rpl_rewrt_db.test │ │ │ ├── rpl_rotate_logs.cnf │ │ │ ├── rpl_rotate_logs.test │ │ │ ├── rpl_rotate_purge_deadlock-master.opt │ │ │ ├── rpl_rotate_purge_deadlock.test │ │ │ ├── rpl_row_001.test │ │ │ ├── rpl_row_4_bytes-master.opt │ │ │ ├── rpl_row_4_bytes.test │ │ │ ├── rpl_row_NOW.test │ │ │ ├── rpl_row_USER.test │ │ │ ├── rpl_row_UUID.test │ │ │ ├── rpl_row_annotate_do-slave.opt │ │ │ ├── rpl_row_annotate_do.test │ │ │ ├── rpl_row_annotate_dont-slave.opt │ │ │ ├── rpl_row_annotate_dont.test │ │ │ ├── rpl_row_basic_11bugs-master.opt │ │ │ ├── rpl_row_basic_11bugs.test │ │ │ ├── rpl_row_basic_2myisam.test │ │ │ ├── rpl_row_basic_3innodb.test │ │ │ ├── rpl_row_basic_8partition.test │ │ │ ├── rpl_row_big_table_id.opt │ │ │ ├── rpl_row_big_table_id.test │ │ │ ├── rpl_row_binlog_max_cache_size.test │ │ │ ├── rpl_row_blob_innodb.test │ │ │ ├── rpl_row_blob_myisam.test │ │ │ ├── rpl_row_colSize.test │ │ │ ├── rpl_row_conflicts.test │ │ │ ├── rpl_row_corruption-slave.opt │ │ │ ├── rpl_row_corruption.test │ │ │ ├── rpl_row_create_select.test │ │ │ ├── rpl_row_create_table.test │ │ │ ├── rpl_row_delayed_ins.test │ │ │ ├── rpl_row_drop.test │ │ │ ├── rpl_row_drop_create_temp_table.test │ │ │ ├── rpl_row_drop_temp_table.test │ │ │ ├── rpl_row_end_of_statement_loss-master.opt │ │ │ ├── rpl_row_end_of_statement_loss.test │ │ │ ├── rpl_row_err_daisychain-master.opt │ │ │ ├── rpl_row_err_daisychain-slave.opt │ │ │ ├── rpl_row_find_row.test │ │ │ ├── rpl_row_find_row_debug.test │ │ │ ├── rpl_row_flsh_tbls.test │ │ │ ├── rpl_row_func001.test │ │ │ ├── rpl_row_func002.test │ │ │ ├── rpl_row_func003.test │ │ │ ├── rpl_row_idempotency.test │ │ │ ├── rpl_row_img.cnf │ │ │ ├── rpl_row_img_blobs.cnf │ │ │ ├── rpl_row_img_blobs.test │ │ │ ├── rpl_row_img_eng_min.cnf │ │ │ ├── rpl_row_img_eng_min.test │ │ │ ├── rpl_row_img_eng_noblob.cnf │ │ │ ├── rpl_row_img_eng_noblob.test │ │ │ ├── rpl_row_img_sequence.cnf │ │ │ ├── rpl_row_img_sequence.test │ │ │ ├── rpl_row_implicit_commit_binlog.test │ │ │ ├── rpl_row_index_choice.test │ │ │ ├── rpl_row_inexist_tbl.test │ │ │ ├── rpl_row_lcase_tblnames-slave.opt │ │ │ ├── rpl_row_lcase_tblnames.test │ │ │ ├── rpl_row_loaddata_concurrent.test │ │ │ ├── rpl_row_log-master.opt │ │ │ ├── rpl_row_log-slave.opt │ │ │ ├── rpl_row_log.test │ │ │ ├── rpl_row_log_innodb-master.opt │ │ │ ├── rpl_row_log_innodb.test │ │ │ ├── rpl_row_max_relay_size.test │ │ │ ├── rpl_row_merge_engine.test │ │ │ ├── rpl_row_mixing_engines.test │ │ │ ├── rpl_row_mysqlbinlog-master.opt │ │ │ ├── rpl_row_mysqlbinlog.test │ │ │ ├── rpl_row_rec_comp_innodb.test │ │ │ ├── rpl_row_rec_comp_myisam.test │ │ │ ├── rpl_row_reset_slave.test │ │ │ ├── rpl_row_rollback_to_savepoint.test │ │ │ ├── rpl_row_show_relaylog_events.test │ │ │ ├── rpl_row_sp001.test │ │ │ ├── rpl_row_sp002_innodb.test │ │ │ ├── rpl_row_sp003.test │ │ │ ├── rpl_row_sp005.test │ │ │ ├── rpl_row_sp006_InnoDB.test │ │ │ ├── rpl_row_sp007_innodb.test │ │ │ ├── rpl_row_sp008.test │ │ │ ├── rpl_row_sp009.test │ │ │ ├── rpl_row_sp010.test │ │ │ ├── rpl_row_sp011.test │ │ │ ├── rpl_row_sp012.test │ │ │ ├── rpl_row_spatial.test │ │ │ ├── rpl_row_tabledefs_2myisam.test │ │ │ ├── rpl_row_tabledefs_3innodb.test │ │ │ ├── rpl_row_tbl_metadata.test │ │ │ ├── rpl_row_to_stmt-master.opt │ │ │ ├── rpl_row_to_stmt-slave.opt │ │ │ ├── rpl_row_to_stmt.test │ │ │ ├── rpl_row_trig001.test │ │ │ ├── rpl_row_trig002.test │ │ │ ├── rpl_row_trig003.test │ │ │ ├── rpl_row_trig004.test │ │ │ ├── rpl_row_triggers.test │ │ │ ├── rpl_row_trunc_temp.test │ │ │ ├── rpl_row_type_conv_err_msg.test │ │ │ ├── rpl_row_unsafe_funcs.test │ │ │ ├── rpl_row_until.test │ │ │ ├── rpl_row_utf16.test │ │ │ ├── rpl_row_utf32.test │ │ │ ├── rpl_row_vcol_crash.test │ │ │ ├── rpl_row_view01.test │ │ │ ├── rpl_row_virt.test │ │ │ ├── rpl_row_wide_table.test │ │ │ ├── rpl_savepoint.test │ │ │ ├── rpl_seconds_behind_master_spike.test │ │ │ ├── rpl_semi_sync.test │ │ │ ├── rpl_semi_sync_after_sync.test │ │ │ ├── rpl_semi_sync_after_sync_row.test │ │ │ ├── rpl_semi_sync_crash.inc │ │ │ ├── rpl_semi_sync_event-master.opt │ │ │ ├── rpl_semi_sync_event.test │ │ │ ├── rpl_semi_sync_event_after_sync-master.opt │ │ │ ├── rpl_semi_sync_event_after_sync.test │ │ │ ├── rpl_semi_sync_fail_over.cnf │ │ │ ├── rpl_semi_sync_fail_over.test │ │ │ ├── rpl_semi_sync_gtid_reconnect.test │ │ │ ├── rpl_semi_sync_master_shutdown.test │ │ │ ├── rpl_semi_sync_shutdown_await_ack.cnf │ │ │ ├── rpl_semi_sync_shutdown_await_ack.inc │ │ │ ├── rpl_semi_sync_shutdown_await_ack.test │ │ │ ├── rpl_semi_sync_skip_repl.test │ │ │ ├── rpl_semi_sync_slave_compressed_protocol-slave.opt │ │ │ ├── rpl_semi_sync_slave_compressed_protocol.test │ │ │ ├── rpl_semi_sync_slave_reply_fail.test │ │ │ ├── rpl_semi_sync_wait_no_slave-master.opt │ │ │ ├── rpl_semi_sync_wait_no_slave.test │ │ │ ├── rpl_semi_sync_wait_point.opt │ │ │ ├── rpl_semi_sync_wait_point.test │ │ │ ├── rpl_semisync_ali_issues-master.opt │ │ │ ├── rpl_semisync_ali_issues-slave.opt │ │ │ ├── rpl_semisync_ali_issues.test │ │ │ ├── rpl_server_id1.test │ │ │ ├── rpl_server_id2-slave.opt │ │ │ ├── rpl_server_id2.test │ │ │ ├── rpl_server_id_ignore-slave.opt │ │ │ ├── rpl_server_id_ignore.test │ │ │ ├── rpl_session_var.test │ │ │ ├── rpl_set_charset.test │ │ │ ├── rpl_set_null_innodb.test │ │ │ ├── rpl_set_null_myisam.test │ │ │ ├── rpl_set_statement.test │ │ │ ├── rpl_set_statement_default_master.test │ │ │ ├── rpl_show_slave_hosts.cnf │ │ │ ├── rpl_show_slave_hosts.test │ │ │ ├── rpl_show_slave_running.test │ │ │ ├── rpl_shutdown_wait_semisync_slaves.cnf │ │ │ ├── rpl_shutdown_wait_semisync_slaves.test │ │ │ ├── rpl_shutdown_wait_slaves.cnf │ │ │ ├── rpl_shutdown_wait_slaves.test │ │ │ ├── rpl_skip_error-slave.opt │ │ │ ├── rpl_skip_error.test │ │ │ ├── rpl_skip_incident-master.opt │ │ │ ├── rpl_skip_incident-slave.opt │ │ │ ├── rpl_skip_incident.test │ │ │ ├── rpl_skip_replication.test │ │ │ ├── rpl_slave_alias_replica.test │ │ │ ├── rpl_slave_grp_exec.test │ │ │ ├── rpl_slave_invalid_external_user.test │ │ │ ├── rpl_slave_load_in.test │ │ │ ├── rpl_slave_load_remove_tmpfile.test │ │ │ ├── rpl_slave_load_tmpdir_not_exist-slave.opt │ │ │ ├── rpl_slave_load_tmpdir_not_exist.test │ │ │ ├── rpl_slave_shutdown_mdev20821.cnf │ │ │ ├── rpl_slave_shutdown_mdev20821.test │ │ │ ├── rpl_slave_skip.test │ │ │ ├── rpl_slave_status.test │ │ │ ├── rpl_slow_query_log-slave.opt │ │ │ ├── rpl_slow_query_log.test │ │ │ ├── rpl_sp-master.opt │ │ │ ├── rpl_sp-slave.opt │ │ │ ├── rpl_sp.test │ │ │ ├── rpl_sp004.test │ │ │ ├── rpl_sp_effects-master.opt │ │ │ ├── rpl_sp_effects-slave.opt │ │ │ ├── rpl_sp_effects.test │ │ │ ├── rpl_sp_variables.test │ │ │ ├── rpl_spec_variables.test │ │ │ ├── rpl_special_charset.opt │ │ │ ├── rpl_special_charset.test │ │ │ ├── rpl_sporadic_master-master.opt │ │ │ ├── rpl_sporadic_master.test │ │ │ ├── rpl_ssl.test │ │ │ ├── rpl_ssl1.test │ │ │ ├── rpl_start_stop_slave-slave.opt │ │ │ ├── rpl_start_stop_slave.test │ │ │ ├── rpl_stm_000001.test │ │ │ ├── rpl_stm_EE_err2.test │ │ │ ├── rpl_stm_auto_increment_bug33029.test │ │ │ ├── rpl_stm_binlog_direct-master.opt │ │ │ ├── rpl_stm_binlog_max_cache_size.test │ │ │ ├── rpl_stm_conflicts.test │ │ │ ├── rpl_stm_drop_create_temp_table.test │ │ │ ├── rpl_stm_flsh_tbls.test │ │ │ ├── rpl_stm_found_rows.test │ │ │ ├── rpl_stm_implicit_commit_binlog.test │ │ │ ├── rpl_stm_innodb.test │ │ │ ├── rpl_stm_lcase_tblnames-slave.opt │ │ │ ├── rpl_stm_lcase_tblnames.test │ │ │ ├── rpl_stm_loaddata_concurrent.test │ │ │ ├── rpl_stm_loadfile.test │ │ │ ├── rpl_stm_log-slave.opt │ │ │ ├── rpl_stm_log.test │ │ │ ├── rpl_stm_maria.test │ │ │ ├── rpl_stm_max_relay_size.test │ │ │ ├── rpl_stm_mix_show_relaylog_events.test │ │ │ ├── rpl_stm_mixing_engines.test │ │ │ ├── rpl_stm_multi_query.test │ │ │ ├── rpl_stm_no_op.test │ │ │ ├── rpl_stm_relay_ign_space-slave.opt │ │ │ ├── rpl_stm_relay_ign_space.test │ │ │ ├── rpl_stm_reset_slave.test │ │ │ ├── rpl_stm_sp.test │ │ │ ├── rpl_stm_sql_mode.test │ │ │ ├── rpl_stm_start_stop_slave.test │ │ │ ├── rpl_stm_stop_middle_group.test │ │ │ ├── rpl_stm_until.test │ │ │ ├── rpl_stm_user_variables.test │ │ │ ├── rpl_stop_slave.test │ │ │ ├── rpl_stop_slave_error-slave.opt │ │ │ ├── rpl_stop_slave_error.test │ │ │ ├── rpl_strict_password_validation.test │ │ │ ├── rpl_switch_stm_row_mixed.test │ │ │ ├── rpl_sync-master.opt │ │ │ ├── rpl_sync-slave.opt │ │ │ ├── rpl_sync.test │ │ │ ├── rpl_table_options.test │ │ │ ├── rpl_temp_table.test │ │ │ ├── rpl_temp_table_mix_row.test │ │ │ ├── rpl_temporal_format_default_to_default.test │ │ │ ├── rpl_temporal_format_mariadb53_to_mariadb53.test │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56.test │ │ │ ├── rpl_temporal_format_mariadb53_to_mysql56_dst.test │ │ │ ├── rpl_temporal_format_mysql56_to_mariadb53.test │ │ │ ├── rpl_temporal_format_mysql56_to_mysql56.test │ │ │ ├── rpl_temporal_mysql56.test │ │ │ ├── rpl_temporal_mysql56_to_mariadb.test │ │ │ ├── rpl_temporal_mysql56_to_mariadb53.test │ │ │ ├── rpl_temporal_round.test │ │ │ ├── rpl_temporary.test │ │ │ ├── rpl_temporary_error2.test │ │ │ ├── rpl_temporary_errors-slave.opt │ │ │ ├── rpl_temporary_errors.test │ │ │ ├── rpl_test_framework.cnf │ │ │ ├── rpl_test_framework.test │ │ │ ├── rpl_timestamp.test │ │ │ ├── rpl_timezone-master.opt │ │ │ ├── rpl_timezone-slave.opt │ │ │ ├── rpl_timezone.test │ │ │ ├── rpl_tmp_table_and_DDL.test │ │ │ ├── rpl_tmp_table_and_DDL_innodb.test │ │ │ ├── rpl_trans_no_trans.test │ │ │ ├── rpl_trigger.test │ │ │ ├── rpl_trunc_temp.test │ │ │ ├── rpl_truncate_2myisam.test │ │ │ ├── rpl_truncate_3innodb.test │ │ │ ├── rpl_typeconv-slave.opt │ │ │ ├── rpl_typeconv.test │ │ │ ├── rpl_typeconv_innodb.test │ │ │ ├── rpl_udf.test │ │ │ ├── rpl_unsafe_statements.test │ │ │ ├── rpl_update.test │ │ │ ├── rpl_upgrade_master_info.test │ │ │ ├── rpl_user.test │ │ │ ├── rpl_user_variables.test │ │ │ ├── rpl_variables.test │ │ │ ├── rpl_variables_stm.test │ │ │ ├── rpl_view.test │ │ │ ├── rpl_view_debug.test │ │ │ ├── rpl_view_multi.test │ │ │ ├── rpl_xa-master.opt │ │ │ ├── rpl_xa.inc │ │ │ ├── rpl_xa.test │ │ │ ├── rpl_xa_gap_lock-slave.opt │ │ │ ├── rpl_xa_gap_lock.test │ │ │ ├── rpl_xa_gtid_pos_auto_engine-master.opt │ │ │ ├── rpl_xa_gtid_pos_auto_engine.test │ │ │ ├── rpl_xa_survive_disconnect.test │ │ │ ├── rpl_xa_survive_disconnect_lsu_off-slave.opt │ │ │ ├── rpl_xa_survive_disconnect_lsu_off.test │ │ │ ├── rpl_xa_survive_disconnect_mixed_engines.test │ │ │ ├── sec_behind_master-5114.test │ │ │ ├── semisync_future-7591.test │ │ │ ├── semisync_memleak_4066.test │ │ │ ├── sequence.cnf │ │ │ ├── sequence.test │ │ │ ├── show_status_stop_slave_race-7126.test │ │ │ ├── temporal_row-9560-master.opt │ │ │ ├── temporal_row-9560.combinations │ │ │ └── temporal_row-9560.test │ │ ├── s3/ │ │ │ ├── alter.result │ │ │ ├── alter.test │ │ │ ├── alter2.result │ │ │ ├── alter2.test │ │ │ ├── amazon.result │ │ │ ├── amazon.test │ │ │ ├── arguments.result │ │ │ ├── arguments.test │ │ │ ├── backup.result │ │ │ ├── backup.test │ │ │ ├── basic.result │ │ │ ├── basic.test │ │ │ ├── create_database.inc │ │ │ ├── disabled.def │ │ │ ├── discovery.result │ │ │ ├── discovery.test │ │ │ ├── drop_database.inc │ │ │ ├── encryption.opt │ │ │ ├── encryption.result │ │ │ ├── encryption.test │ │ │ ├── innodb.result │ │ │ ├── innodb.test │ │ │ ├── my.cnf │ │ │ ├── mysqldump.result │ │ │ ├── mysqldump.test │ │ │ ├── no_s3-master.opt │ │ │ ├── no_s3.result │ │ │ ├── no_s3.test │ │ │ ├── partition.result │ │ │ ├── partition.test │ │ │ ├── partition_create_fail.result │ │ │ ├── partition_create_fail.test │ │ │ ├── partition_move.result │ │ │ ├── partition_move.test │ │ │ ├── replication.inc │ │ │ ├── replication_delayed.cnf │ │ │ ├── replication_delayed.result │ │ │ ├── replication_delayed.test │ │ │ ├── replication_mixed.cnf │ │ │ ├── replication_mixed.result │ │ │ ├── replication_mixed.test │ │ │ ├── replication_partition.cnf │ │ │ ├── replication_partition.result │ │ │ ├── replication_partition.test │ │ │ ├── replication_stmt.cnf │ │ │ ├── replication_stmt.result │ │ │ ├── replication_stmt.test │ │ │ ├── select.result │ │ │ ├── select.test │ │ │ ├── slave.cnf │ │ │ ├── suite.pm │ │ │ ├── unsupported.result │ │ │ └── unsupported.test │ │ ├── sql_sequence/ │ │ │ ├── alter.result │ │ │ ├── alter.test │ │ │ ├── alter_notembedded.result │ │ │ ├── alter_notembedded.test │ │ │ ├── aria.result │ │ │ ├── aria.test │ │ │ ├── auto_increment.result │ │ │ ├── auto_increment.test │ │ │ ├── binlog.result │ │ │ ├── binlog.test │ │ │ ├── concurrent_create.result │ │ │ ├── concurrent_create.test │ │ │ ├── create.result │ │ │ ├── create.test │ │ │ ├── debug_sync.opt │ │ │ ├── debug_sync.result │ │ │ ├── debug_sync.test │ │ │ ├── default.result │ │ │ ├── default.test │ │ │ ├── disabled.def │ │ │ ├── grant.result │ │ │ ├── grant.test │ │ │ ├── gtid-master.opt │ │ │ ├── gtid-slave.opt │ │ │ ├── gtid.result │ │ │ ├── gtid.test │ │ │ ├── kill.result │ │ │ ├── kill.test │ │ │ ├── lock.result │ │ │ ├── lock.test │ │ │ ├── mysqldump.result │ │ │ ├── mysqldump.test │ │ │ ├── next.result │ │ │ ├── next.test │ │ │ ├── other.result │ │ │ ├── other.test │ │ │ ├── partition.result │ │ │ ├── partition.test │ │ │ ├── read_only.result │ │ │ ├── read_only.test │ │ │ ├── rebuild.result │ │ │ ├── rebuild.test │ │ │ ├── rename.result │ │ │ ├── rename.test │ │ │ ├── replication-master.opt │ │ │ ├── replication-slave.opt │ │ │ ├── replication.result │ │ │ ├── replication.test │ │ │ ├── replication_drop.result │ │ │ ├── replication_drop.test │ │ │ ├── replication_mixed.result │ │ │ ├── replication_mixed.test │ │ │ ├── setval.result │ │ │ ├── setval.test │ │ │ ├── slave_nextval.result │ │ │ ├── slave_nextval.test │ │ │ ├── temporary.result │ │ │ ├── temporary.test │ │ │ ├── view.result │ │ │ └── view.test │ │ ├── storage_engine/ │ │ │ ├── 1st.result │ │ │ ├── 1st.test │ │ │ ├── alter_table.inc │ │ │ ├── alter_table.result │ │ │ ├── alter_table.test │ │ │ ├── alter_table_online.result │ │ │ ├── alter_table_online.test │ │ │ ├── alter_tablespace.result │ │ │ ├── alter_tablespace.test │ │ │ ├── analyze_table.inc │ │ │ ├── analyze_table.result │ │ │ ├── analyze_table.test │ │ │ ├── autoinc_secondary.result │ │ │ ├── autoinc_secondary.test │ │ │ ├── autoinc_vars.result │ │ │ ├── autoinc_vars.test │ │ │ ├── autoincrement.result │ │ │ ├── autoincrement.test │ │ │ ├── cache_index.result │ │ │ ├── cache_index.test │ │ │ ├── check_errors.inc │ │ │ ├── check_table.inc │ │ │ ├── check_table.result │ │ │ ├── check_table.test │ │ │ ├── checksum_table.inc │ │ │ ├── checksum_table.result │ │ │ ├── checksum_table.test │ │ │ ├── checksum_table_live.inc │ │ │ ├── checksum_table_live.result │ │ │ ├── checksum_table_live.test │ │ │ ├── cleanup_engine.inc │ │ │ ├── col_not_null.inc │ │ │ ├── col_null.inc │ │ │ ├── col_opt_default.result │ │ │ ├── col_opt_default.test │ │ │ ├── col_opt_not_null.result │ │ │ ├── col_opt_not_null.test │ │ │ ├── col_opt_null.result │ │ │ ├── col_opt_null.test │ │ │ ├── col_opt_unsigned.result │ │ │ ├── col_opt_unsigned.test │ │ │ ├── col_opt_zerofill.result │ │ │ ├── col_opt_zerofill.test │ │ │ ├── create_table.inc │ │ │ ├── create_table.result │ │ │ ├── create_table.test │ │ │ ├── define_engine.inc │ │ │ ├── delete.result │ │ │ ├── delete.test │ │ │ ├── delete_ignore.result │ │ │ ├── delete_ignore.test │ │ │ ├── delete_low_prio.result │ │ │ ├── delete_low_prio.test │ │ │ ├── delete_quick.result │ │ │ ├── delete_quick.test │ │ │ ├── delete_with_keys.result │ │ │ ├── delete_with_keys.test │ │ │ ├── describe.result │ │ │ ├── describe.test │ │ │ ├── disabled.def │ │ │ ├── foreign_keys.result │ │ │ ├── foreign_keys.test │ │ │ ├── fulltext_search.result │ │ │ ├── fulltext_search.test │ │ │ ├── handler.result │ │ │ ├── handler.test │ │ │ ├── have_default_index.inc │ │ │ ├── have_engine.inc │ │ │ ├── index.inc │ │ │ ├── index.result │ │ │ ├── index.test │ │ │ ├── index_enable_disable.result │ │ │ ├── index_enable_disable.test │ │ │ ├── index_key_block_size.result │ │ │ ├── index_key_block_size.test │ │ │ ├── index_primary.result │ │ │ ├── index_primary.test │ │ │ ├── index_type_btree.result │ │ │ ├── index_type_btree.test │ │ │ ├── index_type_hash.result │ │ │ ├── index_type_hash.test │ │ │ ├── insert.result │ │ │ ├── insert.test │ │ │ ├── insert_delayed.result │ │ │ ├── insert_delayed.test │ │ │ ├── insert_high_prio.result │ │ │ ├── insert_high_prio.test │ │ │ ├── insert_low_prio.result │ │ │ ├── insert_low_prio.test │ │ │ ├── insert_with_keys.result │ │ │ ├── insert_with_keys.test │ │ │ ├── loaddata.result │ │ │ ├── loaddata.test │ │ │ ├── lock.result │ │ │ ├── lock.test │ │ │ ├── lock_concurrent.result │ │ │ ├── lock_concurrent.test │ │ │ ├── mask_engine.inc │ │ │ ├── misc.result │ │ │ ├── misc.test │ │ │ ├── my.cnf │ │ │ ├── obfuscate.inc │ │ │ ├── optimize_table.inc │ │ │ ├── optimize_table.result │ │ │ ├── optimize_table.test │ │ │ ├── parts/ │ │ │ │ ├── alter_table.result │ │ │ │ ├── alter_table.test │ │ │ │ ├── analyze_table.result │ │ │ │ ├── analyze_table.test │ │ │ │ ├── check_table.result │ │ │ │ ├── check_table.test │ │ │ │ ├── checksum_table.result │ │ │ │ ├── checksum_table.test │ │ │ │ ├── create_table.result │ │ │ │ ├── create_table.test │ │ │ │ ├── my.cnf │ │ │ │ ├── optimize_table.result │ │ │ │ ├── optimize_table.test │ │ │ │ ├── repair_table.opt │ │ │ │ ├── repair_table.result │ │ │ │ ├── repair_table.test │ │ │ │ ├── truncate_table.result │ │ │ │ └── truncate_table.test │ │ │ ├── repair_table.inc │ │ │ ├── repair_table.result │ │ │ ├── repair_table.test │ │ │ ├── replace.result │ │ │ ├── replace.test │ │ │ ├── select.result │ │ │ ├── select.test │ │ │ ├── select_high_prio.result │ │ │ ├── select_high_prio.test │ │ │ ├── show_engine.result │ │ │ ├── show_engine.test │ │ │ ├── show_table_status.result │ │ │ ├── show_table_status.test │ │ │ ├── strict_check_errors.inc │ │ │ ├── tbl_opt_ai.result │ │ │ ├── tbl_opt_ai.test │ │ │ ├── tbl_opt_avg_row_length.result │ │ │ ├── tbl_opt_avg_row_length.test │ │ │ ├── tbl_opt_checksum.result │ │ │ ├── tbl_opt_checksum.test │ │ │ ├── tbl_opt_connection.result │ │ │ ├── tbl_opt_connection.test │ │ │ ├── tbl_opt_data_dir.result │ │ │ ├── tbl_opt_data_dir.test │ │ │ ├── tbl_opt_delay_key_write.result │ │ │ ├── tbl_opt_delay_key_write.test │ │ │ ├── tbl_opt_index_dir.result │ │ │ ├── tbl_opt_index_dir.test │ │ │ ├── tbl_opt_insert_method.result │ │ │ ├── tbl_opt_insert_method.test │ │ │ ├── tbl_opt_key_block_size.result │ │ │ ├── tbl_opt_key_block_size.test │ │ │ ├── tbl_opt_max_rows.result │ │ │ ├── tbl_opt_max_rows.test │ │ │ ├── tbl_opt_min_rows.result │ │ │ ├── tbl_opt_min_rows.test │ │ │ ├── tbl_opt_pack_keys.result │ │ │ ├── tbl_opt_pack_keys.test │ │ │ ├── tbl_opt_password.result │ │ │ ├── tbl_opt_password.test │ │ │ ├── tbl_opt_row_format.result │ │ │ ├── tbl_opt_row_format.test │ │ │ ├── tbl_opt_union.result │ │ │ ├── tbl_opt_union.test │ │ │ ├── tbl_standard_opts.result │ │ │ ├── tbl_standard_opts.test │ │ │ ├── tbl_temporary.result │ │ │ ├── tbl_temporary.test │ │ │ ├── truncate_table.result │ │ │ ├── truncate_table.test │ │ │ ├── trx/ │ │ │ │ ├── cons_snapshot_repeatable_read.result │ │ │ │ ├── cons_snapshot_repeatable_read.test │ │ │ │ ├── cons_snapshot_serializable.result │ │ │ │ ├── cons_snapshot_serializable.test │ │ │ │ ├── consistent_snapshot.inc │ │ │ │ ├── delete.result │ │ │ │ ├── delete.test │ │ │ │ ├── insert.result │ │ │ │ ├── insert.test │ │ │ │ ├── level_read_committed.result │ │ │ │ ├── level_read_committed.test │ │ │ │ ├── level_read_uncommitted.result │ │ │ │ ├── level_read_uncommitted.test │ │ │ │ ├── level_repeatable_read.result │ │ │ │ ├── level_repeatable_read.test │ │ │ │ ├── level_serializable.result │ │ │ │ ├── level_serializable.test │ │ │ │ ├── my.cnf │ │ │ │ ├── select_for_update.result │ │ │ │ ├── select_for_update.test │ │ │ │ ├── select_lock_in_share_mode.result │ │ │ │ ├── select_lock_in_share_mode.test │ │ │ │ ├── support_savepoints.inc │ │ │ │ ├── support_transactions.inc │ │ │ │ ├── support_xa.inc │ │ │ │ ├── transaction_isolation.inc │ │ │ │ ├── update.result │ │ │ │ ├── update.test │ │ │ │ ├── xa.result │ │ │ │ ├── xa.test │ │ │ │ ├── xa_recovery.result │ │ │ │ └── xa_recovery.test │ │ │ ├── type_binary.inc │ │ │ ├── type_binary.result │ │ │ ├── type_binary.test │ │ │ ├── type_binary_indexes.result │ │ │ ├── type_binary_indexes.test │ │ │ ├── type_bit.inc │ │ │ ├── type_bit.result │ │ │ ├── type_bit.test │ │ │ ├── type_bit_indexes.result │ │ │ ├── type_bit_indexes.test │ │ │ ├── type_blob.inc │ │ │ ├── type_blob.result │ │ │ ├── type_blob.test │ │ │ ├── type_blob_indexes.result │ │ │ ├── type_blob_indexes.test │ │ │ ├── type_bool.inc │ │ │ ├── type_bool.result │ │ │ ├── type_bool.test │ │ │ ├── type_char.inc │ │ │ ├── type_char.result │ │ │ ├── type_char.test │ │ │ ├── type_char_indexes.result │ │ │ ├── type_char_indexes.test │ │ │ ├── type_date_time.inc │ │ │ ├── type_date_time.result │ │ │ ├── type_date_time.test │ │ │ ├── type_date_time_indexes.result │ │ │ ├── type_date_time_indexes.test │ │ │ ├── type_enum.inc │ │ │ ├── type_enum.result │ │ │ ├── type_enum.test │ │ │ ├── type_enum_indexes.result │ │ │ ├── type_enum_indexes.test │ │ │ ├── type_fixed.inc │ │ │ ├── type_fixed.result │ │ │ ├── type_fixed.test │ │ │ ├── type_fixed_indexes.result │ │ │ ├── type_fixed_indexes.test │ │ │ ├── type_float.inc │ │ │ ├── type_float.result │ │ │ ├── type_float.test │ │ │ ├── type_float_indexes.result │ │ │ ├── type_float_indexes.test │ │ │ ├── type_int.inc │ │ │ ├── type_int.result │ │ │ ├── type_int.test │ │ │ ├── type_int_indexes.result │ │ │ ├── type_int_indexes.test │ │ │ ├── type_set.inc │ │ │ ├── type_set.result │ │ │ ├── type_set.test │ │ │ ├── type_set_indexes.result │ │ │ ├── type_set_indexes.test │ │ │ ├── type_spatial.inc │ │ │ ├── type_spatial.result │ │ │ ├── type_spatial.test │ │ │ ├── type_spatial_indexes.result │ │ │ ├── type_spatial_indexes.test │ │ │ ├── type_text.inc │ │ │ ├── type_text.result │ │ │ ├── type_text.test │ │ │ ├── type_text_indexes.result │ │ │ ├── type_text_indexes.test │ │ │ ├── type_varbinary.inc │ │ │ ├── type_varbinary.result │ │ │ ├── type_varbinary.test │ │ │ ├── type_varchar.inc │ │ │ ├── type_varchar.result │ │ │ ├── type_varchar.test │ │ │ ├── unexpected_result.inc │ │ │ ├── update.result │ │ │ ├── update.test │ │ │ ├── update_ignore.result │ │ │ ├── update_ignore.test │ │ │ ├── update_low_prio.result │ │ │ ├── update_low_prio.test │ │ │ ├── update_multi.result │ │ │ ├── update_multi.test │ │ │ ├── update_with_keys.result │ │ │ ├── update_with_keys.test │ │ │ ├── vcol.result │ │ │ └── vcol.test │ │ ├── stress/ │ │ │ ├── include/ │ │ │ │ ├── ddl.cln │ │ │ │ ├── ddl.pre │ │ │ │ ├── ddl1.inc │ │ │ │ ├── ddl2.inc │ │ │ │ ├── ddl3.inc │ │ │ │ ├── ddl4.inc │ │ │ │ ├── ddl5.inc │ │ │ │ ├── ddl6.inc │ │ │ │ ├── ddl7.inc │ │ │ │ └── ddl8.inc │ │ │ ├── r/ │ │ │ │ ├── ddl_archive.result │ │ │ │ ├── ddl_csv.result │ │ │ │ ├── ddl_innodb.result │ │ │ │ ├── ddl_memory.result │ │ │ │ ├── ddl_myisam.result │ │ │ │ ├── deadlock_drop_table.result │ │ │ │ └── misc.result │ │ │ └── t/ │ │ │ ├── ddl_archive.test │ │ │ ├── ddl_csv.test │ │ │ ├── ddl_innodb.test │ │ │ ├── ddl_memory.test │ │ │ ├── ddl_myisam.test │ │ │ ├── deadlock_drop_table.test │ │ │ ├── misc.test │ │ │ └── wrapper.test │ │ ├── sys_vars/ │ │ │ ├── disabled.def │ │ │ ├── inc/ │ │ │ │ ├── autocommit_func2.inc │ │ │ │ ├── bin_relay_log_basename_index.inc │ │ │ │ ├── charset_basic.inc │ │ │ │ ├── collation_basic.inc │ │ │ │ ├── explicit_defaults_for_timestamp.inc │ │ │ │ ├── secure_timestamp_func.inc │ │ │ │ ├── sysvar_global_and_session_grant.inc │ │ │ │ ├── sysvar_global_grant.inc │ │ │ │ ├── sysvar_global_grant_alone.inc │ │ │ │ ├── sysvar_session_grant.inc │ │ │ │ ├── sysvar_session_grant_alone.inc │ │ │ │ ├── sysvars_server.inc │ │ │ │ └── sysvars_server.opt │ │ │ ├── r/ │ │ │ │ ├── all_vars.result │ │ │ │ ├── alter_algorithm_basic.result │ │ │ │ ├── aria_block_size_basic.result │ │ │ │ ├── aria_checkpoint_interval_basic.result │ │ │ │ ├── aria_checkpoint_log_activity_basic.result │ │ │ │ ├── aria_encrypt_tables_basic.result │ │ │ │ ├── aria_force_start_after_recovery_failures_basic.result │ │ │ │ ├── aria_group_commit_basic.result │ │ │ │ ├── aria_group_commit_interval_basic.result │ │ │ │ ├── aria_log_file_size_basic.result │ │ │ │ ├── aria_log_purge_type_basic.result │ │ │ │ ├── aria_max_sort_file_size_basic.result │ │ │ │ ├── aria_page_checksum_basic.result │ │ │ │ ├── aria_pagecache_age_threshold_basic.result │ │ │ │ ├── aria_pagecache_buffer_size_basic.result │ │ │ │ ├── aria_pagecache_division_limit_basic.result │ │ │ │ ├── aria_pagecache_file_hash_size_basic.result │ │ │ │ ├── aria_recover_options_basic.result │ │ │ │ ├── aria_repair_threads_basic.result │ │ │ │ ├── aria_sort_buffer_size_basic,32bit.rdiff │ │ │ │ ├── aria_sort_buffer_size_basic.result │ │ │ │ ├── aria_stats_method_basic.result │ │ │ │ ├── aria_sync_log_dir_basic.result │ │ │ │ ├── aria_used_for_temp_tables_basic.result │ │ │ │ ├── auto_increment_increment_basic.result │ │ │ │ ├── auto_increment_increment_func.result │ │ │ │ ├── auto_increment_offset_basic.result │ │ │ │ ├── auto_increment_offset_func.result │ │ │ │ ├── autocommit_basic.result │ │ │ │ ├── autocommit_func.result │ │ │ │ ├── autocommit_func2.result │ │ │ │ ├── autocommit_func3.result │ │ │ │ ├── autocommit_func4.result │ │ │ │ ├── autocommit_func5.result │ │ │ │ ├── automatic_sp_privileges_basic.result │ │ │ │ ├── automatic_sp_privileges_func.result │ │ │ │ ├── back_log_basic.result │ │ │ │ ├── basedir_basic.result │ │ │ │ ├── big_tables_basic.result │ │ │ │ ├── bind_address_basic.result │ │ │ │ ├── binlog_annotate_row_events_basic.result │ │ │ │ ├── binlog_annotate_row_events_grant.result │ │ │ │ ├── binlog_cache_size_basic.result │ │ │ │ ├── binlog_cache_size_grant.result │ │ │ │ ├── binlog_checksum_basic.result │ │ │ │ ├── binlog_commit_wait_count_basic.result │ │ │ │ ├── binlog_commit_wait_count_grant.result │ │ │ │ ├── binlog_commit_wait_usec_basic.result │ │ │ │ ├── binlog_commit_wait_usec_grant.result │ │ │ │ ├── binlog_direct_non_transactional_updates_basic.result │ │ │ │ ├── binlog_direct_non_transactional_updates_grant.result │ │ │ │ ├── binlog_expire_logs_seconds_basic.result │ │ │ │ ├── binlog_expire_logs_seconds_grant.result │ │ │ │ ├── binlog_file_cache_size_grant.result │ │ │ │ ├── binlog_format_basic.result │ │ │ │ ├── binlog_format_grant.result │ │ │ │ ├── binlog_optimize_thread_scheduling_basic.result │ │ │ │ ├── binlog_row_image_basic.result │ │ │ │ ├── binlog_row_image_grant.result │ │ │ │ ├── binlog_row_metadata_basic.result │ │ │ │ ├── binlog_row_metadata_grant.result │ │ │ │ ├── binlog_stmt_cache_size_basic.result │ │ │ │ ├── binlog_stmt_cache_size_grant.result │ │ │ │ ├── bulk_insert_buffer_size_basic.result │ │ │ │ ├── character_set_client_basic.result │ │ │ │ ├── character_set_client_func.result │ │ │ │ ├── character_set_connection_basic.result │ │ │ │ ├── character_set_connection_func.result │ │ │ │ ├── character_set_database_basic.result │ │ │ │ ├── character_set_database_func.result │ │ │ │ ├── character_set_filesystem_basic.result │ │ │ │ ├── character_set_results_basic.result │ │ │ │ ├── character_set_results_func.result │ │ │ │ ├── character_set_server_basic.result │ │ │ │ ├── character_set_server_func.result │ │ │ │ ├── character_set_system_basic.result │ │ │ │ ├── character_sets_dir_basic.result │ │ │ │ ├── collation_connection_basic.result │ │ │ │ ├── collation_connection_func.result │ │ │ │ ├── collation_database_basic.result │ │ │ │ ├── collation_database_func.result │ │ │ │ ├── collation_server_basic.result │ │ │ │ ├── collation_server_func.result │ │ │ │ ├── completion_type_basic.result │ │ │ │ ├── completion_type_func.result │ │ │ │ ├── concurrent_insert_basic.result │ │ │ │ ├── concurrent_insert_func.result │ │ │ │ ├── connect_timeout_basic.result │ │ │ │ ├── connect_timeout_grant.result │ │ │ │ ├── datadir_basic.result │ │ │ │ ├── date_format_basic.result │ │ │ │ ├── datetime_format_basic.result │ │ │ │ ├── deadlock_search_depth_long_basic.result │ │ │ │ ├── deadlock_search_depth_short_basic.result │ │ │ │ ├── deadlock_timeout_long_basic.result │ │ │ │ ├── deadlock_timeout_short_basic.result │ │ │ │ ├── debug_basic.result │ │ │ │ ├── debug_binlog_fsync_sleep_basic.result │ │ │ │ ├── debug_dbug_basic.result │ │ │ │ ├── debug_dbug_func.result │ │ │ │ ├── debug_dbug_func_notembedded.result │ │ │ │ ├── debug_mutex_deadlock_detector_basic.result │ │ │ │ ├── debug_no_thread_alarm_basic.result │ │ │ │ ├── debug_sync_basic.result │ │ │ │ ├── default_master_connection_basic.result │ │ │ │ ├── default_regex_flags_basic.result │ │ │ │ ├── default_storage_engine_basic.result │ │ │ │ ├── default_tmp_storage_engine_basic.result │ │ │ │ ├── default_week_format_basic.result │ │ │ │ ├── default_week_format_func.result │ │ │ │ ├── delay_key_write_basic.result │ │ │ │ ├── delay_key_write_func.result │ │ │ │ ├── delayed_insert_limit_basic.result │ │ │ │ ├── delayed_insert_limit_func.result │ │ │ │ ├── delayed_insert_timeout_basic.result │ │ │ │ ├── delayed_queue_size_basic.result │ │ │ │ ├── disconnect_on_expired_password_grant.result │ │ │ │ ├── div_precision_increment_basic.result │ │ │ │ ├── div_precision_increment_func.result │ │ │ │ ├── encrypt_tmp_disk_tables_basic.result │ │ │ │ ├── enforce_storage_engine_basic.result │ │ │ │ ├── error_count_basic.result │ │ │ │ ├── event_scheduler_basic.result │ │ │ │ ├── expensive_subquery_limit_basic.result │ │ │ │ ├── expire_logs_days_basic.result │ │ │ │ ├── expire_logs_days_grant.result │ │ │ │ ├── explicit_defaults_for_timestamp_off.result │ │ │ │ ├── explicit_defaults_for_timestamp_on.result │ │ │ │ ├── external_user_basic.result │ │ │ │ ├── extra_max_connections_basic.result │ │ │ │ ├── extra_max_connections_grant.result │ │ │ │ ├── extra_port_basic.result │ │ │ │ ├── flush_basic.result │ │ │ │ ├── flush_time_basic.result │ │ │ │ ├── foreign_key_checks_basic.result │ │ │ │ ├── foreign_key_checks_func.result │ │ │ │ ├── ft_boolean_syntax_basic.result │ │ │ │ ├── ft_boolean_syntax_func.result │ │ │ │ ├── ft_max_word_len_basic.result │ │ │ │ ├── ft_min_word_len_basic.result │ │ │ │ ├── ft_query_expansion_limit_basic.result │ │ │ │ ├── ft_stopword_file_basic.result │ │ │ │ ├── general_log_basic.result │ │ │ │ ├── general_log_file_basic.result │ │ │ │ ├── general_log_file_func.result │ │ │ │ ├── general_log_func.result │ │ │ │ ├── group_concat_max_len_basic.result │ │ │ │ ├── group_concat_max_len_func.result │ │ │ │ ├── gtid_binlog_pos_basic.result │ │ │ │ ├── gtid_binlog_state_basic.result │ │ │ │ ├── gtid_binlog_state_grant.result │ │ │ │ ├── gtid_cleanup_batch_size_grant.result │ │ │ │ ├── gtid_current_pos_basic.result │ │ │ │ ├── gtid_domain_id_basic.result │ │ │ │ ├── gtid_domain_id_grant.result │ │ │ │ ├── gtid_ignore_duplicates_basic.result │ │ │ │ ├── gtid_ignore_duplicates_grant.result │ │ │ │ ├── gtid_pos_auto_engines_grant.result │ │ │ │ ├── gtid_seq_no_basic.result │ │ │ │ ├── gtid_seq_no_grant.result │ │ │ │ ├── gtid_slave_pos_basic.result │ │ │ │ ├── gtid_slave_pos_grant.result │ │ │ │ ├── gtid_strict_mode_basic.result │ │ │ │ ├── gtid_strict_mode_grant.result │ │ │ │ ├── have_compress_basic.result │ │ │ │ ├── have_crypt_basic.result │ │ │ │ ├── have_csv_basic.result │ │ │ │ ├── have_dynamic_loading_basic.result │ │ │ │ ├── have_geometry_basic.result │ │ │ │ ├── have_innodb_basic.result │ │ │ │ ├── have_openssl_basic.result │ │ │ │ ├── have_profiling_basic.result │ │ │ │ ├── have_query_cache_basic.result │ │ │ │ ├── have_rtree_keys_basic.result │ │ │ │ ├── have_ssl_basic.result │ │ │ │ ├── have_symlink_basic.result │ │ │ │ ├── histogram_size_basic.result │ │ │ │ ├── histogram_type_basic.result │ │ │ │ ├── host_cache_size_auto.result │ │ │ │ ├── host_cache_size_basic.result │ │ │ │ ├── hostname_basic.result │ │ │ │ ├── identity_basic.result │ │ │ │ ├── identity_func.result │ │ │ │ ├── ignore_builtin_innodb_basic.result │ │ │ │ ├── ignore_db_dirs_basic.result │ │ │ │ ├── in_transaction_basic.result │ │ │ │ ├── init_connect_basic.result │ │ │ │ ├── init_connect_grant.result │ │ │ │ ├── init_file_basic.result │ │ │ │ ├── init_slave_basic.result │ │ │ │ ├── init_slave_grant.result │ │ │ │ ├── innodb_adaptive_flushing_basic.result │ │ │ │ ├── innodb_adaptive_flushing_lwm_basic.result │ │ │ │ ├── innodb_adaptive_hash_index_basic.result │ │ │ │ ├── innodb_adaptive_hash_index_parts_basic.result │ │ │ │ ├── innodb_autoextend_increment_basic.result │ │ │ │ ├── innodb_autoinc_lock_mode_basic.result │ │ │ │ ├── innodb_autoinc_lock_mode_func.result │ │ │ │ ├── innodb_buf_dump_status_frequency_basic.result │ │ │ │ ├── innodb_buf_flush_list_now_basic.result │ │ │ │ ├── innodb_buffer_pool_chunk_size_basic.result │ │ │ │ ├── innodb_buffer_pool_dump_abort_loads.result │ │ │ │ ├── innodb_buffer_pool_dump_at_shutdown_basic.result │ │ │ │ ├── innodb_buffer_pool_dump_now_basic.result │ │ │ │ ├── innodb_buffer_pool_dump_pct_basic.result │ │ │ │ ├── innodb_buffer_pool_dump_pct_function.result │ │ │ │ ├── innodb_buffer_pool_evict_basic.result │ │ │ │ ├── innodb_buffer_pool_load_abort_basic.result │ │ │ │ ├── innodb_buffer_pool_load_at_startup_basic.result │ │ │ │ ├── innodb_buffer_pool_load_now_basic.result │ │ │ │ ├── innodb_buffer_pool_size_basic.result │ │ │ │ ├── innodb_change_buffer_max_size_basic.result │ │ │ │ ├── innodb_change_buffering_basic.result │ │ │ │ ├── innodb_change_buffering_debug_basic.result │ │ │ │ ├── innodb_checksum_algorithm_basic.result │ │ │ │ ├── innodb_cmp_per_index_enabled_basic.result │ │ │ │ ├── innodb_compression_algorithm_basic.result │ │ │ │ ├── innodb_compression_failure_threshold_pct_basic.result │ │ │ │ ├── innodb_compression_level_basic.result │ │ │ │ ├── innodb_compression_pad_pct_max_basic.result │ │ │ │ ├── innodb_data_file_path_basic.result │ │ │ │ ├── innodb_data_home_dir_basic.result │ │ │ │ ├── innodb_deadlock_detect_basic.result │ │ │ │ ├── innodb_default_row_format_basic.result │ │ │ │ ├── innodb_defragment_basic.result │ │ │ │ ├── innodb_defragment_fill_factor_basic.result │ │ │ │ ├── innodb_defragment_fill_factor_n_recs_basic.result │ │ │ │ ├── innodb_defragment_frequency_basic.result │ │ │ │ ├── innodb_defragment_n_pages_basic.result │ │ │ │ ├── innodb_defragment_stats_accuracy_basic.result │ │ │ │ ├── innodb_disable_sort_file_cache_basic.result │ │ │ │ ├── innodb_doublewrite_basic.result │ │ │ │ ├── innodb_encrypt_log_basic.result │ │ │ │ ├── innodb_encrypt_tables_basic.result │ │ │ │ ├── innodb_encryption_rotate_key_age_basic.result │ │ │ │ ├── innodb_encryption_rotation_iops_basic.result │ │ │ │ ├── innodb_encryption_threads_basic.result │ │ │ │ ├── innodb_fast_shutdown_basic.result │ │ │ │ ├── innodb_fatal_semaphore_wait_threshold.result │ │ │ │ ├── innodb_fatal_semaphore_wait_threshold_basic.result │ │ │ │ ├── innodb_fil_make_page_dirty_debug_basic.result │ │ │ │ ├── innodb_file_io_threads_basic.result │ │ │ │ ├── innodb_file_per_table_basic.result │ │ │ │ ├── innodb_fill_factor_basic.result │ │ │ │ ├── innodb_flush_log_at_timeout_basic.result │ │ │ │ ├── innodb_flush_log_at_trx_commit_basic.result │ │ │ │ ├── innodb_flush_method_basic.result │ │ │ │ ├── innodb_flush_method_func.result │ │ │ │ ├── innodb_flush_neighbors_basic.result │ │ │ │ ├── innodb_flush_sync_basic.result │ │ │ │ ├── innodb_flushing_avg_loops_basic.result │ │ │ │ ├── innodb_force_primary_key_basic.result │ │ │ │ ├── innodb_force_recovery_basic.result │ │ │ │ ├── innodb_ft_aux_table_basic.result │ │ │ │ ├── innodb_ft_cache_size_basic.result │ │ │ │ ├── innodb_ft_enable_diag_print_basic.result │ │ │ │ ├── innodb_ft_enable_stopword_basic.result │ │ │ │ ├── innodb_ft_max_token_size_basic.result │ │ │ │ ├── innodb_ft_min_token_size_basic.result │ │ │ │ ├── innodb_ft_num_word_optimize_basic.result │ │ │ │ ├── innodb_ft_result_cache_limit,32bit.rdiff │ │ │ │ ├── innodb_ft_result_cache_limit.result │ │ │ │ ├── innodb_ft_result_cache_limit_basic,32bit.rdiff │ │ │ │ ├── innodb_ft_result_cache_limit_basic.result │ │ │ │ ├── innodb_ft_server_stopword_table_basic.result │ │ │ │ ├── innodb_ft_sort_pll_degree_basic.result │ │ │ │ ├── innodb_ft_total_cache_size_basic.result │ │ │ │ ├── innodb_ft_user_stopword_table_basic.result │ │ │ │ ├── innodb_immediate_scrub_data_uncompressed_basic.result │ │ │ │ ├── innodb_instant_alter_column_allowed_basic.result │ │ │ │ ├── innodb_io_capacity_basic.result │ │ │ │ ├── innodb_io_capacity_max_basic.result │ │ │ │ ├── innodb_limit_optimistic_insert_debug_basic.result │ │ │ │ ├── innodb_lock_wait_timeout_basic.result │ │ │ │ ├── innodb_log_buffer_size_basic.result │ │ │ │ ├── innodb_log_checkpoint_now_basic.result │ │ │ │ ├── innodb_log_file_size_basic.result │ │ │ │ ├── innodb_log_group_home_dir_basic.result │ │ │ │ ├── innodb_log_write_ahead_size_basic.result │ │ │ │ ├── innodb_lru_scan_depth_basic.result │ │ │ │ ├── innodb_max_dirty_pages_pct_basic.result │ │ │ │ ├── innodb_max_dirty_pages_pct_func.result │ │ │ │ ├── innodb_max_dirty_pages_pct_lwm_basic.result │ │ │ │ ├── innodb_max_purge_lag_basic.result │ │ │ │ ├── innodb_max_purge_lag_delay_basic.result │ │ │ │ ├── innodb_max_undo_log_size_basic.result │ │ │ │ ├── innodb_merge_threshold_set_all_debug_basic.result │ │ │ │ ├── innodb_numa_interleave_basic.result │ │ │ │ ├── innodb_old_blocks_pct_basic.result │ │ │ │ ├── innodb_old_blocks_time_basic.result │ │ │ │ ├── innodb_online_alter_log_max_size_basic.result │ │ │ │ ├── innodb_open_files_basic.result │ │ │ │ ├── innodb_optimize_fulltext_only_basic.result │ │ │ │ ├── innodb_page_size_basic.result │ │ │ │ ├── innodb_prefix_index_cluster_optimization_basic.result │ │ │ │ ├── innodb_print_all_deadlocks_basic.result │ │ │ │ ├── innodb_purge_batch_size_basic.result │ │ │ │ ├── innodb_purge_rseg_truncate_frequency_basic.result │ │ │ │ ├── innodb_purge_threads_basic.result │ │ │ │ ├── innodb_random_read_ahead_basic.result │ │ │ │ ├── innodb_read_ahead_threshold_basic.result │ │ │ │ ├── innodb_read_io_threads_basic.result │ │ │ │ ├── innodb_read_only_basic.result │ │ │ │ ├── innodb_rollback_on_timeout_basic.result │ │ │ │ ├── innodb_saved_page_number_debug_basic.result │ │ │ │ ├── innodb_sort_buffer_size_basic.result │ │ │ │ ├── innodb_spin_wait_delay_basic.result │ │ │ │ ├── innodb_stats_auto_recalc_basic.result │ │ │ │ ├── innodb_stats_include_delete_marked_basic.result │ │ │ │ ├── innodb_stats_method_basic.result │ │ │ │ ├── innodb_stats_modified_counter_basic.result │ │ │ │ ├── innodb_stats_on_metadata_basic.result │ │ │ │ ├── innodb_stats_persistent_basic.result │ │ │ │ ├── innodb_stats_persistent_sample_pages_basic.result │ │ │ │ ├── innodb_stats_traditional_basic.result │ │ │ │ ├── innodb_stats_transient_sample_pages_basic.result │ │ │ │ ├── innodb_status_output_basic.result │ │ │ │ ├── innodb_status_output_locks_basic.result │ │ │ │ ├── innodb_strict_mode_basic.result │ │ │ │ ├── innodb_sync_spin_loops_basic.result │ │ │ │ ├── innodb_table_locks_basic.result │ │ │ │ ├── innodb_table_locks_func.result │ │ │ │ ├── innodb_temp_data_file_path_basic.result │ │ │ │ ├── innodb_tmpdir_basic.result │ │ │ │ ├── innodb_trx_purge_view_update_only_debug_basic.result │ │ │ │ ├── innodb_trx_rseg_n_slots_debug_basic.result │ │ │ │ ├── innodb_undo_directory_basic.result │ │ │ │ ├── innodb_undo_log_truncate_basic.result │ │ │ │ ├── innodb_undo_tablespaces_basic.result │ │ │ │ ├── innodb_use_atomic_writes_basic.result │ │ │ │ ├── innodb_use_native_aio_basic.result │ │ │ │ ├── innodb_version_basic.result │ │ │ │ ├── innodb_write_io_threads_basic.result │ │ │ │ ├── insert_id_basic.result │ │ │ │ ├── insert_id_func.result │ │ │ │ ├── interactive_timeout_basic.result │ │ │ │ ├── interactive_timeout_func.result │ │ │ │ ├── join_buffer_size_basic.result │ │ │ │ ├── join_buffer_space_limit_basic.result │ │ │ │ ├── join_cache_level_basic.result │ │ │ │ ├── keep_files_on_create_basic.result │ │ │ │ ├── key_buffer_size_basic.result │ │ │ │ ├── key_buffer_size_func.result │ │ │ │ ├── key_cache_age_threshold_basic.result │ │ │ │ ├── key_cache_block_size_basic.result │ │ │ │ ├── key_cache_division_limit_basic.result │ │ │ │ ├── key_cache_file_hash_size_basic.result │ │ │ │ ├── key_cache_segments_basic.result │ │ │ │ ├── large_files_support_basic.result │ │ │ │ ├── large_page_size_basic.result │ │ │ │ ├── large_pages_basic.result │ │ │ │ ├── last_gtid_basic.result │ │ │ │ ├── last_insert_id_basic.result │ │ │ │ ├── last_insert_id_func.result │ │ │ │ ├── lc_messages_basic.result │ │ │ │ ├── lc_messages_dir_basic.result │ │ │ │ ├── lc_time_names_basic.result │ │ │ │ ├── lc_time_names_func.result │ │ │ │ ├── license_basic.result │ │ │ │ ├── local_infile_basic.result │ │ │ │ ├── local_infile_func.result │ │ │ │ ├── lock_wait_timeout_basic.result │ │ │ │ ├── locked_in_memory_basic.result │ │ │ │ ├── log_basic.result │ │ │ │ ├── log_bin_basename_basic.result │ │ │ │ ├── log_bin_basic.result │ │ │ │ ├── log_bin_compress_grant.result │ │ │ │ ├── log_bin_compress_min_len_grant.result │ │ │ │ ├── log_bin_index_basic.result │ │ │ │ ├── log_bin_trust_function_creators_basic.result │ │ │ │ ├── log_bin_trust_function_creators_func.result │ │ │ │ ├── log_bin_trust_function_creators_grant.result │ │ │ │ ├── log_disabled_statements_basic.result │ │ │ │ ├── log_disabled_statements_func.result │ │ │ │ ├── log_error_func.result │ │ │ │ ├── log_error_func2.result │ │ │ │ ├── log_error_func3.result │ │ │ │ ├── log_output_basic.result │ │ │ │ ├── log_output_func.result │ │ │ │ ├── log_queries_not_using_indexes_basic.result │ │ │ │ ├── log_result_errors_basic.result │ │ │ │ ├── log_slave_updates_basic.result │ │ │ │ ├── log_slow_admin_statements_func.result │ │ │ │ ├── log_slow_disabled_statements_basic.result │ │ │ │ ├── log_slow_disabled_statements_func.result │ │ │ │ ├── log_slow_filter_basic.result │ │ │ │ ├── log_slow_queries_basic.result │ │ │ │ ├── log_slow_rate_limit_basic.result │ │ │ │ ├── log_slow_verbosity_basic.result │ │ │ │ ├── log_tc_size_basic.result │ │ │ │ ├── log_warnings_basic.result │ │ │ │ ├── long_query_time_basic.result │ │ │ │ ├── low_priority_updates_basic.result │ │ │ │ ├── lower_case_file_system_basic.result │ │ │ │ ├── lower_case_table_names_basic.result │ │ │ │ ├── master_verify_checksum_basic.result │ │ │ │ ├── master_verify_checksum_grant.result │ │ │ │ ├── max_allowed_packet_basic.result │ │ │ │ ├── max_allowed_packet_func.result │ │ │ │ ├── max_binlog_cache_size_basic.result │ │ │ │ ├── max_binlog_cache_size_func.result │ │ │ │ ├── max_binlog_cache_size_grant.result │ │ │ │ ├── max_binlog_size_basic.result │ │ │ │ ├── max_binlog_size_grant.result │ │ │ │ ├── max_binlog_stmt_cache_size_basic.result │ │ │ │ ├── max_binlog_stmt_cache_size_grant.result │ │ │ │ ├── max_connect_errors_basic.result │ │ │ │ ├── max_connect_errors_grant.result │ │ │ │ ├── max_connections_basic.result │ │ │ │ ├── max_connections_grant.result │ │ │ │ ├── max_delayed_threads_basic.result │ │ │ │ ├── max_digest_length_basic.result │ │ │ │ ├── max_error_count_basic.result │ │ │ │ ├── max_heap_table_size_basic.result │ │ │ │ ├── max_insert_delayed_threads_basic.result │ │ │ │ ├── max_join_size_basic.result │ │ │ │ ├── max_join_size_func.result │ │ │ │ ├── max_length_for_sort_data_basic.result │ │ │ │ ├── max_password_errors_grant.result │ │ │ │ ├── max_prepared_stmt_count_basic.result │ │ │ │ ├── max_prepared_stmt_count_func.result │ │ │ │ ├── max_relay_log_size_basic.result │ │ │ │ ├── max_seeks_for_key_basic.result │ │ │ │ ├── max_seeks_for_key_func.result │ │ │ │ ├── max_sort_length_func.result │ │ │ │ ├── max_sp_recursion_depth_basic.result │ │ │ │ ├── max_sp_recursion_depth_func.result │ │ │ │ ├── max_statement_time_basic.result │ │ │ │ ├── max_tmp_tables_basic.result │ │ │ │ ├── max_user_connections-2.result │ │ │ │ ├── max_user_connections_basic.result │ │ │ │ ├── max_user_connections_func.result │ │ │ │ ├── max_write_lock_count_basic.result │ │ │ │ ├── maximum_basic.result │ │ │ │ ├── metadata_locks_cache_size_basic.result │ │ │ │ ├── metadata_locks_hash_instances_basic.result │ │ │ │ ├── min_examined_row_limit_basic.result │ │ │ │ ├── mrr_buffer_size_basic.result │ │ │ │ ├── myisam_block_size_basic.result │ │ │ │ ├── myisam_data_pointer_size_basic.result │ │ │ │ ├── myisam_data_pointer_size_func.result │ │ │ │ ├── myisam_max_sort_file_size_basic.result │ │ │ │ ├── myisam_mmap_size_basic.result │ │ │ │ ├── myisam_recover_options_basic.result │ │ │ │ ├── myisam_repair_threads_basic.result │ │ │ │ ├── myisam_sort_buffer_size_basic.result │ │ │ │ ├── myisam_stats_method_basic.result │ │ │ │ ├── myisam_stats_method_func.result │ │ │ │ ├── myisam_use_mmap_basic.result │ │ │ │ ├── mysql56_temporal_format_basic.result │ │ │ │ ├── mysql56_temporal_format_func.result │ │ │ │ ├── named_pipe_basic.result │ │ │ │ ├── net_buffer_length_basic.result │ │ │ │ ├── net_read_timeout_basic.result │ │ │ │ ├── net_retry_count_basic.result │ │ │ │ ├── net_write_timeout_basic.result │ │ │ │ ├── old_alter_table_basic.result │ │ │ │ ├── old_basic.result │ │ │ │ ├── old_mode_basic.result │ │ │ │ ├── old_passwords_basic.result │ │ │ │ ├── old_passwords_func.result │ │ │ │ ├── open_files_limit_basic.result │ │ │ │ ├── optimizer_prune_level_basic.result │ │ │ │ ├── optimizer_search_depth_basic.result │ │ │ │ ├── optimizer_selectivity_sampling_limit_basic.result │ │ │ │ ├── optimizer_switch_basic.result │ │ │ │ ├── optimizer_use_condition_selectivity_basic.result │ │ │ │ ├── oqgraph_allow_create_integer_latch_basic.result │ │ │ │ ├── performance_schema_basic.result │ │ │ │ ├── pfs_accounts_size_basic.result │ │ │ │ ├── pfs_digests_size_basic.result │ │ │ │ ├── pfs_events_stages_history_long_size_basic.result │ │ │ │ ├── pfs_events_stages_history_size_basic.result │ │ │ │ ├── pfs_events_statements_history_long_size_basic.result │ │ │ │ ├── pfs_events_statements_history_size_basic.result │ │ │ │ ├── pfs_events_waits_history_long_size_basic.result │ │ │ │ ├── pfs_events_waits_history_size_basic.result │ │ │ │ ├── pfs_hosts_size_basic.result │ │ │ │ ├── pfs_max_cond_classes_basic.result │ │ │ │ ├── pfs_max_cond_instances_basic.result │ │ │ │ ├── pfs_max_digest_length_basic.result │ │ │ │ ├── pfs_max_file_classes_basic.result │ │ │ │ ├── pfs_max_file_handles_basic.result │ │ │ │ ├── pfs_max_file_instances_basic.result │ │ │ │ ├── pfs_max_mutex_classes_basic.result │ │ │ │ ├── pfs_max_mutex_instances_basic.result │ │ │ │ ├── pfs_max_rwlock_classes_basic.result │ │ │ │ ├── pfs_max_rwlock_instances_basic.result │ │ │ │ ├── pfs_max_socket_classes_basic.result │ │ │ │ ├── pfs_max_socket_instances_basic.result │ │ │ │ ├── pfs_max_stage_classes_basic.result │ │ │ │ ├── pfs_max_statement_classes_basic.result │ │ │ │ ├── pfs_max_table_handles_basic.result │ │ │ │ ├── pfs_max_table_instances_basic.result │ │ │ │ ├── pfs_max_thread_classes_basic.result │ │ │ │ ├── pfs_max_thread_instances_basic.result │ │ │ │ ├── pfs_session_connect_attrs_size_basic.result │ │ │ │ ├── pfs_setup_actors_size_basic.result │ │ │ │ ├── pfs_setup_objects_size_basic.result │ │ │ │ ├── pfs_users_size_basic.result │ │ │ │ ├── pid_file_basic.result │ │ │ │ ├── plugin_dir_basic.result │ │ │ │ ├── plugin_maturity_basic.result │ │ │ │ ├── port_basic.result │ │ │ │ ├── preload_buffer_size_basic.result │ │ │ │ ├── preudo_thread_id_grant.result │ │ │ │ ├── profiling_basic.result │ │ │ │ ├── profiling_history_size_basic.result │ │ │ │ ├── progress_report_time_basic.result │ │ │ │ ├── protocol_version_basic.result │ │ │ │ ├── proxy_protocol_networks_grant.result │ │ │ │ ├── proxy_user_basic.result │ │ │ │ ├── pseudo_slave_mode_basic.result │ │ │ │ ├── pseudo_thread_id_basic.result │ │ │ │ ├── query_alloc_block_size_basic.result │ │ │ │ ├── query_cache_limit_basic.result │ │ │ │ ├── query_cache_limit_func.result │ │ │ │ ├── query_cache_min_res_unit_basic.result │ │ │ │ ├── query_cache_size_basic.result │ │ │ │ ├── query_cache_strip_comments_basic.result │ │ │ │ ├── query_cache_type_basic.result │ │ │ │ ├── query_cache_type_func.result │ │ │ │ ├── query_cache_wlock_invalidate_basic.result │ │ │ │ ├── query_cache_wlock_invalidate_func.result │ │ │ │ ├── query_prealloc_size_basic.result │ │ │ │ ├── query_prealloc_size_func.result │ │ │ │ ├── rand_seed1_basic.result │ │ │ │ ├── rand_seed2_basic.result │ │ │ │ ├── range_alloc_block_size_basic.result │ │ │ │ ├── read_binlog_speed_limit_grant.result │ │ │ │ ├── read_buffer_size_basic.result │ │ │ │ ├── read_only_basic.result │ │ │ │ ├── read_only_func.result │ │ │ │ ├── read_only_grant.result │ │ │ │ ├── read_rnd_buffer_size_basic.result │ │ │ │ ├── relay_log_basename_basic.result │ │ │ │ ├── relay_log_basic.result │ │ │ │ ├── relay_log_index_basic.result │ │ │ │ ├── relay_log_info_file_basic.result │ │ │ │ ├── relay_log_purge_basic.result │ │ │ │ ├── relay_log_purge_grant.result │ │ │ │ ├── relay_log_recovery_basic.result │ │ │ │ ├── relay_log_recovery_grant.result │ │ │ │ ├── relay_log_space_limit_basic.result │ │ │ │ ├── replicate_annotate_row_events_basic.result │ │ │ │ ├── replicate_do_db_basic.result │ │ │ │ ├── replicate_do_db_grant.result │ │ │ │ ├── replicate_do_table_basic.result │ │ │ │ ├── replicate_do_table_grant.result │ │ │ │ ├── replicate_events_marked_for_skip_basic.result │ │ │ │ ├── replicate_events_marked_for_skip_grant.result │ │ │ │ ├── replicate_ignore_db_basic.result │ │ │ │ ├── replicate_ignore_db_grant.result │ │ │ │ ├── replicate_ignore_table_basic.result │ │ │ │ ├── replicate_ignore_table_grant.result │ │ │ │ ├── replicate_wild_do_table_basic.result │ │ │ │ ├── replicate_wild_do_table_grant.result │ │ │ │ ├── replicate_wild_ignore_table_basic.result │ │ │ │ ├── replicate_wild_ignore_table_grant.result │ │ │ │ ├── report_host_basic.result │ │ │ │ ├── report_password_basic.result │ │ │ │ ├── report_port_basic.result │ │ │ │ ├── report_user_basic.result │ │ │ │ ├── rowid_merge_buff_size_basic.result │ │ │ │ ├── rpl_init_slave_func.result │ │ │ │ ├── rpl_max_binlog_size_func.result │ │ │ │ ├── rpl_semi_sync_master_enabled_basic.result │ │ │ │ ├── rpl_semi_sync_master_enabled_grant.result │ │ │ │ ├── rpl_semi_sync_master_timeout_basic.result │ │ │ │ ├── rpl_semi_sync_master_timeout_grant.result │ │ │ │ ├── rpl_semi_sync_master_trace_level_basic.result │ │ │ │ ├── rpl_semi_sync_master_trace_level_grant.result │ │ │ │ ├── rpl_semi_sync_master_wait_no_slave_basic.result │ │ │ │ ├── rpl_semi_sync_master_wait_no_slave_grant.result │ │ │ │ ├── rpl_semi_sync_master_wait_point_basic.result │ │ │ │ ├── rpl_semi_sync_master_wait_point_grant.result │ │ │ │ ├── rpl_semi_sync_slave_delay_master_grant.result │ │ │ │ ├── rpl_semi_sync_slave_enabled_basic.result │ │ │ │ ├── rpl_semi_sync_slave_enabled_grant.result │ │ │ │ ├── rpl_semi_sync_slave_kill_conn_timeout_grant.result │ │ │ │ ├── rpl_semi_sync_slave_trace_level_basic.result │ │ │ │ ├── rpl_semi_sync_slave_trace_level_grant.result │ │ │ │ ├── secure_auth_basic.result │ │ │ │ ├── secure_auth_func.result │ │ │ │ ├── secure_auth_grant.result │ │ │ │ ├── secure_file_priv.result │ │ │ │ ├── secure_file_priv2.result │ │ │ │ ├── secure_file_priv_basic.result │ │ │ │ ├── secure_timestamp_no.result │ │ │ │ ├── secure_timestamp_rpl.result │ │ │ │ ├── secure_timestamp_super.result │ │ │ │ ├── secure_timestamp_yes.result │ │ │ │ ├── server_id_basic.result │ │ │ │ ├── server_id_grant.result │ │ │ │ ├── session_track_system_variables_basic.result │ │ │ │ ├── show_vs_valstr.result │ │ │ │ ├── skip_external_locking_basic.result │ │ │ │ ├── skip_name_resolve_basic.result │ │ │ │ ├── skip_networking_basic.result │ │ │ │ ├── skip_parallel_replication_basic.result │ │ │ │ ├── skip_replication_basic.result │ │ │ │ ├── skip_show_database_basic.result │ │ │ │ ├── slave_allow_batching_basic.result │ │ │ │ ├── slave_compressed_protocol_basic.result │ │ │ │ ├── slave_compressed_protocol_grant.result │ │ │ │ ├── slave_ddl_exec_mode_basic.result │ │ │ │ ├── slave_ddl_exec_mode_grant.result │ │ │ │ ├── slave_domain_parallel_threads_basic.result │ │ │ │ ├── slave_domain_parallel_threads_grant.result │ │ │ │ ├── slave_exec_mode_basic.result │ │ │ │ ├── slave_exec_mode_grant.result │ │ │ │ ├── slave_load_tmpdir_basic.result │ │ │ │ ├── slave_max_allowed_packet_basic.result │ │ │ │ ├── slave_max_allowed_packet_grant.result │ │ │ │ ├── slave_net_timeout_basic.result │ │ │ │ ├── slave_net_timeout_grant.result │ │ │ │ ├── slave_parallel_max_queued_basic.result │ │ │ │ ├── slave_parallel_max_queued_grant.result │ │ │ │ ├── slave_parallel_mode_basic.result │ │ │ │ ├── slave_parallel_mode_grant.result │ │ │ │ ├── slave_parallel_threads_basic.result │ │ │ │ ├── slave_parallel_threads_grant.result │ │ │ │ ├── slave_parallel_workers_grant.result │ │ │ │ ├── slave_run_triggers_for_rbr_grant.result │ │ │ │ ├── slave_skip_errors_basic.result │ │ │ │ ├── slave_sql_verify_checksum_basic.result │ │ │ │ ├── slave_sql_verify_checksum_grant.result │ │ │ │ ├── slave_transaction_retries_basic.result │ │ │ │ ├── slave_transaction_retry_errors.result │ │ │ │ ├── slave_transaction_retry_interval_basic.result │ │ │ │ ├── slave_transaction_retry_interval_grant.result │ │ │ │ ├── slave_type_conversions_basic.result │ │ │ │ ├── slave_type_conversions_grant.result │ │ │ │ ├── slow_launch_time_basic.result │ │ │ │ ├── slow_launch_time_func.result │ │ │ │ ├── slow_launch_time_grant.result │ │ │ │ ├── slow_query_log_basic.result │ │ │ │ ├── slow_query_log_file_basic.result │ │ │ │ ├── slow_query_log_file_func.result │ │ │ │ ├── slow_query_log_func.result │ │ │ │ ├── socket_basic.result │ │ │ │ ├── sort_buffer_size_basic.result │ │ │ │ ├── sql_auto_is_null_basic.result │ │ │ │ ├── sql_big_selects_basic.result │ │ │ │ ├── sql_big_selects_func.result │ │ │ │ ├── sql_buffer_result_basic.result │ │ │ │ ├── sql_buffer_result_func.result │ │ │ │ ├── sql_log_bin_basic.result │ │ │ │ ├── sql_log_bin_grant.result │ │ │ │ ├── sql_log_off_basic.result │ │ │ │ ├── sql_log_off_func.result │ │ │ │ ├── sql_low_priority_updates_basic.result │ │ │ │ ├── sql_low_priority_updates_func.result │ │ │ │ ├── sql_max_join_size_basic.result │ │ │ │ ├── sql_max_join_size_func.result │ │ │ │ ├── sql_mode_basic.result │ │ │ │ ├── sql_mode_func.result │ │ │ │ ├── sql_notes_basic.result │ │ │ │ ├── sql_notes_func.result │ │ │ │ ├── sql_quote_show_create_basic.result │ │ │ │ ├── sql_quote_show_create_func.result │ │ │ │ ├── sql_safe_updates_basic.result │ │ │ │ ├── sql_safe_updates_func.result │ │ │ │ ├── sql_select_limit_basic.result │ │ │ │ ├── sql_select_limit_func.result │ │ │ │ ├── sql_slave_skip_counter_basic.result │ │ │ │ ├── sql_warnings_basic.result │ │ │ │ ├── sql_warnings_func.result │ │ │ │ ├── ssl_ca_basic.result │ │ │ │ ├── ssl_capath_basic.result │ │ │ │ ├── ssl_cert_basic.result │ │ │ │ ├── ssl_cipher_basic.result │ │ │ │ ├── ssl_crl_basic.result │ │ │ │ ├── ssl_crlpath_basic.result │ │ │ │ ├── ssl_key_basic.result │ │ │ │ ├── storage_engine_basic.result │ │ │ │ ├── stored_program_cache_basic.result │ │ │ │ ├── stored_program_cache_func,ps.rdiff │ │ │ │ ├── stored_program_cache_func.result │ │ │ │ ├── sync_binlog_basic.result │ │ │ │ ├── sync_binlog_grant.result │ │ │ │ ├── sync_frm_basic.result │ │ │ │ ├── sync_master_info_basic.result │ │ │ │ ├── sync_master_info_grant.result │ │ │ │ ├── sync_relay_log_basic.result │ │ │ │ ├── sync_relay_log_grant.result │ │ │ │ ├── sync_relay_log_info_basic.result │ │ │ │ ├── sync_relay_log_info_grant.result │ │ │ │ ├── system_time_zone_basic.result │ │ │ │ ├── sysvars_aria,32bit.rdiff │ │ │ │ ├── sysvars_aria.result │ │ │ │ ├── sysvars_debug,32bit.rdiff │ │ │ │ ├── sysvars_debug.result │ │ │ │ ├── sysvars_innodb,32bit.rdiff │ │ │ │ ├── sysvars_innodb.result │ │ │ │ ├── sysvars_server_embedded,32bit.rdiff │ │ │ │ ├── sysvars_server_embedded.result │ │ │ │ ├── sysvars_server_notembedded,32bit.rdiff │ │ │ │ ├── sysvars_server_notembedded,aix.rdiff │ │ │ │ ├── sysvars_server_notembedded.result │ │ │ │ ├── sysvars_star.result │ │ │ │ ├── sysvars_wsrep,32bit.rdiff │ │ │ │ ├── sysvars_wsrep.result │ │ │ │ ├── table_definition_cache_basic.result │ │ │ │ ├── table_open_cache_basic.result │ │ │ │ ├── tcp_keepalive_time.result │ │ │ │ ├── tcp_nodelay.result │ │ │ │ ├── thread_cache_size_basic.result │ │ │ │ ├── thread_cache_size_func.result │ │ │ │ ├── thread_handling_basic.result │ │ │ │ ├── thread_pool_idle_timeout_basic.result │ │ │ │ ├── thread_pool_idle_timeout_grant.result │ │ │ │ ├── thread_pool_max_threads_basic.result │ │ │ │ ├── thread_pool_max_threads_grant.result │ │ │ │ ├── thread_pool_min_threads_basic.result │ │ │ │ ├── thread_pool_oversubscribe_basic.result │ │ │ │ ├── thread_pool_oversubscribe_grant.result │ │ │ │ ├── thread_pool_size_basic.result │ │ │ │ ├── thread_pool_size_high.result │ │ │ │ ├── thread_pool_stall_limit_basic.result │ │ │ │ ├── thread_pool_stall_limit_grant.result │ │ │ │ ├── thread_stack_basic.result │ │ │ │ ├── time_format_basic.result │ │ │ │ ├── time_zone_basic.result │ │ │ │ ├── time_zone_func.result │ │ │ │ ├── timestamp_basic.result │ │ │ │ ├── timestamp_func.result │ │ │ │ ├── timestamp_sysdate_is_now_func.result │ │ │ │ ├── tmp_disk_table_size_basic.result │ │ │ │ ├── tmp_disk_table_size_func.result │ │ │ │ ├── tmpdir_basic.result │ │ │ │ ├── transaction_alloc_block_size_basic.result │ │ │ │ ├── transaction_prealloc_size_basic.result │ │ │ │ ├── transaction_prealloc_size_bug27322.result │ │ │ │ ├── tx_isolation_basic.result │ │ │ │ ├── tx_isolation_func.result │ │ │ │ ├── tx_read_only_basic.result │ │ │ │ ├── unique_checks_basic.result │ │ │ │ ├── updatable_views_with_limit_basic.result │ │ │ │ ├── updatable_views_with_limit_func.result │ │ │ │ ├── use_stat_tables_basic.result │ │ │ │ ├── userstat_basic.result │ │ │ │ ├── version.result │ │ │ │ ├── version_basic.result │ │ │ │ ├── version_comment_basic.result │ │ │ │ ├── version_compile_machine_basic.result │ │ │ │ ├── version_compile_os_basic.result │ │ │ │ ├── version_malloc_library_basic.result │ │ │ │ ├── version_ssl_library_basic.result │ │ │ │ ├── wait_timeout_basic.result │ │ │ │ ├── wait_timeout_func.result │ │ │ │ ├── warning_count_basic.result │ │ │ │ ├── wsrep_auto_increment_control_basic.result │ │ │ │ ├── wsrep_causal_reads_basic.result │ │ │ │ ├── wsrep_certify_nonpk_basic.result │ │ │ │ ├── wsrep_cluster_address_basic.result │ │ │ │ ├── wsrep_cluster_name_basic.result │ │ │ │ ├── wsrep_convert_lock_to_trx_basic.result │ │ │ │ ├── wsrep_data_home_dir_basic.result │ │ │ │ ├── wsrep_dbug_option_basic.result │ │ │ │ ├── wsrep_debug_basic.result │ │ │ │ ├── wsrep_desync_basic.result │ │ │ │ ├── wsrep_dirty_reads_basic.result │ │ │ │ ├── wsrep_drupal_282555_workaround_basic.result │ │ │ │ ├── wsrep_forced_binlog_format_basic.result │ │ │ │ ├── wsrep_gtid_domain_id_basic.result │ │ │ │ ├── wsrep_gtid_mode_basic.result │ │ │ │ ├── wsrep_load_data_splitting_basic.result │ │ │ │ ├── wsrep_log_conflicts_basic.result │ │ │ │ ├── wsrep_max_ws_rows_basic.result │ │ │ │ ├── wsrep_max_ws_size_basic.result │ │ │ │ ├── wsrep_mysql_replication_bundle_basic.result │ │ │ │ ├── wsrep_node_address_basic.result │ │ │ │ ├── wsrep_node_incoming_address_basic.result │ │ │ │ ├── wsrep_node_name_basic.result │ │ │ │ ├── wsrep_on_without_provider.result │ │ │ │ ├── wsrep_osu_method_basic.result │ │ │ │ ├── wsrep_recover_basic.result │ │ │ │ ├── wsrep_restart_slave_basic.result │ │ │ │ ├── wsrep_retry_autocommit_basic.result │ │ │ │ ├── wsrep_slave_fk_checks_basic.result │ │ │ │ ├── wsrep_slave_uk_checks_basic.result │ │ │ │ ├── wsrep_sst_auth_basic.result │ │ │ │ ├── wsrep_sst_donor_basic.result │ │ │ │ ├── wsrep_sst_donor_rejects_queries_basic.result │ │ │ │ ├── wsrep_sst_method_basic.result │ │ │ │ ├── wsrep_sst_receive_address_basic.result │ │ │ │ └── wsrep_sync_wait_basic.result │ │ │ └── t/ │ │ │ ├── all_vars-master.opt │ │ │ ├── all_vars.test │ │ │ ├── alter_algorithm_basic.test │ │ │ ├── aria_block_size_basic.test │ │ │ ├── aria_checkpoint_interval_basic.test │ │ │ ├── aria_checkpoint_log_activity_basic.test │ │ │ ├── aria_encrypt_tables_basic.test │ │ │ ├── aria_force_start_after_recovery_failures_basic.test │ │ │ ├── aria_group_commit_basic.test │ │ │ ├── aria_group_commit_interval_basic.test │ │ │ ├── aria_log_file_size_basic.test │ │ │ ├── aria_log_purge_type_basic.test │ │ │ ├── aria_max_sort_file_size_basic.test │ │ │ ├── aria_page_checksum_basic.test │ │ │ ├── aria_pagecache_age_threshold_basic.test │ │ │ ├── aria_pagecache_buffer_size_basic.test │ │ │ ├── aria_pagecache_division_limit_basic.test │ │ │ ├── aria_pagecache_file_hash_size_basic.test │ │ │ ├── aria_recover_options_basic.test │ │ │ ├── aria_repair_threads_basic.test │ │ │ ├── aria_sort_buffer_size_basic.test │ │ │ ├── aria_stats_method_basic.test │ │ │ ├── aria_sync_log_dir_basic.test │ │ │ ├── aria_used_for_temp_tables_basic.test │ │ │ ├── auto_increment_increment_basic.test │ │ │ ├── auto_increment_increment_func.test │ │ │ ├── auto_increment_offset_basic.test │ │ │ ├── auto_increment_offset_func.test │ │ │ ├── autocommit_basic.test │ │ │ ├── autocommit_func.test │ │ │ ├── autocommit_func2-master.opt │ │ │ ├── autocommit_func2.test │ │ │ ├── autocommit_func3-master.opt │ │ │ ├── autocommit_func3.test │ │ │ ├── autocommit_func4-master.opt │ │ │ ├── autocommit_func4.test │ │ │ ├── autocommit_func5-master.opt │ │ │ ├── autocommit_func5.test │ │ │ ├── automatic_sp_privileges_basic.test │ │ │ ├── automatic_sp_privileges_func.test │ │ │ ├── back_log_basic.opt │ │ │ ├── back_log_basic.test │ │ │ ├── basedir_basic.test │ │ │ ├── big_tables_basic.test │ │ │ ├── bind_address_basic.test │ │ │ ├── binlog_annotate_row_events_basic.test │ │ │ ├── binlog_annotate_row_events_grant.test │ │ │ ├── binlog_cache_size_basic.test │ │ │ ├── binlog_cache_size_grant.test │ │ │ ├── binlog_checksum_basic.test │ │ │ ├── binlog_commit_wait_count_basic.test │ │ │ ├── binlog_commit_wait_count_grant.test │ │ │ ├── binlog_commit_wait_usec_basic.test │ │ │ ├── binlog_commit_wait_usec_grant.test │ │ │ ├── binlog_direct_non_transactional_updates_basic.test │ │ │ ├── binlog_direct_non_transactional_updates_grant.test │ │ │ ├── binlog_expire_logs_seconds_basic.test │ │ │ ├── binlog_expire_logs_seconds_grant.test │ │ │ ├── binlog_file_cache_size_grant.test │ │ │ ├── binlog_format_basic.test │ │ │ ├── binlog_format_grant.test │ │ │ ├── binlog_optimize_thread_scheduling_basic.test │ │ │ ├── binlog_row_image_basic.test │ │ │ ├── binlog_row_image_grant.test │ │ │ ├── binlog_row_metadata_basic.test │ │ │ ├── binlog_row_metadata_grant.test │ │ │ ├── binlog_stmt_cache_size_basic.test │ │ │ ├── binlog_stmt_cache_size_grant.test │ │ │ ├── bulk_insert_buffer_size_basic.test │ │ │ ├── character_set_client_basic.test │ │ │ ├── character_set_client_func.test │ │ │ ├── character_set_connection_basic.test │ │ │ ├── character_set_connection_func.test │ │ │ ├── character_set_database_basic.test │ │ │ ├── character_set_database_func.test │ │ │ ├── character_set_filesystem_basic.test │ │ │ ├── character_set_filesystem_func-master.opt │ │ │ ├── character_set_results_basic.test │ │ │ ├── character_set_results_func.test │ │ │ ├── character_set_server_basic.test │ │ │ ├── character_set_server_func.test │ │ │ ├── character_set_system_basic.test │ │ │ ├── character_sets_dir_basic.test │ │ │ ├── collation_connection_basic.test │ │ │ ├── collation_connection_func.test │ │ │ ├── collation_database_basic.test │ │ │ ├── collation_database_func.test │ │ │ ├── collation_server_basic.test │ │ │ ├── collation_server_func.test │ │ │ ├── completion_type_basic.test │ │ │ ├── completion_type_func.test │ │ │ ├── concurrent_insert_basic.test │ │ │ ├── concurrent_insert_func.test │ │ │ ├── connect_timeout_basic.test │ │ │ ├── connect_timeout_grant.test │ │ │ ├── datadir_basic.test │ │ │ ├── date_format_basic.test │ │ │ ├── datetime_format_basic.test │ │ │ ├── deadlock_search_depth_long_basic.test │ │ │ ├── deadlock_search_depth_short_basic.test │ │ │ ├── deadlock_timeout_long_basic.test │ │ │ ├── deadlock_timeout_short_basic.test │ │ │ ├── debug_basic.test │ │ │ ├── debug_binlog_fsync_sleep_basic.test │ │ │ ├── debug_dbug_basic.test │ │ │ ├── debug_dbug_func.test │ │ │ ├── debug_dbug_func_notembedded.test │ │ │ ├── debug_mutex_deadlock_detector_basic.test │ │ │ ├── debug_no_thread_alarm_basic.test │ │ │ ├── debug_sync_basic.test │ │ │ ├── default_master_connection_basic.test │ │ │ ├── default_regex_flags_basic.test │ │ │ ├── default_storage_engine_basic.test │ │ │ ├── default_tmp_storage_engine_basic.test │ │ │ ├── default_week_format_basic.test │ │ │ ├── default_week_format_func.test │ │ │ ├── delay_key_write_basic.test │ │ │ ├── delay_key_write_func-master.opt │ │ │ ├── delay_key_write_func.test │ │ │ ├── delayed_insert_limit_basic.test │ │ │ ├── delayed_insert_limit_func.test │ │ │ ├── delayed_insert_timeout_basic.test │ │ │ ├── delayed_queue_size_basic.test │ │ │ ├── disconnect_on_expired_password_grant.test │ │ │ ├── div_precision_increment_basic.test │ │ │ ├── div_precision_increment_func.test │ │ │ ├── encrypt_tmp_disk_tables_basic.test │ │ │ ├── enforce_storage_engine_basic.test │ │ │ ├── error_count_basic.test │ │ │ ├── event_scheduler_basic.test │ │ │ ├── expensive_subquery_limit_basic.test │ │ │ ├── expire_logs_days_basic.test │ │ │ ├── expire_logs_days_grant.test │ │ │ ├── explicit_defaults_for_timestamp_off.test │ │ │ ├── explicit_defaults_for_timestamp_on.test │ │ │ ├── external_user_basic.test │ │ │ ├── extra_max_connections_basic.test │ │ │ ├── extra_max_connections_grant.test │ │ │ ├── extra_port_basic.test │ │ │ ├── flush_basic.test │ │ │ ├── flush_time_basic.test │ │ │ ├── foreign_key_checks_basic.test │ │ │ ├── foreign_key_checks_func.test │ │ │ ├── ft_boolean_syntax_basic.test │ │ │ ├── ft_boolean_syntax_func.test │ │ │ ├── ft_max_word_len_basic.test │ │ │ ├── ft_min_word_len_basic.test │ │ │ ├── ft_query_expansion_limit_basic.test │ │ │ ├── ft_stopword_file_basic.test │ │ │ ├── general_log_basic.test │ │ │ ├── general_log_file_basic-master.opt │ │ │ ├── general_log_file_basic.test │ │ │ ├── general_log_file_func-master.opt │ │ │ ├── general_log_file_func.test │ │ │ ├── general_log_func.test │ │ │ ├── group_concat_max_len_basic.test │ │ │ ├── group_concat_max_len_func.test │ │ │ ├── gtid_binlog_pos_basic.test │ │ │ ├── gtid_binlog_state_basic.test │ │ │ ├── gtid_binlog_state_grant.test │ │ │ ├── gtid_cleanup_batch_size_grant.test │ │ │ ├── gtid_current_pos_basic.test │ │ │ ├── gtid_domain_id_basic.test │ │ │ ├── gtid_domain_id_grant.test │ │ │ ├── gtid_ignore_duplicates_basic.test │ │ │ ├── gtid_ignore_duplicates_grant.test │ │ │ ├── gtid_pos_auto_engines_grant.test │ │ │ ├── gtid_seq_no_basic.test │ │ │ ├── gtid_seq_no_grant.test │ │ │ ├── gtid_slave_pos_basic.test │ │ │ ├── gtid_slave_pos_grant.test │ │ │ ├── gtid_strict_mode_basic.test │ │ │ ├── gtid_strict_mode_grant.test │ │ │ ├── have_compress_basic.test │ │ │ ├── have_crypt_basic.test │ │ │ ├── have_dynamic_loading_basic.test │ │ │ ├── have_geometry_basic.test │ │ │ ├── have_openssl_basic.test │ │ │ ├── have_profiling_basic.test │ │ │ ├── have_query_cache_basic.test │ │ │ ├── have_rtree_keys_basic.test │ │ │ ├── have_ssl_basic.test │ │ │ ├── have_symlink_basic.test │ │ │ ├── histogram_size_basic.test │ │ │ ├── histogram_type_basic.test │ │ │ ├── host_cache_size_auto-master.opt │ │ │ ├── host_cache_size_auto.test │ │ │ ├── host_cache_size_basic-master.opt │ │ │ ├── host_cache_size_basic.test │ │ │ ├── hostname_basic.test │ │ │ ├── identity_basic.test │ │ │ ├── identity_func-master.opt │ │ │ ├── identity_func.test │ │ │ ├── ignore_builtin_innodb_basic.test │ │ │ ├── ignore_db_dirs_basic-master.opt │ │ │ ├── ignore_db_dirs_basic.test │ │ │ ├── in_transaction_basic.test │ │ │ ├── init_connect_basic.test │ │ │ ├── init_connect_grant.test │ │ │ ├── init_file_basic.test │ │ │ ├── init_slave_basic.test │ │ │ ├── init_slave_grant.test │ │ │ ├── innodb_adaptive_flushing_basic.test │ │ │ ├── innodb_adaptive_flushing_lwm_basic.test │ │ │ ├── innodb_adaptive_hash_index_basic.test │ │ │ ├── innodb_adaptive_hash_index_parts_basic.test │ │ │ ├── innodb_autoextend_increment_basic.test │ │ │ ├── innodb_autoinc_lock_mode_basic.test │ │ │ ├── innodb_autoinc_lock_mode_func-master.opt │ │ │ ├── innodb_autoinc_lock_mode_func.test │ │ │ ├── innodb_buf_dump_status_frequency_basic.test │ │ │ ├── innodb_buf_flush_list_now_basic.test │ │ │ ├── innodb_buffer_pool_chunk_size_basic.test │ │ │ ├── innodb_buffer_pool_dump_abort_loads.opt │ │ │ ├── innodb_buffer_pool_dump_abort_loads.test │ │ │ ├── innodb_buffer_pool_dump_at_shutdown_basic.test │ │ │ ├── innodb_buffer_pool_dump_now_basic.test │ │ │ ├── innodb_buffer_pool_dump_pct_basic.test │ │ │ ├── innodb_buffer_pool_dump_pct_function.opt │ │ │ ├── innodb_buffer_pool_dump_pct_function.test │ │ │ ├── innodb_buffer_pool_evict_basic.test │ │ │ ├── innodb_buffer_pool_load_abort_basic.test │ │ │ ├── innodb_buffer_pool_load_at_startup_basic.test │ │ │ ├── innodb_buffer_pool_load_now_basic.opt │ │ │ ├── innodb_buffer_pool_load_now_basic.test │ │ │ ├── innodb_buffer_pool_size_basic-master.opt │ │ │ ├── innodb_buffer_pool_size_basic.test │ │ │ ├── innodb_change_buffer_max_size_basic.test │ │ │ ├── innodb_change_buffering_basic.test │ │ │ ├── innodb_change_buffering_debug_basic.test │ │ │ ├── innodb_checksum_algorithm_basic.test │ │ │ ├── innodb_cmp_per_index_enabled_basic.test │ │ │ ├── innodb_compression_algorithm_basic-master.opt │ │ │ ├── innodb_compression_algorithm_basic.test │ │ │ ├── innodb_compression_failure_threshold_pct_basic.test │ │ │ ├── innodb_compression_level_basic.test │ │ │ ├── innodb_compression_pad_pct_max_basic.test │ │ │ ├── innodb_data_file_path_basic.test │ │ │ ├── innodb_data_home_dir_basic.test │ │ │ ├── innodb_deadlock_detect_basic.test │ │ │ ├── innodb_default_row_format_basic.test │ │ │ ├── innodb_defragment_basic.test │ │ │ ├── innodb_defragment_fill_factor_basic.test │ │ │ ├── innodb_defragment_fill_factor_n_recs_basic.test │ │ │ ├── innodb_defragment_frequency_basic.test │ │ │ ├── innodb_defragment_n_pages_basic.test │ │ │ ├── innodb_defragment_stats_accuracy_basic.test │ │ │ ├── innodb_disable_sort_file_cache_basic.test │ │ │ ├── innodb_doublewrite_basic.test │ │ │ ├── innodb_encrypt_log_basic.test │ │ │ ├── innodb_encrypt_tables_basic.test │ │ │ ├── innodb_encryption_rotate_key_age_basic.test │ │ │ ├── innodb_encryption_rotation_iops_basic.test │ │ │ ├── innodb_encryption_threads_basic.test │ │ │ ├── innodb_fast_shutdown_basic.test │ │ │ ├── innodb_fatal_semaphore_wait_threshold-master.opt │ │ │ ├── innodb_fatal_semaphore_wait_threshold.test │ │ │ ├── innodb_fatal_semaphore_wait_threshold_basic.test │ │ │ ├── innodb_fil_make_page_dirty_debug_basic.test │ │ │ ├── innodb_file_io_threads_basic.test │ │ │ ├── innodb_file_per_table_basic-master.opt │ │ │ ├── innodb_file_per_table_basic.test │ │ │ ├── innodb_fill_factor_basic.test │ │ │ ├── innodb_flush_log_at_timeout_basic.test │ │ │ ├── innodb_flush_log_at_trx_commit_basic.test │ │ │ ├── innodb_flush_method_basic.test │ │ │ ├── innodb_flush_method_func.test │ │ │ ├── innodb_flush_neighbors_basic.test │ │ │ ├── innodb_flush_sync_basic.test │ │ │ ├── innodb_flushing_avg_loops_basic.test │ │ │ ├── innodb_force_primary_key_basic.test │ │ │ ├── innodb_force_recovery_basic.test │ │ │ ├── innodb_ft_aux_table_basic.test │ │ │ ├── innodb_ft_cache_size_basic.test │ │ │ ├── innodb_ft_enable_diag_print_basic.test │ │ │ ├── innodb_ft_enable_stopword_basic.test │ │ │ ├── innodb_ft_max_token_size_basic.test │ │ │ ├── innodb_ft_min_token_size_basic.test │ │ │ ├── innodb_ft_num_word_optimize_basic.test │ │ │ ├── innodb_ft_result_cache_limit.test │ │ │ ├── innodb_ft_result_cache_limit_basic.test │ │ │ ├── innodb_ft_server_stopword_table_basic.test │ │ │ ├── innodb_ft_sort_pll_degree_basic.test │ │ │ ├── innodb_ft_total_cache_size_basic.test │ │ │ ├── innodb_ft_user_stopword_table_basic.test │ │ │ ├── innodb_immediate_scrub_data_uncompressed_basic.test │ │ │ ├── innodb_instant_alter_column_allowed_basic.test │ │ │ ├── innodb_io_capacity_basic.test │ │ │ ├── innodb_io_capacity_max_basic.test │ │ │ ├── innodb_limit_optimistic_insert_debug_basic.test │ │ │ ├── innodb_lock_wait_timeout_basic.test │ │ │ ├── innodb_log_buffer_size_basic.test │ │ │ ├── innodb_log_checkpoint_now_basic.test │ │ │ ├── innodb_log_file_size_basic.test │ │ │ ├── innodb_log_group_home_dir_basic.test │ │ │ ├── innodb_log_write_ahead_size_basic.test │ │ │ ├── innodb_lru_scan_depth_basic.test │ │ │ ├── innodb_max_dirty_pages_pct_basic.test │ │ │ ├── innodb_max_dirty_pages_pct_func.test │ │ │ ├── innodb_max_dirty_pages_pct_lwm_basic.test │ │ │ ├── innodb_max_purge_lag_basic.test │ │ │ ├── innodb_max_purge_lag_delay_basic.test │ │ │ ├── innodb_max_undo_log_size_basic.test │ │ │ ├── innodb_merge_threshold_set_all_debug_basic.test │ │ │ ├── innodb_numa_interleave_basic-master.opt │ │ │ ├── innodb_numa_interleave_basic.test │ │ │ ├── innodb_old_blocks_pct_basic.test │ │ │ ├── innodb_old_blocks_time_basic.test │ │ │ ├── innodb_online_alter_log_max_size_basic.test │ │ │ ├── innodb_open_files_basic.test │ │ │ ├── innodb_optimize_fulltext_only_basic.test │ │ │ ├── innodb_page_size_basic.test │ │ │ ├── innodb_prefix_index_cluster_optimization_basic.test │ │ │ ├── innodb_print_all_deadlocks_basic.test │ │ │ ├── innodb_purge_batch_size_basic.test │ │ │ ├── innodb_purge_rseg_truncate_frequency_basic.test │ │ │ ├── innodb_purge_threads_basic.test │ │ │ ├── innodb_random_read_ahead_basic.test │ │ │ ├── innodb_read_ahead_threshold_basic.test │ │ │ ├── innodb_read_io_threads_basic.opt │ │ │ ├── innodb_read_io_threads_basic.test │ │ │ ├── innodb_read_only_basic.test │ │ │ ├── innodb_rollback_on_timeout_basic.test │ │ │ ├── innodb_saved_page_number_debug_basic.test │ │ │ ├── innodb_sort_buffer_size_basic.test │ │ │ ├── innodb_spin_wait_delay_basic.test │ │ │ ├── innodb_stats_auto_recalc_basic.test │ │ │ ├── innodb_stats_include_delete_marked_basic.test │ │ │ ├── innodb_stats_method_basic.test │ │ │ ├── innodb_stats_modified_counter_basic.test │ │ │ ├── innodb_stats_on_metadata_basic.test │ │ │ ├── innodb_stats_persistent_basic.test │ │ │ ├── innodb_stats_persistent_sample_pages_basic.test │ │ │ ├── innodb_stats_traditional_basic.test │ │ │ ├── innodb_stats_transient_sample_pages_basic.test │ │ │ ├── innodb_status_output_basic.test │ │ │ ├── innodb_status_output_locks_basic.test │ │ │ ├── innodb_strict_mode_basic.test │ │ │ ├── innodb_sync_spin_loops_basic.test │ │ │ ├── innodb_table_locks_basic.test │ │ │ ├── innodb_table_locks_func.test │ │ │ ├── innodb_temp_data_file_path_basic.test │ │ │ ├── innodb_tmpdir_basic.test │ │ │ ├── innodb_trx_purge_view_update_only_debug_basic.test │ │ │ ├── innodb_trx_rseg_n_slots_debug_basic.test │ │ │ ├── innodb_undo_directory_basic.test │ │ │ ├── innodb_undo_log_truncate_basic.test │ │ │ ├── innodb_undo_tablespaces_basic.test │ │ │ ├── innodb_use_atomic_writes_basic.test │ │ │ ├── innodb_use_native_aio_basic.test │ │ │ ├── innodb_version_basic.test │ │ │ ├── innodb_write_io_threads_basic.opt │ │ │ ├── innodb_write_io_threads_basic.test │ │ │ ├── insert_id_basic.test │ │ │ ├── insert_id_func.test │ │ │ ├── interactive_timeout_basic.test │ │ │ ├── interactive_timeout_func.test │ │ │ ├── join_buffer_size_basic.test │ │ │ ├── join_buffer_space_limit_basic.test │ │ │ ├── join_cache_level_basic.test │ │ │ ├── keep_files_on_create_basic.test │ │ │ ├── key_buffer_size_basic.test │ │ │ ├── key_buffer_size_func.test │ │ │ ├── key_cache_age_threshold_basic.test │ │ │ ├── key_cache_block_size_basic.test │ │ │ ├── key_cache_division_limit_basic.test │ │ │ ├── key_cache_file_hash_size_basic.test │ │ │ ├── key_cache_segments_basic.test │ │ │ ├── large_files_support_basic.test │ │ │ ├── large_page_size_basic.test │ │ │ ├── large_pages_basic.test │ │ │ ├── last_gtid_basic.test │ │ │ ├── last_insert_id_basic.test │ │ │ ├── last_insert_id_func-master.opt │ │ │ ├── last_insert_id_func.test │ │ │ ├── lc_messages_basic.test │ │ │ ├── lc_messages_dir_basic.test │ │ │ ├── lc_time_names_basic.test │ │ │ ├── lc_time_names_func.test │ │ │ ├── license_basic.test │ │ │ ├── local_infile_basic.test │ │ │ ├── local_infile_func.test │ │ │ ├── lock_wait_timeout_basic.test │ │ │ ├── locked_in_memory_basic.test │ │ │ ├── log_bin_basename_basic.test │ │ │ ├── log_bin_basic.test │ │ │ ├── log_bin_compress_grant.test │ │ │ ├── log_bin_compress_min_len_grant.test │ │ │ ├── log_bin_index_basic.test │ │ │ ├── log_bin_trust_function_creators_basic.test │ │ │ ├── log_bin_trust_function_creators_func.test │ │ │ ├── log_bin_trust_function_creators_grant.test │ │ │ ├── log_disabled_statements_basic.test │ │ │ ├── log_disabled_statements_func-master.opt │ │ │ ├── log_disabled_statements_func.test │ │ │ ├── log_error_func.test │ │ │ ├── log_error_func2.opt │ │ │ ├── log_error_func2.test │ │ │ ├── log_error_func3.opt │ │ │ ├── log_error_func3.test │ │ │ ├── log_output_basic.test │ │ │ ├── log_output_func.test │ │ │ ├── log_queries_not_using_indexes_basic.test │ │ │ ├── log_slave_updates_basic.test │ │ │ ├── log_slow_admin_statements_func.test │ │ │ ├── log_slow_disabled_statements_basic.test │ │ │ ├── log_slow_disabled_statements_func.test │ │ │ ├── log_slow_filter_basic.test │ │ │ ├── log_slow_rate_limit_basic.test │ │ │ ├── log_slow_verbosity_basic.test │ │ │ ├── log_tc_size_basic.test │ │ │ ├── log_warnings_basic.test │ │ │ ├── long_query_time_basic.test │ │ │ ├── low_priority_updates_basic.test │ │ │ ├── lower_case_file_system_basic.test │ │ │ ├── lower_case_table_names_basic.test │ │ │ ├── master_verify_checksum_basic.test │ │ │ ├── master_verify_checksum_grant.test │ │ │ ├── max_allowed_packet_basic.test │ │ │ ├── max_allowed_packet_func.test │ │ │ ├── max_binlog_cache_size_basic.test │ │ │ ├── max_binlog_cache_size_grant.test │ │ │ ├── max_binlog_size_basic.test │ │ │ ├── max_binlog_size_grant.test │ │ │ ├── max_binlog_stmt_cache_size_basic.test │ │ │ ├── max_binlog_stmt_cache_size_grant.test │ │ │ ├── max_connect_errors_basic.test │ │ │ ├── max_connect_errors_grant.test │ │ │ ├── max_connections_basic.test │ │ │ ├── max_connections_grant.test │ │ │ ├── max_delayed_threads_basic.test │ │ │ ├── max_digest_length_basic.test │ │ │ ├── max_error_count_basic.test │ │ │ ├── max_heap_table_size_basic.test │ │ │ ├── max_insert_delayed_threads_basic.test │ │ │ ├── max_join_size_basic.test │ │ │ ├── max_join_size_func.test │ │ │ ├── max_length_for_sort_data_basic.test │ │ │ ├── max_password_errors_grant.test │ │ │ ├── max_prepared_stmt_count_basic.test │ │ │ ├── max_prepared_stmt_count_func.test │ │ │ ├── max_relay_log_size_basic.test │ │ │ ├── max_seeks_for_key_basic.test │ │ │ ├── max_seeks_for_key_func.test │ │ │ ├── max_sort_length_func.test │ │ │ ├── max_sp_recursion_depth_basic.test │ │ │ ├── max_sp_recursion_depth_func.test │ │ │ ├── max_statement_time_basic.test │ │ │ ├── max_tmp_tables_basic.test │ │ │ ├── max_user_connections-2.test │ │ │ ├── max_user_connections_basic-master.opt │ │ │ ├── max_user_connections_basic.test │ │ │ ├── max_user_connections_func-master.opt │ │ │ ├── max_user_connections_func.test │ │ │ ├── max_write_lock_count_basic.test │ │ │ ├── maximum_basic-master.opt │ │ │ ├── maximum_basic.test │ │ │ ├── metadata_locks_cache_size_basic-master.opt │ │ │ ├── metadata_locks_cache_size_basic.test │ │ │ ├── metadata_locks_hash_instances_basic.test │ │ │ ├── min_examined_row_limit_basic.test │ │ │ ├── mrr_buffer_size_basic.test │ │ │ ├── myisam_block_size_basic.test │ │ │ ├── myisam_data_pointer_size_basic.test │ │ │ ├── myisam_data_pointer_size_func-master.opt │ │ │ ├── myisam_data_pointer_size_func.test │ │ │ ├── myisam_max_sort_file_size_basic.test │ │ │ ├── myisam_mmap_size_basic.test │ │ │ ├── myisam_recover_options_basic.opt │ │ │ ├── myisam_recover_options_basic.test │ │ │ ├── myisam_repair_threads_basic.test │ │ │ ├── myisam_sort_buffer_size_basic.test │ │ │ ├── myisam_stats_method_basic.test │ │ │ ├── myisam_stats_method_func.test │ │ │ ├── myisam_use_mmap_basic.test │ │ │ ├── mysql56_temporal_format_basic.test │ │ │ ├── mysql56_temporal_format_func.test │ │ │ ├── named_pipe_basic.test │ │ │ ├── net_buffer_length_basic.test │ │ │ ├── net_read_timeout_basic.test │ │ │ ├── net_retry_count_basic.test │ │ │ ├── net_write_timeout_basic.test │ │ │ ├── old_alter_table_basic.test │ │ │ ├── old_basic.test │ │ │ ├── old_mode_basic.test │ │ │ ├── old_passwords_basic.test │ │ │ ├── old_passwords_func.test │ │ │ ├── open_files_limit_basic.test │ │ │ ├── optimizer_prune_level_basic.test │ │ │ ├── optimizer_search_depth_basic.test │ │ │ ├── optimizer_selectivity_sampling_limit_basic.test │ │ │ ├── optimizer_switch_basic.test │ │ │ ├── optimizer_use_condition_selectivity_basic.test │ │ │ ├── oqgraph_allow_create_integer_latch_basic.test │ │ │ ├── performance_schema_basic-master.opt │ │ │ ├── performance_schema_basic.test │ │ │ ├── pfs_accounts_size_basic-master.opt │ │ │ ├── pfs_accounts_size_basic.test │ │ │ ├── pfs_digests_size-master_basic.opt │ │ │ ├── pfs_digests_size_basic.test │ │ │ ├── pfs_events_stages_history_long_size_basic-master.opt │ │ │ ├── pfs_events_stages_history_long_size_basic.test │ │ │ ├── pfs_events_stages_history_size_basic-master.opt │ │ │ ├── pfs_events_stages_history_size_basic.test │ │ │ ├── pfs_events_statements_history_long_size_basic-master.opt │ │ │ ├── pfs_events_statements_history_long_size_basic.test │ │ │ ├── pfs_events_statements_history_size_basic-master.opt │ │ │ ├── pfs_events_statements_history_size_basic.test │ │ │ ├── pfs_events_waits_history_long_size_basic-master.opt │ │ │ ├── pfs_events_waits_history_long_size_basic.test │ │ │ ├── pfs_events_waits_history_size_basic-master.opt │ │ │ ├── pfs_events_waits_history_size_basic.test │ │ │ ├── pfs_hosts_size_basic-master.opt │ │ │ ├── pfs_hosts_size_basic.test │ │ │ ├── pfs_max_cond_classes_basic-master.opt │ │ │ ├── pfs_max_cond_classes_basic.test │ │ │ ├── pfs_max_cond_instances_basic-master.opt │ │ │ ├── pfs_max_cond_instances_basic.test │ │ │ ├── pfs_max_digest_length-master_basic.opt │ │ │ ├── pfs_max_digest_length_basic.test │ │ │ ├── pfs_max_file_classes_basic-master.opt │ │ │ ├── pfs_max_file_classes_basic.test │ │ │ ├── pfs_max_file_handles_basic-master.opt │ │ │ ├── pfs_max_file_handles_basic.test │ │ │ ├── pfs_max_file_instances_basic-master.opt │ │ │ ├── pfs_max_file_instances_basic.test │ │ │ ├── pfs_max_mutex_classes_basic-master.opt │ │ │ ├── pfs_max_mutex_classes_basic.test │ │ │ ├── pfs_max_mutex_instances_basic-master.opt │ │ │ ├── pfs_max_mutex_instances_basic.test │ │ │ ├── pfs_max_rwlock_classes_basic-master.opt │ │ │ ├── pfs_max_rwlock_classes_basic.test │ │ │ ├── pfs_max_rwlock_instances_basic-master.opt │ │ │ ├── pfs_max_rwlock_instances_basic.test │ │ │ ├── pfs_max_socket_classes_basic-master.opt │ │ │ ├── pfs_max_socket_classes_basic.test │ │ │ ├── pfs_max_socket_instances_basic-master.opt │ │ │ ├── pfs_max_socket_instances_basic.test │ │ │ ├── pfs_max_stage_classes_basic-master.opt │ │ │ ├── pfs_max_stage_classes_basic.test │ │ │ ├── pfs_max_statement_classes_basic-master.opt │ │ │ ├── pfs_max_statement_classes_basic.test │ │ │ ├── pfs_max_table_handles_basic-master.opt │ │ │ ├── pfs_max_table_handles_basic.test │ │ │ ├── pfs_max_table_instances_basic-master.opt │ │ │ ├── pfs_max_table_instances_basic.test │ │ │ ├── pfs_max_thread_classes_basic-master.opt │ │ │ ├── pfs_max_thread_classes_basic.test │ │ │ ├── pfs_max_thread_instances_basic-master.opt │ │ │ ├── pfs_max_thread_instances_basic.test │ │ │ ├── pfs_session_connect_attrs_size_basic-master.opt │ │ │ ├── pfs_session_connect_attrs_size_basic.test │ │ │ ├── pfs_setup_actors_size_basic-master.opt │ │ │ ├── pfs_setup_actors_size_basic.test │ │ │ ├── pfs_setup_objects_size_basic-master.opt │ │ │ ├── pfs_setup_objects_size_basic.test │ │ │ ├── pfs_users_size_basic-master.opt │ │ │ ├── pfs_users_size_basic.test │ │ │ ├── pid_file_basic.test │ │ │ ├── plugin_dir_basic-master.opt │ │ │ ├── plugin_dir_basic.test │ │ │ ├── plugin_maturity_basic.test │ │ │ ├── port_basic.test │ │ │ ├── preload_buffer_size_basic.test │ │ │ ├── preudo_thread_id_grant.test │ │ │ ├── profiling_basic.test │ │ │ ├── profiling_history_size_basic.test │ │ │ ├── progress_report_time_basic.test │ │ │ ├── protocol_version_basic.test │ │ │ ├── proxy_protocol_networks_grant.test │ │ │ ├── proxy_user_basic.test │ │ │ ├── pseudo_slave_mode_basic.test │ │ │ ├── pseudo_thread_id_basic.test │ │ │ ├── query_alloc_block_size_basic.test │ │ │ ├── query_cache_limit_basic.test │ │ │ ├── query_cache_limit_func.test │ │ │ ├── query_cache_min_res_unit_basic.test │ │ │ ├── query_cache_size_basic.test │ │ │ ├── query_cache_strip_comments_basic.test │ │ │ ├── query_cache_type_basic.test │ │ │ ├── query_cache_type_func.test │ │ │ ├── query_cache_wlock_invalidate_basic.test │ │ │ ├── query_cache_wlock_invalidate_func.test │ │ │ ├── query_prealloc_size_basic.test │ │ │ ├── query_prealloc_size_func.test │ │ │ ├── rand_seed1_basic.test │ │ │ ├── rand_seed2_basic.test │ │ │ ├── range_alloc_block_size_basic.test │ │ │ ├── read_binlog_speed_limit_grant.test │ │ │ ├── read_buffer_size_basic.test │ │ │ ├── read_only_basic.test │ │ │ ├── read_only_func.test │ │ │ ├── read_only_grant.test │ │ │ ├── read_rnd_buffer_size_basic.test │ │ │ ├── relay_log_basename_basic.test │ │ │ ├── relay_log_basic.test │ │ │ ├── relay_log_index_basic.test │ │ │ ├── relay_log_info_file_basic.test │ │ │ ├── relay_log_purge_basic.test │ │ │ ├── relay_log_purge_grant.test │ │ │ ├── relay_log_recovery_basic.test │ │ │ ├── relay_log_recovery_grant.test │ │ │ ├── relay_log_space_limit_basic.test │ │ │ ├── replicate_annotate_row_events_basic.test │ │ │ ├── replicate_do_db_basic.test │ │ │ ├── replicate_do_db_grant.test │ │ │ ├── replicate_do_table_basic.test │ │ │ ├── replicate_do_table_grant.test │ │ │ ├── replicate_events_marked_for_skip_basic.test │ │ │ ├── replicate_events_marked_for_skip_grant.test │ │ │ ├── replicate_ignore_db_basic.test │ │ │ ├── replicate_ignore_db_grant.test │ │ │ ├── replicate_ignore_table_basic.test │ │ │ ├── replicate_ignore_table_grant.test │ │ │ ├── replicate_wild_do_table_basic.test │ │ │ ├── replicate_wild_do_table_grant.test │ │ │ ├── replicate_wild_ignore_table_basic.test │ │ │ ├── replicate_wild_ignore_table_grant.test │ │ │ ├── report_host_basic.test │ │ │ ├── report_password_basic.test │ │ │ ├── report_port_basic.test │ │ │ ├── report_user_basic.test │ │ │ ├── rowid_merge_buff_size_basic.test │ │ │ ├── rpl_init_slave_func.test │ │ │ ├── rpl_max_binlog_size_func-master.opt │ │ │ ├── rpl_max_binlog_size_func.test │ │ │ ├── rpl_semi_sync_master_enabled_basic.test │ │ │ ├── rpl_semi_sync_master_enabled_grant.test │ │ │ ├── rpl_semi_sync_master_timeout_basic.test │ │ │ ├── rpl_semi_sync_master_timeout_grant.test │ │ │ ├── rpl_semi_sync_master_trace_level_basic.test │ │ │ ├── rpl_semi_sync_master_trace_level_grant.test │ │ │ ├── rpl_semi_sync_master_wait_no_slave_basic.test │ │ │ ├── rpl_semi_sync_master_wait_no_slave_grant.test │ │ │ ├── rpl_semi_sync_master_wait_point_basic.test │ │ │ ├── rpl_semi_sync_master_wait_point_grant.test │ │ │ ├── rpl_semi_sync_slave_delay_master_grant.test │ │ │ ├── rpl_semi_sync_slave_enabled_basic.test │ │ │ ├── rpl_semi_sync_slave_enabled_grant.test │ │ │ ├── rpl_semi_sync_slave_kill_conn_timeout_grant.test │ │ │ ├── rpl_semi_sync_slave_trace_level_basic.test │ │ │ ├── rpl_semi_sync_slave_trace_level_grant.test │ │ │ ├── secure_auth_basic.test │ │ │ ├── secure_auth_func-master.opt │ │ │ ├── secure_auth_func.test │ │ │ ├── secure_auth_grant.test │ │ │ ├── secure_file_priv-master.opt │ │ │ ├── secure_file_priv.test │ │ │ ├── secure_file_priv2-master.opt │ │ │ ├── secure_file_priv2.test │ │ │ ├── secure_file_priv_basic.test │ │ │ ├── secure_timestamp_no-slave.opt │ │ │ ├── secure_timestamp_no.test │ │ │ ├── secure_timestamp_rpl-slave.opt │ │ │ ├── secure_timestamp_rpl.test │ │ │ ├── secure_timestamp_super-slave.opt │ │ │ ├── secure_timestamp_super.test │ │ │ ├── secure_timestamp_yes-slave.opt │ │ │ ├── secure_timestamp_yes.test │ │ │ ├── server_id_basic.test │ │ │ ├── server_id_grant.test │ │ │ ├── session_track_system_variables_basic.test │ │ │ ├── show_vs_valstr.test │ │ │ ├── skip_external_locking_basic.test │ │ │ ├── skip_name_resolve_basic-master.opt │ │ │ ├── skip_name_resolve_basic.test │ │ │ ├── skip_networking_basic.test │ │ │ ├── skip_parallel_replication_basic.test │ │ │ ├── skip_replication_basic.test │ │ │ ├── skip_show_database_basic.test │ │ │ ├── slave_allow_batching_basic.test │ │ │ ├── slave_compressed_protocol_basic.test │ │ │ ├── slave_compressed_protocol_grant.test │ │ │ ├── slave_ddl_exec_mode_basic.test │ │ │ ├── slave_ddl_exec_mode_grant.test │ │ │ ├── slave_domain_parallel_threads_basic.test │ │ │ ├── slave_domain_parallel_threads_grant.test │ │ │ ├── slave_exec_mode_basic.test │ │ │ ├── slave_exec_mode_grant.test │ │ │ ├── slave_load_tmpdir_basic.test │ │ │ ├── slave_max_allowed_packet_basic.test │ │ │ ├── slave_max_allowed_packet_grant.test │ │ │ ├── slave_net_timeout_basic.test │ │ │ ├── slave_net_timeout_grant.test │ │ │ ├── slave_parallel_max_queued_basic.test │ │ │ ├── slave_parallel_max_queued_grant.test │ │ │ ├── slave_parallel_mode_basic-master.opt │ │ │ ├── slave_parallel_mode_basic.test │ │ │ ├── slave_parallel_mode_grant.test │ │ │ ├── slave_parallel_threads_basic.cnf │ │ │ ├── slave_parallel_threads_basic.test │ │ │ ├── slave_parallel_threads_grant.test │ │ │ ├── slave_parallel_workers_grant.test │ │ │ ├── slave_run_triggers_for_rbr_grant.test │ │ │ ├── slave_skip_errors_basic.test │ │ │ ├── slave_sql_verify_checksum_basic.test │ │ │ ├── slave_sql_verify_checksum_grant.test │ │ │ ├── slave_transaction_retries_basic.test │ │ │ ├── slave_transaction_retry_errors-master.opt │ │ │ ├── slave_transaction_retry_errors.test │ │ │ ├── slave_transaction_retry_interval_basic.test │ │ │ ├── slave_transaction_retry_interval_grant.test │ │ │ ├── slave_type_conversions_basic.test │ │ │ ├── slave_type_conversions_grant.test │ │ │ ├── slow_launch_time_basic.test │ │ │ ├── slow_launch_time_func-master.opt │ │ │ ├── slow_launch_time_func.test │ │ │ ├── slow_launch_time_grant.test │ │ │ ├── slow_query_log_basic.test │ │ │ ├── slow_query_log_file_basic-master.opt │ │ │ ├── slow_query_log_file_basic.test │ │ │ ├── slow_query_log_file_func-master.opt │ │ │ ├── slow_query_log_file_func.test │ │ │ ├── slow_query_log_func.test │ │ │ ├── socket_basic.test │ │ │ ├── sort_buffer_size_basic.test │ │ │ ├── sql_auto_is_null_basic.test │ │ │ ├── sql_big_selects_basic.test │ │ │ ├── sql_big_selects_func.test │ │ │ ├── sql_buffer_result_basic.test │ │ │ ├── sql_buffer_result_func.test │ │ │ ├── sql_log_bin_basic.test │ │ │ ├── sql_log_bin_grant.test │ │ │ ├── sql_log_off_basic.test │ │ │ ├── sql_log_off_func-master.opt │ │ │ ├── sql_log_off_func.test │ │ │ ├── sql_low_priority_updates_func.test │ │ │ ├── sql_mode_basic.test │ │ │ ├── sql_mode_func.test │ │ │ ├── sql_notes_basic.test │ │ │ ├── sql_notes_func.test │ │ │ ├── sql_quote_show_create_basic.test │ │ │ ├── sql_quote_show_create_func.test │ │ │ ├── sql_safe_updates_basic.test │ │ │ ├── sql_safe_updates_func.test │ │ │ ├── sql_select_limit_basic.test │ │ │ ├── sql_select_limit_func.test │ │ │ ├── sql_slave_skip_counter_basic.test │ │ │ ├── sql_warnings_basic.test │ │ │ ├── sql_warnings_func.test │ │ │ ├── ssl_ca_basic.test │ │ │ ├── ssl_capath_basic.test │ │ │ ├── ssl_cert_basic.test │ │ │ ├── ssl_cipher_basic.test │ │ │ ├── ssl_crl_basic.test │ │ │ ├── ssl_crlpath_basic.test │ │ │ ├── ssl_key_basic.test │ │ │ ├── storage_engine_basic-master.opt │ │ │ ├── storage_engine_basic.test │ │ │ ├── stored_program_cache_basic.test │ │ │ ├── stored_program_cache_func.test │ │ │ ├── sync_binlog_basic.test │ │ │ ├── sync_binlog_grant.test │ │ │ ├── sync_frm_basic.test │ │ │ ├── sync_master_info_basic.test │ │ │ ├── sync_master_info_grant.test │ │ │ ├── sync_relay_log_basic.test │ │ │ ├── sync_relay_log_grant.test │ │ │ ├── sync_relay_log_info_basic.test │ │ │ ├── sync_relay_log_info_grant.test │ │ │ ├── system_time_zone_basic.test │ │ │ ├── sysvars_aria.opt │ │ │ ├── sysvars_aria.test │ │ │ ├── sysvars_debug.opt │ │ │ ├── sysvars_debug.test │ │ │ ├── sysvars_innodb.opt │ │ │ ├── sysvars_innodb.test │ │ │ ├── sysvars_server_embedded.test │ │ │ ├── sysvars_server_notembedded.test │ │ │ ├── sysvars_star.cnf │ │ │ ├── sysvars_star.opt │ │ │ ├── sysvars_star.test │ │ │ ├── sysvars_wsrep.test │ │ │ ├── table_definition_cache_basic.test │ │ │ ├── table_open_cache_basic.test │ │ │ ├── tcp_keepalive_time.test │ │ │ ├── tcp_nodelay.test │ │ │ ├── thread_cache_size_basic-master.opt │ │ │ ├── thread_cache_size_basic.test │ │ │ ├── thread_cache_size_func-master.opt │ │ │ ├── thread_cache_size_func.test │ │ │ ├── thread_handling_basic.test │ │ │ ├── thread_pool_idle_timeout_basic.test │ │ │ ├── thread_pool_idle_timeout_grant.test │ │ │ ├── thread_pool_max_threads_basic.test │ │ │ ├── thread_pool_max_threads_grant.test │ │ │ ├── thread_pool_min_threads_basic.test │ │ │ ├── thread_pool_oversubscribe_basic.test │ │ │ ├── thread_pool_oversubscribe_grant.test │ │ │ ├── thread_pool_size_basic.opt │ │ │ ├── thread_pool_size_basic.test │ │ │ ├── thread_pool_size_high.opt │ │ │ ├── thread_pool_size_high.test │ │ │ ├── thread_pool_stall_limit_basic.test │ │ │ ├── thread_pool_stall_limit_grant.test │ │ │ ├── thread_stack_basic.test │ │ │ ├── time_format_basic.test │ │ │ ├── time_zone_basic.test │ │ │ ├── time_zone_func.test │ │ │ ├── timestamp_basic.test │ │ │ ├── timestamp_func.test │ │ │ ├── timestamp_sysdate_is_now_func-master.opt │ │ │ ├── timestamp_sysdate_is_now_func.test │ │ │ ├── tmp_disk_table_size_basic.test │ │ │ ├── tmp_disk_table_size_func.test │ │ │ ├── tmpdir_basic.test │ │ │ ├── transaction_alloc_block_size_basic.test │ │ │ ├── transaction_prealloc_size_basic.test │ │ │ ├── transaction_prealloc_size_bug27322.test │ │ │ ├── tx_isolation_basic.test │ │ │ ├── tx_isolation_func-master.opt │ │ │ ├── tx_isolation_func.test │ │ │ ├── tx_read_only_basic.test │ │ │ ├── unique_checks_basic.test │ │ │ ├── updatable_views_with_limit_basic.test │ │ │ ├── updatable_views_with_limit_func.test │ │ │ ├── use_stat_tables_basic.test │ │ │ ├── userstat_basic.test │ │ │ ├── version.opt │ │ │ ├── version.test │ │ │ ├── version_basic.test │ │ │ ├── version_comment_basic.test │ │ │ ├── version_compile_machine_basic.test │ │ │ ├── version_compile_os_basic.test │ │ │ ├── version_malloc_library_basic.test │ │ │ ├── version_ssl_library_basic.test │ │ │ ├── wait_timeout_basic.test │ │ │ ├── wait_timeout_func.test │ │ │ ├── warning_count_basic.test │ │ │ ├── wsrep_auto_increment_control_basic.test │ │ │ ├── wsrep_causal_reads_basic.test │ │ │ ├── wsrep_certify_nonpk_basic.test │ │ │ ├── wsrep_cluster_address_basic.test │ │ │ ├── wsrep_cluster_name_basic.test │ │ │ ├── wsrep_convert_lock_to_trx_basic.test │ │ │ ├── wsrep_data_home_dir_basic.test │ │ │ ├── wsrep_dbug_option_basic.test │ │ │ ├── wsrep_debug_basic.test │ │ │ ├── wsrep_desync_basic.test │ │ │ ├── wsrep_dirty_reads_basic.test │ │ │ ├── wsrep_drupal_282555_workaround_basic.test │ │ │ ├── wsrep_forced_binlog_format_basic.test │ │ │ ├── wsrep_gtid_domain_id_basic.test │ │ │ ├── wsrep_gtid_mode_basic.test │ │ │ ├── wsrep_load_data_splitting_basic.test │ │ │ ├── wsrep_log_conflicts_basic.test │ │ │ ├── wsrep_max_ws_rows_basic.test │ │ │ ├── wsrep_max_ws_size_basic.test │ │ │ ├── wsrep_mysql_replication_bundle_basic.test │ │ │ ├── wsrep_node_address_basic.test │ │ │ ├── wsrep_node_incoming_address_basic.test │ │ │ ├── wsrep_node_name_basic.test │ │ │ ├── wsrep_on_without_provider.test │ │ │ ├── wsrep_osu_method_basic.test │ │ │ ├── wsrep_recover_basic.test │ │ │ ├── wsrep_restart_slave_basic.test │ │ │ ├── wsrep_retry_autocommit_basic.test │ │ │ ├── wsrep_slave_fk_checks_basic.test │ │ │ ├── wsrep_slave_uk_checks_basic.test │ │ │ ├── wsrep_sst_auth_basic.test │ │ │ ├── wsrep_sst_donor_basic.test │ │ │ ├── wsrep_sst_donor_rejects_queries_basic.test │ │ │ ├── wsrep_sst_method_basic.test │ │ │ ├── wsrep_sst_receive_address_basic.test │ │ │ └── wsrep_sync_wait_basic.test │ │ ├── sysschema/ │ │ │ ├── include/ │ │ │ │ ├── ps_setup_actors_cleanup.inc │ │ │ │ ├── ps_setup_consumers_cleanup.inc │ │ │ │ ├── ps_setup_instruments_cleanup.inc │ │ │ │ ├── ps_setup_reset_to_default_cleanup.inc │ │ │ │ ├── ps_threads_cleanup.inc │ │ │ │ ├── ps_truncate_all_tables.inc │ │ │ │ └── sys_config_cleanup.inc │ │ │ ├── r/ │ │ │ │ ├── all_sys_objects_exist.result │ │ │ │ ├── fn_extract_schema_from_file_name.result │ │ │ │ ├── fn_extract_table_from_file_name.result │ │ │ │ ├── fn_format_bytes.result │ │ │ │ ├── fn_format_path.result │ │ │ │ ├── fn_format_statement.result │ │ │ │ ├── fn_format_time.result │ │ │ │ ├── fn_list_add.result │ │ │ │ ├── fn_list_drop.result │ │ │ │ ├── fn_ps_is_account_enabled.result │ │ │ │ ├── fn_ps_is_consumer_enabled.result │ │ │ │ ├── fn_ps_is_instrument_default_enabled.result │ │ │ │ ├── fn_ps_is_instrument_default_timed.result │ │ │ │ ├── fn_ps_is_thread_instrumented.result │ │ │ │ ├── fn_ps_thread_account.result │ │ │ │ ├── fn_ps_thread_id.result │ │ │ │ ├── fn_ps_thread_trx_info.result │ │ │ │ ├── fn_quote_identifier.result │ │ │ │ ├── fn_sys_get_config.result │ │ │ │ ├── mysqldump.result │ │ │ │ ├── pr_create_synonym_db.result │ │ │ │ ├── pr_diagnostics.result │ │ │ │ ├── pr_execute_prepared_stmt.result │ │ │ │ ├── pr_ps_setup_reset_to_default.result │ │ │ │ ├── pr_ps_setup_show_disabled.result │ │ │ │ ├── pr_ps_setup_show_disabled_consumers.result │ │ │ │ ├── pr_ps_setup_show_disabled_instruments.result │ │ │ │ ├── pr_ps_setup_show_enabled.result │ │ │ │ ├── pr_ps_setup_show_enabled_consumers.result │ │ │ │ ├── pr_ps_setup_show_enabled_instruments.result │ │ │ │ ├── pr_ps_trace_statement_digest.result │ │ │ │ ├── pr_statement_performance_analyzer.result │ │ │ │ ├── pr_table_exists.result │ │ │ │ ├── t_sys_config.result │ │ │ │ ├── v_host_summary.result │ │ │ │ ├── v_host_summary_by_file_io.result │ │ │ │ ├── v_host_summary_by_file_io_type.result │ │ │ │ ├── v_host_summary_by_stages.result │ │ │ │ ├── v_host_summary_by_statement_latency.result │ │ │ │ ├── v_host_summary_by_statement_type.result │ │ │ │ ├── v_innodb_buffer_stats_by_schema.result │ │ │ │ ├── v_innodb_buffer_stats_by_table.result │ │ │ │ ├── v_innodb_lock_waits.result │ │ │ │ ├── v_io_by_thread_by_latency.result │ │ │ │ ├── v_io_global_by_file_by_bytes.result │ │ │ │ ├── v_io_global_by_file_by_latency.result │ │ │ │ ├── v_io_global_by_wait_by_bytes.result │ │ │ │ ├── v_io_global_by_wait_by_latency.result │ │ │ │ ├── v_latest_file_io.result │ │ │ │ ├── v_memory_by_host_by_current_bytes.result │ │ │ │ ├── v_memory_by_thread_by_current_bytes.result │ │ │ │ ├── v_memory_by_user_by_current_bytes.result │ │ │ │ ├── v_memory_global_by_current_bytes.result │ │ │ │ ├── v_memory_global_total.result │ │ │ │ ├── v_metrics.result │ │ │ │ ├── v_processlist.result │ │ │ │ ├── v_ps_check_lost_instrumentation.result │ │ │ │ ├── v_ps_digest_95th_percentile_by_avg_us.result │ │ │ │ ├── v_ps_digest_avg_latency_distribution.result │ │ │ │ ├── v_ps_schema_table_statistics_io.result │ │ │ │ ├── v_schema_auto_increment_columns.result │ │ │ │ ├── v_schema_index_statistics.result │ │ │ │ ├── v_schema_object_overview.result │ │ │ │ ├── v_schema_redundant_indexes.result │ │ │ │ ├── v_schema_table_lock_waits.result │ │ │ │ ├── v_schema_table_statistics.result │ │ │ │ ├── v_schema_table_statistics_with_buffer.result │ │ │ │ ├── v_schema_tables_with_full_table_scans.result │ │ │ │ ├── v_schema_unused_indexes.result │ │ │ │ ├── v_session.result │ │ │ │ ├── v_session_ssl_status.result │ │ │ │ ├── v_statement_analysis.result │ │ │ │ ├── v_statements_with_errors_or_warnings.result │ │ │ │ ├── v_statements_with_full_table_scans.result │ │ │ │ ├── v_statements_with_runtimes_in_95th_percentile.result │ │ │ │ ├── v_statements_with_sorting.result │ │ │ │ ├── v_statements_with_temp_tables.result │ │ │ │ ├── v_user_summary.result │ │ │ │ ├── v_user_summary_by_file_io.result │ │ │ │ ├── v_user_summary_by_file_io_type.result │ │ │ │ ├── v_user_summary_by_stages.result │ │ │ │ ├── v_user_summary_by_statement_latency.result │ │ │ │ ├── v_user_summary_by_statement_type.result │ │ │ │ ├── v_version.result │ │ │ │ ├── v_wait_classes_global_by_avg_latency.result │ │ │ │ ├── v_wait_classes_global_by_latency.result │ │ │ │ ├── v_waits_by_host_by_latency.result │ │ │ │ ├── v_waits_by_user_by_latency.result │ │ │ │ ├── v_waits_global_by_latency.result │ │ │ │ └── version_functions.result │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── all_sys_objects_exist.test │ │ │ ├── fn_extract_schema_from_file_name.test │ │ │ ├── fn_extract_table_from_file_name.test │ │ │ ├── fn_format_bytes.test │ │ │ ├── fn_format_path.test │ │ │ ├── fn_format_statement.test │ │ │ ├── fn_format_time.test │ │ │ ├── fn_list_add.test │ │ │ ├── fn_list_drop.test │ │ │ ├── fn_ps_is_account_enabled.test │ │ │ ├── fn_ps_is_consumer_enabled.test │ │ │ ├── fn_ps_is_instrument_default_enabled.test │ │ │ ├── fn_ps_is_instrument_default_timed.test │ │ │ ├── fn_ps_is_thread_instrumented.test │ │ │ ├── fn_ps_thread_account.test │ │ │ ├── fn_ps_thread_id.test │ │ │ ├── fn_ps_thread_trx_info.test │ │ │ ├── fn_quote_identifier.test │ │ │ ├── fn_sys_get_config.test │ │ │ ├── mysqldump.test │ │ │ ├── pr_create_synonym_db.test │ │ │ ├── pr_diagnostics.test │ │ │ ├── pr_execute_prepared_stmt.test │ │ │ ├── pr_ps_setup_reset_to_default.test │ │ │ ├── pr_ps_setup_show_disabled.test │ │ │ ├── pr_ps_setup_show_disabled_consumers.test │ │ │ ├── pr_ps_setup_show_disabled_instruments.test │ │ │ ├── pr_ps_setup_show_enabled.test │ │ │ ├── pr_ps_setup_show_enabled_consumers.test │ │ │ ├── pr_ps_setup_show_enabled_instruments.test │ │ │ ├── pr_ps_trace_statement_digest.test │ │ │ ├── pr_statement_performance_analyzer.test │ │ │ ├── pr_table_exists.test │ │ │ ├── t_sys_config.test │ │ │ ├── v_host_summary.test │ │ │ ├── v_host_summary_by_file_io.test │ │ │ ├── v_host_summary_by_file_io_type.test │ │ │ ├── v_host_summary_by_stages.test │ │ │ ├── v_host_summary_by_statement_latency.test │ │ │ ├── v_host_summary_by_statement_type.test │ │ │ ├── v_innodb_buffer_stats_by_schema.test │ │ │ ├── v_innodb_buffer_stats_by_table.test │ │ │ ├── v_innodb_lock_waits.test │ │ │ ├── v_io_by_thread_by_latency.test │ │ │ ├── v_io_global_by_file_by_bytes.test │ │ │ ├── v_io_global_by_file_by_latency.test │ │ │ ├── v_io_global_by_wait_by_bytes.test │ │ │ ├── v_io_global_by_wait_by_latency.test │ │ │ ├── v_latest_file_io.test │ │ │ ├── v_memory_by_host_by_current_bytes.test │ │ │ ├── v_memory_by_thread_by_current_bytes.test │ │ │ ├── v_memory_by_user_by_current_bytes.test │ │ │ ├── v_memory_global_by_current_bytes.test │ │ │ ├── v_memory_global_total.test │ │ │ ├── v_metrics.test │ │ │ ├── v_processlist.test │ │ │ ├── v_ps_check_lost_instrumentation.test │ │ │ ├── v_ps_digest_95th_percentile_by_avg_us.test │ │ │ ├── v_ps_digest_avg_latency_distribution.test │ │ │ ├── v_ps_schema_table_statistics_io.test │ │ │ ├── v_schema_auto_increment_columns.test │ │ │ ├── v_schema_index_statistics.test │ │ │ ├── v_schema_object_overview.test │ │ │ ├── v_schema_redundant_indexes.test │ │ │ ├── v_schema_table_lock_waits.test │ │ │ ├── v_schema_table_statistics.test │ │ │ ├── v_schema_table_statistics_with_buffer.test │ │ │ ├── v_schema_tables_with_full_table_scans.test │ │ │ ├── v_schema_unused_indexes.test │ │ │ ├── v_session.test │ │ │ ├── v_session_ssl_status.test │ │ │ ├── v_statement_analysis.test │ │ │ ├── v_statements_with_errors_or_warnings.test │ │ │ ├── v_statements_with_full_table_scans.test │ │ │ ├── v_statements_with_runtimes_in_95th_percentile.test │ │ │ ├── v_statements_with_sorting.test │ │ │ ├── v_statements_with_temp_tables.test │ │ │ ├── v_user_summary.test │ │ │ ├── v_user_summary_by_file_io.test │ │ │ ├── v_user_summary_by_file_io_type.test │ │ │ ├── v_user_summary_by_stages.test │ │ │ ├── v_user_summary_by_statement_latency.test │ │ │ ├── v_user_summary_by_statement_type.test │ │ │ ├── v_version.test │ │ │ ├── v_wait_classes_global_by_avg_latency.test │ │ │ ├── v_wait_classes_global_by_latency.test │ │ │ ├── v_waits_by_host_by_latency.test │ │ │ ├── v_waits_by_user_by_latency.test │ │ │ ├── v_waits_global_by_latency.test │ │ │ └── version_functions.test │ │ ├── unit/ │ │ │ └── suite.pm │ │ ├── vcol/ │ │ │ ├── disabled.def │ │ │ ├── inc/ │ │ │ │ ├── vcol_cleanup.inc │ │ │ │ ├── vcol_column_def_options.inc │ │ │ │ ├── vcol_dependancies_on_vcol.inc │ │ │ │ ├── vcol_handler.inc │ │ │ │ ├── vcol_init_vars.pre │ │ │ │ ├── vcol_ins_upd.inc │ │ │ │ ├── vcol_keys.inc │ │ │ │ ├── vcol_non_stored_columns.inc │ │ │ │ ├── vcol_partition.inc │ │ │ │ ├── vcol_select.inc │ │ │ │ ├── vcol_supported_sql_funcs.inc │ │ │ │ ├── vcol_trigger_sp.inc │ │ │ │ ├── vcol_unsupported_storage_engines.inc │ │ │ │ └── vcol_view.inc │ │ │ ├── r/ │ │ │ │ ├── alter_inplace-9045.result │ │ │ │ ├── binlog.result │ │ │ │ ├── charsets.result │ │ │ │ ├── cross_db.result │ │ │ │ ├── delayed.result │ │ │ │ ├── index.result │ │ │ │ ├── innodb_autoinc_vcol.result │ │ │ │ ├── innodb_virtual_fk.result │ │ │ │ ├── load_data.result │ │ │ │ ├── mrr.result │ │ │ │ ├── myisam_repair_prefix_varchar.result │ │ │ │ ├── not_supported.result │ │ │ │ ├── partition.result │ │ │ │ ├── races.result │ │ │ │ ├── range.result │ │ │ │ ├── rpl_vcol.result │ │ │ │ ├── update.result │ │ │ │ ├── update_binlog.result │ │ │ │ ├── upgrade.result │ │ │ │ ├── vcol_archive.result │ │ │ │ ├── vcol_blackhole.result │ │ │ │ ├── vcol_blocked_sql_funcs.result │ │ │ │ ├── vcol_column_def_options_innodb.result │ │ │ │ ├── vcol_column_def_options_myisam.result │ │ │ │ ├── vcol_csv.result │ │ │ │ ├── vcol_handler_aria.result │ │ │ │ ├── vcol_handler_innodb.result │ │ │ │ ├── vcol_handler_myisam.result │ │ │ │ ├── vcol_ins_upd_innodb.result │ │ │ │ ├── vcol_ins_upd_myisam.result │ │ │ │ ├── vcol_keys_aria.result │ │ │ │ ├── vcol_keys_innodb.result │ │ │ │ ├── vcol_keys_myisam.result │ │ │ │ ├── vcol_memory.result │ │ │ │ ├── vcol_merge.result │ │ │ │ ├── vcol_misc.result │ │ │ │ ├── vcol_non_stored_columns_innodb.result │ │ │ │ ├── vcol_non_stored_columns_myisam.result │ │ │ │ ├── vcol_partition_innodb.result │ │ │ │ ├── vcol_partition_myisam.result │ │ │ │ ├── vcol_select_innodb.result │ │ │ │ ├── vcol_select_myisam.result │ │ │ │ ├── vcol_sql_mode.result │ │ │ │ ├── vcol_sql_mode_datetime.result │ │ │ │ ├── vcol_sql_mode_time.result │ │ │ │ ├── vcol_sql_mode_timestamp.result │ │ │ │ ├── vcol_sql_mode_upgrade.result │ │ │ │ ├── vcol_supported_sql_funcs.result │ │ │ │ ├── vcol_syntax.result │ │ │ │ ├── vcol_trigger_sp_innodb.result │ │ │ │ ├── vcol_trigger_sp_myisam.result │ │ │ │ ├── vcol_view_innodb.result │ │ │ │ ├── vcol_view_myisam.result │ │ │ │ └── wrong_arena.result │ │ │ └── t/ │ │ │ ├── alter_inplace-9045.test │ │ │ ├── binlog.test │ │ │ ├── charsets.test │ │ │ ├── cross_db.test │ │ │ ├── delayed.test │ │ │ ├── index.test │ │ │ ├── innodb_autoinc_vcol.test │ │ │ ├── innodb_virtual_fk.test │ │ │ ├── load_data.test │ │ │ ├── mrr.test │ │ │ ├── myisam_repair_prefix_varchar.test │ │ │ ├── not_supported.test │ │ │ ├── partition.test │ │ │ ├── races.test │ │ │ ├── range.test │ │ │ ├── rpl_vcol.test │ │ │ ├── update.test │ │ │ ├── update_binlog.test │ │ │ ├── upgrade.test │ │ │ ├── vcol_archive.test │ │ │ ├── vcol_blackhole.test │ │ │ ├── vcol_blocked_sql_funcs.test │ │ │ ├── vcol_blocked_sql_funcs_main.inc │ │ │ ├── vcol_column_def_options_innodb.test │ │ │ ├── vcol_column_def_options_myisam.test │ │ │ ├── vcol_csv.test │ │ │ ├── vcol_handler_aria.test │ │ │ ├── vcol_handler_innodb.test │ │ │ ├── vcol_handler_myisam.test │ │ │ ├── vcol_ins_upd_innodb.test │ │ │ ├── vcol_ins_upd_myisam.test │ │ │ ├── vcol_keys_aria.test │ │ │ ├── vcol_keys_innodb.opt │ │ │ ├── vcol_keys_innodb.test │ │ │ ├── vcol_keys_myisam.test │ │ │ ├── vcol_memory.test │ │ │ ├── vcol_merge.test │ │ │ ├── vcol_misc.opt │ │ │ ├── vcol_misc.test │ │ │ ├── vcol_non_stored_columns_innodb.test │ │ │ ├── vcol_non_stored_columns_myisam.test │ │ │ ├── vcol_partition_innodb.test │ │ │ ├── vcol_partition_myisam.test │ │ │ ├── vcol_select_innodb.test │ │ │ ├── vcol_select_myisam.test │ │ │ ├── vcol_sql_mode.test │ │ │ ├── vcol_sql_mode_datetime.test │ │ │ ├── vcol_sql_mode_time.test │ │ │ ├── vcol_sql_mode_timestamp.test │ │ │ ├── vcol_sql_mode_upgrade.test │ │ │ ├── vcol_supported_sql_funcs.test │ │ │ ├── vcol_supported_sql_funcs_main.inc │ │ │ ├── vcol_syntax.test │ │ │ ├── vcol_trigger_sp_innodb.test │ │ │ ├── vcol_trigger_sp_myisam.test │ │ │ ├── vcol_view_innodb.test │ │ │ ├── vcol_view_myisam.test │ │ │ └── wrong_arena.test │ │ ├── versioning/ │ │ │ ├── common.inc │ │ │ ├── common.opt │ │ │ ├── common_finish.inc │ │ │ ├── disabled.def │ │ │ ├── engines.combinations │ │ │ ├── engines.inc │ │ │ ├── innodb.combinations │ │ │ ├── innodb.inc │ │ │ ├── key_type.combinations │ │ │ ├── key_type.inc │ │ │ ├── r/ │ │ │ │ ├── alter.result │ │ │ │ ├── autoinc.result │ │ │ │ ├── commit_id.result │ │ │ │ ├── create.result │ │ │ │ ├── cte.result │ │ │ │ ├── debug.result │ │ │ │ ├── delete.result │ │ │ │ ├── delete_history.result │ │ │ │ ├── derived.result │ │ │ │ ├── foreign.result │ │ │ │ ├── insert.result │ │ │ │ ├── insert2.result │ │ │ │ ├── load_data.result │ │ │ │ ├── not_embedded.result │ │ │ │ ├── online.result │ │ │ │ ├── optimized.result │ │ │ │ ├── partition.result │ │ │ │ ├── replace.result │ │ │ │ ├── rpl.result │ │ │ │ ├── rpl_mix.result │ │ │ │ ├── rpl_row.result │ │ │ │ ├── select,trx_id.rdiff │ │ │ │ ├── select.result │ │ │ │ ├── select2,trx_id.rdiff │ │ │ │ ├── select2.result │ │ │ │ ├── simple.result │ │ │ │ ├── sysvars.result │ │ │ │ ├── trx_id.result │ │ │ │ ├── update,trx_id.rdiff │ │ │ │ ├── update-big.result │ │ │ │ ├── update.result │ │ │ │ └── view.result │ │ │ ├── t/ │ │ │ │ ├── alter.test │ │ │ │ ├── autoinc.test │ │ │ │ ├── commit_id.test │ │ │ │ ├── create.test │ │ │ │ ├── cte.test │ │ │ │ ├── debug.test │ │ │ │ ├── delete.test │ │ │ │ ├── delete_history.test │ │ │ │ ├── derived.test │ │ │ │ ├── foreign.combinations │ │ │ │ ├── foreign.test │ │ │ │ ├── insert.test │ │ │ │ ├── insert2.test │ │ │ │ ├── load_data.test │ │ │ │ ├── not_embedded.test │ │ │ │ ├── online.test │ │ │ │ ├── optimized.test │ │ │ │ ├── partition.test │ │ │ │ ├── replace.test │ │ │ │ ├── rpl.test │ │ │ │ ├── rpl_mix.test │ │ │ │ ├── rpl_row.test │ │ │ │ ├── select.test │ │ │ │ ├── select2.test │ │ │ │ ├── simple.test │ │ │ │ ├── sysvars.test │ │ │ │ ├── trx_id.test │ │ │ │ ├── update-big.test │ │ │ │ ├── update.test │ │ │ │ └── view.test │ │ │ └── wait_system_clock.inc │ │ └── wsrep/ │ │ ├── README │ │ ├── common.pm │ │ ├── disabled.def │ │ ├── include/ │ │ │ └── check_galera_version.inc │ │ ├── my.cnf │ │ ├── r/ │ │ │ ├── MDEV-20625.result │ │ │ ├── MDEV-22443.result │ │ │ ├── MDEV-23081.result │ │ │ ├── MDEV-23092.result │ │ │ ├── MDEV-23466.result │ │ │ ├── alter_table_innodb.result │ │ │ ├── binlog_format.result │ │ │ ├── foreign_key.result │ │ │ ├── mdev_10186.result │ │ │ ├── mdev_22681.result │ │ │ ├── mdev_6832.result │ │ │ ├── mdev_7798.result │ │ │ ├── plugin.result │ │ │ ├── pool_of_threads.result │ │ │ ├── trans.result │ │ │ ├── variables.result │ │ │ ├── variables_debug.result │ │ │ ├── wsrep-recover-v25,binlogon.rdiff │ │ │ ├── wsrep-recover-v25.result │ │ │ ├── wsrep-recover.result │ │ │ ├── wsrep_on_basic.result │ │ │ ├── wsrep_rpl.result │ │ │ ├── wsrep_variables_no_provider.result │ │ │ └── wsrep_variables_wsrep_off.result │ │ ├── suite.pm │ │ └── t/ │ │ ├── MDEV-20625.cnf │ │ ├── MDEV-20625.test │ │ ├── MDEV-22443.cnf │ │ ├── MDEV-22443.test │ │ ├── MDEV-23081.cnf │ │ ├── MDEV-23081.combinations │ │ ├── MDEV-23081.test │ │ ├── MDEV-23092.cnf │ │ ├── MDEV-23092.test │ │ ├── MDEV-23466.cnf │ │ ├── MDEV-23466.test │ │ ├── alter_table_innodb.cnf │ │ ├── alter_table_innodb.test │ │ ├── binlog_format.cnf │ │ ├── binlog_format.opt │ │ ├── binlog_format.test │ │ ├── foreign_key.opt │ │ ├── foreign_key.test │ │ ├── mdev_10186.cnf │ │ ├── mdev_10186.test │ │ ├── mdev_22681.cnf │ │ ├── mdev_22681.test │ │ ├── mdev_6832.cnf │ │ ├── mdev_6832.test │ │ ├── mdev_7798.cnf │ │ ├── mdev_7798.test │ │ ├── plugin.opt │ │ ├── plugin.test │ │ ├── pool_of_threads.opt │ │ ├── pool_of_threads.test │ │ ├── trans.opt │ │ ├── trans.test │ │ ├── variables.cnf │ │ ├── variables.test │ │ ├── variables_debug.cnf │ │ ├── variables_debug.test │ │ ├── wsrep-recover-step.inc │ │ ├── wsrep-recover-v25.cnf │ │ ├── wsrep-recover-v25.combinations │ │ ├── wsrep-recover-v25.test │ │ ├── wsrep-recover.cnf │ │ ├── wsrep-recover.combinations │ │ ├── wsrep-recover.test │ │ ├── wsrep_on_basic.opt │ │ ├── wsrep_on_basic.test │ │ ├── wsrep_rpl.cnf │ │ ├── wsrep_rpl.test │ │ ├── wsrep_variables_no_provider.cnf │ │ ├── wsrep_variables_no_provider.test │ │ ├── wsrep_variables_wsrep_off.cnf │ │ └── wsrep_variables_wsrep_off.test │ ├── suite.pm │ └── valgrind.supp ├── mysys/ │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── array.c │ ├── base64.c │ ├── charset-def.c │ ├── charset.c │ ├── crc32/ │ │ ├── clang_workaround.h │ │ ├── crc32_arm64.c │ │ ├── crc32_ppc64.c │ │ ├── crc32_x86.c │ │ ├── crc32c.cc │ │ ├── crc32c_amd64.cc │ │ ├── crc32c_ppc.c │ │ ├── crc32c_ppc.h │ │ ├── crc_ppc64.h │ │ ├── pcc_crc32_constants.h │ │ └── pcc_crc32c_constants.h │ ├── crc32ieee.cc │ ├── errors.c │ ├── file_logger.c │ ├── get_password.c │ ├── guess_malloc_library.c │ ├── hash.c │ ├── lf_alloc-pin.c │ ├── lf_dynarray.c │ ├── lf_hash.cc │ ├── list.c │ ├── ma_dyncol.c │ ├── mf_arr_appstr.c │ ├── mf_cache.c │ ├── mf_dirname.c │ ├── mf_fn_ext.c │ ├── mf_format.c │ ├── mf_getdate.c │ ├── mf_iocache.c │ ├── mf_iocache2.c │ ├── mf_keycache.c │ ├── mf_keycaches.c │ ├── mf_loadpath.c │ ├── mf_pack.c │ ├── mf_path.c │ ├── mf_qsort.c │ ├── mf_qsort2.c │ ├── mf_radix.c │ ├── mf_same.c │ ├── mf_sort.c │ ├── mf_soundex.c │ ├── mf_tempdir.c │ ├── mf_tempfile.c │ ├── mf_unixpath.c │ ├── mf_wcomp.c │ ├── mulalloc.c │ ├── my_access.c │ ├── my_addr_resolve.c │ ├── my_alarm.c │ ├── my_alloc.c │ ├── my_atomic_writes.c │ ├── my_basename.c │ ├── my_bit.c │ ├── my_bitmap.c │ ├── my_chmod.c │ ├── my_chsize.c │ ├── my_compare.c │ ├── my_compress.c │ ├── my_conio.c │ ├── my_copy.c │ ├── my_cpu.c │ ├── my_create.c │ ├── my_default.c │ ├── my_delete.c │ ├── my_div.c │ ├── my_dlerror.c │ ├── my_error.c │ ├── my_file.c │ ├── my_fopen.c │ ├── my_fstream.c │ ├── my_gethwaddr.c │ ├── my_getncpus.c │ ├── my_getopt.c │ ├── my_getpagesize.c │ ├── my_getsystime.c │ ├── my_getwd.c │ ├── my_init.c │ ├── my_largepage.c │ ├── my_lib.c │ ├── my_libwrap.c │ ├── my_likely.c │ ├── my_lock.c │ ├── my_lockmem.c │ ├── my_malloc.c │ ├── my_memmem.c │ ├── my_mess.c │ ├── my_minidump.cc │ ├── my_mkdir.c │ ├── my_mmap.c │ ├── my_new.cc │ ├── my_once.c │ ├── my_open.c │ ├── my_port.c │ ├── my_pread.c │ ├── my_pthread.c │ ├── my_quick.c │ ├── my_rdtsc.c │ ├── my_read.c │ ├── my_redel.c │ ├── my_rename.c │ ├── my_rnd.c │ ├── my_safehash.c │ ├── my_safehash.h │ ├── my_seek.c │ ├── my_setuser.c │ ├── my_sleep.c │ ├── my_static.c │ ├── my_static.h │ ├── my_symlink.c │ ├── my_symlink2.c │ ├── my_sync.c │ ├── my_thr_init.c │ ├── my_uuid.c │ ├── my_win_popen.cc │ ├── my_wincond.c │ ├── my_winerr.c │ ├── my_winfile.c │ ├── my_winthread.c │ ├── my_wintoken.c │ ├── my_write.c │ ├── mysys_priv.h │ ├── psi_noop.c │ ├── ptr_cmp.c │ ├── queues.c │ ├── safemalloc.c │ ├── stacktrace.c │ ├── string.c │ ├── test_charset.c │ ├── test_dir.c │ ├── test_thr_mutex.c │ ├── test_xml.c │ ├── testhash.c │ ├── thr_alarm.c │ ├── thr_lock.c │ ├── thr_mutex.c │ ├── thr_rwlock.c │ ├── thr_timer.c │ ├── tree.c │ ├── typelib.c │ ├── waiting_threads.c │ └── wqueue.c ├── mysys_ssl/ │ ├── CMakeLists.txt │ ├── my_crypt.cc │ ├── my_md5.cc │ ├── my_sha.inl │ ├── my_sha1.cc │ ├── my_sha224.cc │ ├── my_sha256.cc │ ├── my_sha384.cc │ ├── my_sha512.cc │ └── openssl.c ├── plugin/ │ ├── audit_null/ │ │ ├── CMakeLists.txt │ │ └── audit_null.c │ ├── auth_dialog/ │ │ ├── CMakeLists.txt │ │ └── dialog.c │ ├── auth_ed25519/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── client_ed25519.c │ │ ├── common.h │ │ ├── crypto_hash_sha512.h │ │ ├── crypto_int32.h │ │ ├── crypto_int64.h │ │ ├── crypto_sign.h │ │ ├── crypto_uint32.h │ │ ├── crypto_uint64.h │ │ ├── crypto_verify.h │ │ ├── crypto_verify_32.h │ │ ├── ed25519-t.c │ │ ├── ref10/ │ │ │ ├── api.h │ │ │ ├── base.h │ │ │ ├── base2.h │ │ │ ├── d.h │ │ │ ├── d2.h │ │ │ ├── fe.h │ │ │ ├── fe_0.c │ │ │ ├── fe_1.c │ │ │ ├── fe_add.c │ │ │ ├── fe_cmov.c │ │ │ ├── fe_copy.c │ │ │ ├── fe_frombytes.c │ │ │ ├── fe_invert.c │ │ │ ├── fe_isnegative.c │ │ │ ├── fe_isnonzero.c │ │ │ ├── fe_mul.c │ │ │ ├── fe_neg.c │ │ │ ├── fe_pow22523.c │ │ │ ├── fe_sq.c │ │ │ ├── fe_sq2.c │ │ │ ├── fe_sub.c │ │ │ ├── fe_tobytes.c │ │ │ ├── ge.h │ │ │ ├── ge_add.c │ │ │ ├── ge_add.h │ │ │ ├── ge_double_scalarmult.c │ │ │ ├── ge_frombytes.c │ │ │ ├── ge_madd.c │ │ │ ├── ge_madd.h │ │ │ ├── ge_msub.c │ │ │ ├── ge_msub.h │ │ │ ├── ge_p1p1_to_p2.c │ │ │ ├── ge_p1p1_to_p3.c │ │ │ ├── ge_p2_0.c │ │ │ ├── ge_p2_dbl.c │ │ │ ├── ge_p2_dbl.h │ │ │ ├── ge_p3_0.c │ │ │ ├── ge_p3_dbl.c │ │ │ ├── ge_p3_to_cached.c │ │ │ ├── ge_p3_to_p2.c │ │ │ ├── ge_p3_tobytes.c │ │ │ ├── ge_precomp_0.c │ │ │ ├── ge_scalarmult_base.c │ │ │ ├── ge_sub.c │ │ │ ├── ge_sub.h │ │ │ ├── ge_tobytes.c │ │ │ ├── keypair.c │ │ │ ├── open.c │ │ │ ├── pow22523.h │ │ │ ├── pow225521.h │ │ │ ├── sc.h │ │ │ ├── sc_muladd.c │ │ │ ├── sc_reduce.c │ │ │ ├── sign.c │ │ │ ├── sqrtm1.h │ │ │ └── verify.c │ │ └── server_ed25519.c │ ├── auth_examples/ │ │ ├── CMakeLists.txt │ │ ├── auth_0x0100.c │ │ ├── clear_password_client.c │ │ ├── dialog_examples.c │ │ ├── qa_auth_client.c │ │ ├── qa_auth_interface.c │ │ ├── qa_auth_server.c │ │ └── test_plugin.c │ ├── auth_gssapi/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── client_plugin.cc │ │ ├── cmake/ │ │ │ └── FindGSSAPI.cmake │ │ ├── common.h │ │ ├── gssapi_client.cc │ │ ├── gssapi_errmsg.cc │ │ ├── gssapi_errmsg.h │ │ ├── gssapi_server.cc │ │ ├── mysql-test/ │ │ │ └── auth_gssapi/ │ │ │ ├── basic.result │ │ │ ├── basic.test │ │ │ ├── groups.result │ │ │ ├── groups.test │ │ │ ├── multiauth.result │ │ │ ├── multiauth.test │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ ├── server_plugin.cc │ │ ├── server_plugin.h │ │ ├── sspi.h │ │ ├── sspi_client.cc │ │ ├── sspi_errmsg.cc │ │ └── sspi_server.cc │ ├── auth_pam/ │ │ ├── CMakeLists.txt │ │ ├── auth_pam.c │ │ ├── auth_pam_base.c │ │ ├── auth_pam_common.c │ │ ├── auth_pam_tool.c │ │ ├── auth_pam_tool.h │ │ ├── auth_pam_v1.c │ │ ├── config.h.cmake │ │ ├── mapper/ │ │ │ ├── pam_user_map.c │ │ │ └── user_map.conf │ │ └── testing/ │ │ ├── CMakeLists.txt │ │ ├── mariadb_mtr.conf │ │ └── pam_mariadb_mtr.c │ ├── auth_pipe/ │ │ ├── CMakeLists.txt │ │ └── auth_pipe.c │ ├── auth_socket/ │ │ ├── CMakeLists.txt │ │ └── auth_socket.c │ ├── aws_key_management/ │ │ ├── CMakeLists.txt │ │ └── aws_key_management_plugin.cc │ ├── cracklib_password_check/ │ │ ├── CMakeLists.txt │ │ └── cracklib_password_check.c │ ├── daemon_example/ │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── README │ │ ├── daemon_example.cc │ │ └── daemon_example.ini │ ├── debug_key_management/ │ │ ├── CMakeLists.txt │ │ └── debug_key_management_plugin.cc │ ├── disks/ │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── information_schema_disks.cc │ │ └── mysql-test/ │ │ └── disks/ │ │ ├── disks.result │ │ ├── disks.test │ │ ├── disks_notembedded.result │ │ ├── disks_notembedded.test │ │ ├── suite.opt │ │ └── suite.pm │ ├── example_key_management/ │ │ ├── CMakeLists.txt │ │ └── example_key_management_plugin.cc │ ├── feedback/ │ │ ├── CMakeLists.txt │ │ ├── feedback.cc │ │ ├── feedback.h │ │ ├── sender_thread.cc │ │ ├── url_base.cc │ │ ├── url_http.cc │ │ └── utils.cc │ ├── file_key_management/ │ │ ├── CMakeLists.txt │ │ ├── file_key_management_plugin.cc │ │ ├── parser.cc │ │ └── parser.h │ ├── fulltext/ │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── README │ │ └── plugin_example.c │ ├── func_test/ │ │ ├── CMakeLists.txt │ │ ├── mysql-test/ │ │ │ └── func_test/ │ │ │ ├── func_test.result │ │ │ ├── func_test.test │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ └── plugin.cc │ ├── handler_socket/ │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── README │ │ ├── autogen.sh │ │ ├── client/ │ │ │ ├── Makefile.am │ │ │ ├── hsclient.cpp │ │ │ ├── hslongrun.cpp │ │ │ ├── hspool_test.pl │ │ │ ├── hstest.cpp │ │ │ ├── hstest.pl │ │ │ ├── hstest_hs.sh │ │ │ ├── hstest_hs_more50.sh │ │ │ ├── hstest_md.sh │ │ │ ├── hstest_my.sh │ │ │ └── hstest_my_more50.sh │ │ ├── configure.ac │ │ ├── docs-en/ │ │ │ ├── about-handlersocket.en.txt │ │ │ ├── configuration-options.en.txt │ │ │ ├── installation.en.txt │ │ │ ├── perl-client.en.txt │ │ │ └── protocol.en.txt │ │ ├── docs-ja/ │ │ │ ├── about-handlersocket.ja.txt │ │ │ ├── installation.ja.txt │ │ │ ├── perl-client.ja.txt │ │ │ └── protocol.ja.txt │ │ ├── handlersocket/ │ │ │ ├── COPYRIGHT.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.plain.template │ │ │ ├── database.cpp │ │ │ ├── database.hpp │ │ │ ├── handlersocket.cpp │ │ │ ├── handlersocket.spec.template │ │ │ ├── hstcpsvr.cpp │ │ │ ├── hstcpsvr.hpp │ │ │ ├── hstcpsvr_worker.cpp │ │ │ ├── hstcpsvr_worker.hpp │ │ │ └── mysql_incl.hpp │ │ ├── libhsclient/ │ │ │ ├── COPYRIGHT.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.plain │ │ │ ├── allocator.hpp │ │ │ ├── auto_addrinfo.hpp │ │ │ ├── auto_file.hpp │ │ │ ├── auto_ptrcontainer.hpp │ │ │ ├── config.cpp │ │ │ ├── config.hpp │ │ │ ├── escape.cpp │ │ │ ├── escape.hpp │ │ │ ├── fatal.cpp │ │ │ ├── fatal.hpp │ │ │ ├── hstcpcli.cpp │ │ │ ├── hstcpcli.hpp │ │ │ ├── libhsclient.spec.template │ │ │ ├── mutex.hpp │ │ │ ├── socket.cpp │ │ │ ├── socket.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── string_ref.hpp │ │ │ ├── string_util.cpp │ │ │ ├── string_util.hpp │ │ │ ├── thread.hpp │ │ │ └── util.hpp │ │ ├── perl-Net-HandlerSocket/ │ │ │ ├── COPYRIGHT.txt │ │ │ ├── Changes │ │ │ ├── HandlerSocket.xs │ │ │ ├── MANIFEST │ │ │ ├── Makefile.PL.in │ │ │ ├── Makefile.PL.installed │ │ │ ├── README │ │ │ ├── lib/ │ │ │ │ └── Net/ │ │ │ │ ├── HandlerSocket/ │ │ │ │ │ └── Pool.pm │ │ │ │ └── HandlerSocket.pm │ │ │ ├── perl-Net-HandlerSocket.spec.template │ │ │ ├── ppport.h │ │ │ └── t/ │ │ │ └── HandlerSocket.t │ │ └── regtest/ │ │ ├── common/ │ │ │ ├── binary_my.cnf │ │ │ ├── compat.sh │ │ │ └── hstest.pm │ │ └── test_01_lib/ │ │ ├── run.sh │ │ ├── test01.expected │ │ ├── test01.pl │ │ ├── test02.expected │ │ ├── test02.pl │ │ ├── test03.expected │ │ ├── test03.pl │ │ ├── test04.expected │ │ ├── test04.pl │ │ ├── test05.expected │ │ ├── test05.pl │ │ ├── test06.expected │ │ ├── test06.pl │ │ ├── test07.expected │ │ ├── test07.pl │ │ ├── test08.expected │ │ ├── test08.pl │ │ ├── test09.expected │ │ ├── test09.pl │ │ ├── test10.expected │ │ ├── test10.pl │ │ ├── test11.expected │ │ ├── test11.pl │ │ ├── test12.expected │ │ ├── test12.pl │ │ ├── test13.expected │ │ ├── test13.pl │ │ ├── test14.expected │ │ ├── test14.pl │ │ ├── test15.expected │ │ ├── test15.pl │ │ ├── test16.expected │ │ ├── test16.pl │ │ ├── test17.expected │ │ ├── test17.pl │ │ ├── test18.expected │ │ ├── test18.pl │ │ ├── test19.expected │ │ ├── test19.pl │ │ ├── test20.expected │ │ ├── test20.pl │ │ ├── test21.expected │ │ ├── test21.pl │ │ ├── test22.expected │ │ ├── test22.pl │ │ ├── test23.expected │ │ ├── test23.pl │ │ ├── test24.expected │ │ └── test24.pl │ ├── locale_info/ │ │ ├── CMakeLists.txt │ │ └── locale_info.cc │ ├── metadata_lock_info/ │ │ ├── CMakeLists.txt │ │ ├── metadata_lock_info.cc │ │ └── mysql-test/ │ │ └── metadata_lock_info/ │ │ ├── r/ │ │ │ ├── global_read_lock.result │ │ │ ├── table_metadata_lock.result │ │ │ └── user_lock.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t/ │ │ ├── global_read_lock.test │ │ ├── table_metadata_lock.test │ │ └── user_lock.test │ ├── qc_info/ │ │ ├── CMakeLists.txt │ │ └── qc_info.cc │ ├── query_response_time/ │ │ ├── CMakeLists.txt │ │ ├── mysql-test/ │ │ │ └── query_response_time/ │ │ │ ├── basic.result │ │ │ ├── basic.test │ │ │ ├── query_response_time-stored.inc │ │ │ ├── query_response_time-stored.result │ │ │ ├── query_response_time-stored.test │ │ │ ├── query_response_time.inc │ │ │ ├── query_response_time.result │ │ │ ├── query_response_time.test │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ ├── plugin.cc │ │ ├── query_response_time.cc │ │ └── query_response_time.h │ ├── server_audit/ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── plugin_audit_v4.h │ │ ├── server_audit.c │ │ └── test_audit_v4.c │ ├── simple_password_check/ │ │ ├── CMakeLists.txt │ │ └── simple_password_check.c │ ├── sql_errlog/ │ │ ├── CMakeLists.txt │ │ └── sql_errlog.c │ ├── test_sql_service/ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ └── test_sql_service.c │ ├── type_geom/ │ │ ├── CMakeLists.txt │ │ └── plugin.cc │ ├── type_inet/ │ │ ├── CMakeLists.txt │ │ ├── item_inetfunc.cc │ │ ├── item_inetfunc.h │ │ ├── mysql-test/ │ │ │ └── type_inet/ │ │ │ ├── binlog_stm_type_inet6.result │ │ │ ├── binlog_stm_type_inet6.test │ │ │ ├── binlog_table_map_optional_metadata_type_inet6.result │ │ │ ├── binlog_table_map_optional_metadata_type_inet6.test │ │ │ ├── func_inet_plugin.result │ │ │ ├── func_inet_plugin.test │ │ │ ├── rpl_row_binary_to_inet6.result │ │ │ ├── rpl_row_binary_to_inet6.test │ │ │ ├── rpl_row_inet6_to_binary.result │ │ │ ├── rpl_row_inet6_to_binary.test │ │ │ ├── rpl_type_inet6.result │ │ │ ├── rpl_type_inet6.test │ │ │ ├── suite.pm │ │ │ ├── type_inet6-debug.result │ │ │ ├── type_inet6-debug.test │ │ │ ├── type_inet6.result │ │ │ ├── type_inet6.test │ │ │ ├── type_inet6_csv.result │ │ │ ├── type_inet6_csv.test │ │ │ ├── type_inet6_engines.inc │ │ │ ├── type_inet6_innodb.result │ │ │ ├── type_inet6_innodb.test │ │ │ ├── type_inet6_memory.result │ │ │ ├── type_inet6_memory.test │ │ │ ├── type_inet6_mix_json.result │ │ │ ├── type_inet6_mix_json.test │ │ │ ├── type_inet6_myisam.result │ │ │ ├── type_inet6_myisam.test │ │ │ ├── type_inet6_mysql.result │ │ │ ├── type_inet6_mysql.test │ │ │ ├── type_inet6_oracle.result │ │ │ ├── type_inet6_oracle.test │ │ │ ├── type_inet6_partition.result │ │ │ ├── type_inet6_partition.test │ │ │ ├── type_inet6_plugin.result │ │ │ ├── type_inet6_plugin.test │ │ │ ├── type_inet6_stat_tables.result │ │ │ └── type_inet6_stat_tables.test │ │ ├── plugin.cc │ │ ├── sql_type_inet.cc │ │ └── sql_type_inet.h │ ├── type_mysql_json/ │ │ ├── CMakeLists.txt │ │ ├── mysql_json.cc │ │ ├── mysql_json.h │ │ └── type.cc │ ├── type_test/ │ │ ├── CMakeLists.txt │ │ ├── mysql-test/ │ │ │ └── type_test/ │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ ├── type_test_double-debug.result │ │ │ ├── type_test_double-debug.test │ │ │ ├── type_test_double.result │ │ │ ├── type_test_double.test │ │ │ ├── type_test_int8-debug.result │ │ │ ├── type_test_int8-debug.test │ │ │ ├── type_test_int8.result │ │ │ ├── type_test_int8.test │ │ │ ├── type_test_mysql.result │ │ │ └── type_test_mysql.test │ │ └── plugin.cc │ ├── user_variables/ │ │ ├── CMakeLists.txt │ │ ├── mysql-test/ │ │ │ └── user_variables/ │ │ │ ├── basic.result │ │ │ ├── basic.test │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ └── user_variables.cc │ ├── userstat/ │ │ ├── CMakeLists.txt │ │ ├── client_stats.cc │ │ ├── index_stats.cc │ │ ├── table_stats.cc │ │ ├── user_stats.cc │ │ └── userstat.cc │ ├── versioning/ │ │ ├── CMakeLists.txt │ │ └── versioning.cc │ ├── win_auth_client/ │ │ ├── CMakeLists.txt │ │ ├── common.cc │ │ ├── common.h │ │ ├── handshake.cc │ │ ├── handshake.h │ │ ├── handshake_client.cc │ │ ├── log_client.cc │ │ └── plugin_client.cc │ └── wsrep_info/ │ ├── CMakeLists.txt │ ├── mysql-test/ │ │ └── wsrep_info/ │ │ ├── my.cnf │ │ ├── r/ │ │ │ └── plugin.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t/ │ │ └── plugin.test │ └── plugin.cc ├── randgen/ │ └── conf/ │ └── maria_group_commit.yy ├── scripts/ │ ├── CMakeLists.txt │ ├── comp_sql.c │ ├── convert-debug-for-diff.sh │ ├── dheadgen.pl │ ├── fill_help_tables.sql │ ├── galera_new_cluster.sh │ ├── galera_recovery.sh │ ├── git-checkout.sh │ ├── git-tag.sh │ ├── install_dependency_ubuntu2404.sh │ ├── maria_add_gis_sp.sql.in │ ├── mariadb-service-convert │ ├── msql2mysql.sh │ ├── mysql_config.pl.in │ ├── mysql_config.sh │ ├── mysql_convert_table_format.sh │ ├── mysql_find_rows.sh │ ├── mysql_fix_extensions.sh │ ├── mysql_install_db.sh │ ├── mysql_performance_tables.sql │ ├── mysql_secure_installation.sh │ ├── mysql_setpermission.sh │ ├── mysql_system_tables.sql │ ├── mysql_system_tables_data.sql │ ├── mysql_system_tables_fix.sql │ ├── mysql_test_data_timezone.sql │ ├── mysql_test_db.sql │ ├── mysqlaccess.conf │ ├── mysqlaccess.sh │ ├── mysqld_multi.sh │ ├── mysqld_safe.sh │ ├── mysqldumpslow.sh │ ├── mysqlhotcopy.sh │ ├── mytop.sh │ ├── sys_schema/ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── after_setup.sql │ │ ├── before_setup.sql │ │ ├── functions/ │ │ │ ├── extract_schema_from_file_name.sql │ │ │ ├── extract_table_from_file_name.sql │ │ │ ├── format_bytes.sql │ │ │ ├── format_path.sql │ │ │ ├── format_path_57.sql │ │ │ ├── format_statement.sql │ │ │ ├── format_time.sql │ │ │ ├── list_add.sql │ │ │ ├── list_drop.sql │ │ │ ├── ps_is_account_enabled.sql │ │ │ ├── ps_is_account_enabled_57.sql │ │ │ ├── ps_is_consumer_enabled.sql │ │ │ ├── ps_is_instrument_default_enabled.sql │ │ │ ├── ps_is_instrument_default_timed.sql │ │ │ ├── ps_is_thread_instrumented.sql │ │ │ ├── ps_thread_account.sql │ │ │ ├── ps_thread_id.sql │ │ │ ├── ps_thread_stack.sql │ │ │ ├── ps_thread_trx_info.sql │ │ │ ├── quote_identifier.sql │ │ │ ├── sys_get_config.sql │ │ │ ├── version_major.sql │ │ │ ├── version_minor.sql │ │ │ └── version_patch.sql │ │ ├── generate_sql_file.sh │ │ ├── procedures/ │ │ │ ├── create_synonym_db.sql │ │ │ ├── diagnostics.sql │ │ │ ├── execute_prepared_stmt.sql │ │ │ ├── ps_setup_disable_background_threads.sql │ │ │ ├── ps_setup_disable_consumer.sql │ │ │ ├── ps_setup_disable_instrument.sql │ │ │ ├── ps_setup_disable_thread.sql │ │ │ ├── ps_setup_enable_background_threads.sql │ │ │ ├── ps_setup_enable_consumer.sql │ │ │ ├── ps_setup_enable_instrument.sql │ │ │ ├── ps_setup_enable_thread.sql │ │ │ ├── ps_setup_reload_saved.sql │ │ │ ├── ps_setup_reset_to_default.sql │ │ │ ├── ps_setup_reset_to_default_57.sql │ │ │ ├── ps_setup_reset_to_default_57_after.sql │ │ │ ├── ps_setup_reset_to_default_57_before.sql │ │ │ ├── ps_setup_save.sql │ │ │ ├── ps_setup_show_disabled.sql │ │ │ ├── ps_setup_show_disabled_consumers.sql │ │ │ ├── ps_setup_show_disabled_instruments.sql │ │ │ ├── ps_setup_show_enabled.sql │ │ │ ├── ps_setup_show_enabled_consumers.sql │ │ │ ├── ps_setup_show_enabled_instruments.sql │ │ │ ├── ps_statement_avg_latency_histogram.sql │ │ │ ├── ps_trace_statement_digest.sql │ │ │ ├── ps_trace_thread.sql │ │ │ ├── ps_trace_thread_57.sql │ │ │ ├── ps_truncate_all_tables.sql │ │ │ ├── statement_performance_analyzer.sql │ │ │ └── table_exists.sql │ │ ├── sys_56.sql │ │ ├── sys_57.sql │ │ ├── tables/ │ │ │ ├── sys_config.sql │ │ │ ├── sys_config_data.sql │ │ │ └── sys_config_data_57.sql │ │ ├── templates/ │ │ │ ├── function.sql │ │ │ └── procedure.sql │ │ ├── triggers/ │ │ │ ├── sys_config_insert_set_user.sql │ │ │ └── sys_config_update_set_user.sql │ │ └── views/ │ │ ├── i_s/ │ │ │ ├── innodb_buffer_stats_by_schema.sql │ │ │ ├── innodb_buffer_stats_by_table.sql │ │ │ ├── innodb_lock_waits.sql │ │ │ ├── schema_auto_increment_columns.sql │ │ │ ├── schema_object_overview.sql │ │ │ ├── schema_redundant_indexes.sql │ │ │ ├── x_innodb_buffer_stats_by_schema.sql │ │ │ ├── x_innodb_buffer_stats_by_table.sql │ │ │ ├── x_innodb_lock_waits.sql │ │ │ └── x_schema_flattened_keys.sql │ │ ├── p_s/ │ │ │ ├── host_summary.sql │ │ │ ├── host_summary_57.sql │ │ │ ├── host_summary_by_file_io.sql │ │ │ ├── host_summary_by_file_io_type.sql │ │ │ ├── host_summary_by_stages.sql │ │ │ ├── host_summary_by_statement_latency.sql │ │ │ ├── host_summary_by_statement_type.sql │ │ │ ├── io_by_thread_by_latency.sql │ │ │ ├── io_global_by_file_by_bytes.sql │ │ │ ├── io_global_by_file_by_latency.sql │ │ │ ├── io_global_by_wait_by_bytes.sql │ │ │ ├── io_global_by_wait_by_latency.sql │ │ │ ├── latest_file_io.sql │ │ │ ├── memory_by_host_by_current_bytes.sql │ │ │ ├── memory_by_thread_by_current_bytes.sql │ │ │ ├── memory_by_user_by_current_bytes.sql │ │ │ ├── memory_global_by_current_bytes.sql │ │ │ ├── memory_global_total.sql │ │ │ ├── metrics.sql │ │ │ ├── metrics_56.sql │ │ │ ├── processlist.sql │ │ │ ├── processlist_57.sql │ │ │ ├── ps_check_lost_instrumentation.sql │ │ │ ├── ps_check_lost_instrumentation_57.sql │ │ │ ├── schema_index_statistics.sql │ │ │ ├── schema_table_lock_waits.sql │ │ │ ├── schema_table_statistics.sql │ │ │ ├── schema_table_statistics_with_buffer.sql │ │ │ ├── schema_tables_with_full_table_scans.sql │ │ │ ├── schema_unused_indexes.sql │ │ │ ├── session_ssl_status.sql │ │ │ ├── sessions.sql │ │ │ ├── statement_analysis.sql │ │ │ ├── statements_with_errors_or_warnings.sql │ │ │ ├── statements_with_full_table_scans.sql │ │ │ ├── statements_with_runtimes_in_95th_percentile.sql │ │ │ ├── statements_with_sorting.sql │ │ │ ├── statements_with_temp_tables.sql │ │ │ ├── user_summary.sql │ │ │ ├── user_summary_57.sql │ │ │ ├── user_summary_by_file_io.sql │ │ │ ├── user_summary_by_file_io_type.sql │ │ │ ├── user_summary_by_stages.sql │ │ │ ├── user_summary_by_statement_latency.sql │ │ │ ├── user_summary_by_statement_type.sql │ │ │ ├── wait_classes_global_by_avg_latency.sql │ │ │ ├── wait_classes_global_by_latency.sql │ │ │ ├── waits_by_host_by_latency.sql │ │ │ ├── waits_by_user_by_latency.sql │ │ │ ├── waits_global_by_latency.sql │ │ │ ├── x_host_summary.sql │ │ │ ├── x_host_summary_57.sql │ │ │ ├── x_host_summary_by_file_io.sql │ │ │ ├── x_host_summary_by_file_io_type.sql │ │ │ ├── x_host_summary_by_stages.sql │ │ │ ├── x_host_summary_by_statement_latency.sql │ │ │ ├── x_host_summary_by_statement_type.sql │ │ │ ├── x_io_by_thread_by_latency.sql │ │ │ ├── x_io_global_by_file_by_bytes.sql │ │ │ ├── x_io_global_by_file_by_latency.sql │ │ │ ├── x_io_global_by_wait_by_bytes.sql │ │ │ ├── x_io_global_by_wait_by_latency.sql │ │ │ ├── x_latest_file_io.sql │ │ │ ├── x_memory_by_host_by_current_bytes.sql │ │ │ ├── x_memory_by_thread_by_current_bytes.sql │ │ │ ├── x_memory_by_user_by_current_bytes.sql │ │ │ ├── x_memory_global_by_current_bytes.sql │ │ │ ├── x_memory_global_total.sql │ │ │ ├── x_processlist.sql │ │ │ ├── x_processlist_57.sql │ │ │ ├── x_ps_digest_95th_percentile_by_avg_us.sql │ │ │ ├── x_ps_digest_avg_latency_distribution.sql │ │ │ ├── x_ps_schema_table_statistics_io.sql │ │ │ ├── x_schema_index_statistics.sql │ │ │ ├── x_schema_table_lock_waits.sql │ │ │ ├── x_schema_table_statistics.sql │ │ │ ├── x_schema_table_statistics_with_buffer.sql │ │ │ ├── x_schema_tables_with_full_table_scans.sql │ │ │ ├── x_sessions.sql │ │ │ ├── x_statement_analysis.sql │ │ │ ├── x_statements_with_errors_or_warnings.sql │ │ │ ├── x_statements_with_full_table_scans.sql │ │ │ ├── x_statements_with_runtimes_in_95th_percentile.sql │ │ │ ├── x_statements_with_sorting.sql │ │ │ ├── x_statements_with_temp_tables.sql │ │ │ ├── x_user_summary.sql │ │ │ ├── x_user_summary_57.sql │ │ │ ├── x_user_summary_by_file_io.sql │ │ │ ├── x_user_summary_by_file_io_type.sql │ │ │ ├── x_user_summary_by_stages.sql │ │ │ ├── x_user_summary_by_statement_latency.sql │ │ │ ├── x_user_summary_by_statement_type.sql │ │ │ ├── x_wait_classes_global_by_avg_latency.sql │ │ │ ├── x_wait_classes_global_by_latency.sql │ │ │ ├── x_waits_by_host_by_latency.sql │ │ │ ├── x_waits_by_user_by_latency.sql │ │ │ └── x_waits_global_by_latency.sql │ │ └── version.sql │ ├── wsrep_sst_backup.sh │ ├── wsrep_sst_common.sh │ ├── wsrep_sst_mariabackup.sh │ ├── wsrep_sst_mysqldump.sh │ └── wsrep_sst_rsync.sh ├── sql/ │ ├── CMakeLists.txt │ ├── add_errmsg │ ├── authors.h │ ├── backup.cc │ ├── backup.h │ ├── bounded_queue.h │ ├── circular_queue.h │ ├── client_settings.h │ ├── compat56.cc │ ├── compat56.h │ ├── contributors.h │ ├── create_options.cc │ ├── create_options.h │ ├── create_tmp_table.h │ ├── custom_conf.h │ ├── datadict.cc │ ├── datadict.h │ ├── ddl_log.cc │ ├── ddl_log.h │ ├── debug.cc │ ├── debug.h │ ├── debug_sync.cc │ ├── debug_sync.h │ ├── derived_handler.cc │ ├── derived_handler.h │ ├── derror.cc │ ├── derror.h │ ├── des_key_file.cc │ ├── des_key_file.h │ ├── discover.cc │ ├── discover.h │ ├── encryption.cc │ ├── event_data_objects.cc │ ├── event_data_objects.h │ ├── event_db_repository.cc │ ├── event_db_repository.h │ ├── event_parse_data.cc │ ├── event_parse_data.h │ ├── event_queue.cc │ ├── event_queue.h │ ├── event_scheduler.cc │ ├── event_scheduler.h │ ├── events.cc │ ├── events.h │ ├── field.cc │ ├── field.h │ ├── field_comp.cc │ ├── field_comp.h │ ├── field_conv.cc │ ├── filesort.cc │ ├── filesort.h │ ├── filesort_utils.cc │ ├── filesort_utils.h │ ├── gcalc_slicescan.cc │ ├── gcalc_slicescan.h │ ├── gcalc_tools.cc │ ├── gcalc_tools.h │ ├── gen_lex_hash.cc │ ├── gen_lex_token.cc │ ├── gen_win_tzname_data.ps1 │ ├── gen_yy_files.cmake │ ├── glog_error_logging.cc │ ├── glog_error_logging.h │ ├── grant.cc │ ├── grant.h │ ├── group_by_handler.cc │ ├── group_by_handler.h │ ├── gstream.cc │ ├── gstream.h │ ├── ha_partition.cc │ ├── ha_partition.h │ ├── ha_sequence.cc │ ├── ha_sequence.h │ ├── handle_connections_win.cc │ ├── handle_connections_win.h │ ├── handler.cc │ ├── handler.h │ ├── hash_filo.cc │ ├── hash_filo.h │ ├── hostname.cc │ ├── hostname.h │ ├── init.cc │ ├── init.h │ ├── innodb_priv.h │ ├── is_sql_thd.h │ ├── item.cc │ ├── item.h │ ├── item_buff.cc │ ├── item_cmpfunc.cc │ ├── item_cmpfunc.h │ ├── item_create.cc │ ├── item_create.h │ ├── item_func.cc │ ├── item_func.h │ ├── item_geofunc.cc │ ├── item_geofunc.h │ ├── item_jsonfunc.cc │ ├── item_jsonfunc.h │ ├── item_row.cc │ ├── item_row.h │ ├── item_strfunc.cc │ ├── item_strfunc.h │ ├── item_subselect.cc │ ├── item_subselect.h │ ├── item_sum.cc │ ├── item_sum.h │ ├── item_timefunc.cc │ ├── item_timefunc.h │ ├── item_vers.cc │ ├── item_vers.h │ ├── item_windowfunc.cc │ ├── item_windowfunc.h │ ├── item_xmlfunc.cc │ ├── item_xmlfunc.h │ ├── json_table.cc │ ├── json_table.h │ ├── key.cc │ ├── key.h │ ├── keycaches.cc │ ├── keycaches.h │ ├── lex.h │ ├── lex_string.h │ ├── lex_symbol.h │ ├── lock.cc │ ├── lock.h │ ├── log.cc │ ├── log.h │ ├── log_event.cc │ ├── log_event.h │ ├── log_event_client.cc │ ├── log_event_old.cc │ ├── log_event_old.h │ ├── log_event_server.cc │ ├── log_slow.h │ ├── main.cc │ ├── mariadb.h │ ├── mdl.cc │ ├── mdl.h │ ├── mem_root_array.h │ ├── message.h │ ├── message.mc │ ├── message.rc │ ├── mf_iocache.cc │ ├── mf_iocache_encr.cc │ ├── multi_range_read.cc │ ├── multi_range_read.h │ ├── my_apc.cc │ ├── my_apc.h │ ├── my_decimal.cc │ ├── my_decimal.h │ ├── my_json_writer.cc │ ├── my_json_writer.h │ ├── myskel.m4.in │ ├── mysql_install_db.cc │ ├── mysql_metrics.cc │ ├── mysql_metrics.h │ ├── mysql_upgrade_service.cc │ ├── mysqld.cc │ ├── mysqld.h │ ├── mysqld_suffix.h │ ├── net_serv.cc │ ├── opt_index_cond_pushdown.cc │ ├── opt_range.cc │ ├── opt_range.h │ ├── opt_range_mrr.cc │ ├── opt_split.cc │ ├── opt_subselect.cc │ ├── opt_subselect.h │ ├── opt_sum.cc │ ├── opt_table_elimination.cc │ ├── opt_trace.cc │ ├── opt_trace.h │ ├── opt_trace_context.h │ ├── parse_file.cc │ ├── parse_file.h │ ├── partition_element.h │ ├── partition_info.cc │ ├── partition_info.h │ ├── password.c │ ├── plistsort.c │ ├── privilege.h │ ├── procedure.cc │ ├── procedure.h │ ├── protocol.cc │ ├── protocol.h │ ├── proxy_protocol.cc │ ├── proxy_protocol.h │ ├── records.cc │ ├── records.h │ ├── repl_failsafe.cc │ ├── repl_failsafe.h │ ├── replication.h │ ├── rowid_filter.cc │ ├── rowid_filter.h │ ├── rpl_constants.h │ ├── rpl_filter.cc │ ├── rpl_filter.h │ ├── rpl_gtid.cc │ ├── rpl_gtid.h │ ├── rpl_injector.cc │ ├── rpl_injector.h │ ├── rpl_mi.cc │ ├── rpl_mi.h │ ├── rpl_parallel.cc │ ├── rpl_parallel.h │ ├── rpl_record.cc │ ├── rpl_record.h │ ├── rpl_record_old.cc │ ├── rpl_record_old.h │ ├── rpl_reporting.cc │ ├── rpl_reporting.h │ ├── rpl_rli.cc │ ├── rpl_rli.h │ ├── rpl_tblmap.cc │ ├── rpl_tblmap.h │ ├── rpl_utility.cc │ ├── rpl_utility.h │ ├── rpl_utility_server.cc │ ├── scheduler.cc │ ├── scheduler.h │ ├── select_handler.cc │ ├── select_handler.h │ ├── semisync.cc │ ├── semisync.h │ ├── semisync_master.cc │ ├── semisync_master.h │ ├── semisync_master_ack_receiver.cc │ ├── semisync_master_ack_receiver.h │ ├── semisync_slave.cc │ ├── semisync_slave.h │ ├── service_wsrep.cc │ ├── session_tracker.cc │ ├── session_tracker.h │ ├── set_var.cc │ ├── set_var.h │ ├── share/ │ │ ├── CMakeLists.txt │ │ ├── charsets/ │ │ │ ├── Index.xml │ │ │ ├── README │ │ │ ├── armscii8.xml │ │ │ ├── ascii.xml │ │ │ ├── cp1250.xml │ │ │ ├── cp1251.xml │ │ │ ├── cp1256.xml │ │ │ ├── cp1257.xml │ │ │ ├── cp850.xml │ │ │ ├── cp852.xml │ │ │ ├── cp866.xml │ │ │ ├── dec8.xml │ │ │ ├── geostd8.xml │ │ │ ├── greek.xml │ │ │ ├── hebrew.xml │ │ │ ├── hp8.xml │ │ │ ├── keybcs2.xml │ │ │ ├── koi8r.xml │ │ │ ├── koi8u.xml │ │ │ ├── languages.html │ │ │ ├── latin1.xml │ │ │ ├── latin2.xml │ │ │ ├── latin5.xml │ │ │ ├── latin7.xml │ │ │ ├── macce.xml │ │ │ ├── macroman.xml │ │ │ └── swe7.xml │ │ └── errmsg-utf8.txt │ ├── signal_handler.cc │ ├── slave.cc │ ├── slave.h │ ├── sp.cc │ ├── sp.h │ ├── sp_cache.cc │ ├── sp_cache.h │ ├── sp_head.cc │ ├── sp_head.h │ ├── sp_pcontext.cc │ ├── sp_pcontext.h │ ├── sp_rcontext.cc │ ├── sp_rcontext.h │ ├── spatial.cc │ ├── spatial.h │ ├── sql_acl.cc │ ├── sql_acl.h │ ├── sql_acl_getsort.ic │ ├── sql_admin.cc │ ├── sql_admin.h │ ├── sql_alloc.h │ ├── sql_alter.cc │ ├── sql_alter.h │ ├── sql_analyse.cc │ ├── sql_analyse.h │ ├── sql_analyze_stmt.cc │ ├── sql_analyze_stmt.h │ ├── sql_array.h │ ├── sql_audit.cc │ ├── sql_audit.h │ ├── sql_base.cc │ ├── sql_base.h │ ├── sql_basic_types.h │ ├── sql_binlog.cc │ ├── sql_binlog.h │ ├── sql_bitmap.h │ ├── sql_bootstrap.cc │ ├── sql_bootstrap.h │ ├── sql_builtin.cc.in │ ├── sql_cache.cc │ ├── sql_cache.h │ ├── sql_callback.h │ ├── sql_class.cc │ ├── sql_class.h │ ├── sql_client.cc │ ├── sql_cmd.h │ ├── sql_connect.cc │ ├── sql_connect.h │ ├── sql_const.h │ ├── sql_crypt.cc │ ├── sql_crypt.h │ ├── sql_cte.cc │ ├── sql_cte.h │ ├── sql_cursor.cc │ ├── sql_cursor.h │ ├── sql_db.cc │ ├── sql_db.h │ ├── sql_delete.cc │ ├── sql_delete.h │ ├── sql_derived.cc │ ├── sql_derived.h │ ├── sql_digest.cc │ ├── sql_digest.h │ ├── sql_digest_stream.h │ ├── sql_do.cc │ ├── sql_do.h │ ├── sql_error.cc │ ├── sql_error.h │ ├── sql_explain.cc │ ├── sql_explain.h │ ├── sql_expression_cache.cc │ ├── sql_expression_cache.h │ ├── sql_get_diagnostics.cc │ ├── sql_get_diagnostics.h │ ├── sql_handler.cc │ ├── sql_handler.h │ ├── sql_help.cc │ ├── sql_help.h │ ├── sql_hset.h │ ├── sql_i_s.h │ ├── sql_insert.cc │ ├── sql_insert.h │ ├── sql_join_cache.cc │ ├── sql_join_cache.h │ ├── sql_lex.cc │ ├── sql_lex.h │ ├── sql_lifo_buffer.h │ ├── sql_limit.h │ ├── sql_list.cc │ ├── sql_list.h │ ├── sql_load.cc │ ├── sql_load.h │ ├── sql_locale.cc │ ├── sql_locale.h │ ├── sql_manager.cc │ ├── sql_manager.h │ ├── sql_mode.cc │ ├── sql_mode.h │ ├── sql_parse.cc │ ├── sql_parse.h │ ├── sql_partition.cc │ ├── sql_partition.h │ ├── sql_partition_admin.cc │ ├── sql_partition_admin.h │ ├── sql_plist.h │ ├── sql_plugin.cc │ ├── sql_plugin.h │ ├── sql_plugin_compat.h │ ├── sql_plugin_services.inl │ ├── sql_prepare.cc │ ├── sql_prepare.h │ ├── sql_priv.h │ ├── sql_profile.cc │ ├── sql_profile.h │ ├── sql_reload.cc │ ├── sql_reload.h │ ├── sql_rename.cc │ ├── sql_rename.h │ ├── sql_repl.cc │ ├── sql_repl.h │ ├── sql_schema.cc │ ├── sql_schema.h │ ├── sql_select.cc │ ├── sql_select.h │ ├── sql_sequence.cc │ ├── sql_sequence.h │ ├── sql_servers.cc │ ├── sql_servers.h │ ├── sql_show.cc │ ├── sql_show.h │ ├── sql_signal.cc │ ├── sql_signal.h │ ├── sql_sort.h │ ├── sql_state.c │ ├── sql_statistics.cc │ ├── sql_statistics.h │ ├── sql_string.cc │ ├── sql_string.h │ ├── sql_table.cc │ ├── sql_table.h │ ├── sql_tablespace.cc │ ├── sql_tablespace.h │ ├── sql_test.cc │ ├── sql_test.h │ ├── sql_time.cc │ ├── sql_time.h │ ├── sql_trigger.cc │ ├── sql_trigger.h │ ├── sql_truncate.cc │ ├── sql_truncate.h │ ├── sql_tvc.cc │ ├── sql_tvc.h │ ├── sql_type.cc │ ├── sql_type.h │ ├── sql_type_fixedbin.h │ ├── sql_type_fixedbin_storage.h │ ├── sql_type_geom.cc │ ├── sql_type_geom.h │ ├── sql_type_int.h │ ├── sql_type_json.cc │ ├── sql_type_json.h │ ├── sql_type_real.h │ ├── sql_type_string.cc │ ├── sql_type_string.h │ ├── sql_udf.cc │ ├── sql_udf.h │ ├── sql_union.cc │ ├── sql_union.h │ ├── sql_update.cc │ ├── sql_update.h │ ├── sql_view.cc │ ├── sql_view.h │ ├── sql_window.cc │ ├── sql_window.h │ ├── sql_yacc.yy │ ├── strfunc.cc │ ├── strfunc.h │ ├── structs.h │ ├── sys_vars.cc │ ├── sys_vars.inl │ ├── sys_vars_shared.h │ ├── table.cc │ ├── table.h │ ├── table_cache.cc │ ├── table_cache.h │ ├── temporary_tables.cc │ ├── thr_malloc.cc │ ├── thr_malloc.h │ ├── thread_cache.h │ ├── thread_pool_info.cc │ ├── threadpool.h │ ├── threadpool_common.cc │ ├── threadpool_generic.cc │ ├── threadpool_generic.h │ ├── threadpool_win.cc │ ├── threadpool_winsockets.cc │ ├── threadpool_winsockets.h │ ├── transaction.cc │ ├── transaction.h │ ├── tzfile.h │ ├── tztime.cc │ ├── tztime.h │ ├── udf_example.c │ ├── udf_example.def │ ├── uniques.cc │ ├── uniques.h │ ├── unireg.cc │ ├── unireg.h │ ├── upgrade_conf_file.cc │ ├── vers_string.h │ ├── win_tzname_data.h │ ├── winmain.cc │ ├── winservice.c │ ├── winservice.h │ ├── wsrep_applier.cc │ ├── wsrep_applier.h │ ├── wsrep_binlog.cc │ ├── wsrep_binlog.h │ ├── wsrep_check_opts.cc │ ├── wsrep_client_service.cc │ ├── wsrep_client_service.h │ ├── wsrep_client_state.h │ ├── wsrep_condition_variable.h │ ├── wsrep_dummy.cc │ ├── wsrep_high_priority_service.cc │ ├── wsrep_high_priority_service.h │ ├── wsrep_mutex.h │ ├── wsrep_mysqld.cc │ ├── wsrep_mysqld.h │ ├── wsrep_mysqld_c.h │ ├── wsrep_notify.cc │ ├── wsrep_on.h │ ├── wsrep_plugin.cc │ ├── wsrep_priv.h │ ├── wsrep_schema.cc │ ├── wsrep_schema.h │ ├── wsrep_server_service.cc │ ├── wsrep_server_service.h │ ├── wsrep_server_state.cc │ ├── wsrep_server_state.h │ ├── wsrep_sst.cc │ ├── wsrep_sst.h │ ├── wsrep_storage_service.cc │ ├── wsrep_storage_service.h │ ├── wsrep_thd.cc │ ├── wsrep_thd.h │ ├── wsrep_trans_observer.h │ ├── wsrep_types.h │ ├── wsrep_utils.cc │ ├── wsrep_utils.h │ ├── wsrep_var.cc │ ├── wsrep_var.h │ ├── wsrep_xid.cc │ ├── wsrep_xid.h │ ├── xa.cc │ └── xa.h ├── sql-bench/ │ ├── CMakeLists.txt │ ├── Comments/ │ │ ├── Access.crash-me │ │ ├── Adabas.crash-me │ │ ├── Empress.crash-me │ │ ├── FrontBase.benchmark │ │ ├── Informix.crash-me │ │ ├── interbase │ │ ├── mysql.benchmark │ │ ├── postgres.benchmark │ │ └── postgres.crash-me │ ├── Data/ │ │ ├── ATIS/ │ │ │ ├── aircraft.txt │ │ │ ├── airline.txt │ │ │ ├── airport.txt │ │ │ ├── airport_service.txt │ │ │ ├── city.txt │ │ │ ├── class_of_service.txt │ │ │ ├── code_description.txt │ │ │ ├── compound_class.txt │ │ │ ├── connect_leg.txt │ │ │ ├── date_day.txt │ │ │ ├── day_name.txt │ │ │ ├── dual_carrier.txt │ │ │ ├── fare.txt │ │ │ ├── fconnection.txt │ │ │ ├── flight.txt │ │ │ ├── flight_class.txt │ │ │ ├── flight_day.txt │ │ │ ├── flight_fare.txt │ │ │ ├── food_service.txt │ │ │ ├── ground_service.txt │ │ │ ├── month_name.txt │ │ │ ├── restrict_carrier.txt │ │ │ ├── restrict_class.txt │ │ │ ├── restriction.txt │ │ │ ├── state.txt │ │ │ ├── stop.txt │ │ │ ├── stop1.txt │ │ │ ├── time_interval.txt │ │ │ ├── time_zone.txt │ │ │ └── transport.txt │ │ └── Wisconsin/ │ │ ├── onek.data │ │ └── tenk.data │ ├── README │ ├── as3ap.sh │ ├── bench-count-distinct.sh │ ├── bench-init.pl.sh │ ├── compare-results.sh │ ├── copy-db.sh │ ├── crash-me.sh │ ├── example │ ├── example.bat │ ├── graph-compare-results.sh │ ├── innotest1.sh │ ├── innotest1a.sh │ ├── innotest1b.sh │ ├── innotest2.sh │ ├── innotest2a.sh │ ├── innotest2b.sh │ ├── limits/ │ │ ├── Adabas.cfg │ │ ├── Informix.cfg │ │ ├── access.cfg │ │ ├── access_odbc.cfg │ │ ├── db2.cfg │ │ ├── empress.cfg │ │ ├── frontbase.cfg │ │ ├── interbase-dialect1.cfg │ │ ├── interbase-dialect3.cfg │ │ ├── interbase-superserver.cfg │ │ ├── interbase.cfg │ │ ├── mimer.cfg │ │ ├── ms-sql.cfg │ │ ├── ms-sql65.cfg │ │ ├── msql.cfg │ │ ├── mysql-3.22.cfg │ │ ├── mysql-3.23.cfg │ │ ├── mysql-4.0.cfg │ │ ├── mysql-4.1.cfg │ │ ├── mysql.cfg │ │ ├── oracle.cfg │ │ ├── pg.cfg │ │ ├── solid-nt4.cfg │ │ ├── solid.cfg │ │ └── sybase.cfg │ ├── myisam.cnf │ ├── pwd.bat │ ├── run-all-tests.sh │ ├── server-cfg.sh │ ├── test-ATIS.sh │ ├── test-alter-table.sh │ ├── test-big-tables.sh │ ├── test-connect.sh │ ├── test-create.sh │ ├── test-insert.sh │ ├── test-select.sh │ ├── test-table-elimination.sh │ ├── test-transactions.sh │ ├── test-wisconsin.sh │ └── uname.bat ├── sql-common/ │ ├── client.c │ ├── client_plugin.c │ ├── conf_to_src.c │ ├── errmsg.c │ ├── my_time.c │ ├── my_user.c │ └── pack.c ├── storage/ │ ├── archive/ │ │ ├── CMakeLists.txt │ │ ├── archive_reader.c │ │ ├── archive_test.c │ │ ├── azio.c │ │ ├── azlib.h │ │ ├── ha_archive.cc │ │ └── ha_archive.h │ ├── blackhole/ │ │ ├── CMakeLists.txt │ │ ├── ha_blackhole.cc │ │ └── ha_blackhole.h │ ├── columnstore/ │ │ ├── CMakeLists.txt │ │ └── mysql-test/ │ │ └── columnstore/ │ │ ├── include/ │ │ │ ├── cleanup_columnstore.inc │ │ │ └── have_columnstore.inc │ │ ├── r/ │ │ │ └── basic.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t/ │ │ └── basic.test │ ├── connect/ │ │ ├── .gitignore │ │ ├── ApacheInterface.java │ │ ├── CMakeLists.txt │ │ ├── Client.java │ │ ├── Client2.java │ │ ├── Client3.java │ │ ├── JdbcInterface.java │ │ ├── MariadbInterface.java │ │ ├── Mongo2Interface.java │ │ ├── Mongo3Interface.java │ │ ├── MysqlInterface.java │ │ ├── OracleInterface.java │ │ ├── PostgresqlInterface.java │ │ ├── TestInsert2.java │ │ ├── TestInsert3.java │ │ ├── array.cpp │ │ ├── array.h │ │ ├── blkfil.cpp │ │ ├── blkfil.h │ │ ├── block.h │ │ ├── bson.cpp │ │ ├── bson.h │ │ ├── bsonudf.cpp │ │ ├── bsonudf.h │ │ ├── catalog.h │ │ ├── checklvl.h │ │ ├── cmgfam.cpp │ │ ├── cmgfam.h │ │ ├── cmgoconn.cpp │ │ ├── cmgoconn.h │ │ ├── colblk.cpp │ │ ├── colblk.h │ │ ├── connect.cc │ │ ├── connect.h │ │ ├── csort.cpp │ │ ├── csort.h │ │ ├── domdoc.cpp │ │ ├── domdoc.h │ │ ├── encas.h │ │ ├── engmsg.h │ │ ├── enids.h │ │ ├── filamap.cpp │ │ ├── filamap.h │ │ ├── filamdbf.cpp │ │ ├── filamdbf.h │ │ ├── filamfix.cpp │ │ ├── filamfix.h │ │ ├── filamgz.cpp │ │ ├── filamgz.h │ │ ├── filamtxt.cpp │ │ ├── filamtxt.h │ │ ├── filamvct.cpp │ │ ├── filamvct.h │ │ ├── filamzip.cpp │ │ ├── filamzip.h │ │ ├── filter.cpp │ │ ├── filter.h │ │ ├── fmdlex.c │ │ ├── global.h │ │ ├── ha_connect.cc │ │ ├── ha_connect.h │ │ ├── inihandl.cpp │ │ ├── inihandl.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── javaconn.cpp │ │ ├── javaconn.h │ │ ├── jdbccat.h │ │ ├── jdbconn.cpp │ │ ├── jdbconn.h │ │ ├── jmgfam.cpp │ │ ├── jmgfam.h │ │ ├── jmgoconn.cpp │ │ ├── jmgoconn.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── jsonudf.cpp │ │ ├── jsonudf.h │ │ ├── libdoc.cpp │ │ ├── libdoc.h │ │ ├── macutil.cpp │ │ ├── macutil.h │ │ ├── maputil.cpp │ │ ├── maputil.h │ │ ├── messages.h │ │ ├── mini-global.h │ │ ├── mongo.cpp │ │ ├── mongo.h │ │ ├── msgid.h │ │ ├── mycat.cc │ │ ├── mycat.h │ │ ├── myconn.cpp │ │ ├── myconn.h │ │ ├── mysql-test/ │ │ │ └── connect/ │ │ │ ├── disabled.def │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── alter.result │ │ │ │ ├── alter_engine.result │ │ │ │ ├── alter_xml.result │ │ │ │ ├── alter_xml2.result │ │ │ │ ├── bin.result │ │ │ │ ├── bson.result │ │ │ │ ├── bson_java_2.result │ │ │ │ ├── bson_java_3.result │ │ │ │ ├── bson_mongo_c.result │ │ │ │ ├── bson_udf.result │ │ │ │ ├── csv.result │ │ │ │ ├── datest.result │ │ │ │ ├── dbf.result │ │ │ │ ├── dir.result │ │ │ │ ├── drop-open-error.result │ │ │ │ ├── endian.result │ │ │ │ ├── fix.result │ │ │ │ ├── fmt.result │ │ │ │ ├── general.result │ │ │ │ ├── grant.result │ │ │ │ ├── grant2.result │ │ │ │ ├── grant3.result │ │ │ │ ├── index.result │ │ │ │ ├── infoschema-9739.result │ │ │ │ ├── infoschema2-9739.result │ │ │ │ ├── ini.result │ │ │ │ ├── ini_grant.result │ │ │ │ ├── jdbc.result │ │ │ │ ├── jdbc_new.result │ │ │ │ ├── jdbc_oracle.result │ │ │ │ ├── jdbc_postgresql.result │ │ │ │ ├── json.result │ │ │ │ ├── json_java_2.result │ │ │ │ ├── json_java_3.result │ │ │ │ ├── json_mongo_c.result │ │ │ │ ├── json_udf.result │ │ │ │ ├── json_udf_bin.result │ │ │ │ ├── misc.result │ │ │ │ ├── mongo_c.result │ │ │ │ ├── mongo_java_2.result │ │ │ │ ├── mongo_java_3.result │ │ │ │ ├── mrr.result │ │ │ │ ├── mul.result │ │ │ │ ├── mul_new.result │ │ │ │ ├── mysql.result │ │ │ │ ├── mysql_discovery.result │ │ │ │ ├── mysql_exec.result │ │ │ │ ├── mysql_grant.result │ │ │ │ ├── mysql_index.result │ │ │ │ ├── mysql_new.result │ │ │ │ ├── null.result │ │ │ │ ├── occur.result │ │ │ │ ├── odbc.result │ │ │ │ ├── odbc_firebird.result │ │ │ │ ├── odbc_oracle.result │ │ │ │ ├── odbc_postgresql.result │ │ │ │ ├── odbc_sqlite3.result │ │ │ │ ├── odbc_sqlite3_grant.result │ │ │ │ ├── odbc_xls.result │ │ │ │ ├── part_file.result │ │ │ │ ├── part_table.result │ │ │ │ ├── pivot.result │ │ │ │ ├── rest.result │ │ │ │ ├── secure_file_priv.result │ │ │ │ ├── tbl.result │ │ │ │ ├── tbl_thread.result │ │ │ │ ├── temporary.result │ │ │ │ ├── type_inet6.result │ │ │ │ ├── unsigned.result │ │ │ │ ├── upd.result │ │ │ │ ├── updelx.result │ │ │ │ ├── updelx2.result │ │ │ │ ├── vcol.result │ │ │ │ ├── vec.result │ │ │ │ ├── xcol.result │ │ │ │ ├── xml.result │ │ │ │ ├── xml2.result │ │ │ │ ├── xml2_grant.result │ │ │ │ ├── xml2_html.result │ │ │ │ ├── xml2_mdev5261.result │ │ │ │ ├── xml2_mult.result │ │ │ │ ├── xml2_zip.result │ │ │ │ ├── xml_grant.result │ │ │ │ ├── xml_html.result │ │ │ │ ├── xml_mdev5261.result │ │ │ │ ├── xml_mult.result │ │ │ │ ├── xml_zip.result │ │ │ │ └── zip.result │ │ │ ├── std_data/ │ │ │ │ ├── JavaWrappers.jar │ │ │ │ ├── JdbcMariaDB.jar │ │ │ │ ├── Mongo2.jar │ │ │ │ ├── Mongo3.jar │ │ │ │ ├── beers.xml │ │ │ │ ├── bib0.json │ │ │ │ ├── biblio.json │ │ │ │ ├── bios.json │ │ │ │ ├── bookstore.xml │ │ │ │ ├── boys.txt │ │ │ │ ├── boyswin.txt │ │ │ │ ├── cities.json │ │ │ │ ├── coffee.htm │ │ │ │ ├── contact.ini │ │ │ │ ├── contacts.xls │ │ │ │ ├── cp1251.xml │ │ │ │ ├── emp.txt │ │ │ │ ├── expense.json │ │ │ │ ├── expenses.txt │ │ │ │ ├── funny.txt │ │ │ │ ├── funny2.txt │ │ │ │ ├── girls.txt │ │ │ │ ├── gloss.json │ │ │ │ ├── latin1.xml │ │ │ │ ├── mdev9949.frm │ │ │ │ ├── mulexp3.json │ │ │ │ ├── mulexp4.json │ │ │ │ ├── mulexp5.json │ │ │ │ ├── nocs.xml │ │ │ │ ├── people.csv │ │ │ │ ├── sexe.csv │ │ │ │ ├── sitmat.csv │ │ │ │ ├── test.sqlite3 │ │ │ │ ├── xsample.xml │ │ │ │ └── xsample2.xml │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── alter.test │ │ │ ├── alter_engine.test │ │ │ ├── alter_xml.test │ │ │ ├── alter_xml2.test │ │ │ ├── bin.test │ │ │ ├── bson.test │ │ │ ├── bson_java_2.test │ │ │ ├── bson_java_3.test │ │ │ ├── bson_mongo_c.test │ │ │ ├── bson_udf.inc │ │ │ ├── bson_udf.test │ │ │ ├── bson_udf2.inc │ │ │ ├── csv.test │ │ │ ├── datest.test │ │ │ ├── dbf.test │ │ │ ├── dir.test │ │ │ ├── drop-open-error.opt │ │ │ ├── drop-open-error.test │ │ │ ├── endian.test │ │ │ ├── fix.test │ │ │ ├── fmt.test │ │ │ ├── general.test │ │ │ ├── grant.inc │ │ │ ├── grant.test │ │ │ ├── grant2.test │ │ │ ├── grant3.test │ │ │ ├── have_libxml2.inc │ │ │ ├── have_odbc.inc │ │ │ ├── have_odbc_oracle.inc │ │ │ ├── have_odbc_postgresql.inc │ │ │ ├── have_odbc_sqlite3.inc │ │ │ ├── have_zip.inc │ │ │ ├── index.test │ │ │ ├── infoschema-9739.test │ │ │ ├── infoschema2-9739.test │ │ │ ├── ini.test │ │ │ ├── ini_grant.test │ │ │ ├── jdbc.test │ │ │ ├── jdbc_new.test │ │ │ ├── jdbc_oracle.test │ │ │ ├── jdbc_postgresql.test │ │ │ ├── jdbconn.inc │ │ │ ├── jdbconn_cleanup.inc │ │ │ ├── json.test │ │ │ ├── json_java_2.test │ │ │ ├── json_java_3.test │ │ │ ├── json_mongo_c.test │ │ │ ├── json_udf.inc │ │ │ ├── json_udf.test │ │ │ ├── json_udf2.inc │ │ │ ├── json_udf_bin.test │ │ │ ├── misc.test │ │ │ ├── mongo.inc │ │ │ ├── mongo_c.test │ │ │ ├── mongo_java_2.test │ │ │ ├── mongo_java_3.test │ │ │ ├── mongo_test.inc │ │ │ ├── mrr.test │ │ │ ├── mul.test │ │ │ ├── mul_new.test │ │ │ ├── myconn.inc │ │ │ ├── myconn_cleanup.inc │ │ │ ├── mysql.test │ │ │ ├── mysql_discovery.test │ │ │ ├── mysql_exec.test │ │ │ ├── mysql_grant.test │ │ │ ├── mysql_index.test │ │ │ ├── mysql_new.test │ │ │ ├── null.test │ │ │ ├── occur.test │ │ │ ├── odbc.test │ │ │ ├── odbc_firebird.test │ │ │ ├── odbc_oracle.sql │ │ │ ├── odbc_oracle.test │ │ │ ├── odbc_postgresql.sql │ │ │ ├── odbc_postgresql.test │ │ │ ├── odbc_sqlite3.test │ │ │ ├── odbc_sqlite3_grant.test │ │ │ ├── odbc_xls.test │ │ │ ├── part_file.test │ │ │ ├── part_table.test │ │ │ ├── pivot.test │ │ │ ├── rest.inc │ │ │ ├── rest.test │ │ │ ├── secure_file_priv-master.opt │ │ │ ├── secure_file_priv.test │ │ │ ├── tbl.test │ │ │ ├── tbl_thread.test │ │ │ ├── temporary.test │ │ │ ├── type_inet6.test │ │ │ ├── unsigned.test │ │ │ ├── upd.test │ │ │ ├── updelx.inc │ │ │ ├── updelx.test │ │ │ ├── updelx2.test │ │ │ ├── vcol.test │ │ │ ├── vec.test │ │ │ ├── windows.inc │ │ │ ├── xcol.test │ │ │ ├── xml.test │ │ │ ├── xml2.test │ │ │ ├── xml2_grant.test │ │ │ ├── xml2_html.test │ │ │ ├── xml2_mdev5261.test │ │ │ ├── xml2_mult.test │ │ │ ├── xml2_zip.test │ │ │ ├── xml_grant.test │ │ │ ├── xml_html.test │ │ │ ├── xml_mdev5261.test │ │ │ ├── xml_mult.test │ │ │ ├── xml_zip.test │ │ │ └── zip.test │ │ ├── myutil.cpp │ │ ├── myutil.h │ │ ├── noconst.c │ │ ├── odbccat.h │ │ ├── odbconn.cpp │ │ ├── odbconn.h │ │ ├── os.h │ │ ├── osutil.c │ │ ├── osutil.h │ │ ├── plgcnx.h │ │ ├── plgdbsem.h │ │ ├── plgdbutl.cpp │ │ ├── plgodbc.h │ │ ├── plgxml.cpp │ │ ├── plgxml.h │ │ ├── plugutil.cpp │ │ ├── preparse.h │ │ ├── rcmsg.c │ │ ├── rcmsg.h │ │ ├── reldef.cpp │ │ ├── reldef.h │ │ ├── resource.h │ │ ├── rest.def │ │ ├── restget.cpp │ │ ├── tabbson.cpp │ │ ├── tabbson.h │ │ ├── tabcmg.cpp │ │ ├── tabcmg.h │ │ ├── tabcol.cpp │ │ ├── tabcol.h │ │ ├── tabdos.cpp │ │ ├── tabdos.h │ │ ├── tabext.cpp │ │ ├── tabext.h │ │ ├── tabfix.cpp │ │ ├── tabfix.h │ │ ├── tabfmt.cpp │ │ ├── tabfmt.h │ │ ├── tabjdbc.cpp │ │ ├── tabjdbc.h │ │ ├── tabjmg.cpp │ │ ├── tabjmg.h │ │ ├── tabjson.cpp │ │ ├── tabjson.h │ │ ├── table.cpp │ │ ├── tabmac.cpp │ │ ├── tabmac.h │ │ ├── tabmul.cpp │ │ ├── tabmul.h │ │ ├── tabmysql.cpp │ │ ├── tabmysql.h │ │ ├── taboccur.cpp │ │ ├── taboccur.h │ │ ├── tabodbc.cpp │ │ ├── tabodbc.h │ │ ├── tabpivot.cpp │ │ ├── tabpivot.h │ │ ├── tabrest.cpp │ │ ├── tabrest.h │ │ ├── tabsys.cpp │ │ ├── tabsys.h │ │ ├── tabtbl.cpp │ │ ├── tabtbl.h │ │ ├── tabutil.cpp │ │ ├── tabutil.h │ │ ├── tabvct.cpp │ │ ├── tabvct.h │ │ ├── tabvir.cpp │ │ ├── tabvir.h │ │ ├── tabwmi.cpp │ │ ├── tabwmi.h │ │ ├── tabxcl.cpp │ │ ├── tabxcl.h │ │ ├── tabxml.cpp │ │ ├── tabxml.h │ │ ├── tabzip.cpp │ │ ├── tabzip.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── user_connect.cc │ │ ├── user_connect.h │ │ ├── valblk.cpp │ │ ├── valblk.h │ │ ├── value.cpp │ │ ├── value.h │ │ ├── xindex.cpp │ │ ├── xindex.h │ │ ├── xobject.cpp │ │ ├── xobject.h │ │ ├── xtable.h │ │ ├── zip.c │ │ └── zip.h │ ├── csv/ │ │ ├── CMakeLists.txt │ │ ├── ha_tina.cc │ │ ├── ha_tina.h │ │ ├── transparent_file.cc │ │ └── transparent_file.h │ ├── eloq/ │ │ ├── CMakeLists.txt │ │ ├── date.h │ │ ├── eloq_buff.h │ │ ├── eloq_catalog_name.h │ │ ├── eloq_db.cpp │ │ ├── eloq_db_dl.h │ │ ├── eloq_errors.cpp │ │ ├── eloq_errors.h │ │ ├── eloq_i_s.cc │ │ ├── eloq_i_s.h │ │ ├── eloq_key_def.cc │ │ ├── eloq_key_def.h │ │ ├── eloq_system_handler.cpp │ │ ├── eloq_system_handler.h │ │ ├── eloq_tests.hpp │ │ ├── eloqsql_catalog_factory.cpp │ │ ├── eloqsql_catalog_factory.h │ │ ├── eloqsql_key.h │ │ ├── eloqsql_schema.cpp │ │ ├── eloqsql_schema.h │ │ ├── ha_eloq.cc │ │ ├── ha_eloq.h │ │ ├── ha_eloq_macro.h │ │ ├── log_wrapper.h │ │ ├── mysql-test/ │ │ │ ├── README.md │ │ │ ├── mono_basic/ │ │ │ │ ├── data_substrate.cnf │ │ │ │ ├── disabled.def │ │ │ │ ├── include/ │ │ │ │ │ ├── have_eloq.inc │ │ │ │ │ ├── have_hash_partition.inc │ │ │ │ │ └── update_use_source_eloq.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── alter_db.result │ │ │ │ │ ├── alter_table.result │ │ │ │ │ ├── alter_table_recovery.result │ │ │ │ │ ├── auto_commit.result │ │ │ │ │ ├── batch_pk_load_s.result │ │ │ │ │ ├── collation_restriction.result │ │ │ │ │ ├── create_drop_index.result │ │ │ │ │ ├── create_drop_table_recovery.result │ │ │ │ │ ├── data_store_error.result │ │ │ │ │ ├── data_type.result │ │ │ │ │ ├── deadlock_handling.result │ │ │ │ │ ├── drop_table.result │ │ │ │ │ ├── fault_inject_term_neg_Execute.result │ │ │ │ │ ├── flush_undo_while_ckpt.result │ │ │ │ │ ├── isolation_level_for_locking.result │ │ │ │ │ ├── isolation_level_for_mvcc.result │ │ │ │ │ ├── isolation_level_for_occ.result │ │ │ │ │ ├── key_cache.result │ │ │ │ │ ├── magic_table_name.result │ │ │ │ │ ├── merge_scanner_wset.result │ │ │ │ │ ├── mvcc_archives_recycle.result │ │ │ │ │ ├── mvcc_read_after_flushing_deleted_record.result │ │ │ │ │ ├── mvcc_read_unique_sk_after_flushing_deleted_record.result │ │ │ │ │ ├── mvcc_scan.result │ │ │ │ │ ├── mvcc_scan_after_flushing_deleted_record.result │ │ │ │ │ ├── mvcc_scan_sk.result │ │ │ │ │ ├── mvcc_unique_sk_lookup.result │ │ │ │ │ ├── poor_performance.result │ │ │ │ │ ├── primary_key.result │ │ │ │ │ ├── pushdown_cond.result │ │ │ │ │ ├── range_read_block_on_write_lock.result │ │ │ │ │ ├── range_split_deadlock_abort.result │ │ │ │ │ ├── range_split_keycache.result │ │ │ │ │ ├── read_committed_sk_scan.result │ │ │ │ │ ├── rnd.result │ │ │ │ │ ├── s_scan_remainer_lock.result │ │ │ │ │ ├── secondary_key.result │ │ │ │ │ ├── select_for_update_and_share.result │ │ │ │ │ ├── select_for_update_and_share_occ.result │ │ │ │ │ ├── single_auto_increment.result │ │ │ │ │ ├── single_dead_lock_check.result │ │ │ │ │ ├── single_node.result │ │ │ │ │ ├── statistics.result │ │ │ │ │ ├── temporary_table.result │ │ │ │ │ ├── unique_sk_lookup.result │ │ │ │ │ ├── unsupported_sql.result │ │ │ │ │ ├── update_record_with_sk.result │ │ │ │ │ ├── upsert_table_recovery.result │ │ │ │ │ └── write_log_unknown.result │ │ │ │ └── t/ │ │ │ │ ├── alter_db.test │ │ │ │ ├── alter_table.test │ │ │ │ ├── alter_table_recovery.test │ │ │ │ ├── auto_commit.test │ │ │ │ ├── batch_pk_load_s.test │ │ │ │ ├── collation_restriction.test │ │ │ │ ├── create_drop_index.test │ │ │ │ ├── create_drop_table_recovery.test │ │ │ │ ├── data_store_error.test │ │ │ │ ├── data_type.test │ │ │ │ ├── deadlock_handling.cnf │ │ │ │ ├── deadlock_handling.test │ │ │ │ ├── drop_table.test │ │ │ │ ├── fault_inject_term_neg_Execute.test │ │ │ │ ├── flush_undo_while_ckpt.cnf │ │ │ │ ├── flush_undo_while_ckpt.opt │ │ │ │ ├── flush_undo_while_ckpt.test │ │ │ │ ├── isolation_level_for_locking.cnf │ │ │ │ ├── isolation_level_for_locking.test │ │ │ │ ├── isolation_level_for_mvcc.cnf │ │ │ │ ├── isolation_level_for_mvcc.opt │ │ │ │ ├── isolation_level_for_mvcc.test │ │ │ │ ├── isolation_level_for_occ.cnf │ │ │ │ ├── isolation_level_for_occ.test │ │ │ │ ├── key_cache.cnf │ │ │ │ ├── key_cache.opt │ │ │ │ ├── key_cache.test │ │ │ │ ├── magic_table_name.test │ │ │ │ ├── merge_scanner_wset.test │ │ │ │ ├── mvcc_archives_recycle.cnf │ │ │ │ ├── mvcc_archives_recycle.opt │ │ │ │ ├── mvcc_archives_recycle.test │ │ │ │ ├── mvcc_read_after_flushing_deleted_record.cnf │ │ │ │ ├── mvcc_read_after_flushing_deleted_record.opt │ │ │ │ ├── mvcc_read_after_flushing_deleted_record.test │ │ │ │ ├── mvcc_read_unique_sk_after_flushing_deleted_record.cnf │ │ │ │ ├── mvcc_read_unique_sk_after_flushing_deleted_record.opt │ │ │ │ ├── mvcc_read_unique_sk_after_flushing_deleted_record.test │ │ │ │ ├── mvcc_scan.cnf │ │ │ │ ├── mvcc_scan.opt │ │ │ │ ├── mvcc_scan.test │ │ │ │ ├── mvcc_scan_after_flushing_deleted_record.cnf │ │ │ │ ├── mvcc_scan_after_flushing_deleted_record.opt │ │ │ │ ├── mvcc_scan_after_flushing_deleted_record.test │ │ │ │ ├── mvcc_scan_sk.cnf │ │ │ │ ├── mvcc_scan_sk.opt │ │ │ │ ├── mvcc_scan_sk.test │ │ │ │ ├── mvcc_scan_sk_rc_isolvl.cnf │ │ │ │ ├── mvcc_scan_sk_rc_isolvl.test │ │ │ │ ├── mvcc_unique_sk_lookup.cnf │ │ │ │ ├── mvcc_unique_sk_lookup.opt │ │ │ │ ├── mvcc_unique_sk_lookup.test │ │ │ │ ├── poor_performance.cnf │ │ │ │ ├── poor_performance.opt │ │ │ │ ├── poor_performance.test │ │ │ │ ├── primary_key.test │ │ │ │ ├── pushdown_cond.test │ │ │ │ ├── range_read_block_on_write_lock.opt │ │ │ │ ├── range_read_block_on_write_lock.test │ │ │ │ ├── range_split_deadlock_abort.opt │ │ │ │ ├── range_split_deadlock_abort.test │ │ │ │ ├── range_split_keycache.cnf │ │ │ │ ├── range_split_keycache.opt │ │ │ │ ├── range_split_keycache.test │ │ │ │ ├── read_committed_sk_scan.test │ │ │ │ ├── rnd.test │ │ │ │ ├── s_scan_remainer_lock.test │ │ │ │ ├── secondary_key.test │ │ │ │ ├── select_for_update_and_share.cnf │ │ │ │ ├── select_for_update_and_share.test │ │ │ │ ├── select_for_update_and_share_occ.test │ │ │ │ ├── single_auto_increment.test │ │ │ │ ├── single_dead_lock_check.cnf │ │ │ │ ├── single_dead_lock_check.opt │ │ │ │ ├── single_dead_lock_check.test │ │ │ │ ├── single_node.test │ │ │ │ ├── statistics.test │ │ │ │ ├── temporary_table.test │ │ │ │ ├── unique_sk_lookup.test │ │ │ │ ├── unsupported_sql.test │ │ │ │ ├── update_record_with_sk.test │ │ │ │ ├── upsert_table_recovery.test │ │ │ │ └── write_log_unknown.test │ │ │ ├── mono_main/ │ │ │ │ ├── data_substrate.cnf │ │ │ │ ├── disabled.def │ │ │ │ ├── include/ │ │ │ │ │ ├── bytes_eloq.inc │ │ │ │ │ ├── common-tests_eloq.inc │ │ │ │ │ ├── ctype_czech_eloq.inc │ │ │ │ │ ├── ctype_eloq_like.inc │ │ │ │ │ ├── ctype_filesort_eloq.inc │ │ │ │ │ ├── ctype_like_cond_propagation_eloq.inc │ │ │ │ │ ├── ctype_like_ignorable_eloq.inc │ │ │ │ │ ├── ctype_like_range_f1f2_eloq.inc │ │ │ │ │ ├── ctype_like_range_mdev14350_eloq.inc │ │ │ │ │ ├── ctype_myanmar_eloq.inc │ │ │ │ │ ├── ctype_numconv_eloq.inc │ │ │ │ │ ├── ctype_pad_all_engines_eloq.inc │ │ │ │ │ ├── ctype_thai_eloq.inc │ │ │ │ │ ├── ctype_unescape_eloq.inc │ │ │ │ │ ├── ctype_utf8_ilseq_eloq.inc │ │ │ │ │ ├── dbt3_s001_eloq.inc │ │ │ │ │ ├── default_charset_eloq.inc │ │ │ │ │ ├── equal_fields_propagation_datetime_eloq.inc │ │ │ │ │ ├── func_hybrid_type_eloq.inc │ │ │ │ │ ├── func_str_ascii_checksum_eloq.inc │ │ │ │ │ ├── function_defaults_eloq.inc │ │ │ │ │ ├── function_defaults_notembedded_eloq.inc │ │ │ │ │ ├── have_eloq.inc │ │ │ │ │ ├── have_utf8mb4_eloq.inc │ │ │ │ │ ├── ipv6_clients_eloq.inc │ │ │ │ │ ├── mrr_tests_eloq.inc │ │ │ │ │ ├── mysqldump_eloq.inc │ │ │ │ │ ├── query_cache_sql_prepare_eloq.inc │ │ │ │ │ ├── switch_to_mysql_global_priv_eloq.inc │ │ │ │ │ ├── switch_to_mysql_user_eloq.inc │ │ │ │ │ ├── type_hrtime_eloq.inc │ │ │ │ │ ├── type_temporal_zero_default_eloq.inc │ │ │ │ │ ├── update_use_source_eloq.inc │ │ │ │ │ ├── world_schema_eloq.inc │ │ │ │ │ ├── world_schema_eloq1.inc │ │ │ │ │ └── world_schema_eloq2.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── 1st.result │ │ │ │ │ ├── aborted_clients.result │ │ │ │ │ ├── adddate_454.result │ │ │ │ │ ├── alias.result │ │ │ │ │ ├── almost_full.result │ │ │ │ │ ├── alter_events.result │ │ │ │ │ ├── alter_table,aria.rdiff │ │ │ │ │ ├── alter_table,heap.rdiff │ │ │ │ │ ├── alter_table-big.result │ │ │ │ │ ├── alter_table.result │ │ │ │ │ ├── alter_table_autoinc-5574.result │ │ │ │ │ ├── alter_table_debug.result │ │ │ │ │ ├── alter_table_errors.result │ │ │ │ │ ├── alter_table_mdev539_maria.result │ │ │ │ │ ├── alter_table_mdev539_myisam.result │ │ │ │ │ ├── alter_table_online.result │ │ │ │ │ ├── alter_table_trans.result │ │ │ │ │ ├── alter_user.result │ │ │ │ │ ├── analyze.result │ │ │ │ │ ├── analyze_debug.result │ │ │ │ │ ├── analyze_format_json.result │ │ │ │ │ ├── analyze_stmt.result │ │ │ │ │ ├── analyze_stmt_orderby.result │ │ │ │ │ ├── analyze_stmt_privileges.result │ │ │ │ │ ├── analyze_stmt_privileges2.result │ │ │ │ │ ├── analyze_stmt_slow_query_log.result │ │ │ │ │ ├── ansi.result │ │ │ │ │ ├── aria_icp_debug.result │ │ │ │ │ ├── assign_key_cache.result │ │ │ │ │ ├── assign_key_cache_debug.result │ │ │ │ │ ├── auth_named_pipe.result │ │ │ │ │ ├── auth_rpl.result │ │ │ │ │ ├── auto_increment.result │ │ │ │ │ ├── auto_increment_ranges_innodb.result │ │ │ │ │ ├── auto_increment_ranges_myisam.result │ │ │ │ │ ├── backup_aria.result │ │ │ │ │ ├── backup_interaction.result │ │ │ │ │ ├── backup_lock.result │ │ │ │ │ ├── backup_lock_binlog.result │ │ │ │ │ ├── backup_lock_debug.result │ │ │ │ │ ├── backup_locks.result │ │ │ │ │ ├── backup_log.result │ │ │ │ │ ├── backup_priv.result │ │ │ │ │ ├── backup_stages.result │ │ │ │ │ ├── backup_syntax.result │ │ │ │ │ ├── bad_frm_crash_5029.result │ │ │ │ │ ├── bench_count_distinct.result │ │ │ │ │ ├── bigint.result │ │ │ │ │ ├── binary.result │ │ │ │ │ ├── binary_to_hex.result │ │ │ │ │ ├── bind_address_resolution.result │ │ │ │ │ ├── blackhole.result │ │ │ │ │ ├── blackhole_plugin.result │ │ │ │ │ ├── bool.result │ │ │ │ │ ├── bootstrap.result │ │ │ │ │ ├── bootstrap_innodb.result │ │ │ │ │ ├── brackets.result │ │ │ │ │ ├── bug12427262.result │ │ │ │ │ ├── bug13633383.result │ │ │ │ │ ├── bug39022.result │ │ │ │ │ ├── bug46760.result │ │ │ │ │ ├── bug47671.result │ │ │ │ │ ├── bug58669.result │ │ │ │ │ ├── bulk_replace.result │ │ │ │ │ ├── cache_innodb.result │ │ │ │ │ ├── cache_temporal_4265.result │ │ │ │ │ ├── case.result │ │ │ │ │ ├── cast.result │ │ │ │ │ ├── change_user.result │ │ │ │ │ ├── change_user_notembedded.result │ │ │ │ │ ├── charset_client_win.result │ │ │ │ │ ├── check.result │ │ │ │ │ ├── check_constraint.result │ │ │ │ │ ├── check_constraint_innodb.result │ │ │ │ │ ├── check_constraint_show.result │ │ │ │ │ ├── cli_options_force_protocol_not_win.result │ │ │ │ │ ├── cli_options_force_protocol_win.result │ │ │ │ │ ├── client_xml.result │ │ │ │ │ ├── column_compression.result │ │ │ │ │ ├── column_compression_parts.result │ │ │ │ │ ├── column_compression_rpl.result │ │ │ │ │ ├── column_compression_utf16.result │ │ │ │ │ ├── comment_column.result │ │ │ │ │ ├── comment_column2.result │ │ │ │ │ ├── comment_database.result │ │ │ │ │ ├── comment_index.result │ │ │ │ │ ├── comment_table.result │ │ │ │ │ ├── comments.result │ │ │ │ │ ├── commit.result │ │ │ │ │ ├── commit_1innodb.result │ │ │ │ │ ├── compare.result │ │ │ │ │ ├── compound.result │ │ │ │ │ ├── compress.result │ │ │ │ │ ├── concurrent_innodb_safelog.result │ │ │ │ │ ├── concurrent_innodb_unsafelog.result │ │ │ │ │ ├── connect-abstract.result │ │ │ │ │ ├── connect.result │ │ │ │ │ ├── connect2.result │ │ │ │ │ ├── connect_debug.result │ │ │ │ │ ├── consistent_snapshot.result │ │ │ │ │ ├── constraints.result │ │ │ │ │ ├── contributors.result │ │ │ │ │ ├── count_distinct.result │ │ │ │ │ ├── count_distinct2.result │ │ │ │ │ ├── count_distinct3.result │ │ │ │ │ ├── crash_commit_before.result │ │ │ │ │ ├── create-big.result │ │ │ │ │ ├── create-uca.result │ │ │ │ │ ├── create.result │ │ │ │ │ ├── create_delayed.result │ │ │ │ │ ├── create_drop_binlog.result │ │ │ │ │ ├── create_drop_db.result │ │ │ │ │ ├── create_drop_event.result │ │ │ │ │ ├── create_drop_function.result │ │ │ │ │ ├── create_drop_index.result │ │ │ │ │ ├── create_drop_procedure.result │ │ │ │ │ ├── create_drop_role.result │ │ │ │ │ ├── create_drop_server.result │ │ │ │ │ ├── create_drop_trigger.result │ │ │ │ │ ├── create_drop_udf.result │ │ │ │ │ ├── create_drop_user.result │ │ │ │ │ ├── create_drop_view.result │ │ │ │ │ ├── create_not_windows.result │ │ │ │ │ ├── create_or_replace.result │ │ │ │ │ ├── create_or_replace2.result │ │ │ │ │ ├── create_or_replace_permission.result │ │ │ │ │ ├── create_replace_tmp.result │ │ │ │ │ ├── create_select_tmp.result │ │ │ │ │ ├── create_user.result │ │ │ │ │ ├── create_utf8.result │ │ │ │ │ ├── create_w_max_indexes_128.result │ │ │ │ │ ├── create_w_max_indexes_64.result │ │ │ │ │ ├── cte_cycle.result │ │ │ │ │ ├── cte_grant.result │ │ │ │ │ ├── cte_nonrecursive.result │ │ │ │ │ ├── cte_nonrecursive_not_embedded.result │ │ │ │ │ ├── cte_recursive.result │ │ │ │ │ ├── cte_recursive_not_embedded.result │ │ │ │ │ ├── ctype_ascii.result │ │ │ │ │ ├── ctype_big5.result │ │ │ │ │ ├── ctype_binary.result │ │ │ │ │ ├── ctype_collate.result │ │ │ │ │ ├── ctype_cp1250_ch.result │ │ │ │ │ ├── ctype_cp1251.result │ │ │ │ │ ├── ctype_cp850.result │ │ │ │ │ ├── ctype_cp932.result │ │ │ │ │ ├── ctype_cp932_binlog_row.result │ │ │ │ │ ├── ctype_cp932_binlog_stm.result │ │ │ │ │ ├── ctype_create.result │ │ │ │ │ ├── ctype_dec8.result │ │ │ │ │ ├── ctype_errors.result │ │ │ │ │ ├── ctype_eucjpms.result │ │ │ │ │ ├── ctype_euckr.result │ │ │ │ │ ├── ctype_filename.result │ │ │ │ │ ├── ctype_filesystem.result │ │ │ │ │ ├── ctype_gb2312.result │ │ │ │ │ ├── ctype_gbk.result │ │ │ │ │ ├── ctype_gbk_binlog.result │ │ │ │ │ ├── ctype_gbk_export_import.result │ │ │ │ │ ├── ctype_hebrew.result │ │ │ │ │ ├── ctype_latin1.result │ │ │ │ │ ├── ctype_latin1_de.result │ │ │ │ │ ├── ctype_latin2.result │ │ │ │ │ ├── ctype_latin2_ch.result │ │ │ │ │ ├── ctype_ldml.result │ │ │ │ │ ├── ctype_like_range.result │ │ │ │ │ ├── ctype_many.result │ │ │ │ │ ├── ctype_mb.result │ │ │ │ │ ├── ctype_nopad_8bit.result │ │ │ │ │ ├── ctype_partitions.result │ │ │ │ │ ├── ctype_recoding.result │ │ │ │ │ ├── ctype_sjis.result │ │ │ │ │ ├── ctype_swe7.result │ │ │ │ │ ├── ctype_tis620.result │ │ │ │ │ ├── ctype_uca.result │ │ │ │ │ ├── ctype_uca_innodb.result │ │ │ │ │ ├── ctype_uca_partitions.result │ │ │ │ │ ├── ctype_ucs.result │ │ │ │ │ ├── ctype_ucs2_def.result │ │ │ │ │ ├── ctype_ucs2_query_cache.result │ │ │ │ │ ├── ctype_ucs2_uca.result │ │ │ │ │ ├── ctype_ujis.result │ │ │ │ │ ├── ctype_ujis_ucs2.result │ │ │ │ │ ├── ctype_upgrade.result │ │ │ │ │ ├── ctype_utf16.result │ │ │ │ │ ├── ctype_utf16_def.result │ │ │ │ │ ├── ctype_utf16_uca.result │ │ │ │ │ ├── ctype_utf16le.result │ │ │ │ │ ├── ctype_utf32.result │ │ │ │ │ ├── ctype_utf32_def.result │ │ │ │ │ ├── ctype_utf32_uca.result │ │ │ │ │ ├── ctype_utf8.result │ │ │ │ │ ├── ctype_utf8_def_upgrade.result │ │ │ │ │ ├── ctype_utf8_uca.result │ │ │ │ │ ├── ctype_utf8mb4.result │ │ │ │ │ ├── ctype_utf8mb4_heap.result │ │ │ │ │ ├── ctype_utf8mb4_innodb.result │ │ │ │ │ ├── ctype_utf8mb4_myisam.result │ │ │ │ │ ├── ctype_utf8mb4_uca.result │ │ │ │ │ ├── custom_aggregate_functions.result │ │ │ │ │ ├── custom_aggregates_i_s.result │ │ │ │ │ ├── date_formats.result │ │ │ │ │ ├── datetime_456.result │ │ │ │ │ ├── ddl_i18n_koi8r.result │ │ │ │ │ ├── ddl_i18n_utf8.result │ │ │ │ │ ├── deadlock_ftwrl.result │ │ │ │ │ ├── deadlock_innodb.result │ │ │ │ │ ├── debug_sync.result │ │ │ │ │ ├── default.result │ │ │ │ │ ├── default_debug.result │ │ │ │ │ ├── default_session.result │ │ │ │ │ ├── default_storage_engine.result │ │ │ │ │ ├── delayed.result │ │ │ │ │ ├── delayed_blob.result │ │ │ │ │ ├── delete.result │ │ │ │ │ ├── delete_innodb.result │ │ │ │ │ ├── delete_returning.result │ │ │ │ │ ├── delete_returning_grant.result │ │ │ │ │ ├── delete_use_source.result │ │ │ │ │ ├── delimiter_command_case_sensitivity.result │ │ │ │ │ ├── deprecated_features.result │ │ │ │ │ ├── derived.result │ │ │ │ │ ├── derived_cond_pushdown.result │ │ │ │ │ ├── derived_opt.result │ │ │ │ │ ├── derived_split_innodb.result │ │ │ │ │ ├── derived_view.result │ │ │ │ │ ├── dirty_close.result │ │ │ │ │ ├── distinct.result │ │ │ │ │ ├── drop.result │ │ │ │ │ ├── drop_bad_db_type.result │ │ │ │ │ ├── drop_combinations.result │ │ │ │ │ ├── drop_table_force.result │ │ │ │ │ ├── dyncol.result │ │ │ │ │ ├── empty_server_name-8224.result │ │ │ │ │ ├── empty_string_literal.result │ │ │ │ │ ├── empty_table.result │ │ │ │ │ ├── empty_user_table.result │ │ │ │ │ ├── endspace.result │ │ │ │ │ ├── enforce_storage_engine.result │ │ │ │ │ ├── enforce_storage_engine_opt.result │ │ │ │ │ ├── engine_error_in_alter-8453.result │ │ │ │ │ ├── error_simulation.result │ │ │ │ │ ├── errors.result │ │ │ │ │ ├── events_1.result │ │ │ │ │ ├── events_2.result │ │ │ │ │ ├── events_bugs.result │ │ │ │ │ ├── events_embedded.result │ │ │ │ │ ├── events_grant.result │ │ │ │ │ ├── events_logs_tests.result │ │ │ │ │ ├── events_microsec.result │ │ │ │ │ ├── events_restart.result │ │ │ │ │ ├── events_scheduling.result │ │ │ │ │ ├── events_slowlog.result │ │ │ │ │ ├── events_stress.result │ │ │ │ │ ├── events_time_zone.result │ │ │ │ │ ├── events_trans.result │ │ │ │ │ ├── events_trans_notembedded.result │ │ │ │ │ ├── except.result │ │ │ │ │ ├── except_all.result │ │ │ │ │ ├── execution_constants.result │ │ │ │ │ ├── explain.result │ │ │ │ │ ├── explain_json.result │ │ │ │ │ ├── explain_json_format_partitions.result │ │ │ │ │ ├── explain_json_innodb.result │ │ │ │ │ ├── explain_non_select.result │ │ │ │ │ ├── explain_slowquerylog.result │ │ │ │ │ ├── ext_key_noPK_6794.result │ │ │ │ │ ├── failed_auth_3909.result │ │ │ │ │ ├── failed_auth_unixsocket.result │ │ │ │ │ ├── fast_prefix_index_fetch_innodb.result │ │ │ │ │ ├── features,ps.rdiff │ │ │ │ │ ├── features.result │ │ │ │ │ ├── fetch_first.result │ │ │ │ │ ├── file_contents.result │ │ │ │ │ ├── filesort_bad_i_s-7585.result │ │ │ │ │ ├── filesort_debug.result │ │ │ │ │ ├── fix_priv_tables.result │ │ │ │ │ ├── flush-innodb-notembedded.result │ │ │ │ │ ├── flush-innodb.result │ │ │ │ │ ├── flush.result │ │ │ │ │ ├── flush2.result │ │ │ │ │ ├── flush_and_binlog.result │ │ │ │ │ ├── flush_block_commit.result │ │ │ │ │ ├── flush_block_commit_notembedded.result │ │ │ │ │ ├── flush_logs_not_windows.result │ │ │ │ │ ├── flush_notembedded.result │ │ │ │ │ ├── flush_read_lock.result │ │ │ │ │ ├── flush_read_lock_kill.result │ │ │ │ │ ├── flush_ssl.result │ │ │ │ │ ├── flush_table.result │ │ │ │ │ ├── foreign_key.result │ │ │ │ │ ├── frm-debug.result │ │ │ │ │ ├── frm_bad_row_type-7333.result │ │ │ │ │ ├── fulltext.result │ │ │ │ │ ├── fulltext2.result │ │ │ │ │ ├── fulltext3.result │ │ │ │ │ ├── fulltext_cache.result │ │ │ │ │ ├── fulltext_charsets.result │ │ │ │ │ ├── fulltext_derived_4257.result │ │ │ │ │ ├── fulltext_derived_4316.result │ │ │ │ │ ├── fulltext_distinct.result │ │ │ │ │ ├── fulltext_left_join.result │ │ │ │ │ ├── fulltext_multi.result │ │ │ │ │ ├── fulltext_order_by.result │ │ │ │ │ ├── fulltext_update.result │ │ │ │ │ ├── fulltext_var.result │ │ │ │ │ ├── func_analyse.result │ │ │ │ │ ├── func_bit.result │ │ │ │ │ ├── func_compress.result │ │ │ │ │ ├── func_concat.result │ │ │ │ │ ├── func_crypt.result │ │ │ │ │ ├── func_date_add.result │ │ │ │ │ ├── func_debug.result │ │ │ │ │ ├── func_default.result │ │ │ │ │ ├── func_des_encrypt.result │ │ │ │ │ ├── func_digest.result │ │ │ │ │ ├── func_encrypt.result │ │ │ │ │ ├── func_encrypt_nossl.result │ │ │ │ │ ├── func_encrypt_ucs2.result │ │ │ │ │ ├── func_equal.result │ │ │ │ │ ├── func_extract.result │ │ │ │ │ ├── func_gconcat.result │ │ │ │ │ ├── func_group.result │ │ │ │ │ ├── func_group_innodb.result │ │ │ │ │ ├── func_hybrid_type.result │ │ │ │ │ ├── func_if.result │ │ │ │ │ ├── func_in.result │ │ │ │ │ ├── func_int.result │ │ │ │ │ ├── func_isnull.result │ │ │ │ │ ├── func_json.result │ │ │ │ │ ├── func_like.result │ │ │ │ │ ├── func_math.result │ │ │ │ │ ├── func_misc.result │ │ │ │ │ ├── func_op.result │ │ │ │ │ ├── func_regexp.result │ │ │ │ │ ├── func_regexp_pcre.result │ │ │ │ │ ├── func_regexp_pcre_debug.result │ │ │ │ │ ├── func_rollback.result │ │ │ │ │ ├── func_sapdb.result │ │ │ │ │ ├── func_set.result │ │ │ │ │ ├── func_str.result │ │ │ │ │ ├── func_system.result │ │ │ │ │ ├── func_test.result │ │ │ │ │ ├── func_time.result │ │ │ │ │ ├── func_time_hires.result │ │ │ │ │ ├── func_time_round.result │ │ │ │ │ ├── func_timestamp.result │ │ │ │ │ ├── func_weight_string.result │ │ │ │ │ ├── function_defaults.result │ │ │ │ │ ├── function_defaults_innodb.result │ │ │ │ │ ├── function_defaults_notembedded.result │ │ │ │ │ ├── gcc296.result │ │ │ │ │ ├── get_diagnostics.result │ │ │ │ │ ├── gis-alter_table_online.result │ │ │ │ │ ├── gis-debug.result │ │ │ │ │ ├── gis-json.result │ │ │ │ │ ├── gis-loaddata.result │ │ │ │ │ ├── gis-precise.result │ │ │ │ │ ├── gis-rt-precise.result │ │ │ │ │ ├── gis-rtree.result │ │ │ │ │ ├── gis.result │ │ │ │ │ ├── gis_notembedded.result │ │ │ │ │ ├── grant.result │ │ │ │ │ ├── grant2.result │ │ │ │ │ ├── grant3.result │ │ │ │ │ ├── grant4.result │ │ │ │ │ ├── grant5.result │ │ │ │ │ ├── grant_4332.result │ │ │ │ │ ├── grant_binlog_replay.result │ │ │ │ │ ├── grant_cache_no_prot.result │ │ │ │ │ ├── grant_cache_ps_prot.result │ │ │ │ │ ├── grant_explain_non_select.result │ │ │ │ │ ├── grant_kill.result │ │ │ │ │ ├── grant_lowercase.result │ │ │ │ │ ├── grant_lowercase_fs.result │ │ │ │ │ ├── grant_master_admin.result │ │ │ │ │ ├── grant_not_windows.result │ │ │ │ │ ├── grant_read_only.result │ │ │ │ │ ├── grant_repair.result │ │ │ │ │ ├── grant_server.result │ │ │ │ │ ├── grant_slave_admin.result │ │ │ │ │ ├── grant_slave_monitor.result │ │ │ │ │ ├── greedy_optimizer.result │ │ │ │ │ ├── group_by.result │ │ │ │ │ ├── group_by_innodb.result │ │ │ │ │ ├── group_by_null.result │ │ │ │ │ ├── group_min_max.result │ │ │ │ │ ├── group_min_max_innodb.result │ │ │ │ │ ├── handler_read_last.result │ │ │ │ │ ├── handlersocket.result │ │ │ │ │ ├── having.result │ │ │ │ │ ├── having_cond_pushdown.result │ │ │ │ │ ├── help.result │ │ │ │ │ ├── host_cache_size_functionality.result │ │ │ │ │ ├── huge_frm-6224.result │ │ │ │ │ ├── ignored_index.result │ │ │ │ │ ├── ignored_index_innodb.result │ │ │ │ │ ├── implicit_char_to_num_conversion.result │ │ │ │ │ ├── implicit_commit.result │ │ │ │ │ ├── in_datetime_241.result │ │ │ │ │ ├── in_subq_cond_pushdown.result │ │ │ │ │ ├── index_intersect.result │ │ │ │ │ ├── index_intersect_innodb.result │ │ │ │ │ ├── index_merge_innodb.result │ │ │ │ │ ├── index_merge_myisam.result │ │ │ │ │ ├── information_schema-big.result │ │ │ │ │ ├── information_schema.result │ │ │ │ │ ├── information_schema2.result │ │ │ │ │ ├── information_schema_all_engines.result │ │ │ │ │ ├── information_schema_chmod.result │ │ │ │ │ ├── information_schema_db.result │ │ │ │ │ ├── information_schema_inno.result │ │ │ │ │ ├── information_schema_linux.result │ │ │ │ │ ├── information_schema_parameters.result │ │ │ │ │ ├── information_schema_part.result │ │ │ │ │ ├── information_schema_prepare.result │ │ │ │ │ ├── information_schema_routines.result │ │ │ │ │ ├── information_schema_stats.result │ │ │ │ │ ├── init_connect.result │ │ │ │ │ ├── init_connection_query_cache.result │ │ │ │ │ ├── init_file.result │ │ │ │ │ ├── init_file_longline_3816.result │ │ │ │ │ ├── init_file_set_password-7656.result │ │ │ │ │ ├── innodb_bug878769.result │ │ │ │ │ ├── innodb_ext_key,off.rdiff │ │ │ │ │ ├── innodb_ext_key.result │ │ │ │ │ ├── innodb_group.result │ │ │ │ │ ├── innodb_icp.result │ │ │ │ │ ├── innodb_icp_debug.result │ │ │ │ │ ├── innodb_ignore_builtin.result │ │ │ │ │ ├── innodb_load_xa.result │ │ │ │ │ ├── innodb_mrr_cpk.result │ │ │ │ │ ├── innodb_mysql_lock.result │ │ │ │ │ ├── innodb_mysql_lock2.result │ │ │ │ │ ├── innodb_mysql_sync.result │ │ │ │ │ ├── innodb_utf8.result │ │ │ │ │ ├── insert.result │ │ │ │ │ ├── insert_debug.result │ │ │ │ │ ├── insert_innodb.result │ │ │ │ │ ├── insert_notembedded.result │ │ │ │ │ ├── insert_returning.result │ │ │ │ │ ├── insert_returning_datatypes.result │ │ │ │ │ ├── insert_select.result │ │ │ │ │ ├── insert_update.result │ │ │ │ │ ├── insert_update_autoinc-7150.result │ │ │ │ │ ├── intersect.result │ │ │ │ │ ├── intersect_all.result │ │ │ │ │ ├── invisible_binlog.result │ │ │ │ │ ├── invisible_field.result │ │ │ │ │ ├── invisible_field_debug.result │ │ │ │ │ ├── invisible_field_grant_completely.result │ │ │ │ │ ├── invisible_field_grant_system.result │ │ │ │ │ ├── invisible_partition.result │ │ │ │ │ ├── ipv4_and_ipv6.result │ │ │ │ │ ├── ipv4_as_ipv6.result │ │ │ │ │ ├── ipv6.result │ │ │ │ │ ├── join.result │ │ │ │ │ ├── join_cache.result │ │ │ │ │ ├── join_crash.result │ │ │ │ │ ├── join_nested.result │ │ │ │ │ ├── join_nested_jcl6.result │ │ │ │ │ ├── join_optimizer.result │ │ │ │ │ ├── join_outer.result │ │ │ │ │ ├── join_outer_innodb.result │ │ │ │ │ ├── join_outer_jcl6.result │ │ │ │ │ ├── key.result │ │ │ │ │ ├── key_cache.result │ │ │ │ │ ├── key_diff.result │ │ │ │ │ ├── key_primary.result │ │ │ │ │ ├── keyread.result │ │ │ │ │ ├── keywords.result │ │ │ │ │ ├── kill-2.result │ │ │ │ │ ├── kill.result │ │ │ │ │ ├── kill_processlist-6619.result │ │ │ │ │ ├── kill_query-6728.result │ │ │ │ │ ├── large_pages.result │ │ │ │ │ ├── last_value.result │ │ │ │ │ ├── limit.result │ │ │ │ │ ├── limit_rows_examined.result │ │ │ │ │ ├── loaddata.result │ │ │ │ │ ├── loaddata_autocom_innodb.result │ │ │ │ │ ├── loadxml.result │ │ │ │ │ ├── locale.result │ │ │ │ │ ├── lock.result │ │ │ │ │ ├── lock_kill.result │ │ │ │ │ ├── lock_multi.result │ │ │ │ │ ├── lock_multi_bug38499.result │ │ │ │ │ ├── lock_multi_bug38691.result │ │ │ │ │ ├── lock_sync.result │ │ │ │ │ ├── lock_tables_lost_commit.result │ │ │ │ │ ├── lock_user.result │ │ │ │ │ ├── lock_view.result │ │ │ │ │ ├── locked_temporary-5955.result │ │ │ │ │ ├── locking_clause.result │ │ │ │ │ ├── log_errchk.result │ │ │ │ │ ├── log_slow.result │ │ │ │ │ ├── log_slow_debug.result │ │ │ │ │ ├── log_state.result │ │ │ │ │ ├── log_state_bug33693.result │ │ │ │ │ ├── log_tables-big.result │ │ │ │ │ ├── log_tables.result │ │ │ │ │ ├── log_tables_debug.result │ │ │ │ │ ├── log_tables_upgrade.result │ │ │ │ │ ├── long_host.result │ │ │ │ │ ├── long_tmpdir.result │ │ │ │ │ ├── long_unique.result │ │ │ │ │ ├── long_unique_bugs.result │ │ │ │ │ ├── long_unique_bugs_replication.result │ │ │ │ │ ├── long_unique_debug.result │ │ │ │ │ ├── long_unique_delayed.result │ │ │ │ │ ├── long_unique_innodb.result │ │ │ │ │ ├── long_unique_update.result │ │ │ │ │ ├── long_unique_using_hash.result │ │ │ │ │ ├── lowercase_fs_off.result │ │ │ │ │ ├── lowercase_fs_on.result │ │ │ │ │ ├── lowercase_mixed_tmpdir.result │ │ │ │ │ ├── lowercase_mixed_tmpdir_innodb.result │ │ │ │ │ ├── lowercase_table.result │ │ │ │ │ ├── lowercase_table2.result │ │ │ │ │ ├── lowercase_table4.result │ │ │ │ │ ├── lowercase_table5.result │ │ │ │ │ ├── lowercase_table_grant.result │ │ │ │ │ ├── lowercase_table_qcache.result │ │ │ │ │ ├── lowercase_utf8.result │ │ │ │ │ ├── lowercase_view.result │ │ │ │ │ ├── max_password_errors.result │ │ │ │ │ ├── max_statement_time.result │ │ │ │ │ ├── mdev-21101.result │ │ │ │ │ ├── mdev13607.result │ │ │ │ │ ├── mdev19198.result │ │ │ │ │ ├── mdev316.result │ │ │ │ │ ├── mdev375.result │ │ │ │ │ ├── mdev6830.result │ │ │ │ │ ├── mdev_14586.result │ │ │ │ │ ├── mdev_19276.result │ │ │ │ │ ├── mdev_22370.result │ │ │ │ │ ├── mdl.result │ │ │ │ │ ├── mdl_sync.result │ │ │ │ │ ├── merge-big.result │ │ │ │ │ ├── merge.result │ │ │ │ │ ├── merge_debug.result │ │ │ │ │ ├── merge_innodb.result │ │ │ │ │ ├── merge_mmap.result │ │ │ │ │ ├── metadata.result │ │ │ │ │ ├── mix2_myisam.result │ │ │ │ │ ├── mix2_myisam_ucs2.result │ │ │ │ │ ├── mrr_derived_crash_4610.result │ │ │ │ │ ├── mrr_icp_extra.result │ │ │ │ │ ├── multi_statement.result │ │ │ │ │ ├── multi_update.result │ │ │ │ │ ├── multi_update_big.result │ │ │ │ │ ├── multi_update_binlog.result │ │ │ │ │ ├── multi_update_debug.result │ │ │ │ │ ├── multi_update_innodb.result │ │ │ │ │ ├── multi_update_tiny_hash.result │ │ │ │ │ ├── my_print_defaults.result │ │ │ │ │ ├── myisam-big.result │ │ │ │ │ ├── myisam-blob.result │ │ │ │ │ ├── myisam-optimize.result │ │ │ │ │ ├── myisam-system.result │ │ │ │ │ ├── myisam.result │ │ │ │ │ ├── myisam_crash_before_flush_keys.result │ │ │ │ │ ├── myisam_debug.result │ │ │ │ │ ├── myisam_enable_keys-10506.result │ │ │ │ │ ├── myisam_explain_non_select_all.result │ │ │ │ │ ├── myisam_icp.result │ │ │ │ │ ├── myisam_icp_debug.result │ │ │ │ │ ├── myisam_icp_notembedded.result │ │ │ │ │ ├── myisam_mrr,32bit.rdiff │ │ │ │ │ ├── myisam_mrr.result │ │ │ │ │ ├── myisam_optimize.result │ │ │ │ │ ├── myisam_recover.result │ │ │ │ │ ├── myisampack.result │ │ │ │ │ ├── mysql-bug41486.result │ │ │ │ │ ├── mysql-bug45236.result │ │ │ │ │ ├── mysql-metadata.result │ │ │ │ │ ├── mysql.result │ │ │ │ │ ├── mysql5613mysql.result │ │ │ │ │ ├── mysql57_virtual.result │ │ │ │ │ ├── mysql_binary_mode.result │ │ │ │ │ ├── mysql_binary_zero_insert.result │ │ │ │ │ ├── mysql_client_test.result │ │ │ │ │ ├── mysql_client_test_comp.result │ │ │ │ │ ├── mysql_client_test_nonblock.result │ │ │ │ │ ├── mysql_comments.result │ │ │ │ │ ├── mysql_cp932.result │ │ │ │ │ ├── mysql_embedded.result │ │ │ │ │ ├── mysql_install_db_win.result │ │ │ │ │ ├── mysql_json_mysql_upgrade.result │ │ │ │ │ ├── mysql_json_mysql_upgrade_with_plugin_loaded.result │ │ │ │ │ ├── mysql_json_table_recreate.result │ │ │ │ │ ├── mysql_locale_posix.result │ │ │ │ │ ├── mysql_not_windows.result │ │ │ │ │ ├── mysql_protocols.result │ │ │ │ │ ├── mysql_tzinfo_to_sql_symlink.result │ │ │ │ │ ├── mysql_upgrade-20228.result │ │ │ │ │ ├── mysql_upgrade-6984.result │ │ │ │ │ ├── mysql_upgrade.result │ │ │ │ │ ├── mysql_upgrade_mysql_json_datatype.result │ │ │ │ │ ├── mysql_upgrade_no_innodb.result │ │ │ │ │ ├── mysql_upgrade_noengine.result │ │ │ │ │ ├── mysql_upgrade_ssl.result │ │ │ │ │ ├── mysql_upgrade_to_100502.result │ │ │ │ │ ├── mysql_upgrade_view.result │ │ │ │ │ ├── mysqladmin.result │ │ │ │ │ ├── mysqlbinlog-innodb.result │ │ │ │ │ ├── mysqlbinlog.result │ │ │ │ │ ├── mysqlbinlog_raw_mode.result │ │ │ │ │ ├── mysqlbinlog_row_big.result │ │ │ │ │ ├── mysqlbinlog_row_compressed.result │ │ │ │ │ ├── mysqlbinlog_row_minimal.result │ │ │ │ │ ├── mysqlbinlog_stmt_compressed.result │ │ │ │ │ ├── mysqlcheck.result │ │ │ │ │ ├── mysqld--defaults-file.result │ │ │ │ │ ├── mysqld--help,aix.rdiff │ │ │ │ │ ├── mysqld--help,win.rdiff │ │ │ │ │ ├── mysqld--help-aria.result │ │ │ │ │ ├── mysqld--help.result │ │ │ │ │ ├── mysqld_help_crash-9183.result │ │ │ │ │ ├── mysqld_option_err.result │ │ │ │ │ ├── mysqldump-compat-102.result │ │ │ │ │ ├── mysqldump-compat.result │ │ │ │ │ ├── mysqldump-max.result │ │ │ │ │ ├── mysqldump-nl.result │ │ │ │ │ ├── mysqldump-no-binlog.result │ │ │ │ │ ├── mysqldump-system,win.rdiff │ │ │ │ │ ├── mysqldump-system.result │ │ │ │ │ ├── mysqldump-utf8mb4.result │ │ │ │ │ ├── mysqldump.result │ │ │ │ │ ├── mysqldump_restore.result │ │ │ │ │ ├── mysqlhotcopy_myisam.result │ │ │ │ │ ├── mysqlshow.result │ │ │ │ │ ├── mysqlslap.result │ │ │ │ │ ├── mysqltest.result │ │ │ │ │ ├── mysqltest_256.result │ │ │ │ │ ├── mysqltest_cont_on_error.result │ │ │ │ │ ├── mysqltest_ps.result │ │ │ │ │ ├── mysqltest_tracking_info.result │ │ │ │ │ ├── named_pipe.result │ │ │ │ │ ├── negation_elimination.result │ │ │ │ │ ├── nested_profiling.result │ │ │ │ │ ├── no-threads.result │ │ │ │ │ ├── no_binlog.result │ │ │ │ │ ├── non_blocking_api.result │ │ │ │ │ ├── not_embedded_server.result │ │ │ │ │ ├── not_partition.result │ │ │ │ │ ├── null.result │ │ │ │ │ ├── null_key.result │ │ │ │ │ ├── odbc.result │ │ │ │ │ ├── olap.result │ │ │ │ │ ├── old-mode.result │ │ │ │ │ ├── openssl_1.result │ │ │ │ │ ├── openssl_6975,tlsv10.result │ │ │ │ │ ├── openssl_6975,tlsv12.result │ │ │ │ │ ├── opt_trace,ps.rdiff │ │ │ │ │ ├── opt_trace.result │ │ │ │ │ ├── opt_trace_index_merge.result │ │ │ │ │ ├── opt_trace_index_merge_innodb.result │ │ │ │ │ ├── opt_trace_security.result │ │ │ │ │ ├── opt_trace_ucs2.result │ │ │ │ │ ├── opt_tvc.result │ │ │ │ │ ├── order_by-mdev-10122.result │ │ │ │ │ ├── order_by.result │ │ │ │ │ ├── order_by_innodb.result │ │ │ │ │ ├── order_by_optimizer.result │ │ │ │ │ ├── order_by_optimizer_innodb.result │ │ │ │ │ ├── order_by_pack_big.result │ │ │ │ │ ├── order_by_sortkey.result │ │ │ │ │ ├── order_by_zerolength-4285.result │ │ │ │ │ ├── order_fill_sortbuf.result │ │ │ │ │ ├── outfile.result │ │ │ │ │ ├── outfile_loaddata.result │ │ │ │ │ ├── overflow.result │ │ │ │ │ ├── packet.result │ │ │ │ │ ├── parser.result │ │ │ │ │ ├── parser_bug21114_innodb.result │ │ │ │ │ ├── parser_not_embedded.result │ │ │ │ │ ├── parser_stack.result │ │ │ │ │ ├── partition.result │ │ │ │ │ ├── partition_alter.result │ │ │ │ │ ├── partition_binlog.result │ │ │ │ │ ├── partition_binlog_stmt.result │ │ │ │ │ ├── partition_blackhole.result │ │ │ │ │ ├── partition_bug18198.result │ │ │ │ │ ├── partition_cache.result │ │ │ │ │ ├── partition_cache_innodb.result │ │ │ │ │ ├── partition_cache_myisam.result │ │ │ │ │ ├── partition_charset.result │ │ │ │ │ ├── partition_column.result │ │ │ │ │ ├── partition_column_prune.result │ │ │ │ │ ├── partition_csv.result │ │ │ │ │ ├── partition_datatype.result │ │ │ │ │ ├── partition_debug_sync.result │ │ │ │ │ ├── partition_default.result │ │ │ │ │ ├── partition_disabled.result │ │ │ │ │ ├── partition_error.result │ │ │ │ │ ├── partition_example.result │ │ │ │ │ ├── partition_exchange.result │ │ │ │ │ ├── partition_explicit_prune.result │ │ │ │ │ ├── partition_grant.result │ │ │ │ │ ├── partition_hash.result │ │ │ │ │ ├── partition_innodb.result │ │ │ │ │ ├── partition_innodb_plugin.result │ │ │ │ │ ├── partition_innodb_semi_consistent.result │ │ │ │ │ ├── partition_innodb_stmt.result │ │ │ │ │ ├── partition_key_cache.result │ │ │ │ │ ├── partition_list.result │ │ │ │ │ ├── partition_mgm.result │ │ │ │ │ ├── partition_mgm_err.result │ │ │ │ │ ├── partition_mgm_err2.result │ │ │ │ │ ├── partition_mrr_aria.result │ │ │ │ │ ├── partition_mrr_innodb.result │ │ │ │ │ ├── partition_mrr_myisam.result │ │ │ │ │ ├── partition_myisam.result │ │ │ │ │ ├── partition_not_blackhole.result │ │ │ │ │ ├── partition_not_windows.result │ │ │ │ │ ├── partition_open_files_limit.result │ │ │ │ │ ├── partition_order.result │ │ │ │ │ ├── partition_pruning.result │ │ │ │ │ ├── partition_range.result │ │ │ │ │ ├── partition_rename_longfilename.result │ │ │ │ │ ├── partition_symlink.result │ │ │ │ │ ├── partition_sync.result │ │ │ │ │ ├── partition_truncate.result │ │ │ │ │ ├── partition_ucs2.result │ │ │ │ │ ├── partition_utf8-debug.result │ │ │ │ │ ├── partition_utf8.result │ │ │ │ │ ├── partition_windows.result │ │ │ │ │ ├── password_expiration.result │ │ │ │ │ ├── password_expiration_unix_socket.result │ │ │ │ │ ├── percona_nonflushing_analyze_debug.result │ │ │ │ │ ├── perror-win.result │ │ │ │ │ ├── perror.result │ │ │ │ │ ├── plugin.result │ │ │ │ │ ├── plugin_auth.result │ │ │ │ │ ├── plugin_auth_qa.result │ │ │ │ │ ├── plugin_auth_qa_1.result │ │ │ │ │ ├── plugin_auth_qa_2.result │ │ │ │ │ ├── plugin_auth_qa_3.result │ │ │ │ │ ├── plugin_innodb.result │ │ │ │ │ ├── plugin_load.result │ │ │ │ │ ├── plugin_load_option.result │ │ │ │ │ ├── plugin_loaderr.result │ │ │ │ │ ├── plugin_maturity.result │ │ │ │ │ ├── plugin_not_embedded.result │ │ │ │ │ ├── plugin_vars.result │ │ │ │ │ ├── pool_of_threads.result │ │ │ │ │ ├── precedence.result │ │ │ │ │ ├── precedence_bugs.result │ │ │ │ │ ├── preload.result │ │ │ │ │ ├── prepare.result │ │ │ │ │ ├── processlist.result │ │ │ │ │ ├── processlist_notembedded.result │ │ │ │ │ ├── profiling.result │ │ │ │ │ ├── progress_976225.result │ │ │ │ │ ├── ps.result │ │ │ │ │ ├── ps_10nestset.result │ │ │ │ │ ├── ps_11bugs.result │ │ │ │ │ ├── ps_1general.result │ │ │ │ │ ├── ps_2myisam.result │ │ │ │ │ ├── ps_3innodb.result │ │ │ │ │ ├── ps_4heap.result │ │ │ │ │ ├── ps_5merge.result │ │ │ │ │ ├── ps_change_master.result │ │ │ │ │ ├── ps_ddl.result │ │ │ │ │ ├── ps_ddl1.result │ │ │ │ │ ├── ps_error.result │ │ │ │ │ ├── ps_grant.result │ │ │ │ │ ├── ps_innodb.result │ │ │ │ │ ├── ps_max_subselect-5113.result │ │ │ │ │ ├── ps_missed_cmds.result │ │ │ │ │ ├── ps_missed_cmds_bin_prot.result │ │ │ │ │ ├── ps_missed_cmds_bin_prot_not_embedded.result │ │ │ │ │ ├── ps_missed_cmds_not_embedded.result │ │ │ │ │ ├── ps_not_windows.result │ │ │ │ │ ├── ps_qc_innodb.result │ │ │ │ │ ├── ps_show_log.result │ │ │ │ │ ├── query_cache.result │ │ │ │ │ ├── query_cache_28249.result │ │ │ │ │ ├── query_cache_debug.result │ │ │ │ │ ├── query_cache_innodb.result │ │ │ │ │ ├── query_cache_merge.result │ │ │ │ │ ├── query_cache_notembedded.result │ │ │ │ │ ├── query_cache_ps_no_prot.result │ │ │ │ │ ├── query_cache_ps_ps_prot.result │ │ │ │ │ ├── query_cache_with_views.result │ │ │ │ │ ├── quick_select_4161.result │ │ │ │ │ ├── range.result │ │ │ │ │ ├── range_debug.result │ │ │ │ │ ├── range_innodb.result │ │ │ │ │ ├── range_interrupted-13751.result │ │ │ │ │ ├── range_mrr_icp.result │ │ │ │ │ ├── range_notembedded.result │ │ │ │ │ ├── range_vs_index_merge.result │ │ │ │ │ ├── range_vs_index_merge_innodb.result │ │ │ │ │ ├── read_many_rows_innodb.result │ │ │ │ │ ├── read_only.result │ │ │ │ │ ├── read_only_innodb.result │ │ │ │ │ ├── rename.result │ │ │ │ │ ├── renamedb.result │ │ │ │ │ ├── reopen_temp_table.result │ │ │ │ │ ├── repair.result │ │ │ │ │ ├── repair_symlink-5543.result │ │ │ │ │ ├── replace.result │ │ │ │ │ ├── replace_returning.result │ │ │ │ │ ├── replace_returning_datatypes.result │ │ │ │ │ ├── replace_returning_err.result │ │ │ │ │ ├── require_secure_transport.result │ │ │ │ │ ├── reset_connection.result │ │ │ │ │ ├── rollback.result │ │ │ │ │ ├── round.result │ │ │ │ │ ├── row-checksum-old.result │ │ │ │ │ ├── row-checksum.result │ │ │ │ │ ├── row.result │ │ │ │ │ ├── rowid_filter.result │ │ │ │ │ ├── rowid_filter_innodb.result │ │ │ │ │ ├── rowid_filter_innodb_debug.result │ │ │ │ │ ├── rowid_filter_myisam.result │ │ │ │ │ ├── rowid_filter_myisam_debug.result │ │ │ │ │ ├── rowid_order_innodb.result │ │ │ │ │ ├── rownum.result │ │ │ │ │ ├── rpl_mysql_upgrade_slave_repo_check.result │ │ │ │ │ ├── rpl_mysqldump_slave.result │ │ │ │ │ ├── schema.result │ │ │ │ │ ├── second_frac-9175.result │ │ │ │ │ ├── secure_file_priv_win.result │ │ │ │ │ ├── select.result │ │ │ │ │ ├── select_debug.result │ │ │ │ │ ├── select_found.result │ │ │ │ │ ├── select_jcl6.result │ │ │ │ │ ├── select_pkeycache.result │ │ │ │ │ ├── select_safe.result │ │ │ │ │ ├── selectivity.result │ │ │ │ │ ├── selectivity_innodb.result │ │ │ │ │ ├── selectivity_no_engine.result │ │ │ │ │ ├── servers.result │ │ │ │ │ ├── session_tracker_last_gtid.result │ │ │ │ │ ├── set_operation.result │ │ │ │ │ ├── set_operation_oracle.result │ │ │ │ │ ├── set_password.result │ │ │ │ │ ├── set_statement.result │ │ │ │ │ ├── set_statement_debug.result │ │ │ │ │ ├── set_statement_notembedded.result │ │ │ │ │ ├── set_statement_notembedded_binlog.result │ │ │ │ │ ├── set_statement_profiling.result │ │ │ │ │ ├── show.result │ │ │ │ │ ├── show_bad_definer-5553.result │ │ │ │ │ ├── show_check.result │ │ │ │ │ ├── show_create_user.result │ │ │ │ │ ├── show_explain.result │ │ │ │ │ ├── show_explain_non_select.result │ │ │ │ │ ├── show_explain_ps.result │ │ │ │ │ ├── show_function_with_pad_char_to_full_length.result │ │ │ │ │ ├── show_profile.result │ │ │ │ │ ├── show_row_order-9226.result │ │ │ │ │ ├── shutdown.result │ │ │ │ │ ├── shutdown_not_windows.result │ │ │ │ │ ├── sighup-6580.result │ │ │ │ │ ├── signal.result │ │ │ │ │ ├── signal_code.result │ │ │ │ │ ├── signal_demo1.result │ │ │ │ │ ├── signal_demo2.result │ │ │ │ │ ├── signal_demo3.result │ │ │ │ │ ├── signal_sqlmode.result │ │ │ │ │ ├── simultaneous_assignment.result │ │ │ │ │ ├── single_delete_update.result │ │ │ │ │ ├── single_delete_update_innodb.result │ │ │ │ │ ├── skip_grants.result │ │ │ │ │ ├── skip_log_bin.result │ │ │ │ │ ├── skip_name_resolve.result │ │ │ │ │ ├── slowlog_enospace-10508.result │ │ │ │ │ ├── sp-anchor-row-type-cursor.result │ │ │ │ │ ├── sp-anchor-row-type-table.result │ │ │ │ │ ├── sp-anchor-type.result │ │ │ │ │ ├── sp-big.result │ │ │ │ │ ├── sp-bugs.result │ │ │ │ │ ├── sp-bugs2.result │ │ │ │ │ ├── sp-code.result │ │ │ │ │ ├── sp-condition-handler.result │ │ │ │ │ ├── sp-cursor.result │ │ │ │ │ ├── sp-destruct.result │ │ │ │ │ ├── sp-dynamic.result │ │ │ │ │ ├── sp-error.result │ │ │ │ │ ├── sp-expr.result │ │ │ │ │ ├── sp-fib.result │ │ │ │ │ ├── sp-for-loop.result │ │ │ │ │ ├── sp-group.result │ │ │ │ │ ├── sp-innodb.result │ │ │ │ │ ├── sp-lock.result │ │ │ │ │ ├── sp-no-code.result │ │ │ │ │ ├── sp-no-valgrind.result │ │ │ │ │ ├── sp-prelocking.result │ │ │ │ │ ├── sp-row.result │ │ │ │ │ ├── sp-security-anchor-type.result │ │ │ │ │ ├── sp-security.result │ │ │ │ │ ├── sp-threads.result │ │ │ │ │ ├── sp-ucs2.result │ │ │ │ │ ├── sp-vars.result │ │ │ │ │ ├── sp.result │ │ │ │ │ ├── sp2.result │ │ │ │ │ ├── sp_gis.result │ │ │ │ │ ├── sp_missing_4665.result │ │ │ │ │ ├── sp_notembedded.result │ │ │ │ │ ├── sp_stress_case.result │ │ │ │ │ ├── sp_sync.result │ │ │ │ │ ├── sp_trans.result │ │ │ │ │ ├── sp_trans_log.result │ │ │ │ │ ├── sql_mode.result │ │ │ │ │ ├── sql_safe_updates.result │ │ │ │ │ ├── ssl-big.result │ │ │ │ │ ├── ssl.result │ │ │ │ │ ├── ssl_7937,nossl.result │ │ │ │ │ ├── ssl_7937.result │ │ │ │ │ ├── ssl_8k_key.result │ │ │ │ │ ├── ssl_and_innodb.result │ │ │ │ │ ├── ssl_ca.result │ │ │ │ │ ├── ssl_cipher.result │ │ │ │ │ ├── ssl_compress.result │ │ │ │ │ ├── ssl_connect.result │ │ │ │ │ ├── ssl_crl.result │ │ │ │ │ ├── ssl_crl_clients.result │ │ │ │ │ ├── ssl_system_ca,bad.result │ │ │ │ │ ├── ssl_system_ca.result │ │ │ │ │ ├── ssl_timeout-9836.result │ │ │ │ │ ├── ssl_timeout.result │ │ │ │ │ ├── ssl_verify_ip.result │ │ │ │ │ ├── stack-crash.result │ │ │ │ │ ├── stat_tables-enospc.result │ │ │ │ │ ├── stat_tables.result │ │ │ │ │ ├── stat_tables_disabled.result │ │ │ │ │ ├── stat_tables_innodb.result │ │ │ │ │ ├── stat_tables_innodb_debug.result │ │ │ │ │ ├── stat_tables_missing.result │ │ │ │ │ ├── stat_tables_myisam_debug.result │ │ │ │ │ ├── stat_tables_par.result │ │ │ │ │ ├── stat_tables_par_innodb.result │ │ │ │ │ ├── stat_tables_partition.result │ │ │ │ │ ├── stat_tables_rbr.result │ │ │ │ │ ├── stat_tables_repl.result │ │ │ │ │ ├── statement-expr.result │ │ │ │ │ ├── statistics.result │ │ │ │ │ ├── statistics_close.result │ │ │ │ │ ├── statistics_index_crash-7362.result │ │ │ │ │ ├── status.result │ │ │ │ │ ├── status2.result │ │ │ │ │ ├── status_bug17954.result │ │ │ │ │ ├── str_to_datetime_457.result │ │ │ │ │ ├── strict.result │ │ │ │ │ ├── strict_autoinc_1myisam.result │ │ │ │ │ ├── strict_autoinc_2innodb.result │ │ │ │ │ ├── strict_autoinc_3heap.result │ │ │ │ │ ├── strings.result │ │ │ │ │ ├── subselect-crash_15755.result │ │ │ │ │ ├── subselect.result │ │ │ │ │ ├── subselect2.result │ │ │ │ │ ├── subselect3.result │ │ │ │ │ ├── subselect3_jcl6.result │ │ │ │ │ ├── subselect4.result │ │ │ │ │ ├── subselect_cache.result │ │ │ │ │ ├── subselect_debug.result │ │ │ │ │ ├── subselect_exists2in.result │ │ │ │ │ ├── subselect_exists2in_costmat.result │ │ │ │ │ ├── subselect_extra.result │ │ │ │ │ ├── subselect_extra_no_semijoin.result │ │ │ │ │ ├── subselect_gis.result │ │ │ │ │ ├── subselect_innodb.result │ │ │ │ │ ├── subselect_mat.result │ │ │ │ │ ├── subselect_mat_cost.result │ │ │ │ │ ├── subselect_mat_cost_bugs.result │ │ │ │ │ ├── subselect_no_exists_to_in.result │ │ │ │ │ ├── subselect_no_mat.result │ │ │ │ │ ├── subselect_no_opts.result │ │ │ │ │ ├── subselect_no_scache.result │ │ │ │ │ ├── subselect_no_semijoin.result │ │ │ │ │ ├── subselect_notembedded.result │ │ │ │ │ ├── subselect_nulls.result │ │ │ │ │ ├── subselect_partial_match.result │ │ │ │ │ ├── subselect_sj.result │ │ │ │ │ ├── subselect_sj2.result │ │ │ │ │ ├── subselect_sj2_jcl6.result │ │ │ │ │ ├── subselect_sj2_mat.result │ │ │ │ │ ├── subselect_sj_aria.result │ │ │ │ │ ├── subselect_sj_jcl6.result │ │ │ │ │ ├── subselect_sj_mat.result │ │ │ │ │ ├── subselect_sj_nonmerged.result │ │ │ │ │ ├── sum_distinct-big.result │ │ │ │ │ ├── sum_distinct.result │ │ │ │ │ ├── symlink-aria-11902.result │ │ │ │ │ ├── symlink-myisam-11902.result │ │ │ │ │ ├── symlink.result │ │ │ │ │ ├── synchronization.result │ │ │ │ │ ├── sysdate_is_now.result │ │ │ │ │ ├── system_mysql_db.result │ │ │ │ │ ├── system_mysql_db_507.result │ │ │ │ │ ├── system_mysql_db_error_log.result │ │ │ │ │ ├── system_mysql_db_fix40123.result │ │ │ │ │ ├── system_mysql_db_fix50030.result │ │ │ │ │ ├── system_mysql_db_fix50117.result │ │ │ │ │ ├── system_mysql_db_refs.result │ │ │ │ │ ├── system_time_debug.result │ │ │ │ │ ├── table_elim.result │ │ │ │ │ ├── table_elim_debug.result │ │ │ │ │ ├── table_keyinfo-6838.result │ │ │ │ │ ├── table_options-5867.result │ │ │ │ │ ├── table_options.result │ │ │ │ │ ├── table_value_constr.result │ │ │ │ │ ├── tablelock.result │ │ │ │ │ ├── tablespace.result │ │ │ │ │ ├── tc_heuristic_recover.result │ │ │ │ │ ├── temp_table.result │ │ │ │ │ ├── temp_table_frm.result │ │ │ │ │ ├── temp_table_symlink.result │ │ │ │ │ ├── temporal_literal.result │ │ │ │ │ ├── temporal_scale_4283.result │ │ │ │ │ ├── thread_id_overflow.result │ │ │ │ │ ├── thread_pool_info.result │ │ │ │ │ ├── timeout.result │ │ │ │ │ ├── timezone.result │ │ │ │ │ ├── timezone2.result │ │ │ │ │ ├── timezone3.result │ │ │ │ │ ├── timezone4.result │ │ │ │ │ ├── timezone_grant.result │ │ │ │ │ ├── tls_version.result │ │ │ │ │ ├── tls_version1.result │ │ │ │ │ ├── tmp_table_count-7586.result │ │ │ │ │ ├── trans_read_only.result │ │ │ │ │ ├── transaction_timeout.result │ │ │ │ │ ├── trigger-compat.result │ │ │ │ │ ├── trigger-trans.result │ │ │ │ │ ├── trigger.result │ │ │ │ │ ├── trigger_no_defaults-11698.result │ │ │ │ │ ├── trigger_notembedded.result │ │ │ │ │ ├── trigger_null-8605.result │ │ │ │ │ ├── trigger_wl3253.result │ │ │ │ │ ├── truncate-stale-6500.result │ │ │ │ │ ├── truncate.result │ │ │ │ │ ├── truncate_badse.result │ │ │ │ │ ├── truncate_coverage.result │ │ │ │ │ ├── truncate_notembedded.result │ │ │ │ │ ├── type_binary.result │ │ │ │ │ ├── type_bit.result │ │ │ │ │ ├── type_bit_innodb.result │ │ │ │ │ ├── type_blob.result │ │ │ │ │ ├── type_date.result │ │ │ │ │ ├── type_date_round.result │ │ │ │ │ ├── type_datetime.result │ │ │ │ │ ├── type_datetime_hires.result │ │ │ │ │ ├── type_datetime_round.result │ │ │ │ │ ├── type_decimal.result │ │ │ │ │ ├── type_enum.result │ │ │ │ │ ├── type_float.result │ │ │ │ │ ├── type_hex_hybrid.result │ │ │ │ │ ├── type_int.result │ │ │ │ │ ├── type_interval.result │ │ │ │ │ ├── type_json.result │ │ │ │ │ ├── type_nchar.result │ │ │ │ │ ├── type_newdecimal-big.result │ │ │ │ │ ├── type_newdecimal.result │ │ │ │ │ ├── type_num.result │ │ │ │ │ ├── type_num_innodb.result │ │ │ │ │ ├── type_ranges.result │ │ │ │ │ ├── type_row.result │ │ │ │ │ ├── type_set.result │ │ │ │ │ ├── type_temporal_innodb.result │ │ │ │ │ ├── type_temporal_mariadb53.result │ │ │ │ │ ├── type_temporal_mysql56.result │ │ │ │ │ ├── type_temporal_mysql56_debug.result │ │ │ │ │ ├── type_time.result │ │ │ │ │ ├── type_time_6065.result │ │ │ │ │ ├── type_time_hires.result │ │ │ │ │ ├── type_time_round.result │ │ │ │ │ ├── type_timestamp.result │ │ │ │ │ ├── type_timestamp_hires.result │ │ │ │ │ ├── type_timestamp_round.result │ │ │ │ │ ├── type_uint.result │ │ │ │ │ ├── type_varchar.result │ │ │ │ │ ├── type_varchar_mysql41.result │ │ │ │ │ ├── type_year.result │ │ │ │ │ ├── udf.result │ │ │ │ │ ├── udf_debug_sync.result │ │ │ │ │ ├── udf_notembedded.result │ │ │ │ │ ├── udf_query_cache.result │ │ │ │ │ ├── udf_skip_grants.result │ │ │ │ │ ├── union.result │ │ │ │ │ ├── union_crash-714.result │ │ │ │ │ ├── unique.result │ │ │ │ │ ├── unsafe_binlog_innodb.result │ │ │ │ │ ├── update.result │ │ │ │ │ ├── update_ignore_216.result │ │ │ │ │ ├── update_innodb.result │ │ │ │ │ ├── update_use_source.result │ │ │ │ │ ├── upgrade.result │ │ │ │ │ ├── upgrade_MDEV-19650.result │ │ │ │ │ ├── upgrade_MDEV-23102-1.result │ │ │ │ │ ├── upgrade_MDEV-23102-2.result │ │ │ │ │ ├── upgrade_mdev_24363.result │ │ │ │ │ ├── user_limits.result │ │ │ │ │ ├── user_var-binlog.result │ │ │ │ │ ├── user_var.result │ │ │ │ │ ├── userstat-badlogin-4824.result │ │ │ │ │ ├── userstat.result │ │ │ │ │ ├── varbinary.result │ │ │ │ │ ├── variables-notembedded.result │ │ │ │ │ ├── variables.result │ │ │ │ │ ├── variables_community.result │ │ │ │ │ ├── view.result │ │ │ │ │ ├── view_alias.result │ │ │ │ │ ├── view_debug.result │ │ │ │ │ ├── view_grant.result │ │ │ │ │ ├── wait_timeout.result │ │ │ │ │ ├── warnings.result │ │ │ │ │ ├── warnings_debug.result │ │ │ │ │ ├── warnings_engine_disabled.result │ │ │ │ │ ├── win.result │ │ │ │ │ ├── win_as_arg_to_aggregate_func.result │ │ │ │ │ ├── win_avg.result │ │ │ │ │ ├── win_big-mdev-10092.result │ │ │ │ │ ├── win_big-mdev-11697.result │ │ │ │ │ ├── win_big.result │ │ │ │ │ ├── win_bit.result │ │ │ │ │ ├── win_empty_over.result │ │ │ │ │ ├── win_first_last_value.result │ │ │ │ │ ├── win_i_s.result │ │ │ │ │ ├── win_insert_select.result │ │ │ │ │ ├── win_lead_lag.result │ │ │ │ │ ├── win_min_max.result │ │ │ │ │ ├── win_nth_value.result │ │ │ │ │ ├── win_ntile.result │ │ │ │ │ ├── win_orderby.result │ │ │ │ │ ├── win_percent_cume.result │ │ │ │ │ ├── win_percentile.result │ │ │ │ │ ├── win_rank.result │ │ │ │ │ ├── win_std.result │ │ │ │ │ ├── win_sum.result │ │ │ │ │ ├── windows.result │ │ │ │ │ ├── windows_debug.result │ │ │ │ │ ├── wolfssl.result │ │ │ │ │ ├── xa.result │ │ │ │ │ ├── xa_binlog.result │ │ │ │ │ ├── xa_prepared_binlog_off.result │ │ │ │ │ ├── xa_sync.result │ │ │ │ │ ├── xml.result │ │ │ │ │ └── xtradb_mrr.result │ │ │ │ └── t/ │ │ │ │ ├── 1st.test │ │ │ │ ├── aborted_clients.test │ │ │ │ ├── adddate_454.test │ │ │ │ ├── alias.test │ │ │ │ ├── almost_full.test │ │ │ │ ├── alter_events.test │ │ │ │ ├── alter_table-big.test │ │ │ │ ├── alter_table.combinations │ │ │ │ ├── alter_table.test │ │ │ │ ├── alter_table_autoinc-5574.test │ │ │ │ ├── alter_table_debug.test │ │ │ │ ├── alter_table_errors.test │ │ │ │ ├── alter_table_mdev539_maria.test │ │ │ │ ├── alter_table_mdev539_myisam.test │ │ │ │ ├── alter_table_online.test │ │ │ │ ├── alter_table_trans.test │ │ │ │ ├── alter_user.test │ │ │ │ ├── analyze.test │ │ │ │ ├── analyze_debug.test │ │ │ │ ├── analyze_format_json.test │ │ │ │ ├── analyze_stmt.test │ │ │ │ ├── analyze_stmt_orderby.test │ │ │ │ ├── analyze_stmt_privileges.test │ │ │ │ ├── analyze_stmt_privileges2.test │ │ │ │ ├── analyze_stmt_slow_query_log-master.opt │ │ │ │ ├── analyze_stmt_slow_query_log.test │ │ │ │ ├── ansi.test │ │ │ │ ├── aria_icp_debug.test │ │ │ │ ├── assign_key_cache.test │ │ │ │ ├── assign_key_cache_debug.test │ │ │ │ ├── auth_named_pipe-master.opt │ │ │ │ ├── auth_named_pipe.test │ │ │ │ ├── auth_rpl-slave.opt │ │ │ │ ├── auth_rpl.test │ │ │ │ ├── auto_increment.test │ │ │ │ ├── auto_increment_ranges.inc │ │ │ │ ├── auto_increment_ranges_innodb.test │ │ │ │ ├── auto_increment_ranges_myisam.test │ │ │ │ ├── backup_aria.test │ │ │ │ ├── backup_interaction.test │ │ │ │ ├── backup_lock.test │ │ │ │ ├── backup_lock_binlog.test │ │ │ │ ├── backup_lock_debug.test │ │ │ │ ├── backup_locks.test │ │ │ │ ├── backup_log.inc │ │ │ │ ├── backup_log.test │ │ │ │ ├── backup_priv.test │ │ │ │ ├── backup_stages.test │ │ │ │ ├── backup_syntax.test │ │ │ │ ├── bad_frm_crash_5029.test │ │ │ │ ├── bench_count_distinct.test │ │ │ │ ├── bigint.test │ │ │ │ ├── binary.test │ │ │ │ ├── binary_to_hex.test │ │ │ │ ├── bind_address_resolution.opt │ │ │ │ ├── bind_address_resolution.test │ │ │ │ ├── blackhole.test │ │ │ │ ├── blackhole_plugin.test │ │ │ │ ├── bool.test │ │ │ │ ├── bootstrap-master.opt │ │ │ │ ├── bootstrap.test │ │ │ │ ├── bootstrap_innodb.test │ │ │ │ ├── brackets.test │ │ │ │ ├── bug12427262.test │ │ │ │ ├── bug13633383.test │ │ │ │ ├── bug39022.opt │ │ │ │ ├── bug39022.test │ │ │ │ ├── bug46760-master.opt │ │ │ │ ├── bug46760.test │ │ │ │ ├── bug47671-master.opt │ │ │ │ ├── bug47671.test │ │ │ │ ├── bug58669-master.opt │ │ │ │ ├── bug58669.test │ │ │ │ ├── bulk_replace.test │ │ │ │ ├── cache_innodb.test │ │ │ │ ├── cache_temporal_4265.test │ │ │ │ ├── case.test │ │ │ │ ├── cast.test │ │ │ │ ├── change_user.test │ │ │ │ ├── change_user_notembedded.test │ │ │ │ ├── charset_client_win.test │ │ │ │ ├── check.test │ │ │ │ ├── check_constraint.test │ │ │ │ ├── check_constraint_innodb.test │ │ │ │ ├── check_constraint_show.test │ │ │ │ ├── cli_options_force_protocol_not_win.test │ │ │ │ ├── cli_options_force_protocol_win.opt │ │ │ │ ├── cli_options_force_protocol_win.test │ │ │ │ ├── client_xml.test │ │ │ │ ├── column_compression.inc │ │ │ │ ├── column_compression.test │ │ │ │ ├── column_compression_parts.test │ │ │ │ ├── column_compression_rpl.opt │ │ │ │ ├── column_compression_rpl.test │ │ │ │ ├── column_compression_utf16.test │ │ │ │ ├── comment_column.test │ │ │ │ ├── comment_column2.test │ │ │ │ ├── comment_database.test │ │ │ │ ├── comment_index.test │ │ │ │ ├── comment_table.test │ │ │ │ ├── comments.test │ │ │ │ ├── commit.opt │ │ │ │ ├── commit.test │ │ │ │ ├── commit_1innodb.test │ │ │ │ ├── compare.test │ │ │ │ ├── compound.test │ │ │ │ ├── compress.test │ │ │ │ ├── concurrent_innodb_safelog.test │ │ │ │ ├── concurrent_innodb_unsafelog.test │ │ │ │ ├── connect-abstract.cnf │ │ │ │ ├── connect-abstract.test │ │ │ │ ├── connect.cnf │ │ │ │ ├── connect.test │ │ │ │ ├── connect2.cnf │ │ │ │ ├── connect2.opt │ │ │ │ ├── connect2.test │ │ │ │ ├── connect_debug.test │ │ │ │ ├── consistent_snapshot.opt │ │ │ │ ├── consistent_snapshot.test │ │ │ │ ├── constraints.test │ │ │ │ ├── contributors.test │ │ │ │ ├── count_distinct.test │ │ │ │ ├── count_distinct2-master.opt │ │ │ │ ├── count_distinct2.test │ │ │ │ ├── count_distinct3.test │ │ │ │ ├── crash_commit_before-master.opt │ │ │ │ ├── crash_commit_before.test │ │ │ │ ├── create-big.test │ │ │ │ ├── create-uca.test │ │ │ │ ├── create.test │ │ │ │ ├── create_delayed.test │ │ │ │ ├── create_drop_binlog.test │ │ │ │ ├── create_drop_db.test │ │ │ │ ├── create_drop_event.test │ │ │ │ ├── create_drop_function.test │ │ │ │ ├── create_drop_index.test │ │ │ │ ├── create_drop_procedure.test │ │ │ │ ├── create_drop_role.test │ │ │ │ ├── create_drop_server.test │ │ │ │ ├── create_drop_trigger.test │ │ │ │ ├── create_drop_udf.test │ │ │ │ ├── create_drop_user.test │ │ │ │ ├── create_drop_view.test │ │ │ │ ├── create_not_windows.test │ │ │ │ ├── create_or_replace-master.opt │ │ │ │ ├── create_or_replace.test │ │ │ │ ├── create_or_replace2.test │ │ │ │ ├── create_or_replace_permission.test │ │ │ │ ├── create_replace_tmp.test │ │ │ │ ├── create_select_tmp.test │ │ │ │ ├── create_user.test │ │ │ │ ├── create_utf8.test │ │ │ │ ├── create_w_max_indexes_128.test │ │ │ │ ├── create_w_max_indexes_64.test │ │ │ │ ├── cte_cycle.test │ │ │ │ ├── cte_grant.test │ │ │ │ ├── cte_nonrecursive.test │ │ │ │ ├── cte_nonrecursive_not_embedded.test │ │ │ │ ├── cte_recursive.test │ │ │ │ ├── cte_recursive_not_embedded.test │ │ │ │ ├── ctype_ascii.test │ │ │ │ ├── ctype_big5.test │ │ │ │ ├── ctype_binary.test │ │ │ │ ├── ctype_collate.test │ │ │ │ ├── ctype_cp1250_ch.test │ │ │ │ ├── ctype_cp1251.test │ │ │ │ ├── ctype_cp850.test │ │ │ │ ├── ctype_cp932.test │ │ │ │ ├── ctype_cp932_binlog_row.test │ │ │ │ ├── ctype_cp932_binlog_stm.test │ │ │ │ ├── ctype_create.test │ │ │ │ ├── ctype_dec8.test │ │ │ │ ├── ctype_errors.test │ │ │ │ ├── ctype_eucjpms.test │ │ │ │ ├── ctype_euckr.test │ │ │ │ ├── ctype_filename.test │ │ │ │ ├── ctype_filesystem-master.opt │ │ │ │ ├── ctype_filesystem.test │ │ │ │ ├── ctype_gb2312.test │ │ │ │ ├── ctype_gbk.test │ │ │ │ ├── ctype_gbk_binlog.test │ │ │ │ ├── ctype_gbk_export_import.test │ │ │ │ ├── ctype_hebrew.test │ │ │ │ ├── ctype_latin1.test │ │ │ │ ├── ctype_latin1_de.test │ │ │ │ ├── ctype_latin2.test │ │ │ │ ├── ctype_latin2_ch.test │ │ │ │ ├── ctype_ldml-master.opt │ │ │ │ ├── ctype_ldml.test │ │ │ │ ├── ctype_like_range.test │ │ │ │ ├── ctype_many.test │ │ │ │ ├── ctype_mb.test │ │ │ │ ├── ctype_nopad_8bit.test │ │ │ │ ├── ctype_partitions.test │ │ │ │ ├── ctype_recoding.test │ │ │ │ ├── ctype_sjis.test │ │ │ │ ├── ctype_swe7.test │ │ │ │ ├── ctype_tis620.test │ │ │ │ ├── ctype_uca.test │ │ │ │ ├── ctype_uca_innodb.test │ │ │ │ ├── ctype_uca_partitions.test │ │ │ │ ├── ctype_ucs.test │ │ │ │ ├── ctype_ucs2_def-master.opt │ │ │ │ ├── ctype_ucs2_def.test │ │ │ │ ├── ctype_ucs2_query_cache-master.opt │ │ │ │ ├── ctype_ucs2_query_cache.test │ │ │ │ ├── ctype_ucs2_uca.test │ │ │ │ ├── ctype_ujis.test │ │ │ │ ├── ctype_ujis_ucs2.test │ │ │ │ ├── ctype_upgrade.test │ │ │ │ ├── ctype_utf16.test │ │ │ │ ├── ctype_utf16_def-master.opt │ │ │ │ ├── ctype_utf16_def.test │ │ │ │ ├── ctype_utf16_uca.test │ │ │ │ ├── ctype_utf16le.test │ │ │ │ ├── ctype_utf32.test │ │ │ │ ├── ctype_utf32_def.opt │ │ │ │ ├── ctype_utf32_def.test │ │ │ │ ├── ctype_utf32_uca.test │ │ │ │ ├── ctype_utf8-master.opt │ │ │ │ ├── ctype_utf8.test │ │ │ │ ├── ctype_utf8_def_upgrade.opt │ │ │ │ ├── ctype_utf8_def_upgrade.test │ │ │ │ ├── ctype_utf8_uca.test │ │ │ │ ├── ctype_utf8mb4-master.opt │ │ │ │ ├── ctype_utf8mb4.test │ │ │ │ ├── ctype_utf8mb4_heap.test │ │ │ │ ├── ctype_utf8mb4_innodb-master.opt │ │ │ │ ├── ctype_utf8mb4_innodb.test │ │ │ │ ├── ctype_utf8mb4_myisam.test │ │ │ │ ├── ctype_utf8mb4_uca.test │ │ │ │ ├── custom_aggregate_functions.test │ │ │ │ ├── custom_aggregates_i_s.test │ │ │ │ ├── date_formats-master.opt │ │ │ │ ├── date_formats.test │ │ │ │ ├── datetime_456.test │ │ │ │ ├── ddl_i18n_koi8r.test │ │ │ │ ├── ddl_i18n_utf8.test │ │ │ │ ├── deadlock_ftwrl.test │ │ │ │ ├── deadlock_innodb.test │ │ │ │ ├── debug_sync.test │ │ │ │ ├── default.test │ │ │ │ ├── default_debug.test │ │ │ │ ├── default_session.test │ │ │ │ ├── default_storage_engine.test │ │ │ │ ├── delayed.test │ │ │ │ ├── delayed_blob.opt │ │ │ │ ├── delayed_blob.test │ │ │ │ ├── delete.test │ │ │ │ ├── delete_innodb.test │ │ │ │ ├── delete_returning.test │ │ │ │ ├── delete_returning_grant.test │ │ │ │ ├── delete_use_source.test │ │ │ │ ├── delimiter_case_mdev_10728.sql │ │ │ │ ├── delimiter_command_case_sensitivity.test │ │ │ │ ├── deprecated_features.test │ │ │ │ ├── derived.test │ │ │ │ ├── derived_cond_pushdown.test │ │ │ │ ├── derived_opt.test │ │ │ │ ├── derived_split_innodb.test │ │ │ │ ├── derived_view.test │ │ │ │ ├── dirty_close.test │ │ │ │ ├── distinct.test │ │ │ │ ├── drop.test │ │ │ │ ├── drop_bad_db_type.test │ │ │ │ ├── drop_combinations.inc │ │ │ │ ├── drop_combinations.test │ │ │ │ ├── drop_table_force.test │ │ │ │ ├── dyncol.test │ │ │ │ ├── empty_server_name-8224.test │ │ │ │ ├── empty_string_literal.test │ │ │ │ ├── empty_table.test │ │ │ │ ├── empty_user_table.test │ │ │ │ ├── endspace.test │ │ │ │ ├── enforce_storage_engine.test │ │ │ │ ├── enforce_storage_engine_opt.opt │ │ │ │ ├── enforce_storage_engine_opt.test │ │ │ │ ├── engine_error_in_alter-8453.test │ │ │ │ ├── error_simulation-master.opt │ │ │ │ ├── error_simulation.test │ │ │ │ ├── errors.test │ │ │ │ ├── events_1.test │ │ │ │ ├── events_2.test │ │ │ │ ├── events_bugs-master.opt │ │ │ │ ├── events_bugs.test │ │ │ │ ├── events_embedded.test │ │ │ │ ├── events_grant.test │ │ │ │ ├── events_logs_tests-master.opt │ │ │ │ ├── events_logs_tests.test │ │ │ │ ├── events_microsec.test │ │ │ │ ├── events_restart-master.opt │ │ │ │ ├── events_restart.test │ │ │ │ ├── events_scheduling.test │ │ │ │ ├── events_slowlog.test │ │ │ │ ├── events_stress.test │ │ │ │ ├── events_time_zone.test │ │ │ │ ├── events_trans.test │ │ │ │ ├── events_trans_notembedded.test │ │ │ │ ├── except.test │ │ │ │ ├── except_all.test │ │ │ │ ├── execution_constants.test │ │ │ │ ├── explain.test │ │ │ │ ├── explain_json.test │ │ │ │ ├── explain_json_format_partitions.test │ │ │ │ ├── explain_json_innodb.test │ │ │ │ ├── explain_non_select.test │ │ │ │ ├── explain_slowquerylog-master.opt │ │ │ │ ├── explain_slowquerylog.test │ │ │ │ ├── ext_key_noPK_6794.test │ │ │ │ ├── failed_auth_3909.test │ │ │ │ ├── failed_auth_unixsocket.test │ │ │ │ ├── fast_prefix_index_fetch_innodb.test │ │ │ │ ├── features.test │ │ │ │ ├── fetch_first.test │ │ │ │ ├── file_contents.test │ │ │ │ ├── filesort_bad_i_s-7585.test │ │ │ │ ├── filesort_debug.test │ │ │ │ ├── fix_priv_tables.test │ │ │ │ ├── flush-innodb-notembedded.test │ │ │ │ ├── flush-innodb.test │ │ │ │ ├── flush.test │ │ │ │ ├── flush2-master.opt │ │ │ │ ├── flush2.test │ │ │ │ ├── flush_and_binlog.test │ │ │ │ ├── flush_block_commit.test │ │ │ │ ├── flush_block_commit_notembedded.test │ │ │ │ ├── flush_logs_not_windows.test │ │ │ │ ├── flush_notembedded.test │ │ │ │ ├── flush_read_lock.test │ │ │ │ ├── flush_read_lock_kill.test │ │ │ │ ├── flush_ssl.test │ │ │ │ ├── flush_table.test │ │ │ │ ├── foreign_key.test │ │ │ │ ├── frm-debug.test │ │ │ │ ├── frm_bad_row_type-7333.test │ │ │ │ ├── fulltext.test │ │ │ │ ├── fulltext2.test │ │ │ │ ├── fulltext3.test │ │ │ │ ├── fulltext_cache.test │ │ │ │ ├── fulltext_charsets.test │ │ │ │ ├── fulltext_derived_4257.test │ │ │ │ ├── fulltext_derived_4316.test │ │ │ │ ├── fulltext_distinct.test │ │ │ │ ├── fulltext_left_join.test │ │ │ │ ├── fulltext_multi.test │ │ │ │ ├── fulltext_order_by.test │ │ │ │ ├── fulltext_update.test │ │ │ │ ├── fulltext_var.test │ │ │ │ ├── func_analyse.test │ │ │ │ ├── func_bit.test │ │ │ │ ├── func_compress.test │ │ │ │ ├── func_concat.test │ │ │ │ ├── func_crypt.test │ │ │ │ ├── func_date_add.test │ │ │ │ ├── func_debug.test │ │ │ │ ├── func_default.test │ │ │ │ ├── func_des_encrypt.test │ │ │ │ ├── func_digest.test │ │ │ │ ├── func_encrypt-master.opt │ │ │ │ ├── func_encrypt.test │ │ │ │ ├── func_encrypt_nossl.test │ │ │ │ ├── func_encrypt_ucs2.test │ │ │ │ ├── func_equal.test │ │ │ │ ├── func_extract.test │ │ │ │ ├── func_gconcat.test │ │ │ │ ├── func_group.test │ │ │ │ ├── func_group_innodb.test │ │ │ │ ├── func_hybrid_type.test │ │ │ │ ├── func_if.test │ │ │ │ ├── func_in.test │ │ │ │ ├── func_int.test │ │ │ │ ├── func_isnull.test │ │ │ │ ├── func_json.test │ │ │ │ ├── func_like.test │ │ │ │ ├── func_math.test │ │ │ │ ├── func_misc.test │ │ │ │ ├── func_op.test │ │ │ │ ├── func_regexp.test │ │ │ │ ├── func_regexp_pcre.test │ │ │ │ ├── func_regexp_pcre_debug.test │ │ │ │ ├── func_rollback.test │ │ │ │ ├── func_sapdb.test │ │ │ │ ├── func_set.test │ │ │ │ ├── func_str.test │ │ │ │ ├── func_system.test │ │ │ │ ├── func_test.test │ │ │ │ ├── func_time.test │ │ │ │ ├── func_time_hires.test │ │ │ │ ├── func_time_round.test │ │ │ │ ├── func_timestamp.test │ │ │ │ ├── func_weight_string.test │ │ │ │ ├── function_defaults.test │ │ │ │ ├── function_defaults_innodb.test │ │ │ │ ├── function_defaults_notembedded.test │ │ │ │ ├── gcc296.test │ │ │ │ ├── get_diagnostics.test │ │ │ │ ├── gis-alter_table_online.test │ │ │ │ ├── gis-debug.test │ │ │ │ ├── gis-json.test │ │ │ │ ├── gis-loaddata.test │ │ │ │ ├── gis-precise.test │ │ │ │ ├── gis-rt-precise.test │ │ │ │ ├── gis-rtree.test │ │ │ │ ├── gis.test │ │ │ │ ├── gis_notembedded.test │ │ │ │ ├── grant.opt │ │ │ │ ├── grant.test │ │ │ │ ├── grant2.opt │ │ │ │ ├── grant2.test │ │ │ │ ├── grant3-master.opt │ │ │ │ ├── grant3.test │ │ │ │ ├── grant4.opt │ │ │ │ ├── grant4.test │ │ │ │ ├── grant5.test │ │ │ │ ├── grant_4332.test │ │ │ │ ├── grant_binlog_replay.test │ │ │ │ ├── grant_cache_no_prot.test │ │ │ │ ├── grant_cache_ps_prot.test │ │ │ │ ├── grant_explain_non_select.test │ │ │ │ ├── grant_kill.test │ │ │ │ ├── grant_lowercase.opt │ │ │ │ ├── grant_lowercase.test │ │ │ │ ├── grant_lowercase_fs.test │ │ │ │ ├── grant_master_admin.test │ │ │ │ ├── grant_not_windows.test │ │ │ │ ├── grant_read_only.test │ │ │ │ ├── grant_repair.test │ │ │ │ ├── grant_server.test │ │ │ │ ├── grant_slave_admin.test │ │ │ │ ├── grant_slave_monitor.test │ │ │ │ ├── greedy_optimizer.test │ │ │ │ ├── group_by.test │ │ │ │ ├── group_by_innodb.test │ │ │ │ ├── group_by_null.test │ │ │ │ ├── group_min_max.test │ │ │ │ ├── group_min_max_innodb.test │ │ │ │ ├── handler_read_last.test │ │ │ │ ├── handlersocket.opt │ │ │ │ ├── handlersocket.test │ │ │ │ ├── having.test │ │ │ │ ├── having_cond_pushdown.test │ │ │ │ ├── help.test │ │ │ │ ├── host_cache_size_functionality.test │ │ │ │ ├── huge_frm-6224.test │ │ │ │ ├── ignored_index.test │ │ │ │ ├── ignored_index_innodb.test │ │ │ │ ├── implicit_char_to_num_conversion.test │ │ │ │ ├── implicit_commit-master.opt │ │ │ │ ├── implicit_commit.test │ │ │ │ ├── in_datetime_241.test │ │ │ │ ├── in_subq_cond_pushdown.test │ │ │ │ ├── index_intersect.test │ │ │ │ ├── index_intersect_innodb.test │ │ │ │ ├── index_merge_innodb.test │ │ │ │ ├── index_merge_myisam.test │ │ │ │ ├── information_schema-big.test │ │ │ │ ├── information_schema.test │ │ │ │ ├── information_schema2.test │ │ │ │ ├── information_schema_all_engines-master.opt │ │ │ │ ├── information_schema_all_engines.test │ │ │ │ ├── information_schema_chmod.test │ │ │ │ ├── information_schema_db.test │ │ │ │ ├── information_schema_inno.test │ │ │ │ ├── information_schema_linux.test │ │ │ │ ├── information_schema_parameters.test │ │ │ │ ├── information_schema_part.test │ │ │ │ ├── information_schema_prepare.test │ │ │ │ ├── information_schema_routines.test │ │ │ │ ├── information_schema_stats.test │ │ │ │ ├── init_connect-master.opt │ │ │ │ ├── init_connect.test │ │ │ │ ├── init_connection_query_cache-master.opt │ │ │ │ ├── init_connection_query_cache.test │ │ │ │ ├── init_file.opt │ │ │ │ ├── init_file.test │ │ │ │ ├── init_file_longline_3816.opt │ │ │ │ ├── init_file_longline_3816.test │ │ │ │ ├── init_file_set_password-7656.test │ │ │ │ ├── innodb_bug878769.test │ │ │ │ ├── innodb_ext_key.combinations │ │ │ │ ├── innodb_ext_key.test │ │ │ │ ├── innodb_group.test │ │ │ │ ├── innodb_icp.test │ │ │ │ ├── innodb_icp_debug.test │ │ │ │ ├── innodb_ignore_builtin-master.opt │ │ │ │ ├── innodb_ignore_builtin.test │ │ │ │ ├── innodb_load_xa.opt │ │ │ │ ├── innodb_load_xa.test │ │ │ │ ├── innodb_mrr_cpk.test │ │ │ │ ├── innodb_mysql_lock.test │ │ │ │ ├── innodb_mysql_lock2.test │ │ │ │ ├── innodb_mysql_sync.test │ │ │ │ ├── innodb_utf8.test │ │ │ │ ├── insert.test │ │ │ │ ├── insert_debug-master.opt │ │ │ │ ├── insert_debug.test │ │ │ │ ├── insert_innodb.test │ │ │ │ ├── insert_notembedded.test │ │ │ │ ├── insert_returning.test │ │ │ │ ├── insert_returning_datatypes.test │ │ │ │ ├── insert_select.test │ │ │ │ ├── insert_update.test │ │ │ │ ├── insert_update_autoinc-7150.test │ │ │ │ ├── intersect.test │ │ │ │ ├── intersect_all.test │ │ │ │ ├── invisible_binlog.test │ │ │ │ ├── invisible_field.test │ │ │ │ ├── invisible_field_debug.test │ │ │ │ ├── invisible_field_grant_completely.test │ │ │ │ ├── invisible_field_grant_system.test │ │ │ │ ├── invisible_partition.test │ │ │ │ ├── ipv4_and_ipv6.opt │ │ │ │ ├── ipv4_and_ipv6.test │ │ │ │ ├── ipv4_as_ipv6-master.opt │ │ │ │ ├── ipv4_as_ipv6.test │ │ │ │ ├── ipv6-master.opt │ │ │ │ ├── ipv6.test │ │ │ │ ├── join.test │ │ │ │ ├── join_cache.test │ │ │ │ ├── join_crash.test │ │ │ │ ├── join_nested.test │ │ │ │ ├── join_nested_jcl6.test │ │ │ │ ├── join_optimizer.test │ │ │ │ ├── join_outer.test │ │ │ │ ├── join_outer_innodb.test │ │ │ │ ├── join_outer_jcl6.test │ │ │ │ ├── key.test │ │ │ │ ├── key_cache-master.opt │ │ │ │ ├── key_cache.test │ │ │ │ ├── key_diff.test │ │ │ │ ├── key_primary.test │ │ │ │ ├── keyread.test │ │ │ │ ├── keywords.test │ │ │ │ ├── kill-2-master.opt │ │ │ │ ├── kill-2.test │ │ │ │ ├── kill.test │ │ │ │ ├── kill_processlist-6619.test │ │ │ │ ├── kill_query-6728.test │ │ │ │ ├── large_pages.opt │ │ │ │ ├── large_pages.test │ │ │ │ ├── last_value.test │ │ │ │ ├── limit.test │ │ │ │ ├── limit_rows_examined.test │ │ │ │ ├── loaddata.test │ │ │ │ ├── loaddata_autocom_innodb.test │ │ │ │ ├── loadxml.test │ │ │ │ ├── locale.opt │ │ │ │ ├── locale.test │ │ │ │ ├── lock.test │ │ │ │ ├── lock_kill.test │ │ │ │ ├── lock_multi.test │ │ │ │ ├── lock_multi_bug38499.test │ │ │ │ ├── lock_multi_bug38691.test │ │ │ │ ├── lock_sync-master.opt │ │ │ │ ├── lock_sync.test │ │ │ │ ├── lock_tables_lost_commit-master.opt │ │ │ │ ├── lock_tables_lost_commit.test │ │ │ │ ├── lock_user.test │ │ │ │ ├── lock_view.test │ │ │ │ ├── locked_temporary-5955.test │ │ │ │ ├── locking_clause.test │ │ │ │ ├── log_errchk.test │ │ │ │ ├── log_slow.test │ │ │ │ ├── log_slow_debug.test │ │ │ │ ├── log_state-master.opt │ │ │ │ ├── log_state.test │ │ │ │ ├── log_state_bug33693-master.opt │ │ │ │ ├── log_state_bug33693.test │ │ │ │ ├── log_tables-big-master.opt │ │ │ │ ├── log_tables-big.test │ │ │ │ ├── log_tables-master.opt │ │ │ │ ├── log_tables.test │ │ │ │ ├── log_tables_debug.test │ │ │ │ ├── log_tables_upgrade.test │ │ │ │ ├── long_host.test │ │ │ │ ├── long_tmpdir-master.opt │ │ │ │ ├── long_tmpdir-master.sh │ │ │ │ ├── long_tmpdir.test │ │ │ │ ├── long_unique.test │ │ │ │ ├── long_unique_bugs.test │ │ │ │ ├── long_unique_bugs_replication.test │ │ │ │ ├── long_unique_debug.test │ │ │ │ ├── long_unique_delayed.test │ │ │ │ ├── long_unique_innodb.opt │ │ │ │ ├── long_unique_innodb.test │ │ │ │ ├── long_unique_update.test │ │ │ │ ├── long_unique_using_hash.test │ │ │ │ ├── lowercase_fs_off.test │ │ │ │ ├── lowercase_fs_on.test │ │ │ │ ├── lowercase_mixed_tmpdir-master.opt │ │ │ │ ├── lowercase_mixed_tmpdir-master.sh │ │ │ │ ├── lowercase_mixed_tmpdir.test │ │ │ │ ├── lowercase_mixed_tmpdir_innodb-master.opt │ │ │ │ ├── lowercase_mixed_tmpdir_innodb-master.sh │ │ │ │ ├── lowercase_mixed_tmpdir_innodb.test │ │ │ │ ├── lowercase_table-master.opt │ │ │ │ ├── lowercase_table.test │ │ │ │ ├── lowercase_table2.test │ │ │ │ ├── lowercase_table4-master.opt │ │ │ │ ├── lowercase_table4.test │ │ │ │ ├── lowercase_table5.test │ │ │ │ ├── lowercase_table_grant-master.opt │ │ │ │ ├── lowercase_table_grant.test │ │ │ │ ├── lowercase_table_qcache-master.opt │ │ │ │ ├── lowercase_table_qcache.test │ │ │ │ ├── lowercase_utf8-master.opt │ │ │ │ ├── lowercase_utf8.test │ │ │ │ ├── lowercase_view-master.opt │ │ │ │ ├── lowercase_view.test │ │ │ │ ├── max_password_errors.test │ │ │ │ ├── max_statement_time.test │ │ │ │ ├── mdev-21101.opt │ │ │ │ ├── mdev-21101.test │ │ │ │ ├── mdev13607.test │ │ │ │ ├── mdev19198.test │ │ │ │ ├── mdev316.test │ │ │ │ ├── mdev375.test │ │ │ │ ├── mdev6830.test │ │ │ │ ├── mdev_14586.test │ │ │ │ ├── mdev_19276.test │ │ │ │ ├── mdev_22370.test │ │ │ │ ├── mdl.test │ │ │ │ ├── mdl_sync-master.opt │ │ │ │ ├── mdl_sync.test │ │ │ │ ├── merge-big.test │ │ │ │ ├── merge.test │ │ │ │ ├── merge_debug.test │ │ │ │ ├── merge_innodb.test │ │ │ │ ├── merge_mmap-master.opt │ │ │ │ ├── merge_mmap.test │ │ │ │ ├── metadata.test │ │ │ │ ├── mix2_myisam.test │ │ │ │ ├── mix2_myisam_ucs2.test │ │ │ │ ├── mrr_derived_crash_4610.test │ │ │ │ ├── mrr_icp_extra.test │ │ │ │ ├── multi_statement-master.opt │ │ │ │ ├── multi_statement.test │ │ │ │ ├── multi_update-master.opt │ │ │ │ ├── multi_update.test │ │ │ │ ├── multi_update_big.opt │ │ │ │ ├── multi_update_big.test │ │ │ │ ├── multi_update_binlog.test │ │ │ │ ├── multi_update_debug.test │ │ │ │ ├── multi_update_innodb.test │ │ │ │ ├── multi_update_tiny_hash-master.opt │ │ │ │ ├── multi_update_tiny_hash.test │ │ │ │ ├── my_print_defaults.test │ │ │ │ ├── myisam-big.test │ │ │ │ ├── myisam-blob-master.opt │ │ │ │ ├── myisam-blob.test │ │ │ │ ├── myisam-master.opt │ │ │ │ ├── myisam-optimize.test │ │ │ │ ├── myisam-system.test │ │ │ │ ├── myisam.test │ │ │ │ ├── myisam_crash_before_flush_keys-master.opt │ │ │ │ ├── myisam_crash_before_flush_keys.test │ │ │ │ ├── myisam_debug.test │ │ │ │ ├── myisam_enable_keys-10506.test │ │ │ │ ├── myisam_explain_non_select_all.test │ │ │ │ ├── myisam_icp.test │ │ │ │ ├── myisam_icp_debug.test │ │ │ │ ├── myisam_icp_notembedded.test │ │ │ │ ├── myisam_mrr.test │ │ │ │ ├── myisam_optimize.test │ │ │ │ ├── myisam_recover-master.opt │ │ │ │ ├── myisam_recover.test │ │ │ │ ├── myisampack.test │ │ │ │ ├── mysql-bug41486.test │ │ │ │ ├── mysql-bug45236.test │ │ │ │ ├── mysql-metadata.test │ │ │ │ ├── mysql.test │ │ │ │ ├── mysql5613mysql.test │ │ │ │ ├── mysql57_virtual.test │ │ │ │ ├── mysql_binary_mode.test │ │ │ │ ├── mysql_binary_zero_insert.test │ │ │ │ ├── mysql_client_test-master.opt │ │ │ │ ├── mysql_client_test.test │ │ │ │ ├── mysql_client_test_comp-master.opt │ │ │ │ ├── mysql_client_test_comp.test │ │ │ │ ├── mysql_client_test_nonblock-master.opt │ │ │ │ ├── mysql_client_test_nonblock.test │ │ │ │ ├── mysql_comments.sql │ │ │ │ ├── mysql_comments.test │ │ │ │ ├── mysql_cp932.test │ │ │ │ ├── mysql_delimiter.sql │ │ │ │ ├── mysql_delimiter_19799.sql │ │ │ │ ├── mysql_delimiter_source.sql │ │ │ │ ├── mysql_embedded.test │ │ │ │ ├── mysql_install_db_win.test │ │ │ │ ├── mysql_json_mysql_upgrade.test │ │ │ │ ├── mysql_json_mysql_upgrade_with_plugin_loaded.test │ │ │ │ ├── mysql_json_table_recreate.opt │ │ │ │ ├── mysql_json_table_recreate.test │ │ │ │ ├── mysql_locale_posix.test │ │ │ │ ├── mysql_not_windows.test │ │ │ │ ├── mysql_protocols.test │ │ │ │ ├── mysql_tzinfo_to_sql_symlink.test │ │ │ │ ├── mysql_upgrade-20228.test │ │ │ │ ├── mysql_upgrade-6984.opt │ │ │ │ ├── mysql_upgrade-6984.test │ │ │ │ ├── mysql_upgrade.test │ │ │ │ ├── mysql_upgrade_mysql_json_datatype.test │ │ │ │ ├── mysql_upgrade_no_innodb.test │ │ │ │ ├── mysql_upgrade_noengine.test │ │ │ │ ├── mysql_upgrade_ssl.test │ │ │ │ ├── mysql_upgrade_to_100502.test │ │ │ │ ├── mysql_upgrade_view.test │ │ │ │ ├── mysqladmin.test │ │ │ │ ├── mysqlbinlog-innodb.test │ │ │ │ ├── mysqlbinlog-master.opt │ │ │ │ ├── mysqlbinlog.test │ │ │ │ ├── mysqlbinlog_raw_mode.test │ │ │ │ ├── mysqlbinlog_row_big.test │ │ │ │ ├── mysqlbinlog_row_compressed.test │ │ │ │ ├── mysqlbinlog_row_minimal.opt │ │ │ │ ├── mysqlbinlog_row_minimal.test │ │ │ │ ├── mysqlbinlog_stmt_compressed.test │ │ │ │ ├── mysqlcheck-master.opt │ │ │ │ ├── mysqlcheck.opt │ │ │ │ ├── mysqlcheck.test │ │ │ │ ├── mysqld--defaults-file.test │ │ │ │ ├── mysqld--help-aria.test │ │ │ │ ├── mysqld--help.test │ │ │ │ ├── mysqld_help_crash-9183.test │ │ │ │ ├── mysqld_option_err.test │ │ │ │ ├── mysqldump-compat-102.opt │ │ │ │ ├── mysqldump-compat-102.test │ │ │ │ ├── mysqldump-compat.opt │ │ │ │ ├── mysqldump-compat.test │ │ │ │ ├── mysqldump-max-master.opt │ │ │ │ ├── mysqldump-max.test │ │ │ │ ├── mysqldump-nl.test │ │ │ │ ├── mysqldump-no-binlog-master.opt │ │ │ │ ├── mysqldump-no-binlog.test │ │ │ │ ├── mysqldump-system.test │ │ │ │ ├── mysqldump-utf8mb4.test │ │ │ │ ├── mysqldump.opt │ │ │ │ ├── mysqldump.test │ │ │ │ ├── mysqldump_restore.test │ │ │ │ ├── mysqlhotcopy_myisam.test │ │ │ │ ├── mysqlshow.test │ │ │ │ ├── mysqlslap.opt │ │ │ │ ├── mysqlslap.test │ │ │ │ ├── mysqltest.test │ │ │ │ ├── mysqltest_256.test │ │ │ │ ├── mysqltest_cont_on_error.test │ │ │ │ ├── mysqltest_ps.test │ │ │ │ ├── mysqltest_tracking_info.test │ │ │ │ ├── named_pipe-master.opt │ │ │ │ ├── named_pipe.test │ │ │ │ ├── negation_elimination.test │ │ │ │ ├── nested_profiling.test │ │ │ │ ├── no-threads-master.opt │ │ │ │ ├── no-threads.test │ │ │ │ ├── no_binlog.test │ │ │ │ ├── non_blocking_api.test │ │ │ │ ├── not_embedded_server.test │ │ │ │ ├── not_partition.test │ │ │ │ ├── null.test │ │ │ │ ├── null_key.test │ │ │ │ ├── odbc.test │ │ │ │ ├── olap.test │ │ │ │ ├── old-mode-master.opt │ │ │ │ ├── old-mode.test │ │ │ │ ├── openssl_1.test │ │ │ │ ├── openssl_6975.combinations │ │ │ │ ├── openssl_6975.test │ │ │ │ ├── opt_trace.test │ │ │ │ ├── opt_trace_index_merge.test │ │ │ │ ├── opt_trace_index_merge_innodb.test │ │ │ │ ├── opt_trace_security.test │ │ │ │ ├── opt_trace_ucs2.test │ │ │ │ ├── opt_tvc.test │ │ │ │ ├── order_by-mdev-10122.test │ │ │ │ ├── order_by.test │ │ │ │ ├── order_by_innodb.test │ │ │ │ ├── order_by_optimizer.test │ │ │ │ ├── order_by_optimizer_innodb.test │ │ │ │ ├── order_by_pack_big.test │ │ │ │ ├── order_by_sortkey.test │ │ │ │ ├── order_by_zerolength-4285.test │ │ │ │ ├── order_fill_sortbuf.test │ │ │ │ ├── outfile.test │ │ │ │ ├── outfile_loaddata.test │ │ │ │ ├── overflow.test │ │ │ │ ├── packet.test │ │ │ │ ├── parser.test │ │ │ │ ├── parser_bug21114_innodb.test │ │ │ │ ├── parser_not_embedded.test │ │ │ │ ├── parser_stack.test │ │ │ │ ├── partition-master.opt │ │ │ │ ├── partition.test │ │ │ │ ├── partition_alter.test │ │ │ │ ├── partition_binlog.test │ │ │ │ ├── partition_binlog_stmt.test │ │ │ │ ├── partition_blackhole.test │ │ │ │ ├── partition_bug18198.test │ │ │ │ ├── partition_cache.test │ │ │ │ ├── partition_cache_innodb.test │ │ │ │ ├── partition_cache_myisam.test │ │ │ │ ├── partition_charset.test │ │ │ │ ├── partition_column.test │ │ │ │ ├── partition_column_prune.test │ │ │ │ ├── partition_csv.test │ │ │ │ ├── partition_datatype.test │ │ │ │ ├── partition_debug_sync.test │ │ │ │ ├── partition_default.test │ │ │ │ ├── partition_disabled-master.opt │ │ │ │ ├── partition_disabled.test │ │ │ │ ├── partition_error.test │ │ │ │ ├── partition_example.opt │ │ │ │ ├── partition_example.test │ │ │ │ ├── partition_exchange-master.opt │ │ │ │ ├── partition_exchange.test │ │ │ │ ├── partition_explicit_prune.test │ │ │ │ ├── partition_grant.test │ │ │ │ ├── partition_hash.test │ │ │ │ ├── partition_innodb.test │ │ │ │ ├── partition_innodb_plugin.test │ │ │ │ ├── partition_innodb_semi_consistent-master.opt │ │ │ │ ├── partition_innodb_semi_consistent.test │ │ │ │ ├── partition_innodb_stmt.test │ │ │ │ ├── partition_key_cache.test │ │ │ │ ├── partition_list.test │ │ │ │ ├── partition_mgm.test │ │ │ │ ├── partition_mgm_err.test │ │ │ │ ├── partition_mgm_err2.test │ │ │ │ ├── partition_mrr_aria.test │ │ │ │ ├── partition_mrr_innodb.test │ │ │ │ ├── partition_mrr_myisam.test │ │ │ │ ├── partition_myisam.test │ │ │ │ ├── partition_not_blackhole-master.opt │ │ │ │ ├── partition_not_blackhole.test │ │ │ │ ├── partition_not_windows-master.opt │ │ │ │ ├── partition_not_windows.test │ │ │ │ ├── partition_open_files_limit-master.opt │ │ │ │ ├── partition_open_files_limit.test │ │ │ │ ├── partition_order.test │ │ │ │ ├── partition_pruning.test │ │ │ │ ├── partition_range.test │ │ │ │ ├── partition_rename_longfilename.test │ │ │ │ ├── partition_symlink.test │ │ │ │ ├── partition_sync.test │ │ │ │ ├── partition_truncate.test │ │ │ │ ├── partition_ucs2.test │ │ │ │ ├── partition_utf8-debug.test │ │ │ │ ├── partition_utf8.test │ │ │ │ ├── partition_windows.test │ │ │ │ ├── password_expiration.test │ │ │ │ ├── password_expiration_unix_socket.test │ │ │ │ ├── percona_nonflushing_analyze_debug.test │ │ │ │ ├── perror-win.test │ │ │ │ ├── perror.test │ │ │ │ ├── plugin.opt │ │ │ │ ├── plugin.test │ │ │ │ ├── plugin_auth.test │ │ │ │ ├── plugin_auth_qa.test │ │ │ │ ├── plugin_auth_qa_1.test │ │ │ │ ├── plugin_auth_qa_2-master.opt │ │ │ │ ├── plugin_auth_qa_2.test │ │ │ │ ├── plugin_auth_qa_3-master.opt │ │ │ │ ├── plugin_auth_qa_3.test │ │ │ │ ├── plugin_innodb.opt │ │ │ │ ├── plugin_innodb.test │ │ │ │ ├── plugin_load.opt │ │ │ │ ├── plugin_load.test │ │ │ │ ├── plugin_load_option.opt │ │ │ │ ├── plugin_load_option.test │ │ │ │ ├── plugin_loaderr.opt │ │ │ │ ├── plugin_loaderr.test │ │ │ │ ├── plugin_maturity-master.opt │ │ │ │ ├── plugin_maturity.test │ │ │ │ ├── plugin_not_embedded.opt │ │ │ │ ├── plugin_not_embedded.test │ │ │ │ ├── plugin_vars.test │ │ │ │ ├── pool_of_threads.cnf │ │ │ │ ├── pool_of_threads.opt │ │ │ │ ├── pool_of_threads.test │ │ │ │ ├── precedence.test │ │ │ │ ├── precedence_bugs.test │ │ │ │ ├── preload.test │ │ │ │ ├── prepare.test │ │ │ │ ├── processlist.test │ │ │ │ ├── processlist_notembedded.test │ │ │ │ ├── profiling.test │ │ │ │ ├── progress_976225.test │ │ │ │ ├── ps-master.opt │ │ │ │ ├── ps.test │ │ │ │ ├── ps_10nestset.test │ │ │ │ ├── ps_11bugs.test │ │ │ │ ├── ps_1general.test │ │ │ │ ├── ps_2myisam.test │ │ │ │ ├── ps_3innodb-master.opt │ │ │ │ ├── ps_3innodb.test │ │ │ │ ├── ps_4heap.test │ │ │ │ ├── ps_5merge.test │ │ │ │ ├── ps_change_master.test │ │ │ │ ├── ps_ddl.test │ │ │ │ ├── ps_ddl1.test │ │ │ │ ├── ps_error.test │ │ │ │ ├── ps_grant.test │ │ │ │ ├── ps_innodb.test │ │ │ │ ├── ps_max_subselect-5113.test │ │ │ │ ├── ps_missed_cmds.test │ │ │ │ ├── ps_missed_cmds_bin_prot.test │ │ │ │ ├── ps_missed_cmds_bin_prot_not_embedded.test │ │ │ │ ├── ps_missed_cmds_not_embedded.test │ │ │ │ ├── ps_not_windows.test │ │ │ │ ├── ps_qc_innodb.test │ │ │ │ ├── ps_show_log.test │ │ │ │ ├── query_cache.test │ │ │ │ ├── query_cache_28249.test │ │ │ │ ├── query_cache_debug.test │ │ │ │ ├── query_cache_innodb.test │ │ │ │ ├── query_cache_merge.test │ │ │ │ ├── query_cache_notembedded-master.opt │ │ │ │ ├── query_cache_notembedded.test │ │ │ │ ├── query_cache_ps_no_prot.test │ │ │ │ ├── query_cache_ps_ps_prot.test │ │ │ │ ├── query_cache_with_views.test │ │ │ │ ├── quick_select_4161.test │ │ │ │ ├── range.test │ │ │ │ ├── range_debug.test │ │ │ │ ├── range_innodb.test │ │ │ │ ├── range_interrupted-13751.test │ │ │ │ ├── range_mrr_icp.test │ │ │ │ ├── range_notembedded.test │ │ │ │ ├── range_vs_index_merge.test │ │ │ │ ├── range_vs_index_merge_innodb.test │ │ │ │ ├── read_many_rows_innodb.test │ │ │ │ ├── read_only.test │ │ │ │ ├── read_only_innodb.test │ │ │ │ ├── rename.test │ │ │ │ ├── renamedb.test │ │ │ │ ├── reopen_temp_table.test │ │ │ │ ├── repair.test │ │ │ │ ├── repair_symlink-5543.test │ │ │ │ ├── replace.test │ │ │ │ ├── replace_returning.test │ │ │ │ ├── replace_returning_datatypes.test │ │ │ │ ├── replace_returning_err.test │ │ │ │ ├── require_secure_transport-master.opt │ │ │ │ ├── require_secure_transport.test │ │ │ │ ├── reset_connection.test │ │ │ │ ├── rollback.test │ │ │ │ ├── round.test │ │ │ │ ├── row-checksum-master.opt │ │ │ │ ├── row-checksum-old-master.opt │ │ │ │ ├── row-checksum-old.test │ │ │ │ ├── row-checksum.opt │ │ │ │ ├── row-checksum.test │ │ │ │ ├── row.test │ │ │ │ ├── rowid_filter.test │ │ │ │ ├── rowid_filter_innodb.test │ │ │ │ ├── rowid_filter_innodb_debug.test │ │ │ │ ├── rowid_filter_myisam.test │ │ │ │ ├── rowid_filter_myisam_debug.test │ │ │ │ ├── rowid_order_innodb.test │ │ │ │ ├── rownum.test │ │ │ │ ├── rpl_mysql_upgrade_slave_repo_check.test │ │ │ │ ├── rpl_mysqldump_slave.test │ │ │ │ ├── schema.test │ │ │ │ ├── second_frac-9175.test │ │ │ │ ├── secure_file_priv_win-master.opt │ │ │ │ ├── secure_file_priv_win.test │ │ │ │ ├── select.test │ │ │ │ ├── select_debug.test │ │ │ │ ├── select_found.test │ │ │ │ ├── select_jcl6.test │ │ │ │ ├── select_pkeycache-master.opt │ │ │ │ ├── select_pkeycache.test │ │ │ │ ├── select_safe.test │ │ │ │ ├── selectivity.opt │ │ │ │ ├── selectivity.test │ │ │ │ ├── selectivity_innodb.test │ │ │ │ ├── selectivity_no_engine.test │ │ │ │ ├── servers.test │ │ │ │ ├── session_tracker_last_gtid.test │ │ │ │ ├── set_operation.test │ │ │ │ ├── set_operation_oracle.test │ │ │ │ ├── set_password.test │ │ │ │ ├── set_statement.test │ │ │ │ ├── set_statement_debug.test │ │ │ │ ├── set_statement_notembedded.test │ │ │ │ ├── set_statement_notembedded_binlog.test │ │ │ │ ├── set_statement_profiling.test │ │ │ │ ├── show.test │ │ │ │ ├── show_bad_definer-5553.test │ │ │ │ ├── show_check-master.opt │ │ │ │ ├── show_check.test │ │ │ │ ├── show_create_user.test │ │ │ │ ├── show_explain.cc │ │ │ │ ├── show_explain.opt │ │ │ │ ├── show_explain.test │ │ │ │ ├── show_explain_non_select.test │ │ │ │ ├── show_explain_ps.test │ │ │ │ ├── show_function_with_pad_char_to_full_length.test │ │ │ │ ├── show_profile.test │ │ │ │ ├── show_row_order-9226.test │ │ │ │ ├── shutdown.test │ │ │ │ ├── shutdown_not_windows.combinations │ │ │ │ ├── shutdown_not_windows.test │ │ │ │ ├── sighup-6580.test │ │ │ │ ├── signal.test │ │ │ │ ├── signal_code.test │ │ │ │ ├── signal_demo1.test │ │ │ │ ├── signal_demo2.test │ │ │ │ ├── signal_demo3.test │ │ │ │ ├── signal_sqlmode.test │ │ │ │ ├── simultaneous_assignment.test │ │ │ │ ├── single_delete_update.test │ │ │ │ ├── single_delete_update_innodb.test │ │ │ │ ├── skip_grants.opt │ │ │ │ ├── skip_grants.test │ │ │ │ ├── skip_log_bin-master.opt │ │ │ │ ├── skip_log_bin.test │ │ │ │ ├── skip_name_resolve-master.opt │ │ │ │ ├── skip_name_resolve.test │ │ │ │ ├── slowlog_enospace-10508.test │ │ │ │ ├── sp-anchor-row-type-cursor.test │ │ │ │ ├── sp-anchor-row-type-table.test │ │ │ │ ├── sp-anchor-type.test │ │ │ │ ├── sp-big.test │ │ │ │ ├── sp-bugs.test │ │ │ │ ├── sp-bugs2.test │ │ │ │ ├── sp-code.test │ │ │ │ ├── sp-condition-handler.test │ │ │ │ ├── sp-cursor.test │ │ │ │ ├── sp-destruct.test │ │ │ │ ├── sp-dynamic.test │ │ │ │ ├── sp-error.test │ │ │ │ ├── sp-expr.test │ │ │ │ ├── sp-fib.test │ │ │ │ ├── sp-for-loop.test │ │ │ │ ├── sp-group.test │ │ │ │ ├── sp-innodb.test │ │ │ │ ├── sp-lock.test │ │ │ │ ├── sp-no-code.test │ │ │ │ ├── sp-no-valgrind.test │ │ │ │ ├── sp-prelocking.test │ │ │ │ ├── sp-row-vs-var.inc │ │ │ │ ├── sp-row.test │ │ │ │ ├── sp-security-anchor-type.test │ │ │ │ ├── sp-security.test │ │ │ │ ├── sp-threads.test │ │ │ │ ├── sp-ucs2.test │ │ │ │ ├── sp-vars.test │ │ │ │ ├── sp.test │ │ │ │ ├── sp2.test │ │ │ │ ├── sp_gis.test │ │ │ │ ├── sp_missing_4665.test │ │ │ │ ├── sp_notembedded.opt │ │ │ │ ├── sp_notembedded.test │ │ │ │ ├── sp_stress_case.test │ │ │ │ ├── sp_sync.test │ │ │ │ ├── sp_trans.test │ │ │ │ ├── sp_trans_log.test │ │ │ │ ├── sql_mode.test │ │ │ │ ├── sql_safe_updates.opt │ │ │ │ ├── sql_safe_updates.test │ │ │ │ ├── ssl-big.test │ │ │ │ ├── ssl.test │ │ │ │ ├── ssl_7937.combinations │ │ │ │ ├── ssl_7937.test │ │ │ │ ├── ssl_8k_key-master.opt │ │ │ │ ├── ssl_8k_key.test │ │ │ │ ├── ssl_and_innodb.test │ │ │ │ ├── ssl_ca.test │ │ │ │ ├── ssl_cipher.opt │ │ │ │ ├── ssl_cipher.test │ │ │ │ ├── ssl_compress.test │ │ │ │ ├── ssl_connect.test │ │ │ │ ├── ssl_crl.combinations │ │ │ │ ├── ssl_crl.test │ │ │ │ ├── ssl_crl_clients.test │ │ │ │ ├── ssl_system_ca.combinations │ │ │ │ ├── ssl_system_ca.test │ │ │ │ ├── ssl_timeout-9836.opt │ │ │ │ ├── ssl_timeout-9836.test │ │ │ │ ├── ssl_timeout.test │ │ │ │ ├── ssl_verify_ip.opt │ │ │ │ ├── ssl_verify_ip.test │ │ │ │ ├── stack-crash.test │ │ │ │ ├── stat_tables-enospc.test │ │ │ │ ├── stat_tables.test │ │ │ │ ├── stat_tables_disabled.test │ │ │ │ ├── stat_tables_innodb.test │ │ │ │ ├── stat_tables_innodb_debug.test │ │ │ │ ├── stat_tables_missing.test │ │ │ │ ├── stat_tables_myisam_debug.test │ │ │ │ ├── stat_tables_par.inc │ │ │ │ ├── stat_tables_par.test │ │ │ │ ├── stat_tables_par_innodb.test │ │ │ │ ├── stat_tables_partition.test │ │ │ │ ├── stat_tables_rbr.test │ │ │ │ ├── stat_tables_repl.test │ │ │ │ ├── statement-expr.test │ │ │ │ ├── statistics.test │ │ │ │ ├── statistics_close.test │ │ │ │ ├── statistics_index_crash-7362.test │ │ │ │ ├── status-master.opt │ │ │ │ ├── status.test │ │ │ │ ├── status2.test │ │ │ │ ├── status_bug17954.test │ │ │ │ ├── str_to_datetime_457.test │ │ │ │ ├── strict-master.opt │ │ │ │ ├── strict.test │ │ │ │ ├── strict_autoinc_1myisam.test │ │ │ │ ├── strict_autoinc_2innodb.test │ │ │ │ ├── strict_autoinc_3heap.test │ │ │ │ ├── strings.test │ │ │ │ ├── subselect-crash_15755.test │ │ │ │ ├── subselect.test │ │ │ │ ├── subselect2.test │ │ │ │ ├── subselect3.inc │ │ │ │ ├── subselect3.test │ │ │ │ ├── subselect3_jcl6.test │ │ │ │ ├── subselect4.test │ │ │ │ ├── subselect_cache.test │ │ │ │ ├── subselect_debug.test │ │ │ │ ├── subselect_exists2in.test │ │ │ │ ├── subselect_exists2in_costmat.cnf │ │ │ │ ├── subselect_exists2in_costmat.test │ │ │ │ ├── subselect_extra.test │ │ │ │ ├── subselect_extra_no_semijoin.test │ │ │ │ ├── subselect_gis.test │ │ │ │ ├── subselect_innodb.test │ │ │ │ ├── subselect_mat.test │ │ │ │ ├── subselect_mat_cost-master.opt │ │ │ │ ├── subselect_mat_cost.cnf │ │ │ │ ├── subselect_mat_cost.test │ │ │ │ ├── subselect_mat_cost_bugs.test │ │ │ │ ├── subselect_no_exists_to_in.test │ │ │ │ ├── subselect_no_mat.test │ │ │ │ ├── subselect_no_opts.test │ │ │ │ ├── subselect_no_scache.test │ │ │ │ ├── subselect_no_semijoin.test │ │ │ │ ├── subselect_notembedded.test │ │ │ │ ├── subselect_nulls.test │ │ │ │ ├── subselect_partial_match.test │ │ │ │ ├── subselect_sj.test │ │ │ │ ├── subselect_sj2.test │ │ │ │ ├── subselect_sj2_jcl6.test │ │ │ │ ├── subselect_sj2_mat.test │ │ │ │ ├── subselect_sj_aria.test │ │ │ │ ├── subselect_sj_jcl6.test │ │ │ │ ├── subselect_sj_mat.test │ │ │ │ ├── subselect_sj_nonmerged.test │ │ │ │ ├── sum_distinct-big.test │ │ │ │ ├── sum_distinct.test │ │ │ │ ├── symlink-aria-11902.test │ │ │ │ ├── symlink-myisam-11902.test │ │ │ │ ├── symlink.test │ │ │ │ ├── synchronization.test │ │ │ │ ├── sysdate_is_now-master.opt │ │ │ │ ├── sysdate_is_now.test │ │ │ │ ├── system_mysql_db.test │ │ │ │ ├── system_mysql_db_507.test │ │ │ │ ├── system_mysql_db_error_log-master.opt │ │ │ │ ├── system_mysql_db_error_log.test │ │ │ │ ├── system_mysql_db_fix40123.test │ │ │ │ ├── system_mysql_db_fix50030.test │ │ │ │ ├── system_mysql_db_fix50117.test │ │ │ │ ├── system_mysql_db_refs.test │ │ │ │ ├── system_time_debug.test │ │ │ │ ├── table_elim.test │ │ │ │ ├── table_elim_debug.test │ │ │ │ ├── table_keyinfo-6838.test │ │ │ │ ├── table_options-5867.opt │ │ │ │ ├── table_options-5867.test │ │ │ │ ├── table_options.test │ │ │ │ ├── table_value_constr.test │ │ │ │ ├── tablelock.test │ │ │ │ ├── tablespace.test │ │ │ │ ├── tc_heuristic_recover.test │ │ │ │ ├── temp_table-master.opt │ │ │ │ ├── temp_table.test │ │ │ │ ├── temp_table_frm.test │ │ │ │ ├── temp_table_symlink.test │ │ │ │ ├── temporal_literal.test │ │ │ │ ├── temporal_scale_4283.test │ │ │ │ ├── thread_id_overflow.test │ │ │ │ ├── thread_pool_info.opt │ │ │ │ ├── thread_pool_info.test │ │ │ │ ├── timeout.test │ │ │ │ ├── timezone-master.opt │ │ │ │ ├── timezone.test │ │ │ │ ├── timezone2.test │ │ │ │ ├── timezone3-master.opt │ │ │ │ ├── timezone3.test │ │ │ │ ├── timezone4-master.opt │ │ │ │ ├── timezone4.test │ │ │ │ ├── timezone_grant.test │ │ │ │ ├── tls_version.opt │ │ │ │ ├── tls_version.test │ │ │ │ ├── tls_version1.opt │ │ │ │ ├── tls_version1.test │ │ │ │ ├── tmp_table_count-7586.test │ │ │ │ ├── trans_read_only-master.opt │ │ │ │ ├── trans_read_only.test │ │ │ │ ├── transaction_timeout.test │ │ │ │ ├── trigger-compat.test │ │ │ │ ├── trigger-trans.test │ │ │ │ ├── trigger.test │ │ │ │ ├── trigger_no_defaults-11698.test │ │ │ │ ├── trigger_notembedded.test │ │ │ │ ├── trigger_null-8605.test │ │ │ │ ├── trigger_wl3253.test │ │ │ │ ├── truncate-stale-6500.test │ │ │ │ ├── truncate.test │ │ │ │ ├── truncate_badse.opt │ │ │ │ ├── truncate_badse.test │ │ │ │ ├── truncate_coverage.test │ │ │ │ ├── truncate_notembedded.test │ │ │ │ ├── type_binary.test │ │ │ │ ├── type_bit.test │ │ │ │ ├── type_bit_innodb.test │ │ │ │ ├── type_blob.test │ │ │ │ ├── type_date.test │ │ │ │ ├── type_date_round.test │ │ │ │ ├── type_datetime.test │ │ │ │ ├── type_datetime_hires.test │ │ │ │ ├── type_datetime_round.test │ │ │ │ ├── type_decimal.test │ │ │ │ ├── type_enum.test │ │ │ │ ├── type_float.test │ │ │ │ ├── type_hex_hybrid.test │ │ │ │ ├── type_int.test │ │ │ │ ├── type_interval.test │ │ │ │ ├── type_json.test │ │ │ │ ├── type_nchar.test │ │ │ │ ├── type_newdecimal-big.test │ │ │ │ ├── type_newdecimal.test │ │ │ │ ├── type_num.test │ │ │ │ ├── type_num_innodb.test │ │ │ │ ├── type_ranges.test │ │ │ │ ├── type_row.test │ │ │ │ ├── type_set.test │ │ │ │ ├── type_temporal_innodb.test │ │ │ │ ├── type_temporal_mariadb53.test │ │ │ │ ├── type_temporal_mysql56.test │ │ │ │ ├── type_temporal_mysql56_debug.test │ │ │ │ ├── type_time.test │ │ │ │ ├── type_time_6065.test │ │ │ │ ├── type_time_hires.test │ │ │ │ ├── type_time_round.test │ │ │ │ ├── type_timestamp.test │ │ │ │ ├── type_timestamp_hires.test │ │ │ │ ├── type_timestamp_round.test │ │ │ │ ├── type_uint.test │ │ │ │ ├── type_varchar.opt │ │ │ │ ├── type_varchar.test │ │ │ │ ├── type_varchar_mysql41.test │ │ │ │ ├── type_year.test │ │ │ │ ├── udf.test │ │ │ │ ├── udf_debug_sync.test │ │ │ │ ├── udf_notembedded.test │ │ │ │ ├── udf_query_cache.test │ │ │ │ ├── udf_skip_grants-master.opt │ │ │ │ ├── udf_skip_grants.test │ │ │ │ ├── union-master.opt │ │ │ │ ├── union.test │ │ │ │ ├── union_crash-714.test │ │ │ │ ├── unique.test │ │ │ │ ├── unsafe_binlog_innodb.test │ │ │ │ ├── update.test │ │ │ │ ├── update_ignore_216.test │ │ │ │ ├── update_innodb.test │ │ │ │ ├── update_use_source.test │ │ │ │ ├── upgrade.opt │ │ │ │ ├── upgrade.test │ │ │ │ ├── upgrade_MDEV-19650.test │ │ │ │ ├── upgrade_MDEV-23102-1.test │ │ │ │ ├── upgrade_MDEV-23102-2.test │ │ │ │ ├── upgrade_mdev_24363.test │ │ │ │ ├── user_limits-master.opt │ │ │ │ ├── user_limits.test │ │ │ │ ├── user_var-binlog.test │ │ │ │ ├── user_var.test │ │ │ │ ├── userstat-badlogin-4824.test │ │ │ │ ├── userstat.opt │ │ │ │ ├── userstat.test │ │ │ │ ├── varbinary.test │ │ │ │ ├── variables-master.opt │ │ │ │ ├── variables-notembedded-master.opt │ │ │ │ ├── variables-notembedded.test │ │ │ │ ├── variables.test │ │ │ │ ├── variables_community.test │ │ │ │ ├── view.test │ │ │ │ ├── view_alias.test │ │ │ │ ├── view_debug.test │ │ │ │ ├── view_grant.test │ │ │ │ ├── wait_timeout.test │ │ │ │ ├── warnings-master.opt │ │ │ │ ├── warnings.test │ │ │ │ ├── warnings_debug.test │ │ │ │ ├── warnings_engine_disabled.test │ │ │ │ ├── win.test │ │ │ │ ├── win_as_arg_to_aggregate_func.test │ │ │ │ ├── win_avg.test │ │ │ │ ├── win_big-mdev-10092.test │ │ │ │ ├── win_big-mdev-11697.test │ │ │ │ ├── win_big.test │ │ │ │ ├── win_bit.test │ │ │ │ ├── win_empty_over.test │ │ │ │ ├── win_first_last_value.test │ │ │ │ ├── win_i_s.test │ │ │ │ ├── win_insert_select.test │ │ │ │ ├── win_lead_lag.test │ │ │ │ ├── win_min_max.test │ │ │ │ ├── win_nth_value.test │ │ │ │ ├── win_ntile.test │ │ │ │ ├── win_orderby.test │ │ │ │ ├── win_percent_cume.test │ │ │ │ ├── win_percentile.test │ │ │ │ ├── win_rank.test │ │ │ │ ├── win_std.test │ │ │ │ ├── win_sum.test │ │ │ │ ├── windows.test │ │ │ │ ├── windows_debug.test │ │ │ │ ├── wl4435_generated.inc │ │ │ │ ├── wolfssl.opt │ │ │ │ ├── wolfssl.test │ │ │ │ ├── xa.test │ │ │ │ ├── xa_binlog.test │ │ │ │ ├── xa_prepared_binlog_off-master.opt │ │ │ │ ├── xa_prepared_binlog_off.test │ │ │ │ ├── xa_sync.test │ │ │ │ ├── xml.test │ │ │ │ └── xtradb_mrr.test │ │ │ └── mono_multi/ │ │ │ ├── data_substrate1.cnf │ │ │ ├── data_substrate2.cnf │ │ │ ├── data_substrate3.cnf │ │ │ ├── disabled.def │ │ │ ├── include/ │ │ │ │ ├── have_eloq.inc │ │ │ │ ├── have_hash_partition.inc │ │ │ │ ├── have_range_partition.inc │ │ │ │ ├── mono_connect.inc │ │ │ │ ├── mono_connection.inc │ │ │ │ └── mono_init.inc │ │ │ ├── my.cnf │ │ │ ├── r/ │ │ │ │ ├── alter_schema_term_changed.result │ │ │ │ ├── alter_view.result │ │ │ │ ├── batch_pk_load.result │ │ │ │ ├── bug172.result │ │ │ │ ├── check_blocked_request.result │ │ │ │ ├── create_after_drop.result │ │ │ │ ├── create_drop_db.result │ │ │ │ ├── create_drop_function.result │ │ │ │ ├── create_drop_index.result │ │ │ │ ├── create_drop_procedure.result │ │ │ │ ├── create_drop_view.result │ │ │ │ ├── create_table_flush_kv_fail.result │ │ │ │ ├── fault_create_drop_index.result │ │ │ │ ├── fault_inject_for_upsert_1.result │ │ │ │ ├── fault_inject_for_upsert_2.result │ │ │ │ ├── fault_inject_for_upsert_3.result │ │ │ │ ├── fault_inject_for_upsert_table.result │ │ │ │ ├── fault_inject_term_neg_Execute.result │ │ │ │ ├── flush_privileges.result │ │ │ │ ├── improve_ckpt_flush_undo.result │ │ │ │ ├── improve_ckpt_flush_undo_sk1.result │ │ │ │ ├── improve_ckpt_flush_undo_sk2.result │ │ │ │ ├── init_tx_failure.result │ │ │ │ ├── m_scan_remainer_lock.result │ │ │ │ ├── mono_auto_increment.result │ │ │ │ ├── multi_dead_lock_check.result │ │ │ │ ├── multi_nodes.result │ │ │ │ ├── range_split.result │ │ │ │ ├── range_split_keycache.result │ │ │ │ ├── range_split_recovery.result │ │ │ │ ├── range_split_write_forward.result │ │ │ │ ├── read_pk_using_sk.result │ │ │ │ ├── recover_committed_tx.result │ │ │ │ ├── recover_timeout.result │ │ │ │ ├── recover_uncommitted_tx.result │ │ │ │ ├── temporary_table.result │ │ │ │ ├── tx_timeout.result │ │ │ │ └── tx_timeout_on_remote_response.result │ │ │ └── t/ │ │ │ ├── alter_schema_term_changed.test │ │ │ ├── alter_view.test │ │ │ ├── batch_pk_load.test │ │ │ ├── bug172.test │ │ │ ├── check_blocked_request.opt │ │ │ ├── check_blocked_request.test │ │ │ ├── create_after_drop.test │ │ │ ├── create_drop_db.test │ │ │ ├── create_drop_function.test │ │ │ ├── create_drop_index.test │ │ │ ├── create_drop_procedure.test │ │ │ ├── create_drop_view.test │ │ │ ├── create_table_flush_kv_fail.test │ │ │ ├── fault_create_drop_index.test │ │ │ ├── fault_inject_for_upsert_1.test │ │ │ ├── fault_inject_for_upsert_2.test │ │ │ ├── fault_inject_for_upsert_3.test │ │ │ ├── fault_inject_for_upsert_table.test │ │ │ ├── fault_inject_term_neg_Execute.test │ │ │ ├── flush_privileges.test │ │ │ ├── improve_ckpt_flush_undo.opt │ │ │ ├── improve_ckpt_flush_undo.test │ │ │ ├── improve_ckpt_flush_undo_sk1.opt │ │ │ ├── improve_ckpt_flush_undo_sk1.test │ │ │ ├── improve_ckpt_flush_undo_sk2.opt │ │ │ ├── improve_ckpt_flush_undo_sk2.test │ │ │ ├── init_tx_failure.test │ │ │ ├── m_scan_remainer_lock.test │ │ │ ├── mono_auto_increment.test │ │ │ ├── multi_dead_lock_check.opt │ │ │ ├── multi_dead_lock_check.test │ │ │ ├── multi_nodes.test │ │ │ ├── range_split.test │ │ │ ├── range_split_keycache.opt │ │ │ ├── range_split_keycache.test │ │ │ ├── range_split_recovery.opt │ │ │ ├── range_split_recovery.test │ │ │ ├── range_split_write_forward.test │ │ │ ├── read_pk_using_sk.test │ │ │ ├── recover_committed_tx.test │ │ │ ├── recover_timeout.test │ │ │ ├── recover_uncommitted_tx.test │ │ │ ├── temporary_table.test │ │ │ ├── tx_timeout.opt │ │ │ ├── tx_timeout.test │ │ │ └── tx_timeout_on_remote_response.test │ │ ├── slice.cc │ │ └── slice.h │ ├── example/ │ │ ├── CMakeLists.txt │ │ ├── ha_example.cc │ │ ├── ha_example.h │ │ └── mysql-test/ │ │ ├── README │ │ └── mtr/ │ │ ├── suite.pm │ │ └── t/ │ │ ├── combs.combinations │ │ ├── inc.inc │ │ ├── newcomb.combinations │ │ ├── over.result │ │ ├── over.test │ │ ├── self.result │ │ ├── self.test │ │ ├── source.result │ │ ├── test2,c2.result │ │ ├── test2.opt │ │ ├── test2.rdiff │ │ └── testsh-master.sh │ ├── federated/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── ha_federated.cc │ │ └── ha_federated.h │ ├── federatedx/ │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── README │ │ ├── README.windows │ │ ├── federatedx_io.cc │ │ ├── federatedx_io_mysql.cc │ │ ├── federatedx_io_null.cc │ │ ├── federatedx_probes.h │ │ ├── federatedx_pushdown.cc │ │ ├── federatedx_pushdown.h │ │ ├── federatedx_txn.cc │ │ ├── ha_federatedx.cc │ │ └── ha_federatedx.h │ ├── heap/ │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── _check.c │ │ ├── _rectest.c │ │ ├── ha_heap.cc │ │ ├── ha_heap.h │ │ ├── heapdef.h │ │ ├── hp_block.c │ │ ├── hp_clear.c │ │ ├── hp_close.c │ │ ├── hp_create.c │ │ ├── hp_delete.c │ │ ├── hp_extra.c │ │ ├── hp_hash.c │ │ ├── hp_info.c │ │ ├── hp_open.c │ │ ├── hp_panic.c │ │ ├── hp_rename.c │ │ ├── hp_rfirst.c │ │ ├── hp_rkey.c │ │ ├── hp_rlast.c │ │ ├── hp_rnext.c │ │ ├── hp_rprev.c │ │ ├── hp_rrnd.c │ │ ├── hp_rsame.c │ │ ├── hp_scan.c │ │ ├── hp_static.c │ │ ├── hp_test1.c │ │ ├── hp_test2.c │ │ ├── hp_update.c │ │ ├── hp_write.c │ │ └── mysql-test/ │ │ └── mtr2/ │ │ ├── README │ │ └── my.cnf │ ├── innobase/ │ │ ├── .clang-format-old │ │ ├── CMakeLists.txt │ │ ├── COPYING.Google │ │ ├── COPYING.Percona │ │ ├── btr/ │ │ │ ├── btr0btr.cc │ │ │ ├── btr0bulk.cc │ │ │ ├── btr0cur.cc │ │ │ ├── btr0defragment.cc │ │ │ ├── btr0pcur.cc │ │ │ └── btr0sea.cc │ │ ├── buf/ │ │ │ ├── buf0block_hint.cc │ │ │ ├── buf0buddy.cc │ │ │ ├── buf0buf.cc │ │ │ ├── buf0checksum.cc │ │ │ ├── buf0dblwr.cc │ │ │ ├── buf0dump.cc │ │ │ ├── buf0flu.cc │ │ │ ├── buf0lru.cc │ │ │ └── buf0rea.cc │ │ ├── bzip2.cmake │ │ ├── data/ │ │ │ ├── data0data.cc │ │ │ └── data0type.cc │ │ ├── dict/ │ │ │ ├── dict0boot.cc │ │ │ ├── dict0crea.cc │ │ │ ├── dict0defrag_bg.cc │ │ │ ├── dict0dict.cc │ │ │ ├── dict0load.cc │ │ │ ├── dict0mem.cc │ │ │ ├── dict0stats.cc │ │ │ ├── dict0stats_bg.cc │ │ │ └── drop.cc │ │ ├── eval/ │ │ │ ├── eval0eval.cc │ │ │ └── eval0proc.cc │ │ ├── fil/ │ │ │ ├── fil0crypt.cc │ │ │ ├── fil0fil.cc │ │ │ └── fil0pagecompress.cc │ │ ├── fsp/ │ │ │ ├── fsp0file.cc │ │ │ ├── fsp0fsp.cc │ │ │ ├── fsp0space.cc │ │ │ └── fsp0sysspace.cc │ │ ├── fts/ │ │ │ ├── Makefile.query │ │ │ ├── fts0ast.cc │ │ │ ├── fts0blex.cc │ │ │ ├── fts0blex.l │ │ │ ├── fts0config.cc │ │ │ ├── fts0fts.cc │ │ │ ├── fts0opt.cc │ │ │ ├── fts0pars.cc │ │ │ ├── fts0pars.y │ │ │ ├── fts0plugin.cc │ │ │ ├── fts0que.cc │ │ │ ├── fts0sql.cc │ │ │ ├── fts0tlex.cc │ │ │ ├── fts0tlex.l │ │ │ └── make_parser.sh │ │ ├── fut/ │ │ │ └── fut0lst.cc │ │ ├── gis/ │ │ │ ├── gis0geo.cc │ │ │ ├── gis0rtree.cc │ │ │ └── gis0sea.cc │ │ ├── ha/ │ │ │ └── ha0storage.cc │ │ ├── handler/ │ │ │ ├── ha_innodb.cc │ │ │ ├── ha_innodb.h │ │ │ ├── handler0alter.cc │ │ │ ├── i_s.cc │ │ │ └── i_s.h │ │ ├── ibuf/ │ │ │ └── ibuf0ibuf.cc │ │ ├── include/ │ │ │ ├── btr0btr.h │ │ │ ├── btr0btr.inl │ │ │ ├── btr0bulk.h │ │ │ ├── btr0cur.h │ │ │ ├── btr0cur.inl │ │ │ ├── btr0defragment.h │ │ │ ├── btr0pcur.h │ │ │ ├── btr0pcur.inl │ │ │ ├── btr0sea.h │ │ │ ├── btr0sea.inl │ │ │ ├── btr0types.h │ │ │ ├── buf0block_hint.h │ │ │ ├── buf0buddy.h │ │ │ ├── buf0buf.h │ │ │ ├── buf0buf.inl │ │ │ ├── buf0checksum.h │ │ │ ├── buf0dblwr.h │ │ │ ├── buf0dump.h │ │ │ ├── buf0flu.h │ │ │ ├── buf0lru.h │ │ │ ├── buf0rea.h │ │ │ ├── buf0types.h │ │ │ ├── data0data.h │ │ │ ├── data0data.inl │ │ │ ├── data0type.h │ │ │ ├── data0type.inl │ │ │ ├── data0types.h │ │ │ ├── db0err.h │ │ │ ├── dict0boot.h │ │ │ ├── dict0crea.h │ │ │ ├── dict0crea.inl │ │ │ ├── dict0defrag_bg.h │ │ │ ├── dict0dict.h │ │ │ ├── dict0dict.inl │ │ │ ├── dict0load.h │ │ │ ├── dict0mem.h │ │ │ ├── dict0mem.inl │ │ │ ├── dict0pagecompress.h │ │ │ ├── dict0pagecompress.inl │ │ │ ├── dict0stats.h │ │ │ ├── dict0stats.inl │ │ │ ├── dict0stats_bg.h │ │ │ ├── dict0types.h │ │ │ ├── dyn0buf.h │ │ │ ├── dyn0types.h │ │ │ ├── eval0eval.h │ │ │ ├── eval0eval.inl │ │ │ ├── eval0proc.h │ │ │ ├── eval0proc.inl │ │ │ ├── fil0crypt.h │ │ │ ├── fil0crypt.inl │ │ │ ├── fil0fil.h │ │ │ ├── fil0pagecompress.h │ │ │ ├── fsp0file.h │ │ │ ├── fsp0fsp.h │ │ │ ├── fsp0space.h │ │ │ ├── fsp0sysspace.h │ │ │ ├── fsp0types.h │ │ │ ├── fts0ast.h │ │ │ ├── fts0blex.h │ │ │ ├── fts0fts.h │ │ │ ├── fts0opt.h │ │ │ ├── fts0pars.h │ │ │ ├── fts0plugin.h │ │ │ ├── fts0priv.h │ │ │ ├── fts0priv.inl │ │ │ ├── fts0tlex.h │ │ │ ├── fts0tokenize.h │ │ │ ├── fts0types.h │ │ │ ├── fts0types.inl │ │ │ ├── fts0vlc.h │ │ │ ├── fut0lst.h │ │ │ ├── gis0geo.h │ │ │ ├── gis0rtree.h │ │ │ ├── gis0rtree.inl │ │ │ ├── gis0type.h │ │ │ ├── ha0ha.h │ │ │ ├── ha0ha.inl │ │ │ ├── ha0storage.h │ │ │ ├── ha0storage.inl │ │ │ ├── ha_prototypes.h │ │ │ ├── handler0alter.h │ │ │ ├── hash0hash.h │ │ │ ├── ibuf0ibuf.h │ │ │ ├── ibuf0ibuf.inl │ │ │ ├── ibuf0types.h │ │ │ ├── lock0iter.h │ │ │ ├── lock0lock.h │ │ │ ├── lock0lock.inl │ │ │ ├── lock0prdt.h │ │ │ ├── lock0priv.h │ │ │ ├── lock0priv.inl │ │ │ ├── lock0types.h │ │ │ ├── log0crypt.h │ │ │ ├── log0log.h │ │ │ ├── log0log.inl │ │ │ ├── log0recv.h │ │ │ ├── log0types.h │ │ │ ├── mach0data.h │ │ │ ├── mach0data.inl │ │ │ ├── mem0mem.h │ │ │ ├── mem0mem.inl │ │ │ ├── mtr0log.h │ │ │ ├── mtr0mtr.h │ │ │ ├── mtr0mtr.inl │ │ │ ├── mtr0types.h │ │ │ ├── os0file.h │ │ │ ├── os0file.inl │ │ │ ├── page0cur.h │ │ │ ├── page0cur.inl │ │ │ ├── page0page.h │ │ │ ├── page0page.inl │ │ │ ├── page0types.h │ │ │ ├── page0zip.h │ │ │ ├── page0zip.inl │ │ │ ├── pars0grm.h │ │ │ ├── pars0opt.h │ │ │ ├── pars0pars.h │ │ │ ├── pars0sym.h │ │ │ ├── pars0types.h │ │ │ ├── que0que.h │ │ │ ├── que0que.inl │ │ │ ├── que0types.h │ │ │ ├── read0types.h │ │ │ ├── rem0cmp.h │ │ │ ├── rem0cmp.inl │ │ │ ├── rem0rec.h │ │ │ ├── rem0rec.inl │ │ │ ├── rem0types.h │ │ │ ├── row0ext.h │ │ │ ├── row0ext.inl │ │ │ ├── row0ftsort.h │ │ │ ├── row0import.h │ │ │ ├── row0ins.h │ │ │ ├── row0log.h │ │ │ ├── row0merge.h │ │ │ ├── row0mysql.h │ │ │ ├── row0purge.h │ │ │ ├── row0quiesce.h │ │ │ ├── row0row.h │ │ │ ├── row0row.inl │ │ │ ├── row0sel.h │ │ │ ├── row0sel.inl │ │ │ ├── row0types.h │ │ │ ├── row0uins.h │ │ │ ├── row0umod.h │ │ │ ├── row0undo.h │ │ │ ├── row0upd.h │ │ │ ├── row0upd.inl │ │ │ ├── row0vers.h │ │ │ ├── rw_lock.h │ │ │ ├── srv0mon.h │ │ │ ├── srv0mon.inl │ │ │ ├── srv0srv.h │ │ │ ├── srv0start.h │ │ │ ├── srw_lock.h │ │ │ ├── sux_lock.h │ │ │ ├── transactional_lock_guard.h │ │ │ ├── trx0i_s.h │ │ │ ├── trx0purge.h │ │ │ ├── trx0rec.h │ │ │ ├── trx0roll.h │ │ │ ├── trx0rseg.h │ │ │ ├── trx0sys.h │ │ │ ├── trx0trx.h │ │ │ ├── trx0trx.inl │ │ │ ├── trx0types.h │ │ │ ├── trx0undo.h │ │ │ ├── trx0undo.inl │ │ │ ├── trx0xa.h │ │ │ ├── univ.i │ │ │ ├── ut0byte.h │ │ │ ├── ut0byte.inl │ │ │ ├── ut0counter.h │ │ │ ├── ut0crc32.h │ │ │ ├── ut0dbg.h │ │ │ ├── ut0list.h │ │ │ ├── ut0list.inl │ │ │ ├── ut0lst.h │ │ │ ├── ut0mem.h │ │ │ ├── ut0mem.inl │ │ │ ├── ut0new.h │ │ │ ├── ut0pool.h │ │ │ ├── ut0rbt.h │ │ │ ├── ut0rnd.h │ │ │ ├── ut0rnd.inl │ │ │ ├── ut0sort.h │ │ │ ├── ut0stage.h │ │ │ ├── ut0ut.h │ │ │ ├── ut0ut.inl │ │ │ ├── ut0vec.h │ │ │ ├── ut0vec.inl │ │ │ └── ut0wqueue.h │ │ ├── innodb.cmake │ │ ├── lock/ │ │ │ ├── lock0iter.cc │ │ │ ├── lock0lock.cc │ │ │ └── lock0prdt.cc │ │ ├── log/ │ │ │ ├── log0crypt.cc │ │ │ ├── log0log.cc │ │ │ ├── log0recv.cc │ │ │ ├── log0sync.cc │ │ │ └── log0sync.h │ │ ├── lz4.cmake │ │ ├── lzma.cmake │ │ ├── lzo.cmake │ │ ├── mem/ │ │ │ └── mem0mem.cc │ │ ├── mtr/ │ │ │ └── mtr0mtr.cc │ │ ├── mysql-test/ │ │ │ └── storage_engine/ │ │ │ ├── alter_tablespace.opt │ │ │ ├── autoinc_secondary.rdiff │ │ │ ├── cache_index.rdiff │ │ │ ├── checksum_table_live.rdiff │ │ │ ├── col_opt_not_null.opt │ │ │ ├── col_opt_null.opt │ │ │ ├── define_engine.inc │ │ │ ├── disabled.def │ │ │ ├── fulltext_search.rdiff │ │ │ ├── index_enable_disable.rdiff │ │ │ ├── index_type_hash.rdiff │ │ │ ├── insert_delayed.rdiff │ │ │ ├── lock_concurrent.rdiff │ │ │ ├── optimize_table.rdiff │ │ │ ├── parts/ │ │ │ │ ├── checksum_table.rdiff │ │ │ │ ├── create_table.rdiff │ │ │ │ ├── disabled.def │ │ │ │ ├── optimize_table.rdiff │ │ │ │ ├── repair_table.rdiff │ │ │ │ └── suite.opt │ │ │ ├── repair_table.rdiff │ │ │ ├── suite.opt │ │ │ ├── tbl_opt_index_dir.rdiff │ │ │ ├── tbl_opt_insert_method.rdiff │ │ │ ├── tbl_opt_row_format.rdiff │ │ │ ├── tbl_opt_union.rdiff │ │ │ ├── trx/ │ │ │ │ ├── cons_snapshot_serializable.rdiff │ │ │ │ ├── level_read_committed.rdiff │ │ │ │ ├── level_read_uncommitted.rdiff │ │ │ │ └── suite.opt │ │ │ ├── type_blob.opt │ │ │ ├── type_char_indexes.rdiff │ │ │ ├── type_float_indexes.rdiff │ │ │ └── type_text.opt │ │ ├── os/ │ │ │ └── os0file.cc │ │ ├── page/ │ │ │ ├── page0cur.cc │ │ │ ├── page0page.cc │ │ │ └── page0zip.cc │ │ ├── pars/ │ │ │ ├── lexyy.cc │ │ │ ├── make_bison.sh │ │ │ ├── make_flex.sh │ │ │ ├── pars0grm.cc │ │ │ ├── pars0grm.y │ │ │ ├── pars0lex.l │ │ │ ├── pars0opt.cc │ │ │ ├── pars0pars.cc │ │ │ └── pars0sym.cc │ │ ├── plugin_exports │ │ ├── que/ │ │ │ └── que0que.cc │ │ ├── read/ │ │ │ └── read0read.cc │ │ ├── rem/ │ │ │ ├── rem0cmp.cc │ │ │ └── rem0rec.cc │ │ ├── row/ │ │ │ ├── row0ext.cc │ │ │ ├── row0ftsort.cc │ │ │ ├── row0import.cc │ │ │ ├── row0ins.cc │ │ │ ├── row0log.cc │ │ │ ├── row0merge.cc │ │ │ ├── row0mysql.cc │ │ │ ├── row0purge.cc │ │ │ ├── row0quiesce.cc │ │ │ ├── row0row.cc │ │ │ ├── row0sel.cc │ │ │ ├── row0uins.cc │ │ │ ├── row0umod.cc │ │ │ ├── row0undo.cc │ │ │ ├── row0upd.cc │ │ │ └── row0vers.cc │ │ ├── snappy.cmake │ │ ├── srv/ │ │ │ ├── srv0mon.cc │ │ │ ├── srv0srv.cc │ │ │ └── srv0start.cc │ │ ├── sync/ │ │ │ └── srw_lock.cc │ │ ├── trx/ │ │ │ ├── trx0i_s.cc │ │ │ ├── trx0purge.cc │ │ │ ├── trx0rec.cc │ │ │ ├── trx0roll.cc │ │ │ ├── trx0rseg.cc │ │ │ ├── trx0sys.cc │ │ │ ├── trx0trx.cc │ │ │ └── trx0undo.cc │ │ ├── unittest/ │ │ │ ├── CMakeLists.txt │ │ │ ├── innodb_fts-t.cc │ │ │ └── innodb_sync-t.cc │ │ └── ut/ │ │ ├── ut0dbg.cc │ │ ├── ut0list.cc │ │ ├── ut0mem.cc │ │ ├── ut0new.cc │ │ ├── ut0rbt.cc │ │ ├── ut0rnd.cc │ │ ├── ut0ut.cc │ │ ├── ut0vec.cc │ │ └── ut0wqueue.cc │ ├── maria/ │ │ ├── CMakeLists.txt │ │ ├── aria_chk.c │ │ ├── aria_dump_log.c │ │ ├── aria_ftdump.c │ │ ├── aria_pack.c │ │ ├── aria_read_log.c │ │ ├── aria_s3_copy.cc │ │ ├── file_formats.txt │ │ ├── ft_maria.c │ │ ├── ha_maria.cc │ │ ├── ha_maria.h │ │ ├── ha_s3.cc │ │ ├── ha_s3.h │ │ ├── lockman.c │ │ ├── lockman.h │ │ ├── ma_backup.c │ │ ├── ma_bitmap.c │ │ ├── ma_blockrec.c │ │ ├── ma_blockrec.h │ │ ├── ma_cache.c │ │ ├── ma_changed.c │ │ ├── ma_check.c │ │ ├── ma_check.h │ │ ├── ma_check_standalone.h │ │ ├── ma_checkpoint.c │ │ ├── ma_checkpoint.h │ │ ├── ma_checksum.c │ │ ├── ma_close.c │ │ ├── ma_commit.c │ │ ├── ma_commit.h │ │ ├── ma_control_file.c │ │ ├── ma_control_file.h │ │ ├── ma_create.c │ │ ├── ma_crypt.c │ │ ├── ma_crypt.h │ │ ├── ma_dbug.c │ │ ├── ma_delete.c │ │ ├── ma_delete_all.c │ │ ├── ma_delete_table.c │ │ ├── ma_dynrec.c │ │ ├── ma_extra.c │ │ ├── ma_ft_boolean_search.c │ │ ├── ma_ft_eval.c │ │ ├── ma_ft_eval.h │ │ ├── ma_ft_nlq_search.c │ │ ├── ma_ft_parser.c │ │ ├── ma_ft_stem.c │ │ ├── ma_ft_test1.c │ │ ├── ma_ft_test1.h │ │ ├── ma_ft_update.c │ │ ├── ma_ftdefs.h │ │ ├── ma_fulltext.h │ │ ├── ma_info.c │ │ ├── ma_init.c │ │ ├── ma_key.c │ │ ├── ma_key_recover.c │ │ ├── ma_key_recover.h │ │ ├── ma_keycache.c │ │ ├── ma_locking.c │ │ ├── ma_loghandler.c │ │ ├── ma_loghandler.h │ │ ├── ma_loghandler_lsn.h │ │ ├── ma_norec.c │ │ ├── ma_open.c │ │ ├── ma_packrec.c │ │ ├── ma_page.c │ │ ├── ma_pagecache.c │ │ ├── ma_pagecache.h │ │ ├── ma_pagecaches.c │ │ ├── ma_pagecrc.c │ │ ├── ma_panic.c │ │ ├── ma_preload.c │ │ ├── ma_range.c │ │ ├── ma_recovery.c │ │ ├── ma_recovery.h │ │ ├── ma_recovery_util.c │ │ ├── ma_recovery_util.h │ │ ├── ma_rename.c │ │ ├── ma_rfirst.c │ │ ├── ma_rkey.c │ │ ├── ma_rlast.c │ │ ├── ma_rnext.c │ │ ├── ma_rnext_same.c │ │ ├── ma_rprev.c │ │ ├── ma_rrnd.c │ │ ├── ma_rsame.c │ │ ├── ma_rsamepos.c │ │ ├── ma_rt_index.c │ │ ├── ma_rt_index.h │ │ ├── ma_rt_key.c │ │ ├── ma_rt_key.h │ │ ├── ma_rt_mbr.c │ │ ├── ma_rt_mbr.h │ │ ├── ma_rt_split.c │ │ ├── ma_rt_test.c │ │ ├── ma_scan.c │ │ ├── ma_search.c │ │ ├── ma_servicethread.c │ │ ├── ma_servicethread.h │ │ ├── ma_sort.c │ │ ├── ma_sp_defs.h │ │ ├── ma_sp_key.c │ │ ├── ma_sp_test.c │ │ ├── ma_state.c │ │ ├── ma_state.h │ │ ├── ma_static.c │ │ ├── ma_statrec.c │ │ ├── ma_test1.c │ │ ├── ma_test2.c │ │ ├── ma_test3.c │ │ ├── ma_test_all.sh │ │ ├── ma_test_big.sh │ │ ├── ma_test_force_start.pl │ │ ├── ma_test_recovery │ │ ├── ma_trnman.h │ │ ├── ma_unique.c │ │ ├── ma_update.c │ │ ├── ma_write.c │ │ ├── maria_def.h │ │ ├── s3.cnf │ │ ├── s3_func.c │ │ ├── s3_func.h │ │ ├── tablockman.c │ │ ├── tablockman.h │ │ ├── test_aria_s3_copy.sh │ │ ├── test_ma_backup.c │ │ ├── test_pack │ │ ├── trnman.c │ │ ├── trnman.h │ │ ├── trnman_public.h │ │ └── unittest/ │ │ ├── CMakeLists.txt │ │ ├── lockman-t.c │ │ ├── lockman1-t.c │ │ ├── lockman2-t.c │ │ ├── ma_control_file-t.c │ │ ├── ma_loghandler_examples.c │ │ ├── ma_maria_log_cleanup.c │ │ ├── ma_pagecache_consist.c │ │ ├── ma_pagecache_rwconsist.c │ │ ├── ma_pagecache_rwconsist2.c │ │ ├── ma_pagecache_single.c │ │ ├── ma_test_loghandler-t.c │ │ ├── ma_test_loghandler_first_lsn-t.c │ │ ├── ma_test_loghandler_max_lsn-t.c │ │ ├── ma_test_loghandler_multigroup-t.c │ │ ├── ma_test_loghandler_multithread-t.c │ │ ├── ma_test_loghandler_noflush-t.c │ │ ├── ma_test_loghandler_nologs-t.c │ │ ├── ma_test_loghandler_pagecache-t.c │ │ ├── ma_test_loghandler_purge-t.c │ │ ├── ma_test_recovery.expected │ │ ├── ma_test_recovery.pl │ │ ├── sequence_storage.c │ │ ├── sequence_storage.h │ │ ├── test_file.c │ │ ├── test_file.h │ │ └── trnman-t.c │ ├── mroonga/ │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── appveyor.yml │ │ ├── autogen.sh │ │ ├── config.sh.in │ │ ├── configure.ac │ │ ├── data/ │ │ │ ├── Makefile.am │ │ │ ├── install.sql.in │ │ │ └── uninstall.sql │ │ ├── gpg_uid │ │ ├── ha_mroonga.cpp │ │ ├── ha_mroonga.def │ │ ├── ha_mroonga.hpp │ │ ├── lib/ │ │ │ ├── Makefile.am │ │ │ ├── libmrn_need_mysql_sources.am │ │ │ ├── libmrn_no_mysql_sources.am │ │ │ ├── libmysqlservices_compat_sources.am │ │ │ ├── mrn_auto_increment_value_lock.cpp │ │ │ ├── mrn_auto_increment_value_lock.hpp │ │ │ ├── mrn_column_name.cpp │ │ │ ├── mrn_column_name.hpp │ │ │ ├── mrn_condition_converter.cpp │ │ │ ├── mrn_condition_converter.hpp │ │ │ ├── mrn_context_pool.cpp │ │ │ ├── mrn_context_pool.hpp │ │ │ ├── mrn_count_skip_checker.cpp │ │ │ ├── mrn_count_skip_checker.hpp │ │ │ ├── mrn_current_thread.hpp │ │ │ ├── mrn_database.cpp │ │ │ ├── mrn_database.hpp │ │ │ ├── mrn_database_manager.cpp │ │ │ ├── mrn_database_manager.hpp │ │ │ ├── mrn_database_repairer.cpp │ │ │ ├── mrn_database_repairer.hpp │ │ │ ├── mrn_debug_column_access.cpp │ │ │ ├── mrn_debug_column_access.hpp │ │ │ ├── mrn_encoding.cpp │ │ │ ├── mrn_encoding.hpp │ │ │ ├── mrn_external_lock.cpp │ │ │ ├── mrn_external_lock.hpp │ │ │ ├── mrn_field_normalizer.cpp │ │ │ ├── mrn_field_normalizer.hpp │ │ │ ├── mrn_grn.hpp │ │ │ ├── mrn_index_column_name.cpp │ │ │ ├── mrn_index_column_name.hpp │ │ │ ├── mrn_index_table_name.cpp │ │ │ ├── mrn_index_table_name.hpp │ │ │ ├── mrn_lock.cpp │ │ │ ├── mrn_lock.hpp │ │ │ ├── mrn_match_escalation_threshold_scope.cpp │ │ │ ├── mrn_match_escalation_threshold_scope.hpp │ │ │ ├── mrn_multiple_column_key_codec.cpp │ │ │ ├── mrn_multiple_column_key_codec.hpp │ │ │ ├── mrn_mysqlservices.cpp │ │ │ ├── mrn_operation.cpp │ │ │ ├── mrn_operation.hpp │ │ │ ├── mrn_operations.cpp │ │ │ ├── mrn_operations.hpp │ │ │ ├── mrn_parameters_parser.cpp │ │ │ ├── mrn_parameters_parser.hpp │ │ │ ├── mrn_path_mapper.cpp │ │ │ ├── mrn_path_mapper.hpp │ │ │ ├── mrn_query_parser.cpp │ │ │ ├── mrn_query_parser.hpp │ │ │ ├── mrn_smart_bitmap.cpp │ │ │ ├── mrn_smart_bitmap.hpp │ │ │ ├── mrn_smart_grn_obj.cpp │ │ │ ├── mrn_smart_grn_obj.hpp │ │ │ ├── mrn_table_fields_offset_mover.cpp │ │ │ ├── mrn_table_fields_offset_mover.hpp │ │ │ ├── mrn_time_converter.cpp │ │ │ ├── mrn_time_converter.hpp │ │ │ ├── mrn_value_decoder.cpp │ │ │ ├── mrn_value_decoder.hpp │ │ │ └── mrn_windows.hpp │ │ ├── mrn_constants.hpp │ │ ├── mrn_err.h │ │ ├── mrn_macro.hpp │ │ ├── mrn_mysql.h │ │ ├── mrn_mysql_compat.h │ │ ├── mrn_table.cpp │ │ ├── mrn_table.hpp │ │ ├── mrn_variables.hpp │ │ ├── mrn_version.h.in │ │ ├── mysql-test/ │ │ │ ├── Makefile.am │ │ │ └── mroonga/ │ │ │ ├── include/ │ │ │ │ └── mroonga/ │ │ │ │ ├── check_64bit.inc │ │ │ │ ├── check_freebsd.inc │ │ │ │ ├── check_ha_mroonga_so.inc │ │ │ │ ├── check_libgroonga_embedded.inc │ │ │ │ ├── check_libgroonga_support_lz4.inc │ │ │ │ ├── check_libgroonga_support_zlib.inc │ │ │ │ ├── check_libgroonga_support_zstd.inc │ │ │ │ ├── check_mariadb.inc │ │ │ │ ├── check_osx.inc │ │ │ │ ├── check_solaris.inc │ │ │ │ ├── check_strict_sql_mode.inc │ │ │ │ ├── check_version.inc │ │ │ │ ├── check_windows.inc │ │ │ │ ├── have_fractional_seconds.inc │ │ │ │ ├── have_freebsd.inc │ │ │ │ ├── have_groonga_plugin_register.inc │ │ │ │ ├── have_mariadb.inc │ │ │ │ ├── have_mariadb_10_2_or_later.inc │ │ │ │ ├── have_mroonga.inc │ │ │ │ ├── have_mroonga_deinit.inc │ │ │ │ ├── have_mroonga_helper.inc │ │ │ │ ├── have_mysql.inc │ │ │ │ ├── have_mysql_5_7_or_later.inc │ │ │ │ ├── have_signed_64bit_time_t.inc │ │ │ │ ├── have_solaris.inc │ │ │ │ ├── have_strict_sql_mode.inc │ │ │ │ ├── have_version_10_0.inc │ │ │ │ ├── have_version_10_0_or_later.inc │ │ │ │ ├── have_version_5_5.inc │ │ │ │ ├── have_version_5_6.inc │ │ │ │ ├── have_version_5_6_or_later.inc │ │ │ │ ├── have_version_5_7.inc │ │ │ │ ├── have_version_5_7_or_later.inc │ │ │ │ ├── load_mroonga_functions.inc │ │ │ │ ├── print_groonga_query_log.inc │ │ │ │ ├── skip_freebsd.inc │ │ │ │ ├── skip_mariadb_10_0_or_later.inc │ │ │ │ ├── skip_mariadb_10_1.inc │ │ │ │ ├── skip_mariadb_10_1_or_earlier.inc │ │ │ │ ├── skip_mariadb_10_2_or_later.inc │ │ │ │ ├── skip_mariadb_5_5.inc │ │ │ │ ├── skip_mysql_5_5.inc │ │ │ │ ├── skip_mysql_5_7.inc │ │ │ │ ├── skip_mysql_5_7_or_later.inc │ │ │ │ ├── skip_osx.inc │ │ │ │ ├── skip_signed_64bit_time_t.inc │ │ │ │ ├── skip_solaris.inc │ │ │ │ ├── skip_strict_sql_mode.inc │ │ │ │ ├── support_libgroonga_lz4.inc │ │ │ │ ├── support_libgroonga_zlib.inc │ │ │ │ ├── support_libgroonga_zstd.inc │ │ │ │ ├── unload_mroonga_functions.inc │ │ │ │ ├── unsupport_libgroonga_lz4.inc │ │ │ │ ├── unsupport_libgroonga_zlib.inc │ │ │ │ └── unsupport_libgroonga_zstd.inc │ │ │ ├── storage/ │ │ │ │ ├── disabled.def │ │ │ │ ├── r/ │ │ │ │ │ ├── alter_table_add_column_after.result │ │ │ │ │ ├── alter_table_add_column_first.result │ │ │ │ │ ├── alter_table_add_column_flags_comment.result │ │ │ │ │ ├── alter_table_add_column_flags_parameter.result │ │ │ │ │ ├── alter_table_add_column_groonga_type_comment.result │ │ │ │ │ ├── alter_table_add_column_groonga_type_parameter.result │ │ │ │ │ ├── alter_table_add_column_multibyte_cp932.result │ │ │ │ │ ├── alter_table_add_column_multibyte_utf8.result │ │ │ │ │ ├── alter_table_add_column_multiple.result │ │ │ │ │ ├── alter_table_add_column_plain.result │ │ │ │ │ ├── alter_table_add_column_type_comment.result │ │ │ │ │ ├── alter_table_add_index_token_filters_one_token_filter.result │ │ │ │ │ ├── alter_table_add_index_unique_duplicated.result │ │ │ │ │ ├── alter_table_add_index_unique_multiple_column_duplicated.result │ │ │ │ │ ├── alter_table_add_key_multiple_column_with_data.result │ │ │ │ │ ├── alter_table_add_primary_key.result │ │ │ │ │ ├── alter_table_change_column_comment_not_for_mroonga.result │ │ │ │ │ ├── alter_table_change_column_have_index.result │ │ │ │ │ ├── alter_table_change_column_rename_after.result │ │ │ │ │ ├── alter_table_change_column_rename_first.result │ │ │ │ │ ├── alter_table_change_column_rename_multiple.result │ │ │ │ │ ├── alter_table_change_column_rename_no_order.result │ │ │ │ │ ├── alter_table_change_engine_decimal.result │ │ │ │ │ ├── alter_table_change_engine_fulltext_index.result │ │ │ │ │ ├── alter_table_change_token_filter.result │ │ │ │ │ ├── alter_table_disable_keys_create_fulltext.result │ │ │ │ │ ├── alter_table_disable_keys_fulltext_table.result │ │ │ │ │ ├── alter_table_disable_keys_fulltext_ujis.result │ │ │ │ │ ├── alter_table_disable_keys_fulltext_utf8.result │ │ │ │ │ ├── alter_table_disable_keys_multiple_column.result │ │ │ │ │ ├── alter_table_disable_keys_normal.result │ │ │ │ │ ├── alter_table_disable_keys_primary.result │ │ │ │ │ ├── alter_table_disable_keys_truncate.result │ │ │ │ │ ├── alter_table_disable_keys_updating.result │ │ │ │ │ ├── alter_table_drop_column_multiple.result │ │ │ │ │ ├── alter_table_drop_column_one.result │ │ │ │ │ ├── alter_table_drop_key_multiple_column_with_data.result │ │ │ │ │ ├── alter_table_drop_primary_key.result │ │ │ │ │ ├── alter_table_enable_keys_fulltext.result │ │ │ │ │ ├── alter_table_enable_keys_fulltext_table.result │ │ │ │ │ ├── alter_table_enable_keys_fulltext_ujis.result │ │ │ │ │ ├── alter_table_enable_keys_fulltext_utf8.result │ │ │ │ │ ├── alter_table_enable_keys_multiple_column.result │ │ │ │ │ ├── alter_table_enable_keys_normal.result │ │ │ │ │ ├── alter_table_enable_keys_primary.result │ │ │ │ │ ├── alter_table_fulltext_add_no_primary_key.result │ │ │ │ │ ├── alter_table_fulltext_add_normal.result │ │ │ │ │ ├── alter_table_fulltext_add_table.result │ │ │ │ │ ├── alter_table_fulltext_drop_table.result │ │ │ │ │ ├── alter_table_modify_column_after.result │ │ │ │ │ ├── alter_table_modify_column_first.result │ │ │ │ │ ├── alter_table_modify_column_no_order.result │ │ │ │ │ ├── alter_table_recreate_anonymous_index_at_once.result │ │ │ │ │ ├── alter_table_rename_table.result │ │ │ │ │ ├── alter_table_spatial.result │ │ │ │ │ ├── auto_increment_TODO_SPLIT_ME.result │ │ │ │ │ ├── auto_increment_table_param.result │ │ │ │ │ ├── auto_increment_text.result │ │ │ │ │ ├── binlog_TODO_SPLIT_ME.result │ │ │ │ │ ├── check_table_broken.result │ │ │ │ │ ├── check_table_not_broken.result │ │ │ │ │ ├── collation_utf8_general_ci_french.result │ │ │ │ │ ├── collation_utf8_unicode_520_ci_french.result │ │ │ │ │ ├── collation_utf8_unicode_520_ci_japanese.result │ │ │ │ │ ├── collation_utf8_unicode_ci_french.result │ │ │ │ │ ├── collation_utf8_unicode_ci_japanese.result │ │ │ │ │ ├── column_comment_index_not_for_mroonga.result │ │ │ │ │ ├── column_comment_normal_not_for_mroonga.result │ │ │ │ │ ├── column_date_with_index.result │ │ │ │ │ ├── column_date_without_index.result │ │ │ │ │ ├── column_date_zero_date.result │ │ │ │ │ ├── column_datetime_32bit_2038.result │ │ │ │ │ ├── column_datetime_32bit_before_unix_epoch.result │ │ │ │ │ ├── column_datetime_32bit_max.result │ │ │ │ │ ├── column_datetime_32bit_out_of_range.result │ │ │ │ │ ├── column_datetime_64bit_2038.result │ │ │ │ │ ├── column_datetime_64bit_before_unix_epoch.result │ │ │ │ │ ├── column_datetime_64bit_max.result │ │ │ │ │ ├── column_datetime_64bit_strict_sql_mode_out_of_range.result │ │ │ │ │ ├── column_datetime_64bit_version_5_5_out_of_range.result │ │ │ │ │ ├── column_datetime_64bit_version_5_6_or_later_out_of_range.result │ │ │ │ │ ├── column_datetime_fractional_seconds_with_index.result │ │ │ │ │ ├── column_datetime_fractional_seconds_without_index.result │ │ │ │ │ ├── column_datetime_freebsd_before_unix_epoch.result │ │ │ │ │ ├── column_datetime_mariadb_10_2_or_later_zero_date.result │ │ │ │ │ ├── column_datetime_mariadb_10_2_or_later_zero_month_day.result │ │ │ │ │ ├── column_datetime_mysql_5_7_or_later_zero_date.result │ │ │ │ │ ├── column_datetime_mysql_5_7_or_later_zero_month_day.result │ │ │ │ │ ├── column_datetime_null.result │ │ │ │ │ ├── column_datetime_with_index.result │ │ │ │ │ ├── column_datetime_without_index.result │ │ │ │ │ ├── column_datetime_zero_date.result │ │ │ │ │ ├── column_datetime_zero_month_day.result │ │ │ │ │ ├── column_decimal_fractional_seconds_with_index.result │ │ │ │ │ ├── column_decimal_fractional_seconds_without_index.result │ │ │ │ │ ├── column_decimal_with_index.result │ │ │ │ │ ├── column_decimal_without_index.result │ │ │ │ │ ├── column_enum_less_with_index.result │ │ │ │ │ ├── column_enum_many_with_index.result │ │ │ │ │ ├── column_generated_stored_add_column.result │ │ │ │ │ ├── column_generated_stored_delete.result │ │ │ │ │ ├── column_generated_stored_drop_column.result │ │ │ │ │ ├── column_generated_stored_insert.result │ │ │ │ │ ├── column_generated_stored_reindex.result │ │ │ │ │ ├── column_generated_stored_update.result │ │ │ │ │ ├── column_generated_virtual_add_column.result │ │ │ │ │ ├── column_generated_virtual_delete.result │ │ │ │ │ ├── column_generated_virtual_drop_column.result │ │ │ │ │ ├── column_generated_virtual_insert.result │ │ │ │ │ ├── column_generated_virtual_mariadb_10_2_or_later_add_index.result │ │ │ │ │ ├── column_generated_virtual_mariadb_10_2_or_later_create_table_with_index.result │ │ │ │ │ ├── column_generated_virtual_mysql_5_7_or_later_add_index.result │ │ │ │ │ ├── column_generated_virtual_update.result │ │ │ │ │ ├── column_groonga__id__id.result │ │ │ │ │ ├── column_groonga__id_invalid_id.result │ │ │ │ │ ├── column_groonga_index_fulltext_other_table.result │ │ │ │ │ ├── column_groonga_index_fulltext_vector_other_table.result │ │ │ │ │ ├── column_groonga_index_int_other_table.result │ │ │ │ │ ├── column_groonga_scalar_reference.result │ │ │ │ │ ├── column_groonga_scalar_support_lz4.result │ │ │ │ │ ├── column_groonga_scalar_support_zlib.result │ │ │ │ │ ├── column_groonga_scalar_support_zstd.result │ │ │ │ │ ├── column_groonga_scalar_unsupport_lz4.result │ │ │ │ │ ├── column_groonga_scalar_unsupport_zlib.result │ │ │ │ │ ├── column_groonga_scalar_unsupport_zstd.result │ │ │ │ │ ├── column_groonga_scalar_with_not_for_mroonga_comment.result │ │ │ │ │ ├── column_groonga_vector_order_by_with_function.result │ │ │ │ │ ├── column_groonga_vector_reference.result │ │ │ │ │ ├── column_int_with_index_zero_value.result │ │ │ │ │ ├── column_json_insert.result │ │ │ │ │ ├── column_multibyte_cp932.result │ │ │ │ │ ├── column_multibyte_utf8.result │ │ │ │ │ ├── column_set_16_with_index.result │ │ │ │ │ ├── column_set_24_with_index.result │ │ │ │ │ ├── column_set_32_with_index.result │ │ │ │ │ ├── column_set_64_with_index.result │ │ │ │ │ ├── column_set_8_with_index.result │ │ │ │ │ ├── column_signed_bigint_with_index.result │ │ │ │ │ ├── column_signed_int_with_index.result │ │ │ │ │ ├── column_signed_mediumint_with_index.result │ │ │ │ │ ├── column_signed_smallint_with_index.result │ │ │ │ │ ├── column_signed_tinyint_with_index.result │ │ │ │ │ ├── column_time_fractional_seconds_with_index.result │ │ │ │ │ ├── column_time_with_index.result │ │ │ │ │ ├── column_timestamp_fractional_seconds_with_index.result │ │ │ │ │ ├── column_timestamp_with_index.result │ │ │ │ │ ├── column_tinyint_without_index.result │ │ │ │ │ ├── column_unsigned_bigint_with_index.result │ │ │ │ │ ├── column_unsigned_bigint_without_index.result │ │ │ │ │ ├── column_unsigned_int_with_index.result │ │ │ │ │ ├── column_unsigned_mediumint_with_index.result │ │ │ │ │ ├── column_unsigned_smallint_with_index.result │ │ │ │ │ ├── column_unsigned_tinyint_with_index.result │ │ │ │ │ ├── column_year_with_index.result │ │ │ │ │ ├── column_year_without_index.result │ │ │ │ │ ├── count_star.result │ │ │ │ │ ├── create_database_name_slash.result │ │ │ │ │ ├── create_table_TODO_SPLIT_ME.result │ │ │ │ │ ├── create_table_column_flags_comment.result │ │ │ │ │ ├── create_table_column_flags_parameter.result │ │ │ │ │ ├── create_table_column_groonga_type_comment.result │ │ │ │ │ ├── create_table_column_groonga_type_nonexistent.result │ │ │ │ │ ├── create_table_column_groonga_type_parameter.result │ │ │ │ │ ├── create_table_column_type_comment.result │ │ │ │ │ ├── create_table_column_type_nonexistent.result │ │ │ │ │ ├── create_table_comment_normal.result │ │ │ │ │ ├── create_table_default_tokenizer.result │ │ │ │ │ ├── create_table_index_flags_comment.result │ │ │ │ │ ├── create_table_index_flags_index_medium.result │ │ │ │ │ ├── create_table_index_flags_index_small.result │ │ │ │ │ ├── create_table_index_flags_none.result │ │ │ │ │ ├── create_table_index_flags_parameter.result │ │ │ │ │ ├── create_table_index_index_flags_none.result │ │ │ │ │ ├── create_table_index_index_flags_with_position_and_with_weight.result │ │ │ │ │ ├── create_table_index_normalizer_comment.result │ │ │ │ │ ├── create_table_index_normalizer_fulltext_index_bin.result │ │ │ │ │ ├── create_table_index_normalizer_index_bin.result │ │ │ │ │ ├── create_table_index_normalizer_no_utf8_charset_with_utf8_normalizer.result │ │ │ │ │ ├── create_table_index_normalizer_none.result │ │ │ │ │ ├── create_table_index_normalizer_parameter.result │ │ │ │ │ ├── create_table_index_parser_comment.result │ │ │ │ │ ├── create_table_index_parser_default.result │ │ │ │ │ ├── create_table_index_parser_off.result │ │ │ │ │ ├── create_table_index_token_filters_multiple_token_filters.result │ │ │ │ │ ├── create_table_index_token_filters_one_token_filter.result │ │ │ │ │ ├── create_table_index_token_filters_parameter.result │ │ │ │ │ ├── create_table_index_tokenizer_comment.result │ │ │ │ │ ├── create_table_index_tokenizer_default.result │ │ │ │ │ ├── create_table_index_tokenizer_off.result │ │ │ │ │ ├── create_table_index_tokenizer_parameter.result │ │ │ │ │ ├── create_table_table_normalizer_default.result │ │ │ │ │ ├── create_table_table_normalizer_hash.result │ │ │ │ │ ├── create_table_table_token_filters_multiple_token_filters.result │ │ │ │ │ ├── create_table_table_token_filters_one_token_filter.result │ │ │ │ │ ├── create_table_table_token_filters_stop_word.result │ │ │ │ │ ├── delete_fulltext_column.result │ │ │ │ │ ├── delete_index_btree_many_records.result │ │ │ │ │ ├── delete_index_hash_id_no_unique.result │ │ │ │ │ ├── delete_index_hash_id_unique.result │ │ │ │ │ ├── delete_normal_column.result │ │ │ │ │ ├── delete_unsigned_bigint.result │ │ │ │ │ ├── drop_database_TODO_SPLIT_ME.result │ │ │ │ │ ├── drop_database_no_table.result │ │ │ │ │ ├── drop_table_TODO_SPLIT_ME.result │ │ │ │ │ ├── flush_logs.result │ │ │ │ │ ├── foreign_key_alter_add.result │ │ │ │ │ ├── foreign_key_alter_drop.result │ │ │ │ │ ├── foreign_key_create.result │ │ │ │ │ ├── foreign_key_delete_existent.result │ │ │ │ │ ├── foreign_key_delete_nonexistent.result │ │ │ │ │ ├── foreign_key_insert_existent.result │ │ │ │ │ ├── foreign_key_insert_nonexistent.result │ │ │ │ │ ├── foreign_key_rename.result │ │ │ │ │ ├── foreign_key_update_existent.result │ │ │ │ │ ├── foreign_key_update_nonexistent.result │ │ │ │ │ ├── fulltext_boolean_mode_empty_query.result │ │ │ │ │ ├── fulltext_boolean_mode_escape.result │ │ │ │ │ ├── fulltext_boolean_mode_leading_not.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_all.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_no_operator.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_or.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_plus.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_no_operator.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_minus.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_plus.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_no_operator.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_astarisk.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_minus.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_or.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_syntax_script_operator.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_syntax_script_selector.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_full_spec.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_no_weight.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_omit_section.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_ten_or_more_sections.result │ │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_three_or_more_sections.result │ │ │ │ │ ├── fulltext_boolean_mode_syntax_error_error.result │ │ │ │ │ ├── fulltext_boolean_mode_syntax_error_error_and_log.result │ │ │ │ │ ├── fulltext_boolean_mode_syntax_error_ignore.result │ │ │ │ │ ├── fulltext_boolean_mode_syntax_error_ignore_and_log.result │ │ │ │ │ ├── fulltext_charset_ascii.result │ │ │ │ │ ├── fulltext_charset_cp932.result │ │ │ │ │ ├── fulltext_charset_eucjpms.result │ │ │ │ │ ├── fulltext_charset_japanese.result │ │ │ │ │ ├── fulltext_charset_utf8mb4.result │ │ │ │ │ ├── fulltext_empty_query.result │ │ │ │ │ ├── fulltext_found_rows.result │ │ │ │ │ ├── fulltext_groonga_varchar_vector.result │ │ │ │ │ ├── fulltext_index_recreate.result │ │ │ │ │ ├── fulltext_insert_select.result │ │ │ │ │ ├── fulltext_insert_values.result │ │ │ │ │ ├── fulltext_multiple_column_index_delete.result │ │ │ │ │ ├── fulltext_multiple_column_index_insert.result │ │ │ │ │ ├── fulltext_multiple_column_index_recreate.result │ │ │ │ │ ├── fulltext_multiple_column_index_update.result │ │ │ │ │ ├── fulltext_multiple_index.result │ │ │ │ │ ├── fulltext_no_primary_key.result │ │ │ │ │ ├── fulltext_not_match_against.result │ │ │ │ │ ├── fulltext_or.result │ │ │ │ │ ├── fulltext_order_boolean_mode_different_against.result │ │ │ │ │ ├── fulltext_order_boolean_mode_different_match.result │ │ │ │ │ ├── fulltext_order_boolean_mode_no_where.result │ │ │ │ │ ├── fulltext_order_boolean_mode_same_match_against.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_asc.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_desc.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_different_against.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_different_match.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_no_where.result │ │ │ │ │ ├── fulltext_order_natural_language_mode_same_match_against.result │ │ │ │ │ ├── fulltext_two_inner_join.result │ │ │ │ │ ├── fulltext_version_10_0_no_such_key.result │ │ │ │ │ ├── fulltext_version_5_5_no_such_key.result │ │ │ │ │ ├── fulltext_version_5_6_no_such_key.result │ │ │ │ │ ├── function_command_auto-escape.result │ │ │ │ │ ├── function_command_select.result │ │ │ │ │ ├── function_command_special-database-name.result │ │ │ │ │ ├── function_escape_error_query_is_missing.result │ │ │ │ │ ├── function_escape_error_query_is_not_string.result │ │ │ │ │ ├── function_escape_error_target_characters_is_not_string.result │ │ │ │ │ ├── function_escape_query_all.result │ │ │ │ │ ├── function_escape_query_custom.result │ │ │ │ │ ├── function_escape_query_join.result │ │ │ │ │ ├── function_escape_query_match_against.result │ │ │ │ │ ├── function_escape_query_named.result │ │ │ │ │ ├── function_escape_query_nested.result │ │ │ │ │ ├── function_escape_script_decimal.result │ │ │ │ │ ├── function_escape_script_integer.result │ │ │ │ │ ├── function_escape_script_real.result │ │ │ │ │ ├── function_escape_script_string.result │ │ │ │ │ ├── function_highlight_html_dynamic_keyword.result │ │ │ │ │ ├── function_highlight_html_japanese.result │ │ │ │ │ ├── function_highlight_html_multiple_keywords.result │ │ │ │ │ ├── function_highlight_html_normalizer.result │ │ │ │ │ ├── function_highlight_html_query.result │ │ │ │ │ ├── function_highlight_html_query_pragma.result │ │ │ │ │ ├── function_highlight_html_record.result │ │ │ │ │ ├── function_last_insert_grn_id.result │ │ │ │ │ ├── function_last_insert_id_reference.result │ │ │ │ │ ├── function_last_insert_id_set.result │ │ │ │ │ ├── function_normalize_default.result │ │ │ │ │ ├── function_normalize_normalizer.result │ │ │ │ │ ├── function_normalize_record.result │ │ │ │ │ ├── function_query_expand_multiple.result │ │ │ │ │ ├── function_query_expand_no_index.result │ │ │ │ │ ├── function_query_expand_one.result │ │ │ │ │ ├── function_query_expand_pragma.result │ │ │ │ │ ├── function_snippet_ascii.result │ │ │ │ │ ├── function_snippet_cp932.result │ │ │ │ │ ├── function_snippet_eucjpms.result │ │ │ │ │ ├── function_snippet_html_dynamic_keyword.result │ │ │ │ │ ├── function_snippet_html_japanese.result │ │ │ │ │ ├── function_snippet_html_multiple_keywords.result │ │ │ │ │ ├── function_snippet_html_multiple_snippets.result │ │ │ │ │ ├── function_snippet_html_query.result │ │ │ │ │ ├── function_snippet_html_query_pragma.result │ │ │ │ │ ├── function_snippet_html_record.result │ │ │ │ │ ├── function_snippet_invalid_nonexistent_charset.result │ │ │ │ │ ├── function_snippet_invalid_unsupported_charset.result │ │ │ │ │ ├── function_snippet_japanese.result │ │ │ │ │ ├── geometry_bulk_insert_null.result │ │ │ │ │ ├── geometry_contains.result │ │ │ │ │ ├── geometry_strict_sql_mode_bulk_insert_null.result │ │ │ │ │ ├── geometry_strict_sql_mode_contains.result │ │ │ │ │ ├── i_s.result │ │ │ │ │ ├── index_btree_equal_datetime.result │ │ │ │ │ ├── index_btree_equal_time.result │ │ │ │ │ ├── index_btree_equal_timestamp.result │ │ │ │ │ ├── index_btree_normal_column_insert.result │ │ │ │ │ ├── index_hash_id_normal.result │ │ │ │ │ ├── index_hash_id_primary.result │ │ │ │ │ ├── index_hash_id_unique.result │ │ │ │ │ ├── index_hash_normal_column_insert.result │ │ │ │ │ ├── index_hash_strict_sql_mode_id_primary.result │ │ │ │ │ ├── index_multiple_column_delete.result │ │ │ │ │ ├── index_multiple_column_nullable_smallint.result │ │ │ │ │ ├── index_multiple_column_nullable_unsigned_bigint.result │ │ │ │ │ ├── index_multiple_column_nullable_unsigned_int.result │ │ │ │ │ ├── index_multiple_column_nullable_unsigned_smallint.result │ │ │ │ │ ├── index_multiple_column_nullable_varchar.result │ │ │ │ │ ├── index_multiple_column_order_by_where_equal_asc_asc.result │ │ │ │ │ ├── index_multiple_column_order_by_where_equal_desc_desc.result │ │ │ │ │ ├── index_multiple_column_primary_delete.result │ │ │ │ │ ├── index_multiple_column_primary_select_int.result │ │ │ │ │ ├── index_multiple_column_primary_strict_sql_mode_update.result │ │ │ │ │ ├── index_multiple_column_primary_update.result │ │ │ │ │ ├── index_multiple_column_range_all_used_greater_than.result │ │ │ │ │ ├── index_multiple_column_range_all_used_greater_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_range_all_used_less_than.result │ │ │ │ │ ├── index_multiple_column_range_all_used_less_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_greater_than.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_greater_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_less_than.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_less_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_greater_than.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_greater_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_less_than.result │ │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_less_than_or_equal.result │ │ │ │ │ ├── index_multiple_column_recreate.result │ │ │ │ │ ├── index_multiple_column_replace.result │ │ │ │ │ ├── index_multiple_column_select_double.result │ │ │ │ │ ├── index_multiple_column_select_float.result │ │ │ │ │ ├── index_multiple_column_select_int.result │ │ │ │ │ ├── index_multiple_column_select_max.result │ │ │ │ │ ├── index_multiple_column_select_min.result │ │ │ │ │ ├── index_multiple_column_select_string.result │ │ │ │ │ ├── index_multiple_column_select_varchar.result │ │ │ │ │ ├── index_multiple_column_unique_date_32bit_equal.result │ │ │ │ │ ├── index_multiple_column_unique_date_64bit_equal.result │ │ │ │ │ ├── index_multiple_column_unique_date_index_read.result │ │ │ │ │ ├── index_multiple_column_unique_date_order_32bit_asc.result │ │ │ │ │ ├── index_multiple_column_unique_date_order_32bit_desc.result │ │ │ │ │ ├── index_multiple_column_unique_date_order_64bit_asc.result │ │ │ │ │ ├── index_multiple_column_unique_date_order_64bit_desc.result │ │ │ │ │ ├── index_multiple_column_unique_date_reinsert.result │ │ │ │ │ ├── index_multiple_column_unique_datetime_index_read.result │ │ │ │ │ ├── index_multiple_column_unique_datetime_insert_delete_insert_invalid_value.result │ │ │ │ │ ├── index_multiple_column_unique_datetime_order_asc.result │ │ │ │ │ ├── index_multiple_column_unique_datetime_order_desc.result │ │ │ │ │ ├── index_multiple_column_unique_datetime_reinsert.result │ │ │ │ │ ├── index_multiple_column_unique_decimal.result │ │ │ │ │ ├── index_multiple_column_unique_time_index_read.result │ │ │ │ │ ├── index_multiple_column_unique_time_order_asc.result │ │ │ │ │ ├── index_multiple_column_unique_time_order_desc.result │ │ │ │ │ ├── index_multiple_column_unique_time_reinsert.result │ │ │ │ │ ├── index_multiple_column_unique_timestamp_index_read.result │ │ │ │ │ ├── index_multiple_column_unique_timestamp_order_asc.result │ │ │ │ │ ├── index_multiple_column_unique_timestamp_order_desc.result │ │ │ │ │ ├── index_multiple_column_unique_timestamp_reinsert.result │ │ │ │ │ ├── index_multiple_column_unique_varchar.result │ │ │ │ │ ├── index_multiple_column_unique_year_32bit_equal.result │ │ │ │ │ ├── index_multiple_column_unique_year_64bit_equal.result │ │ │ │ │ ├── index_multiple_column_unique_year_index_read.result │ │ │ │ │ ├── index_multiple_column_unique_year_order_32bit_asc.result │ │ │ │ │ ├── index_multiple_column_unique_year_order_32bit_desc.result │ │ │ │ │ ├── index_multiple_column_unique_year_order_64bit_asc.result │ │ │ │ │ ├── index_multiple_column_unique_year_order_64bit_desc.result │ │ │ │ │ ├── index_multiple_column_unique_year_reinsert.result │ │ │ │ │ ├── index_multiple_column_update_int.result │ │ │ │ │ ├── index_multiple_column_update_string.result │ │ │ │ │ ├── index_primary_char_exact_length.result │ │ │ │ │ ├── index_primary_char_null_character.result │ │ │ │ │ ├── index_primary_char_short.result │ │ │ │ │ ├── index_primary_date.result │ │ │ │ │ ├── index_primary_datetime_with_fractional_seconds.result │ │ │ │ │ ├── index_primary_datetime_without_fractional_seconds.result │ │ │ │ │ ├── index_primary_decimal_with_fractional_seconds.result │ │ │ │ │ ├── index_primary_decimal_without_fractional_seconds.result │ │ │ │ │ ├── index_primary_time_with_fractional_seconds.result │ │ │ │ │ ├── index_primary_time_without_fractional_seconds.result │ │ │ │ │ ├── index_primary_timestamp_with_fractional_seconds.result │ │ │ │ │ ├── index_primary_timestamp_without_fractional_seconds.result │ │ │ │ │ ├── index_primary_varchar_null_character.result │ │ │ │ │ ├── index_primary_year.result │ │ │ │ │ ├── index_range_normal_greater_than_asc.result │ │ │ │ │ ├── index_range_normal_greater_than_desc.result │ │ │ │ │ ├── index_range_normal_greater_than_or_equal_asc.result │ │ │ │ │ ├── index_range_normal_greater_than_or_equal_desc.result │ │ │ │ │ ├── index_range_normal_less_than_asc.result │ │ │ │ │ ├── index_range_normal_less_than_desc.result │ │ │ │ │ ├── index_range_normal_less_than_or_equal_asc.result │ │ │ │ │ ├── index_range_normal_less_than_or_equal_desc.result │ │ │ │ │ ├── index_range_primary_greater_than_asc.result │ │ │ │ │ ├── index_range_primary_greater_than_desc.result │ │ │ │ │ ├── index_range_primary_greater_than_or_equal_asc.result │ │ │ │ │ ├── index_range_primary_greater_than_or_equal_desc.result │ │ │ │ │ ├── index_range_primary_less_than_asc.result │ │ │ │ │ ├── index_range_primary_less_than_desc.result │ │ │ │ │ ├── index_range_primary_less_than_or_equal_asc.result │ │ │ │ │ ├── index_range_primary_less_than_or_equal_desc.result │ │ │ │ │ ├── index_read_multiple_bigint.result │ │ │ │ │ ├── index_read_multiple_bigint_unsigned.result │ │ │ │ │ ├── index_read_multiple_double.result │ │ │ │ │ ├── index_read_multiple_float.result │ │ │ │ │ ├── index_read_multiple_int.result │ │ │ │ │ ├── index_read_multiple_int_unsigned.result │ │ │ │ │ ├── index_read_multiple_mediumint.result │ │ │ │ │ ├── index_read_multiple_mediumint_unsigned.result │ │ │ │ │ ├── index_read_multiple_smallint.result │ │ │ │ │ ├── index_read_multiple_smallint_unsigned.result │ │ │ │ │ ├── index_read_multiple_tinyint.result │ │ │ │ │ ├── index_read_multiple_tinyint_unsigned.result │ │ │ │ │ ├── index_read_multiple_varchar.result │ │ │ │ │ ├── index_read_multiple_varchar_collation.result │ │ │ │ │ ├── index_read_normal_int.result │ │ │ │ │ ├── index_read_normal_varchar.result │ │ │ │ │ ├── index_read_primary_int.result │ │ │ │ │ ├── index_read_primary_varchar.result │ │ │ │ │ ├── index_unique_delete_all.result │ │ │ │ │ ├── index_unique_delete_by_primary_key.result │ │ │ │ │ ├── index_unique_insert_after_error.result │ │ │ │ │ ├── index_unique_search_after_duplicated.result │ │ │ │ │ ├── index_unique_varchar.result │ │ │ │ │ ├── index_update_multiple_column.result │ │ │ │ │ ├── index_update_single_column.result │ │ │ │ │ ├── information_schema_plugins.result.in │ │ │ │ │ ├── information_schema_tables_auto_increment_none.result │ │ │ │ │ ├── information_schema_tables_auto_increment_use.result │ │ │ │ │ ├── information_schema_tables_data_length.result │ │ │ │ │ ├── insert_TODO_SPLIT_ME.result │ │ │ │ │ ├── insert_delayed.result │ │ │ │ │ ├── insert_on_duplicate_key_update_no_primary_key_and_unique_key_twice.result │ │ │ │ │ ├── insert_on_duplicate_key_update_primary_key.result │ │ │ │ │ ├── insert_on_duplicate_key_update_unique_key.result │ │ │ │ │ ├── insert_virtual_column.result │ │ │ │ │ ├── like_unicode_ci.result │ │ │ │ │ ├── lock_tables_read.result │ │ │ │ │ ├── optimization_count_skip_after_insert_multithread.result │ │ │ │ │ ├── optimization_count_skip_after_insert_single_thread.result │ │ │ │ │ ├── optimization_count_skip_disabled.result │ │ │ │ │ ├── optimization_count_skip_index_and.result │ │ │ │ │ ├── optimization_count_skip_index_between.result │ │ │ │ │ ├── optimization_count_skip_index_equal.result │ │ │ │ │ ├── optimization_count_skip_index_full_text_search_in_boolean_mode.result │ │ │ │ │ ├── optimization_count_skip_index_full_text_search_in_natural_language_mode.result │ │ │ │ │ ├── optimization_count_skip_index_greater.result │ │ │ │ │ ├── optimization_count_skip_index_greater_equal.result │ │ │ │ │ ├── optimization_count_skip_index_less.result │ │ │ │ │ ├── optimization_count_skip_index_less_equal.result │ │ │ │ │ ├── optimization_count_skip_index_not_equal.result │ │ │ │ │ ├── optimization_count_skip_index_view.result │ │ │ │ │ ├── optimization_count_skip_multiple_conditions.result │ │ │ │ │ ├── optimization_count_skip_primary_key_between.result │ │ │ │ │ ├── optimization_count_skip_primary_key_equal.result │ │ │ │ │ ├── optimization_count_skip_primary_key_greater.result │ │ │ │ │ ├── optimization_count_skip_primary_key_greater_equal.result │ │ │ │ │ ├── optimization_count_skip_primary_key_less.result │ │ │ │ │ ├── optimization_count_skip_primary_key_less_equal.result │ │ │ │ │ ├── optimization_count_skip_primary_key_not_equal.result │ │ │ │ │ ├── optimization_order_limit_not_optimized_disabled.result │ │ │ │ │ ├── optimization_order_limit_not_optimized_multiple_match_againsts.result │ │ │ │ │ ├── optimization_order_limit_not_optimized_no_limit.result │ │ │ │ │ ├── optimization_order_limit_optimized_cp932.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_between.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_between_over.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_greater_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_greater_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_less_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_datetime_less_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_duplicated_order_by_columns.result │ │ │ │ │ ├── optimization_order_limit_optimized_enum_name.result │ │ │ │ │ ├── optimization_order_limit_optimized_enum_value.result │ │ │ │ │ ├── optimization_order_limit_optimized_have_primary_key.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_between.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_between_over.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_greater_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_greater_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_less_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_int_less_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_no_primary_key.result │ │ │ │ │ ├── optimization_order_limit_optimized_no_where_clause.result │ │ │ │ │ ├── optimization_order_limit_optimized_order_by_asc.result │ │ │ │ │ ├── optimization_order_limit_optimized_order_by_desc.result │ │ │ │ │ ├── optimization_order_limit_optimized_order_by_id.result │ │ │ │ │ ├── optimization_order_limit_optimized_order_by_match_against.result │ │ │ │ │ ├── optimization_order_limit_optimized_select_match_against.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_between.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_between_over.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_greater_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_greater_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_less_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_time_less_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_varchar_equal_with_index.result │ │ │ │ │ ├── optimization_order_limit_optimized_varchar_equal_without_index.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_between.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_between_over.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_greater_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_greater_than_or_equal.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_less_than.result │ │ │ │ │ ├── optimization_order_limit_optimized_year_less_than_or_equal.result │ │ │ │ │ ├── partition_insert.result │ │ │ │ │ ├── partition_update.result │ │ │ │ │ ├── repair_table_no_index_file.result │ │ │ │ │ ├── replace_geometry.result │ │ │ │ │ ├── replace_select_varchar.result │ │ │ │ │ ├── replace_text.result │ │ │ │ │ ├── replace_varchar.result │ │ │ │ │ ├── replace_vector.result │ │ │ │ │ ├── replace_without_key.result │ │ │ │ │ ├── select_all.result │ │ │ │ │ ├── select_empty_key_where_equal.result │ │ │ │ │ ├── select_empty_key_where_not_equal.result │ │ │ │ │ ├── select_group_by_with_index.result │ │ │ │ │ ├── select_group_by_without_index.result │ │ │ │ │ ├── select_pkey.result │ │ │ │ │ ├── select_secondary_key.result │ │ │ │ │ ├── show_create_table_TODO_SPLIT_ME.result │ │ │ │ │ ├── sub_query_fulltext.result │ │ │ │ │ ├── temporary_table.result │ │ │ │ │ ├── truncate.result │ │ │ │ │ ├── update_binlog_row.result │ │ │ │ │ ├── update_fulltext.result │ │ │ │ │ ├── update_id_hash_index.result │ │ │ │ │ ├── update_id_unique_hash_index.result │ │ │ │ │ ├── update_int.result │ │ │ │ │ ├── update_last_insert_grn_id.result │ │ │ │ │ ├── update_virtual_column.result │ │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_column.result │ │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_leading_not.result │ │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_update.result │ │ │ │ │ ├── variable_boolean_mode_syntax_flags_syntax_query.result │ │ │ │ │ ├── variable_boolean_mode_syntax_flags_syntax_script.result │ │ │ │ │ ├── variable_database_path_prefix.result │ │ │ │ │ ├── variable_default_parser_new_value.result │ │ │ │ │ ├── variable_default_parser_same_value.result │ │ │ │ │ ├── variable_default_tokenizer_new_value.result │ │ │ │ │ ├── variable_default_tokenizer_same_value.result │ │ │ │ │ ├── variable_dry_write_delete.result │ │ │ │ │ ├── variable_dry_write_insert.result │ │ │ │ │ ├── variable_dry_write_update.result │ │ │ │ │ ├── variable_enable_operations_recording_insert.result │ │ │ │ │ ├── variable_lock_timeout_disable.result │ │ │ │ │ ├── variable_lock_timeout_invalid.result │ │ │ │ │ ├── variable_lock_timeout_no_retry.result │ │ │ │ │ ├── variable_lock_timeout_valid.result │ │ │ │ │ ├── variable_log_file_new_value.result │ │ │ │ │ ├── variable_log_file_nonexistent_path.result │ │ │ │ │ ├── variable_log_file_same_value.result │ │ │ │ │ ├── variable_log_level_TODO_SPLIT_ME.result │ │ │ │ │ ├── variable_match_escalation_threshold_global.result │ │ │ │ │ ├── variable_match_escalation_threshold_session.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_global.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_global.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_not_found_in_limit.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_session.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_not_found_in_limit.result │ │ │ │ │ ├── variable_max_n_records_for_estimate_session.result │ │ │ │ │ ├── variable_query_log_file_disabled_empty_value.result │ │ │ │ │ ├── variable_query_log_file_disabled_null_value.result │ │ │ │ │ ├── variable_query_log_file_enabled_empty_value.result │ │ │ │ │ ├── variable_query_log_file_enabled_null_value.result │ │ │ │ │ ├── variable_query_log_file_new_value.result │ │ │ │ │ ├── variable_query_log_file_same_value.result │ │ │ │ │ ├── variable_vector_column_delimiter.result │ │ │ │ │ └── variable_version.result.in │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── alter_table_add_column_after.test │ │ │ │ ├── alter_table_add_column_first.test │ │ │ │ ├── alter_table_add_column_flags_comment.test │ │ │ │ ├── alter_table_add_column_flags_parameter.test │ │ │ │ ├── alter_table_add_column_groonga_type_comment.test │ │ │ │ ├── alter_table_add_column_groonga_type_parameter.test │ │ │ │ ├── alter_table_add_column_multibyte_cp932.test │ │ │ │ ├── alter_table_add_column_multibyte_utf8.test │ │ │ │ ├── alter_table_add_column_multiple.test │ │ │ │ ├── alter_table_add_column_plain.test │ │ │ │ ├── alter_table_add_column_type_comment.test │ │ │ │ ├── alter_table_add_index_token_filters_one_token_filter.test │ │ │ │ ├── alter_table_add_index_unique_duplicated.test │ │ │ │ ├── alter_table_add_index_unique_multiple_column_duplicated.test │ │ │ │ ├── alter_table_add_key_multiple_column_with_data.test │ │ │ │ ├── alter_table_add_primary_key.test │ │ │ │ ├── alter_table_change_column_comment_not_for_mroonga.test │ │ │ │ ├── alter_table_change_column_have_index.test │ │ │ │ ├── alter_table_change_column_rename_after.test │ │ │ │ ├── alter_table_change_column_rename_first.test │ │ │ │ ├── alter_table_change_column_rename_multiple.test │ │ │ │ ├── alter_table_change_column_rename_no_order.test │ │ │ │ ├── alter_table_change_engine_decimal.test │ │ │ │ ├── alter_table_change_engine_fulltext_index.test │ │ │ │ ├── alter_table_change_token_filter.test │ │ │ │ ├── alter_table_disable_keys_create_fulltext.test │ │ │ │ ├── alter_table_disable_keys_fulltext_table.test │ │ │ │ ├── alter_table_disable_keys_fulltext_ujis.test │ │ │ │ ├── alter_table_disable_keys_fulltext_utf8.test │ │ │ │ ├── alter_table_disable_keys_multiple_column.test │ │ │ │ ├── alter_table_disable_keys_normal.test │ │ │ │ ├── alter_table_disable_keys_primary.test │ │ │ │ ├── alter_table_disable_keys_truncate.test │ │ │ │ ├── alter_table_disable_keys_updating.test │ │ │ │ ├── alter_table_drop_column_multiple.test │ │ │ │ ├── alter_table_drop_column_one.test │ │ │ │ ├── alter_table_drop_key_multiple_column_with_data.test │ │ │ │ ├── alter_table_drop_primary_key.test │ │ │ │ ├── alter_table_enable_keys_fulltext.test │ │ │ │ ├── alter_table_enable_keys_fulltext_table.test │ │ │ │ ├── alter_table_enable_keys_fulltext_ujis.test │ │ │ │ ├── alter_table_enable_keys_fulltext_utf8.test │ │ │ │ ├── alter_table_enable_keys_multiple_column.test │ │ │ │ ├── alter_table_enable_keys_normal.test │ │ │ │ ├── alter_table_enable_keys_primary.test │ │ │ │ ├── alter_table_fulltext_add_no_primary_key.test │ │ │ │ ├── alter_table_fulltext_add_normal.test │ │ │ │ ├── alter_table_fulltext_add_table.test │ │ │ │ ├── alter_table_fulltext_drop_table.test │ │ │ │ ├── alter_table_modify_column_after.test │ │ │ │ ├── alter_table_modify_column_first.test │ │ │ │ ├── alter_table_modify_column_no_order.test │ │ │ │ ├── alter_table_recreate_anonymous_index_at_once.test │ │ │ │ ├── alter_table_rename_table.test │ │ │ │ ├── alter_table_spatial.test │ │ │ │ ├── auto_increment_TODO_SPLIT_ME.test │ │ │ │ ├── auto_increment_table_param.test │ │ │ │ ├── auto_increment_text.test │ │ │ │ ├── binlog_TODO_SPLIT_ME.test │ │ │ │ ├── check_table_broken.test │ │ │ │ ├── check_table_not_broken.test │ │ │ │ ├── collation_utf8_general_ci_french.test │ │ │ │ ├── collation_utf8_unicode_520_ci_french.test │ │ │ │ ├── collation_utf8_unicode_520_ci_japanese.test │ │ │ │ ├── collation_utf8_unicode_ci_french.test │ │ │ │ ├── collation_utf8_unicode_ci_japanese.test │ │ │ │ ├── column_comment_index_not_for_mroonga.test │ │ │ │ ├── column_comment_normal_not_for_mroonga.test │ │ │ │ ├── column_date_with_index.test │ │ │ │ ├── column_date_without_index.test │ │ │ │ ├── column_date_zero_date.test │ │ │ │ ├── column_datetime_32bit_2038.test │ │ │ │ ├── column_datetime_32bit_before_unix_epoch.test │ │ │ │ ├── column_datetime_32bit_max.test │ │ │ │ ├── column_datetime_32bit_out_of_range.test │ │ │ │ ├── column_datetime_64bit_2038.test │ │ │ │ ├── column_datetime_64bit_before_unix_epoch.test │ │ │ │ ├── column_datetime_64bit_max.test │ │ │ │ ├── column_datetime_64bit_strict_sql_mode_out_of_range.test │ │ │ │ ├── column_datetime_64bit_version_5_5_out_of_range.test │ │ │ │ ├── column_datetime_64bit_version_5_6_or_later_out_of_range.test │ │ │ │ ├── column_datetime_fractional_seconds_with_index.test │ │ │ │ ├── column_datetime_fractional_seconds_without_index.test │ │ │ │ ├── column_datetime_freebsd_before_unix_epoch.test │ │ │ │ ├── column_datetime_mariadb_10_2_or_later_zero_date.test │ │ │ │ ├── column_datetime_mariadb_10_2_or_later_zero_month_day.test │ │ │ │ ├── column_datetime_mysql_5_7_or_later_zero_date.test │ │ │ │ ├── column_datetime_mysql_5_7_or_later_zero_month_day.test │ │ │ │ ├── column_datetime_null.test │ │ │ │ ├── column_datetime_with_index.test │ │ │ │ ├── column_datetime_without_index.test │ │ │ │ ├── column_datetime_zero_date.test │ │ │ │ ├── column_datetime_zero_month_day.test │ │ │ │ ├── column_decimal_fractional_seconds_with_index.test │ │ │ │ ├── column_decimal_fractional_seconds_without_index.test │ │ │ │ ├── column_decimal_with_index.test │ │ │ │ ├── column_decimal_without_index.test │ │ │ │ ├── column_enum_less_with_index.test │ │ │ │ ├── column_enum_many_with_index.test │ │ │ │ ├── column_generated_stored_add_column.test │ │ │ │ ├── column_generated_stored_delete.test │ │ │ │ ├── column_generated_stored_drop_column.test │ │ │ │ ├── column_generated_stored_insert.test │ │ │ │ ├── column_generated_stored_reindex.test │ │ │ │ ├── column_generated_stored_update.test │ │ │ │ ├── column_generated_virtual_add_column.test │ │ │ │ ├── column_generated_virtual_delete.test │ │ │ │ ├── column_generated_virtual_drop_column.test │ │ │ │ ├── column_generated_virtual_insert.test │ │ │ │ ├── column_generated_virtual_mariadb_10_2_or_later_add_index.test │ │ │ │ ├── column_generated_virtual_mariadb_10_2_or_later_create_table_with_index.test │ │ │ │ ├── column_generated_virtual_mysql_5_7_or_later_add_index.test │ │ │ │ ├── column_generated_virtual_update.test │ │ │ │ ├── column_groonga__id__id.test │ │ │ │ ├── column_groonga__id_invalid_id.test │ │ │ │ ├── column_groonga_index_fulltext_other_table.test │ │ │ │ ├── column_groonga_index_fulltext_vector_other_table.test │ │ │ │ ├── column_groonga_index_int_other_table.test │ │ │ │ ├── column_groonga_scalar_reference.test │ │ │ │ ├── column_groonga_scalar_support_lz4.test │ │ │ │ ├── column_groonga_scalar_support_zlib.test │ │ │ │ ├── column_groonga_scalar_support_zstd.test │ │ │ │ ├── column_groonga_scalar_unsupport_lz4.test │ │ │ │ ├── column_groonga_scalar_unsupport_zlib.test │ │ │ │ ├── column_groonga_scalar_unsupport_zstd.test │ │ │ │ ├── column_groonga_scalar_with_not_for_mroonga_comment.test │ │ │ │ ├── column_groonga_vector_order_by_with_function.test │ │ │ │ ├── column_groonga_vector_reference.test │ │ │ │ ├── column_int_with_index_zero_value.test │ │ │ │ ├── column_json_insert.test │ │ │ │ ├── column_multibyte_cp932.test │ │ │ │ ├── column_multibyte_utf8.test │ │ │ │ ├── column_set_16_with_index.test │ │ │ │ ├── column_set_24_with_index.test │ │ │ │ ├── column_set_32_with_index.test │ │ │ │ ├── column_set_64_with_index.test │ │ │ │ ├── column_set_8_with_index.test │ │ │ │ ├── column_signed_bigint_with_index.test │ │ │ │ ├── column_signed_int_with_index.test │ │ │ │ ├── column_signed_mediumint_with_index.test │ │ │ │ ├── column_signed_smallint_with_index.test │ │ │ │ ├── column_signed_tinyint_with_index.test │ │ │ │ ├── column_time_fractional_seconds_with_index.test │ │ │ │ ├── column_time_with_index.test │ │ │ │ ├── column_timestamp_fractional_seconds_with_index.test │ │ │ │ ├── column_timestamp_with_index.test │ │ │ │ ├── column_tinyint_without_index.test │ │ │ │ ├── column_unsigned_bigint_with_index.test │ │ │ │ ├── column_unsigned_bigint_without_index.test │ │ │ │ ├── column_unsigned_int_with_index.test │ │ │ │ ├── column_unsigned_mediumint_with_index.test │ │ │ │ ├── column_unsigned_smallint_with_index.test │ │ │ │ ├── column_unsigned_tinyint_with_index.test │ │ │ │ ├── column_year_with_index.test │ │ │ │ ├── column_year_without_index.test │ │ │ │ ├── count_star.test │ │ │ │ ├── create_database_name_slash.test │ │ │ │ ├── create_table_TODO_SPLIT_ME.test │ │ │ │ ├── create_table_column_flags_comment.test │ │ │ │ ├── create_table_column_flags_parameter.test │ │ │ │ ├── create_table_column_groonga_type_comment.test │ │ │ │ ├── create_table_column_groonga_type_nonexistent.test │ │ │ │ ├── create_table_column_groonga_type_parameter.test │ │ │ │ ├── create_table_column_type_comment.test │ │ │ │ ├── create_table_column_type_nonexistent.test │ │ │ │ ├── create_table_comment_normal.test │ │ │ │ ├── create_table_default_tokenizer.test │ │ │ │ ├── create_table_index_flags_comment.test │ │ │ │ ├── create_table_index_flags_index_medium.test │ │ │ │ ├── create_table_index_flags_index_small.test │ │ │ │ ├── create_table_index_flags_none.test │ │ │ │ ├── create_table_index_flags_parameter.test │ │ │ │ ├── create_table_index_index_flags_none.test │ │ │ │ ├── create_table_index_index_flags_with_position_and_with_weight.test │ │ │ │ ├── create_table_index_normalizer_comment.test │ │ │ │ ├── create_table_index_normalizer_fulltext_index_bin.test │ │ │ │ ├── create_table_index_normalizer_index_bin.test │ │ │ │ ├── create_table_index_normalizer_no_utf8_charset_with_utf8_normalizer.test │ │ │ │ ├── create_table_index_normalizer_none.test │ │ │ │ ├── create_table_index_normalizer_parameter.test │ │ │ │ ├── create_table_index_parser_comment.test │ │ │ │ ├── create_table_index_parser_default.test │ │ │ │ ├── create_table_index_parser_off.test │ │ │ │ ├── create_table_index_token_filters_multiple_token_filters.test │ │ │ │ ├── create_table_index_token_filters_one_token_filter.test │ │ │ │ ├── create_table_index_token_filters_parameter.test │ │ │ │ ├── create_table_index_tokenizer_comment.test │ │ │ │ ├── create_table_index_tokenizer_default.test │ │ │ │ ├── create_table_index_tokenizer_off.test │ │ │ │ ├── create_table_index_tokenizer_parameter.test │ │ │ │ ├── create_table_table_normalizer_default.test │ │ │ │ ├── create_table_table_normalizer_hash.test │ │ │ │ ├── create_table_table_token_filters_multiple_token_filters.test │ │ │ │ ├── create_table_table_token_filters_one_token_filter.test │ │ │ │ ├── create_table_table_token_filters_stop_word.test │ │ │ │ ├── delete_fulltext_column.test │ │ │ │ ├── delete_index_btree_many_records.test │ │ │ │ ├── delete_index_hash_id_no_unique.test │ │ │ │ ├── delete_index_hash_id_unique.test │ │ │ │ ├── delete_normal_column.test │ │ │ │ ├── delete_unsigned_bigint.test │ │ │ │ ├── drop_database_TODO_SPLIT_ME.test │ │ │ │ ├── drop_database_no_table.test │ │ │ │ ├── drop_table_TODO_SPLIT_ME.test │ │ │ │ ├── flush_logs.test │ │ │ │ ├── foreign_key_alter_add.test │ │ │ │ ├── foreign_key_alter_drop.test │ │ │ │ ├── foreign_key_create.test │ │ │ │ ├── foreign_key_delete_existent.test │ │ │ │ ├── foreign_key_delete_nonexistent.test │ │ │ │ ├── foreign_key_insert_existent.test │ │ │ │ ├── foreign_key_insert_nonexistent.test │ │ │ │ ├── foreign_key_rename.test │ │ │ │ ├── foreign_key_update_existent.test │ │ │ │ ├── foreign_key_update_nonexistent.test │ │ │ │ ├── fulltext_boolean_mode_empty_query.test │ │ │ │ ├── fulltext_boolean_mode_escape.test │ │ │ │ ├── fulltext_boolean_mode_leading_not.test │ │ │ │ ├── fulltext_boolean_mode_pragma_all.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_no_operator.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_or.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_plus.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_no_operator.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_minus.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_plus.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_no_operator.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_astarisk.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_minus.test │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_or.test │ │ │ │ ├── fulltext_boolean_mode_pragma_syntax_script_operator.test │ │ │ │ ├── fulltext_boolean_mode_pragma_syntax_script_selector.test │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_full_spec.test │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_no_weight.test │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_omit_section.test │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_ten_or_more_sections.test │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_three_or_more_sections.test │ │ │ │ ├── fulltext_boolean_mode_syntax_error_error.test │ │ │ │ ├── fulltext_boolean_mode_syntax_error_error_and_log.test │ │ │ │ ├── fulltext_boolean_mode_syntax_error_ignore.test │ │ │ │ ├── fulltext_boolean_mode_syntax_error_ignore_and_log.test │ │ │ │ ├── fulltext_charset_ascii.test │ │ │ │ ├── fulltext_charset_cp932.test │ │ │ │ ├── fulltext_charset_eucjpms.test │ │ │ │ ├── fulltext_charset_japanese.test │ │ │ │ ├── fulltext_charset_utf8mb4.test │ │ │ │ ├── fulltext_empty_query.test │ │ │ │ ├── fulltext_found_rows.test │ │ │ │ ├── fulltext_groonga_varchar_vector.test │ │ │ │ ├── fulltext_index_recreate.test │ │ │ │ ├── fulltext_insert_select.test │ │ │ │ ├── fulltext_insert_values.test │ │ │ │ ├── fulltext_multiple_column_index_delete.test │ │ │ │ ├── fulltext_multiple_column_index_insert.test │ │ │ │ ├── fulltext_multiple_column_index_recreate.test │ │ │ │ ├── fulltext_multiple_column_index_update.test │ │ │ │ ├── fulltext_multiple_index.test │ │ │ │ ├── fulltext_no_primary_key.test │ │ │ │ ├── fulltext_not_match_against.test │ │ │ │ ├── fulltext_or.test │ │ │ │ ├── fulltext_order_boolean_mode_different_against.test │ │ │ │ ├── fulltext_order_boolean_mode_different_match.test │ │ │ │ ├── fulltext_order_boolean_mode_no_where.test │ │ │ │ ├── fulltext_order_boolean_mode_same_match_against.test │ │ │ │ ├── fulltext_order_natural_language_mode_asc.test │ │ │ │ ├── fulltext_order_natural_language_mode_desc.test │ │ │ │ ├── fulltext_order_natural_language_mode_different_against.test │ │ │ │ ├── fulltext_order_natural_language_mode_different_match.test │ │ │ │ ├── fulltext_order_natural_language_mode_no_where.test │ │ │ │ ├── fulltext_order_natural_language_mode_same_match_against.test │ │ │ │ ├── fulltext_two_inner_join.test │ │ │ │ ├── fulltext_version_10_0_no_such_key.test │ │ │ │ ├── fulltext_version_5_5_no_such_key.test │ │ │ │ ├── fulltext_version_5_6_no_such_key.test │ │ │ │ ├── function_command_auto-escape.test │ │ │ │ ├── function_command_select.test │ │ │ │ ├── function_command_special-database-name.test │ │ │ │ ├── function_escape_error_query_is_missing.test │ │ │ │ ├── function_escape_error_query_is_not_string.test │ │ │ │ ├── function_escape_error_target_characters_is_not_string.test │ │ │ │ ├── function_escape_query_all.test │ │ │ │ ├── function_escape_query_custom.test │ │ │ │ ├── function_escape_query_join.test │ │ │ │ ├── function_escape_query_match_against.test │ │ │ │ ├── function_escape_query_named.test │ │ │ │ ├── function_escape_query_nested.test │ │ │ │ ├── function_escape_script_decimal.test │ │ │ │ ├── function_escape_script_integer.test │ │ │ │ ├── function_escape_script_real.test │ │ │ │ ├── function_escape_script_string.test │ │ │ │ ├── function_highlight_html_dynamic_keyword.test │ │ │ │ ├── function_highlight_html_japanese.test │ │ │ │ ├── function_highlight_html_multiple_keywords.test │ │ │ │ ├── function_highlight_html_normalizer.test │ │ │ │ ├── function_highlight_html_query.test │ │ │ │ ├── function_highlight_html_query_pragma.test │ │ │ │ ├── function_highlight_html_record.test │ │ │ │ ├── function_last_insert_grn_id.test │ │ │ │ ├── function_last_insert_id_reference.test │ │ │ │ ├── function_last_insert_id_set.test │ │ │ │ ├── function_normalize_default.test │ │ │ │ ├── function_normalize_normalizer.test │ │ │ │ ├── function_normalize_record.test │ │ │ │ ├── function_query_expand_multiple.test │ │ │ │ ├── function_query_expand_no_index.test │ │ │ │ ├── function_query_expand_one.test │ │ │ │ ├── function_query_expand_pragma.test │ │ │ │ ├── function_snippet_ascii.test │ │ │ │ ├── function_snippet_cp932.test │ │ │ │ ├── function_snippet_eucjpms.test │ │ │ │ ├── function_snippet_html_dynamic_keyword.test │ │ │ │ ├── function_snippet_html_japanese.test │ │ │ │ ├── function_snippet_html_multiple_keywords.test │ │ │ │ ├── function_snippet_html_multiple_snippets.test │ │ │ │ ├── function_snippet_html_query.test │ │ │ │ ├── function_snippet_html_query_pragma.test │ │ │ │ ├── function_snippet_html_record.test │ │ │ │ ├── function_snippet_invalid_nonexistent_charset.test │ │ │ │ ├── function_snippet_invalid_unsupported_charset.test │ │ │ │ ├── function_snippet_japanese.test │ │ │ │ ├── geometry_bulk_insert_null.test │ │ │ │ ├── geometry_contains.test │ │ │ │ ├── geometry_strict_sql_mode_bulk_insert_null.test │ │ │ │ ├── geometry_strict_sql_mode_contains.test │ │ │ │ ├── i_s.test │ │ │ │ ├── index_btree_equal_datetime.test │ │ │ │ ├── index_btree_equal_time.test │ │ │ │ ├── index_btree_equal_timestamp.test │ │ │ │ ├── index_btree_normal_column_insert.test │ │ │ │ ├── index_hash_id_normal.test │ │ │ │ ├── index_hash_id_primary.test │ │ │ │ ├── index_hash_id_unique.test │ │ │ │ ├── index_hash_normal_column_insert.test │ │ │ │ ├── index_hash_strict_sql_mode_id_primary.test │ │ │ │ ├── index_multiple_column_delete.test │ │ │ │ ├── index_multiple_column_nullable_smallint.test │ │ │ │ ├── index_multiple_column_nullable_unsigned_bigint.test │ │ │ │ ├── index_multiple_column_nullable_unsigned_int.test │ │ │ │ ├── index_multiple_column_nullable_unsigned_smallint.test │ │ │ │ ├── index_multiple_column_nullable_varchar.test │ │ │ │ ├── index_multiple_column_order_by_where_equal_asc_asc.test │ │ │ │ ├── index_multiple_column_order_by_where_equal_desc_desc.test │ │ │ │ ├── index_multiple_column_primary_delete.test │ │ │ │ ├── index_multiple_column_primary_select_int.test │ │ │ │ ├── index_multiple_column_primary_strict_sql_mode_update.test │ │ │ │ ├── index_multiple_column_primary_update.test │ │ │ │ ├── index_multiple_column_range_all_used_greater_than.test │ │ │ │ ├── index_multiple_column_range_all_used_greater_than_or_equal.test │ │ │ │ ├── index_multiple_column_range_all_used_less_than.test │ │ │ │ ├── index_multiple_column_range_all_used_less_than_or_equal.test │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_greater_than.test │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_greater_than_or_equal.test │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_less_than.test │ │ │ │ ├── index_multiple_column_range_partially_used_have_prefix_less_than_or_equal.test │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_greater_than.test │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_greater_than_or_equal.test │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_less_than.test │ │ │ │ ├── index_multiple_column_range_partially_used_no_prefix_less_than_or_equal.test │ │ │ │ ├── index_multiple_column_recreate.test │ │ │ │ ├── index_multiple_column_replace.test │ │ │ │ ├── index_multiple_column_select_double.test │ │ │ │ ├── index_multiple_column_select_float.test │ │ │ │ ├── index_multiple_column_select_int.test │ │ │ │ ├── index_multiple_column_select_max.test │ │ │ │ ├── index_multiple_column_select_min.test │ │ │ │ ├── index_multiple_column_select_string.test │ │ │ │ ├── index_multiple_column_select_varchar.test │ │ │ │ ├── index_multiple_column_unique_date_32bit_equal.test │ │ │ │ ├── index_multiple_column_unique_date_64bit_equal.test │ │ │ │ ├── index_multiple_column_unique_date_index_read.test │ │ │ │ ├── index_multiple_column_unique_date_order_32bit_asc.test │ │ │ │ ├── index_multiple_column_unique_date_order_32bit_desc.test │ │ │ │ ├── index_multiple_column_unique_date_order_64bit_asc.test │ │ │ │ ├── index_multiple_column_unique_date_order_64bit_desc.test │ │ │ │ ├── index_multiple_column_unique_date_reinsert.test │ │ │ │ ├── index_multiple_column_unique_datetime_index_read.test │ │ │ │ ├── index_multiple_column_unique_datetime_insert_delete_insert_invalid_value.test │ │ │ │ ├── index_multiple_column_unique_datetime_order_asc.test │ │ │ │ ├── index_multiple_column_unique_datetime_order_desc.test │ │ │ │ ├── index_multiple_column_unique_datetime_reinsert.test │ │ │ │ ├── index_multiple_column_unique_decimal.test │ │ │ │ ├── index_multiple_column_unique_time_index_read.test │ │ │ │ ├── index_multiple_column_unique_time_order_asc.test │ │ │ │ ├── index_multiple_column_unique_time_order_desc.test │ │ │ │ ├── index_multiple_column_unique_time_reinsert.test │ │ │ │ ├── index_multiple_column_unique_timestamp_index_read.test │ │ │ │ ├── index_multiple_column_unique_timestamp_order_asc.test │ │ │ │ ├── index_multiple_column_unique_timestamp_order_desc.test │ │ │ │ ├── index_multiple_column_unique_timestamp_reinsert.test │ │ │ │ ├── index_multiple_column_unique_varchar.test │ │ │ │ ├── index_multiple_column_unique_year_32bit_equal.test │ │ │ │ ├── index_multiple_column_unique_year_64bit_equal.test │ │ │ │ ├── index_multiple_column_unique_year_index_read.test │ │ │ │ ├── index_multiple_column_unique_year_order_32bit_asc.test │ │ │ │ ├── index_multiple_column_unique_year_order_32bit_desc.test │ │ │ │ ├── index_multiple_column_unique_year_order_64bit_asc.test │ │ │ │ ├── index_multiple_column_unique_year_order_64bit_desc.test │ │ │ │ ├── index_multiple_column_unique_year_reinsert.test │ │ │ │ ├── index_multiple_column_update_int.test │ │ │ │ ├── index_multiple_column_update_string.test │ │ │ │ ├── index_primary_char_exact_length.test │ │ │ │ ├── index_primary_char_null_character.test │ │ │ │ ├── index_primary_char_short.test │ │ │ │ ├── index_primary_date.test │ │ │ │ ├── index_primary_datetime_with_fractional_seconds.test │ │ │ │ ├── index_primary_datetime_without_fractional_seconds.test │ │ │ │ ├── index_primary_decimal_with_fractional_seconds.test │ │ │ │ ├── index_primary_decimal_without_fractional_seconds.test │ │ │ │ ├── index_primary_time_with_fractional_seconds.test │ │ │ │ ├── index_primary_time_without_fractional_seconds.test │ │ │ │ ├── index_primary_timestamp_with_fractional_seconds.test │ │ │ │ ├── index_primary_timestamp_without_fractional_seconds.test │ │ │ │ ├── index_primary_varchar_null_character.test │ │ │ │ ├── index_primary_year.test │ │ │ │ ├── index_range_normal_greater_than_asc.test │ │ │ │ ├── index_range_normal_greater_than_desc.test │ │ │ │ ├── index_range_normal_greater_than_or_equal_asc.test │ │ │ │ ├── index_range_normal_greater_than_or_equal_desc.test │ │ │ │ ├── index_range_normal_less_than_asc.test │ │ │ │ ├── index_range_normal_less_than_desc.test │ │ │ │ ├── index_range_normal_less_than_or_equal_asc.test │ │ │ │ ├── index_range_normal_less_than_or_equal_desc.test │ │ │ │ ├── index_range_primary_greater_than_asc.test │ │ │ │ ├── index_range_primary_greater_than_desc.test │ │ │ │ ├── index_range_primary_greater_than_or_equal_asc.test │ │ │ │ ├── index_range_primary_greater_than_or_equal_desc.test │ │ │ │ ├── index_range_primary_less_than_asc.test │ │ │ │ ├── index_range_primary_less_than_desc.test │ │ │ │ ├── index_range_primary_less_than_or_equal_asc.test │ │ │ │ ├── index_range_primary_less_than_or_equal_desc.test │ │ │ │ ├── index_read_multiple_bigint.test │ │ │ │ ├── index_read_multiple_bigint_unsigned.test │ │ │ │ ├── index_read_multiple_double.test │ │ │ │ ├── index_read_multiple_float.test │ │ │ │ ├── index_read_multiple_int.test │ │ │ │ ├── index_read_multiple_int_unsigned.test │ │ │ │ ├── index_read_multiple_mediumint.test │ │ │ │ ├── index_read_multiple_mediumint_unsigned.test │ │ │ │ ├── index_read_multiple_smallint.test │ │ │ │ ├── index_read_multiple_smallint_unsigned.test │ │ │ │ ├── index_read_multiple_tinyint.test │ │ │ │ ├── index_read_multiple_tinyint_unsigned.test │ │ │ │ ├── index_read_multiple_varchar.test │ │ │ │ ├── index_read_multiple_varchar_collation.test │ │ │ │ ├── index_read_normal_int.test │ │ │ │ ├── index_read_normal_varchar.test │ │ │ │ ├── index_read_primary_int.test │ │ │ │ ├── index_read_primary_varchar.test │ │ │ │ ├── index_unique_delete_all.test │ │ │ │ ├── index_unique_delete_by_primary_key.test │ │ │ │ ├── index_unique_insert_after_error.test │ │ │ │ ├── index_unique_search_after_duplicated.test │ │ │ │ ├── index_unique_varchar.test │ │ │ │ ├── index_update_multiple_column.test │ │ │ │ ├── index_update_single_column.test │ │ │ │ ├── information_schema_plugins.test │ │ │ │ ├── information_schema_tables_auto_increment_none.test │ │ │ │ ├── information_schema_tables_auto_increment_use.test │ │ │ │ ├── information_schema_tables_data_length.test │ │ │ │ ├── insert_TODO_SPLIT_ME.test │ │ │ │ ├── insert_delayed.test │ │ │ │ ├── insert_on_duplicate_key_update_no_primary_key_and_unique_key_twice.test │ │ │ │ ├── insert_on_duplicate_key_update_primary_key.test │ │ │ │ ├── insert_on_duplicate_key_update_unique_key.test │ │ │ │ ├── insert_virtual_column.test │ │ │ │ ├── like_unicode_ci.test │ │ │ │ ├── lock_tables_read.test │ │ │ │ ├── optimization_count_skip_after_insert_multithread.test │ │ │ │ ├── optimization_count_skip_after_insert_single_thread.test │ │ │ │ ├── optimization_count_skip_disabled.test │ │ │ │ ├── optimization_count_skip_index_and.test │ │ │ │ ├── optimization_count_skip_index_between.test │ │ │ │ ├── optimization_count_skip_index_equal.test │ │ │ │ ├── optimization_count_skip_index_full_text_search_in_boolean_mode.test │ │ │ │ ├── optimization_count_skip_index_full_text_search_in_natural_language_mode.test │ │ │ │ ├── optimization_count_skip_index_greater.test │ │ │ │ ├── optimization_count_skip_index_greater_equal.test │ │ │ │ ├── optimization_count_skip_index_less.test │ │ │ │ ├── optimization_count_skip_index_less_equal.test │ │ │ │ ├── optimization_count_skip_index_not_equal.test │ │ │ │ ├── optimization_count_skip_index_view.test │ │ │ │ ├── optimization_count_skip_multiple_conditions.test │ │ │ │ ├── optimization_count_skip_primary_key_between.test │ │ │ │ ├── optimization_count_skip_primary_key_equal.test │ │ │ │ ├── optimization_count_skip_primary_key_greater.test │ │ │ │ ├── optimization_count_skip_primary_key_greater_equal.test │ │ │ │ ├── optimization_count_skip_primary_key_less.test │ │ │ │ ├── optimization_count_skip_primary_key_less_equal.test │ │ │ │ ├── optimization_count_skip_primary_key_not_equal.test │ │ │ │ ├── optimization_order_limit_not_optimized_disabled.test │ │ │ │ ├── optimization_order_limit_not_optimized_multiple_match_againsts.test │ │ │ │ ├── optimization_order_limit_not_optimized_no_limit.test │ │ │ │ ├── optimization_order_limit_optimized_cp932.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_between.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_between_over.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_equal.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_greater_than.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_greater_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_less_than.test │ │ │ │ ├── optimization_order_limit_optimized_datetime_less_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_duplicated_order_by_columns.test │ │ │ │ ├── optimization_order_limit_optimized_enum_name.test │ │ │ │ ├── optimization_order_limit_optimized_enum_value.test │ │ │ │ ├── optimization_order_limit_optimized_have_primary_key.test │ │ │ │ ├── optimization_order_limit_optimized_int_between.test │ │ │ │ ├── optimization_order_limit_optimized_int_between_over.test │ │ │ │ ├── optimization_order_limit_optimized_int_equal.test │ │ │ │ ├── optimization_order_limit_optimized_int_greater_than.test │ │ │ │ ├── optimization_order_limit_optimized_int_greater_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_int_less_than.test │ │ │ │ ├── optimization_order_limit_optimized_int_less_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_no_primary_key.test │ │ │ │ ├── optimization_order_limit_optimized_no_where_clause.test │ │ │ │ ├── optimization_order_limit_optimized_order_by_asc.test │ │ │ │ ├── optimization_order_limit_optimized_order_by_desc.test │ │ │ │ ├── optimization_order_limit_optimized_order_by_id.test │ │ │ │ ├── optimization_order_limit_optimized_order_by_match_against.test │ │ │ │ ├── optimization_order_limit_optimized_select_match_against.test │ │ │ │ ├── optimization_order_limit_optimized_time_between.test │ │ │ │ ├── optimization_order_limit_optimized_time_between_over.test │ │ │ │ ├── optimization_order_limit_optimized_time_equal.test │ │ │ │ ├── optimization_order_limit_optimized_time_greater_than.test │ │ │ │ ├── optimization_order_limit_optimized_time_greater_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_time_less_than.test │ │ │ │ ├── optimization_order_limit_optimized_time_less_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_varchar_equal_with_index.test │ │ │ │ ├── optimization_order_limit_optimized_varchar_equal_without_index.test │ │ │ │ ├── optimization_order_limit_optimized_year_between.test │ │ │ │ ├── optimization_order_limit_optimized_year_between_over.test │ │ │ │ ├── optimization_order_limit_optimized_year_equal.test │ │ │ │ ├── optimization_order_limit_optimized_year_greater_than.test │ │ │ │ ├── optimization_order_limit_optimized_year_greater_than_or_equal.test │ │ │ │ ├── optimization_order_limit_optimized_year_less_than.test │ │ │ │ ├── optimization_order_limit_optimized_year_less_than_or_equal.test │ │ │ │ ├── partition_insert.test │ │ │ │ ├── partition_update.test │ │ │ │ ├── repair_table_no_index_file.test │ │ │ │ ├── replace_geometry.test │ │ │ │ ├── replace_select_varchar.test │ │ │ │ ├── replace_text.test │ │ │ │ ├── replace_varchar.test │ │ │ │ ├── replace_vector.test │ │ │ │ ├── replace_without_key.test │ │ │ │ ├── select_all.test │ │ │ │ ├── select_empty_key_where_equal.test │ │ │ │ ├── select_empty_key_where_not_equal.test │ │ │ │ ├── select_group_by_with_index.test │ │ │ │ ├── select_group_by_without_index.test │ │ │ │ ├── select_pkey.test │ │ │ │ ├── select_secondary_key.test │ │ │ │ ├── show_create_table_TODO_SPLIT_ME.test │ │ │ │ ├── sub_query_fulltext.test │ │ │ │ ├── temporary_table.test │ │ │ │ ├── truncate.test │ │ │ │ ├── update_binlog_row.test │ │ │ │ ├── update_fulltext.test │ │ │ │ ├── update_id_hash_index.test │ │ │ │ ├── update_id_unique_hash_index.test │ │ │ │ ├── update_int.test │ │ │ │ ├── update_last_insert_grn_id.test │ │ │ │ ├── update_virtual_column.test │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_column.test │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_leading_not.test │ │ │ │ ├── variable_boolean_mode_syntax_flags_allow_update.test │ │ │ │ ├── variable_boolean_mode_syntax_flags_syntax_query.test │ │ │ │ ├── variable_boolean_mode_syntax_flags_syntax_script.test │ │ │ │ ├── variable_database_path_prefix.test │ │ │ │ ├── variable_default_parser_new_value.test │ │ │ │ ├── variable_default_parser_same_value.test │ │ │ │ ├── variable_default_tokenizer_new_value.test │ │ │ │ ├── variable_default_tokenizer_same_value.test │ │ │ │ ├── variable_dry_write_delete.test │ │ │ │ ├── variable_dry_write_insert.test │ │ │ │ ├── variable_dry_write_update.test │ │ │ │ ├── variable_enable_operations_recording_insert.test │ │ │ │ ├── variable_lock_timeout_disable.test │ │ │ │ ├── variable_lock_timeout_invalid.test │ │ │ │ ├── variable_lock_timeout_no_retry.test │ │ │ │ ├── variable_lock_timeout_valid.test │ │ │ │ ├── variable_log_file_new_value.test │ │ │ │ ├── variable_log_file_nonexistent_path.test │ │ │ │ ├── variable_log_file_same_value.test │ │ │ │ ├── variable_log_level_TODO_SPLIT_ME.test │ │ │ │ ├── variable_match_escalation_threshold_global.test │ │ │ │ ├── variable_match_escalation_threshold_session.test │ │ │ │ ├── variable_max_n_records_for_estimate_global.test │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_global.test │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_not_found_in_limit.test │ │ │ │ ├── variable_max_n_records_for_estimate_mysql_5_7_or_later_session.test │ │ │ │ ├── variable_max_n_records_for_estimate_not_found_in_limit.test │ │ │ │ ├── variable_max_n_records_for_estimate_session.test │ │ │ │ ├── variable_query_log_file_disabled_empty_value.test │ │ │ │ ├── variable_query_log_file_disabled_null_value.test │ │ │ │ ├── variable_query_log_file_enabled_empty_value.test │ │ │ │ ├── variable_query_log_file_enabled_null_value.test │ │ │ │ ├── variable_query_log_file_new_value.test │ │ │ │ ├── variable_query_log_file_same_value.test │ │ │ │ ├── variable_vector_column_delimiter.test │ │ │ │ └── variable_version.test │ │ │ └── wrapper/ │ │ │ ├── disabled.def │ │ │ ├── r/ │ │ │ │ ├── alter_table_add_column.result │ │ │ │ ├── alter_table_add_column_multibyte_cp932.result │ │ │ │ ├── alter_table_add_column_multibyte_utf8.result │ │ │ │ ├── alter_table_change_column_comment.result │ │ │ │ ├── alter_table_change_engine.result │ │ │ │ ├── alter_table_comment_change_engine.result │ │ │ │ ├── alter_table_disable_keys_create_fulltext.result │ │ │ │ ├── alter_table_disable_keys_fulltext.result │ │ │ │ ├── alter_table_disable_keys_multiple_column.result │ │ │ │ ├── alter_table_disable_keys_normal.result │ │ │ │ ├── alter_table_disable_keys_primary.result │ │ │ │ ├── alter_table_disable_keys_updating.result │ │ │ │ ├── alter_table_drop_column.result │ │ │ │ ├── alter_table_enable_keys_fulltext.result │ │ │ │ ├── alter_table_enable_keys_lock_tables.result │ │ │ │ ├── alter_table_enable_keys_multiple_column.result │ │ │ │ ├── alter_table_enable_keys_normal.result │ │ │ │ ├── alter_table_enable_keys_primary.result │ │ │ │ ├── alter_table_fulltext.result │ │ │ │ ├── alter_table_rename_table.result │ │ │ │ ├── alter_table_spatial.result │ │ │ │ ├── auto_increment_text.result │ │ │ │ ├── binlog_TODO_SPLIT_ME.result │ │ │ │ ├── check_table_for_upgrade.result │ │ │ │ ├── column_comment_index_not_for_mroonga.result │ │ │ │ ├── column_generated_stored_add_column.result │ │ │ │ ├── column_generated_stored_delete.result │ │ │ │ ├── column_generated_stored_drop_column.result │ │ │ │ ├── column_generated_stored_insert.result │ │ │ │ ├── column_generated_stored_reindex.result │ │ │ │ ├── column_generated_stored_update.result │ │ │ │ ├── column_generated_virtual_add_column.result │ │ │ │ ├── column_generated_virtual_add_fulltext_index.result │ │ │ │ ├── column_generated_virtual_add_index.result │ │ │ │ ├── column_generated_virtual_delete.result │ │ │ │ ├── column_generated_virtual_drop_column.result │ │ │ │ ├── column_generated_virtual_insert.result │ │ │ │ ├── column_generated_virtual_update.result │ │ │ │ ├── column_multibyte_cp932.result │ │ │ │ ├── column_multibyte_utf8.result │ │ │ │ ├── column_normal_comment.result │ │ │ │ ├── count_star.result │ │ │ │ ├── count_star_mysql_5_7_or_later_with_index.result │ │ │ │ ├── count_star_with_index.result │ │ │ │ ├── create_table_TODO_SPLIT_ME.result │ │ │ │ ├── create_table_comment_combined.result │ │ │ │ ├── create_table_flags_comment.result │ │ │ │ ├── create_table_flags_none.result │ │ │ │ ├── create_table_flags_parameter.result │ │ │ │ ├── create_table_index_flags_none.result │ │ │ │ ├── create_table_index_flags_with_position_and_with_weight.result │ │ │ │ ├── create_table_normalizer_comment.result │ │ │ │ ├── create_table_normalizer_fulltext_index_bin.result │ │ │ │ ├── create_table_normalizer_parameter.result │ │ │ │ ├── create_table_parser_comment.result │ │ │ │ ├── create_table_token_filters_index_multiple_token_filters.result │ │ │ │ ├── create_table_token_filters_index_one_token_filter.result │ │ │ │ ├── create_table_token_filters_index_parameter.result │ │ │ │ ├── create_table_tokenizer_comment.result │ │ │ │ ├── create_table_tokenizer_parameter.result │ │ │ │ ├── delete_TODO_SPLIT_ME.result │ │ │ │ ├── delete_all.result │ │ │ │ ├── drop_table_new_connection.result │ │ │ │ ├── fulltext_boolean_mode_leading_not.result │ │ │ │ ├── fulltext_boolean_mode_multiple_match_against.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_no_operator.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_or.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_plus.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_no_operator.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_minus.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_plus.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_no_operator.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_minus.result │ │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_or.result │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_full_spec.result │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_no_weight.result │ │ │ │ ├── fulltext_boolean_mode_pragma_weight_omit_section.result │ │ │ │ ├── fulltext_charset_ascii.result │ │ │ │ ├── fulltext_charset_cp932.result │ │ │ │ ├── fulltext_charset_eucjpms.result │ │ │ │ ├── fulltext_charset_japanese.result │ │ │ │ ├── fulltext_index_recreate.result │ │ │ │ ├── fulltext_insert_select.result │ │ │ │ ├── fulltext_insert_values.result │ │ │ │ ├── fulltext_many_records.result │ │ │ │ ├── fulltext_matched_and_not_matched_have_where_matched_order.result │ │ │ │ ├── fulltext_matched_and_not_matched_have_where_no_order.result │ │ │ │ ├── fulltext_matched_and_not_matched_no_where_both_order.result │ │ │ │ ├── fulltext_multiple_column_index_delete.result │ │ │ │ ├── fulltext_multiple_column_index_insert.result │ │ │ │ ├── fulltext_multiple_column_index_recreate.result │ │ │ │ ├── fulltext_multiple_column_index_update.result │ │ │ │ ├── fulltext_multiple_index.result │ │ │ │ ├── fulltext_myisam.result │ │ │ │ ├── fulltext_not_match_against.result │ │ │ │ ├── fulltext_order_TODO_SPLIT_ME.result │ │ │ │ ├── fulltext_order_transaction.result │ │ │ │ ├── function_last_insert_id_reference.result │ │ │ │ ├── function_last_insert_id_set.result │ │ │ │ ├── geometry_contains.result │ │ │ │ ├── geometry_delete.result │ │ │ │ ├── geometry_update.result │ │ │ │ ├── index_force_index_not_used.result │ │ │ │ ├── insert_TODO_SPLIT_ME.result │ │ │ │ ├── insert_bulk.result │ │ │ │ ├── insert_on_duplicate_key_update_multiple_column_primary_key_myisam.result │ │ │ │ ├── insert_on_duplicate_key_update_multiple_column_unique_index_myisam.result │ │ │ │ ├── multi_range_read_disk_sweep.result │ │ │ │ ├── multi_range_read_mysql_5_7_or_later_disk_sweep.result │ │ │ │ ├── optimization_order_limit_TODO_SPLIT_ME.result │ │ │ │ ├── optimization_order_limit_no_direction.result │ │ │ │ ├── optimization_order_limit_no_where_clause.result │ │ │ │ ├── optimization_order_limit_order_by_primary_key.result │ │ │ │ ├── performance_schema.result │ │ │ │ ├── repair_table_no_files.result │ │ │ │ ├── repair_table_no_index_file.result │ │ │ │ ├── temporary_table.result │ │ │ │ ├── transaction_query_cache.result │ │ │ │ ├── transaction_rollback_delete_delete.result │ │ │ │ ├── transaction_rollback_delete_update.result │ │ │ │ ├── truncate.result │ │ │ │ ├── update_fulltext.result │ │ │ │ ├── update_int.result │ │ │ │ ├── variable_dry_write_delete.result │ │ │ │ ├── variable_dry_write_insert.result │ │ │ │ ├── variable_dry_write_update.result │ │ │ │ ├── variable_match_escalation_threshold_global.result │ │ │ │ └── variable_match_escalation_threshold_session.result │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── alter_table_add_column.test │ │ │ ├── alter_table_add_column_multibyte_cp932.test │ │ │ ├── alter_table_add_column_multibyte_utf8.test │ │ │ ├── alter_table_change_column_comment.test │ │ │ ├── alter_table_change_engine.test │ │ │ ├── alter_table_comment_change_engine.test │ │ │ ├── alter_table_disable_keys_create_fulltext.test │ │ │ ├── alter_table_disable_keys_fulltext.test │ │ │ ├── alter_table_disable_keys_multiple_column.test │ │ │ ├── alter_table_disable_keys_normal.test │ │ │ ├── alter_table_disable_keys_primary.test │ │ │ ├── alter_table_disable_keys_updating.test │ │ │ ├── alter_table_drop_column.test │ │ │ ├── alter_table_enable_keys_fulltext.test │ │ │ ├── alter_table_enable_keys_lock_tables.test │ │ │ ├── alter_table_enable_keys_multiple_column.test │ │ │ ├── alter_table_enable_keys_normal.test │ │ │ ├── alter_table_enable_keys_primary.test │ │ │ ├── alter_table_fulltext.test │ │ │ ├── alter_table_rename_table.test │ │ │ ├── alter_table_spatial.test │ │ │ ├── auto_increment_text.test │ │ │ ├── binlog_TODO_SPLIT_ME.test │ │ │ ├── check_table_for_upgrade.test │ │ │ ├── column_comment_index_not_for_mroonga.test │ │ │ ├── column_generated_stored_add_column.test │ │ │ ├── column_generated_stored_delete.test │ │ │ ├── column_generated_stored_drop_column.test │ │ │ ├── column_generated_stored_insert.test │ │ │ ├── column_generated_stored_reindex.test │ │ │ ├── column_generated_stored_update.test │ │ │ ├── column_generated_virtual_add_column.test │ │ │ ├── column_generated_virtual_add_fulltext_index.test │ │ │ ├── column_generated_virtual_add_index.test │ │ │ ├── column_generated_virtual_delete.test │ │ │ ├── column_generated_virtual_drop_column.test │ │ │ ├── column_generated_virtual_insert.test │ │ │ ├── column_generated_virtual_update.test │ │ │ ├── column_multibyte_cp932.test │ │ │ ├── column_multibyte_utf8.test │ │ │ ├── column_normal_comment.test │ │ │ ├── count_star.test │ │ │ ├── count_star_mysql_5_7_or_later_with_index.test │ │ │ ├── count_star_with_index.test │ │ │ ├── create_table_TODO_SPLIT_ME.test │ │ │ ├── create_table_comment_combined.test │ │ │ ├── create_table_flags_comment.test │ │ │ ├── create_table_flags_none.test │ │ │ ├── create_table_flags_parameter.test │ │ │ ├── create_table_index_flags_none.test │ │ │ ├── create_table_index_flags_with_position_and_with_weight.test │ │ │ ├── create_table_normalizer_comment.test │ │ │ ├── create_table_normalizer_fulltext_index_bin.test │ │ │ ├── create_table_normalizer_parameter.test │ │ │ ├── create_table_parser_comment.test │ │ │ ├── create_table_token_filters_index_multiple_token_filters.test │ │ │ ├── create_table_token_filters_index_one_token_filter.test │ │ │ ├── create_table_token_filters_index_parameter.test │ │ │ ├── create_table_tokenizer_comment.test │ │ │ ├── create_table_tokenizer_parameter.test │ │ │ ├── delete_TODO_SPLIT_ME.test │ │ │ ├── delete_all.test │ │ │ ├── drop_table_new_connection.test │ │ │ ├── fulltext_boolean_mode_leading_not.test │ │ │ ├── fulltext_boolean_mode_multiple_match_against.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_no_operator.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_or.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_minus_with_plus.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_no_operator.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_minus.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_or_with_plus.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_no_operator.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_minus.test │ │ │ ├── fulltext_boolean_mode_pragma_default_operator_plus_with_or.test │ │ │ ├── fulltext_boolean_mode_pragma_weight_full_spec.test │ │ │ ├── fulltext_boolean_mode_pragma_weight_no_weight.test │ │ │ ├── fulltext_boolean_mode_pragma_weight_omit_section.test │ │ │ ├── fulltext_charset_ascii.test │ │ │ ├── fulltext_charset_cp932.test │ │ │ ├── fulltext_charset_eucjpms.test │ │ │ ├── fulltext_charset_japanese.test │ │ │ ├── fulltext_index_recreate.test │ │ │ ├── fulltext_insert_select.test │ │ │ ├── fulltext_insert_values.test │ │ │ ├── fulltext_many_records.test │ │ │ ├── fulltext_matched_and_not_matched_have_where_matched_order.test │ │ │ ├── fulltext_matched_and_not_matched_have_where_no_order.test │ │ │ ├── fulltext_matched_and_not_matched_no_where_both_order.test │ │ │ ├── fulltext_multiple_column_index_delete.test │ │ │ ├── fulltext_multiple_column_index_insert.test │ │ │ ├── fulltext_multiple_column_index_recreate.test │ │ │ ├── fulltext_multiple_column_index_update.test │ │ │ ├── fulltext_multiple_index.test │ │ │ ├── fulltext_myisam.test │ │ │ ├── fulltext_not_match_against.test │ │ │ ├── fulltext_order_TODO_SPLIT_ME.test │ │ │ ├── fulltext_order_transaction.test │ │ │ ├── function_last_insert_id_reference.test │ │ │ ├── function_last_insert_id_set.test │ │ │ ├── geometry_contains.test │ │ │ ├── geometry_delete.test │ │ │ ├── geometry_update.test │ │ │ ├── index_force_index_not_used.test │ │ │ ├── insert_TODO_SPLIT_ME.test │ │ │ ├── insert_bulk.test │ │ │ ├── insert_on_duplicate_key_update_multiple_column_primary_key_myisam.test │ │ │ ├── insert_on_duplicate_key_update_multiple_column_unique_index_myisam.test │ │ │ ├── multi_range_read_disk_sweep.test │ │ │ ├── multi_range_read_mysql_5_7_or_later_disk_sweep.test │ │ │ ├── optimization_order_limit_TODO_SPLIT_ME.test │ │ │ ├── optimization_order_limit_no_direction.test │ │ │ ├── optimization_order_limit_no_where_clause.test │ │ │ ├── optimization_order_limit_order_by_primary_key.test │ │ │ ├── performance_schema-master.opt │ │ │ ├── performance_schema.test │ │ │ ├── repair_table_no_files.test │ │ │ ├── repair_table_no_index_file.test │ │ │ ├── temporary_table.test │ │ │ ├── transaction_query_cache.test │ │ │ ├── transaction_rollback_delete_delete.test │ │ │ ├── transaction_rollback_delete_update.test │ │ │ ├── truncate.test │ │ │ ├── update_fulltext.test │ │ │ ├── update_int.test │ │ │ ├── variable_dry_write_delete.test │ │ │ ├── variable_dry_write_insert.test │ │ │ ├── variable_dry_write_update.test │ │ │ ├── variable_match_escalation_threshold_global.test │ │ │ └── variable_match_escalation_threshold_session.test │ │ ├── plugin_version │ │ ├── required_groonga_normalizer_mysql_version │ │ ├── required_groonga_version │ │ ├── sources.am │ │ ├── test/ │ │ │ ├── Makefile.am │ │ │ ├── run-sql-test.sh │ │ │ ├── run-unit-test.sh │ │ │ └── unit/ │ │ │ ├── Makefile.am │ │ │ └── test_mrn_path_mapper.cpp │ │ ├── tools/ │ │ │ ├── Makefile.am │ │ │ ├── prepare-sphinx-html.rb │ │ │ ├── travis/ │ │ │ │ ├── before_script.sh │ │ │ │ ├── install.sh │ │ │ │ └── script.sh │ │ │ └── upload-to-github.rb │ │ ├── udf/ │ │ │ ├── Makefile.am │ │ │ ├── mrn_udf_command.cpp │ │ │ ├── mrn_udf_escape.cpp │ │ │ ├── mrn_udf_highlight_html.cpp │ │ │ ├── mrn_udf_last_insert_grn_id.cpp │ │ │ ├── mrn_udf_normalize.cpp │ │ │ ├── mrn_udf_query_expand.cpp │ │ │ ├── mrn_udf_snippet.cpp │ │ │ ├── mrn_udf_snippet_html.cpp │ │ │ └── sources.am │ │ ├── vendor/ │ │ │ └── groonga/ │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── autogen.sh │ │ │ ├── base_version │ │ │ ├── benchmark/ │ │ │ │ ├── Makefile.am │ │ │ │ ├── bench-between-sequential.c │ │ │ │ ├── bench-cache.c │ │ │ │ ├── bench-ctx-create.c │ │ │ │ ├── bench-geo-distance.c │ │ │ │ ├── bench-geo-select.c │ │ │ │ ├── bench-geo-select.sh │ │ │ │ ├── bench-nfkc.c │ │ │ │ ├── bench-query-optimizer-ddl.grn │ │ │ │ ├── bench-query-optimizer.c │ │ │ │ ├── bench-range-select.c │ │ │ │ ├── bench-result-set.c │ │ │ │ ├── bench-table-factory.c │ │ │ │ ├── fixtures/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── geo-select/ │ │ │ │ │ ├── 13_2010.CSV.xz │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.txt │ │ │ │ │ └── format_2010.html │ │ │ │ ├── geo-distance-summary.rb │ │ │ │ ├── geo-select-generate-grn.rb │ │ │ │ └── lib/ │ │ │ │ ├── Makefile.am │ │ │ │ ├── bench-reporter.c │ │ │ │ ├── bench-reporter.h │ │ │ │ ├── bench-utils.c │ │ │ │ ├── bench-utils.h │ │ │ │ ├── benchmark.c │ │ │ │ └── benchmark.h │ │ │ ├── bindings/ │ │ │ │ ├── php/ │ │ │ │ │ ├── config.m4 │ │ │ │ │ ├── config.w32 │ │ │ │ │ ├── groonga.c │ │ │ │ │ ├── groonga.dsp │ │ │ │ │ ├── php_groonga.h │ │ │ │ │ └── tests/ │ │ │ │ │ └── 001.phpt │ │ │ │ └── python/ │ │ │ │ └── ql/ │ │ │ │ ├── groongaql.c │ │ │ │ └── setup.py │ │ │ ├── bundled_lz4_version │ │ │ ├── bundled_mecab_naist_jdic_version │ │ │ ├── bundled_mecab_version │ │ │ ├── bundled_message_pack_version │ │ │ ├── config.h.cmake │ │ │ ├── config.sh.in │ │ │ ├── configure.ac │ │ │ ├── examples/ │ │ │ │ ├── Makefile.am │ │ │ │ └── dictionary/ │ │ │ │ ├── Makefile.am │ │ │ │ ├── edict/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── edict-import.sh │ │ │ │ │ └── edict2grn.rb │ │ │ │ ├── eijiro/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── eijiro-import.sh │ │ │ │ │ └── eijiro2grn.rb │ │ │ │ ├── gene95/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── gene-import.sh │ │ │ │ │ └── gene2grn.rb │ │ │ │ ├── html/ │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── dictionary.css │ │ │ │ │ │ └── smoothness/ │ │ │ │ │ │ └── jquery-ui-1.8.12.custom.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── js/ │ │ │ │ │ ├── dictionary.js │ │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ │ └── jquery-ui-1.8.18.custom.js │ │ │ │ ├── init-db.sh │ │ │ │ ├── jmdict/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── jmdict.rb │ │ │ │ └── readme.txt │ │ │ ├── gpg_uid │ │ │ ├── groonga-arrow.pc.in │ │ │ ├── groonga-httpd-conf.sh.in │ │ │ ├── groonga.pc.in │ │ │ ├── include/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── groonga/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── accessor.h │ │ │ │ │ ├── array.h │ │ │ │ │ ├── arrow.h │ │ │ │ │ ├── arrow.hpp │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── column.h │ │ │ │ │ ├── command.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dat.h │ │ │ │ │ ├── db.h │ │ │ │ │ ├── dump.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── expr.h │ │ │ │ │ ├── file_reader.h │ │ │ │ │ ├── geo.h │ │ │ │ │ ├── groonga.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── id.h │ │ │ │ │ ├── ii.h │ │ │ │ │ ├── nfkc.h │ │ │ │ │ ├── normalizer.h │ │ │ │ │ ├── obj.h │ │ │ │ │ ├── operator.h │ │ │ │ │ ├── output.h │ │ │ │ │ ├── pat.h │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── portability.h │ │ │ │ │ ├── request_canceler.h │ │ │ │ │ ├── request_timer.h │ │ │ │ │ ├── scorer.h │ │ │ │ │ ├── table.h │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── token.h │ │ │ │ │ ├── token_filter.h │ │ │ │ │ ├── tokenizer.h │ │ │ │ │ ├── type.h │ │ │ │ │ ├── util.h │ │ │ │ │ ├── window_function.h │ │ │ │ │ ├── windows.h │ │ │ │ │ └── windows_event_logger.h │ │ │ │ ├── groonga.h │ │ │ │ └── groonga.hpp │ │ │ ├── lib/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── alloc.c │ │ │ │ ├── arrow.cpp │ │ │ │ ├── c_sources.am │ │ │ │ ├── cache.c │ │ │ │ ├── column.c │ │ │ │ ├── com.c │ │ │ │ ├── command.c │ │ │ │ ├── config.c │ │ │ │ ├── cpp_sources.am │ │ │ │ ├── ctx.c │ │ │ │ ├── ctx_impl_mrb.c │ │ │ │ ├── dat/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── block.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── cursor-factory.cpp │ │ │ │ │ ├── cursor-factory.hpp │ │ │ │ │ ├── cursor.hpp │ │ │ │ │ ├── dat.hpp │ │ │ │ │ ├── entry.hpp │ │ │ │ │ ├── file-impl.cpp │ │ │ │ │ ├── file-impl.hpp │ │ │ │ │ ├── file.cpp │ │ │ │ │ ├── file.hpp │ │ │ │ │ ├── header.hpp │ │ │ │ │ ├── id-cursor.cpp │ │ │ │ │ ├── id-cursor.hpp │ │ │ │ │ ├── key-cursor.cpp │ │ │ │ │ ├── key-cursor.hpp │ │ │ │ │ ├── key.hpp │ │ │ │ │ ├── node.hpp │ │ │ │ │ ├── predictive-cursor.cpp │ │ │ │ │ ├── predictive-cursor.hpp │ │ │ │ │ ├── prefix-cursor.cpp │ │ │ │ │ ├── prefix-cursor.hpp │ │ │ │ │ ├── sources.am │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── trie.cpp │ │ │ │ │ ├── trie.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── dat.cpp │ │ │ │ ├── db.c │ │ │ │ ├── dump.c │ │ │ │ ├── error.c │ │ │ │ ├── expr.c │ │ │ │ ├── expr_code.c │ │ │ │ ├── expr_executor.c │ │ │ │ ├── file_lock.c │ │ │ │ ├── file_reader.c │ │ │ │ ├── geo.c │ │ │ │ ├── grn.h │ │ │ │ ├── grn_alloc.h │ │ │ │ ├── grn_cache.h │ │ │ │ ├── grn_com.h │ │ │ │ ├── grn_config.h │ │ │ │ ├── grn_ctx.h │ │ │ │ ├── grn_ctx_impl.h │ │ │ │ ├── grn_ctx_impl_mrb.h │ │ │ │ ├── grn_dat.h │ │ │ │ ├── grn_db.h │ │ │ │ ├── grn_ecmascript.c │ │ │ │ ├── grn_ecmascript.h │ │ │ │ ├── grn_ecmascript.lemon │ │ │ │ ├── grn_error.h │ │ │ │ ├── grn_expr.h │ │ │ │ ├── grn_expr_code.h │ │ │ │ ├── grn_expr_executor.h │ │ │ │ ├── grn_file_lock.h │ │ │ │ ├── grn_geo.h │ │ │ │ ├── grn_hash.h │ │ │ │ ├── grn_ii.h │ │ │ │ ├── grn_index_column.h │ │ │ │ ├── grn_io.h │ │ │ │ ├── grn_load.h │ │ │ │ ├── grn_logger.h │ │ │ │ ├── grn_mrb.h │ │ │ │ ├── grn_msgpack.h │ │ │ │ ├── grn_nfkc.h │ │ │ │ ├── grn_normalizer.h │ │ │ │ ├── grn_obj.h │ │ │ │ ├── grn_output.h │ │ │ │ ├── grn_pat.h │ │ │ │ ├── grn_plugin.h │ │ │ │ ├── grn_proc.h │ │ │ │ ├── grn_raw_string.h │ │ │ │ ├── grn_report.h │ │ │ │ ├── grn_request_canceler.h │ │ │ │ ├── grn_request_timer.h │ │ │ │ ├── grn_rset.h │ │ │ │ ├── grn_scanner.h │ │ │ │ ├── grn_scorer.h │ │ │ │ ├── grn_scorers.h │ │ │ │ ├── grn_snip.h │ │ │ │ ├── grn_store.h │ │ │ │ ├── grn_str.h │ │ │ │ ├── grn_string.h │ │ │ │ ├── grn_time.h │ │ │ │ ├── grn_token_cursor.h │ │ │ │ ├── grn_tokenizers.h │ │ │ │ ├── grn_ts.h │ │ │ │ ├── grn_util.h │ │ │ │ ├── grn_window_function.h │ │ │ │ ├── grn_window_functions.h │ │ │ │ ├── grn_windows.h │ │ │ │ ├── hash.c │ │ │ │ ├── icudump.c │ │ │ │ ├── id.c │ │ │ │ ├── ii.c │ │ │ │ ├── index_column.c │ │ │ │ ├── io.c │ │ │ │ ├── load.c │ │ │ │ ├── logger.c │ │ │ │ ├── metadata.rc.in │ │ │ │ ├── mrb/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── mrb_accessor.c │ │ │ │ │ ├── mrb_accessor.h │ │ │ │ │ ├── mrb_array.c │ │ │ │ │ ├── mrb_array.h │ │ │ │ │ ├── mrb_bulk.c │ │ │ │ │ ├── mrb_bulk.h │ │ │ │ │ ├── mrb_cache.c │ │ │ │ │ ├── mrb_cache.h │ │ │ │ │ ├── mrb_column.c │ │ │ │ │ ├── mrb_column.h │ │ │ │ │ ├── mrb_command.c │ │ │ │ │ ├── mrb_command.h │ │ │ │ │ ├── mrb_command_input.c │ │ │ │ │ ├── mrb_command_input.h │ │ │ │ │ ├── mrb_command_version.c │ │ │ │ │ ├── mrb_command_version.h │ │ │ │ │ ├── mrb_config.c │ │ │ │ │ ├── mrb_config.h │ │ │ │ │ ├── mrb_content_type.c │ │ │ │ │ ├── mrb_content_type.h │ │ │ │ │ ├── mrb_converter.c │ │ │ │ │ ├── mrb_converter.h │ │ │ │ │ ├── mrb_ctx.c │ │ │ │ │ ├── mrb_ctx.h │ │ │ │ │ ├── mrb_database.c │ │ │ │ │ ├── mrb_database.h │ │ │ │ │ ├── mrb_double_array_trie.c │ │ │ │ │ ├── mrb_double_array_trie.h │ │ │ │ │ ├── mrb_error.c │ │ │ │ │ ├── mrb_error.h │ │ │ │ │ ├── mrb_eval_context.c │ │ │ │ │ ├── mrb_eval_context.h │ │ │ │ │ ├── mrb_expr.c │ │ │ │ │ ├── mrb_expr.h │ │ │ │ │ ├── mrb_fixed_size_column.c │ │ │ │ │ ├── mrb_fixed_size_column.h │ │ │ │ │ ├── mrb_hash_table.c │ │ │ │ │ ├── mrb_hash_table.h │ │ │ │ │ ├── mrb_id.c │ │ │ │ │ ├── mrb_id.h │ │ │ │ │ ├── mrb_index_column.c │ │ │ │ │ ├── mrb_index_column.h │ │ │ │ │ ├── mrb_index_cursor.c │ │ │ │ │ ├── mrb_index_cursor.h │ │ │ │ │ ├── mrb_indexable.c │ │ │ │ │ ├── mrb_indexable.h │ │ │ │ │ ├── mrb_logger.c │ │ │ │ │ ├── mrb_logger.h │ │ │ │ │ ├── mrb_object.c │ │ │ │ │ ├── mrb_object.h │ │ │ │ │ ├── mrb_object_flags.c │ │ │ │ │ ├── mrb_object_flags.h │ │ │ │ │ ├── mrb_operator.c │ │ │ │ │ ├── mrb_operator.h │ │ │ │ │ ├── mrb_options.c │ │ │ │ │ ├── mrb_options.h │ │ │ │ │ ├── mrb_patricia_trie.c │ │ │ │ │ ├── mrb_patricia_trie.h │ │ │ │ │ ├── mrb_pointer.c │ │ │ │ │ ├── mrb_pointer.h │ │ │ │ │ ├── mrb_procedure.c │ │ │ │ │ ├── mrb_procedure.h │ │ │ │ │ ├── mrb_query_logger.c │ │ │ │ │ ├── mrb_query_logger.h │ │ │ │ │ ├── mrb_record.c │ │ │ │ │ ├── mrb_record.h │ │ │ │ │ ├── mrb_table.c │ │ │ │ │ ├── mrb_table.h │ │ │ │ │ ├── mrb_table_cursor.c │ │ │ │ │ ├── mrb_table_cursor.h │ │ │ │ │ ├── mrb_table_cursor_flags.c │ │ │ │ │ ├── mrb_table_cursor_flags.h │ │ │ │ │ ├── mrb_table_group_flags.c │ │ │ │ │ ├── mrb_table_group_flags.h │ │ │ │ │ ├── mrb_table_group_result.c │ │ │ │ │ ├── mrb_table_group_result.h │ │ │ │ │ ├── mrb_table_sort_flags.c │ │ │ │ │ ├── mrb_table_sort_flags.h │ │ │ │ │ ├── mrb_table_sort_key.c │ │ │ │ │ ├── mrb_table_sort_key.h │ │ │ │ │ ├── mrb_thread.c │ │ │ │ │ ├── mrb_thread.h │ │ │ │ │ ├── mrb_type.c │ │ │ │ │ ├── mrb_type.h │ │ │ │ │ ├── mrb_variable_size_column.c │ │ │ │ │ ├── mrb_variable_size_column.h │ │ │ │ │ ├── mrb_void.c │ │ │ │ │ ├── mrb_void.h │ │ │ │ │ ├── mrb_window_definition.c │ │ │ │ │ ├── mrb_window_definition.h │ │ │ │ │ ├── mrb_writer.c │ │ │ │ │ ├── mrb_writer.h │ │ │ │ │ ├── scripts/ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── accessor.rb │ │ │ │ │ │ ├── backtrace_entry.rb │ │ │ │ │ │ ├── command.rb │ │ │ │ │ │ ├── command_input.rb │ │ │ │ │ │ ├── command_line/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── grndb.rb │ │ │ │ │ │ │ └── sources.am │ │ │ │ │ │ ├── command_line_parser.rb │ │ │ │ │ │ ├── context/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── error_level.rb │ │ │ │ │ │ │ ├── rc.rb │ │ │ │ │ │ │ └── sources.am │ │ │ │ │ │ ├── context.rb │ │ │ │ │ │ ├── database.rb │ │ │ │ │ │ ├── error.rb │ │ │ │ │ │ ├── eval_context.rb │ │ │ │ │ │ ├── expression.rb │ │ │ │ │ │ ├── expression_rewriter.rb │ │ │ │ │ │ ├── expression_rewriters.rb │ │ │ │ │ │ ├── expression_size_estimator.rb │ │ │ │ │ │ ├── expression_tree/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── accessor.rb │ │ │ │ │ │ │ ├── binary_operation.rb │ │ │ │ │ │ │ ├── constant.rb │ │ │ │ │ │ │ ├── function_call.rb │ │ │ │ │ │ │ ├── index_column.rb │ │ │ │ │ │ │ ├── logical_operation.rb │ │ │ │ │ │ │ ├── options.rb │ │ │ │ │ │ │ ├── procedure.rb │ │ │ │ │ │ │ ├── sources.am │ │ │ │ │ │ │ └── variable.rb │ │ │ │ │ │ ├── expression_tree.rb │ │ │ │ │ │ ├── expression_tree_builder.rb │ │ │ │ │ │ ├── fixed_size_column.rb │ │ │ │ │ │ ├── id.rb │ │ │ │ │ │ ├── index_column.rb │ │ │ │ │ │ ├── index_cursor.rb │ │ │ │ │ │ ├── index_info.rb │ │ │ │ │ │ ├── initialize/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── post.rb │ │ │ │ │ │ │ ├── pre.rb │ │ │ │ │ │ │ └── sources.am │ │ │ │ │ │ ├── logger/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── level.rb │ │ │ │ │ │ │ └── sources.am │ │ │ │ │ │ ├── logger.rb │ │ │ │ │ │ ├── object.rb │ │ │ │ │ │ ├── operator.rb │ │ │ │ │ │ ├── plugin_loader.rb │ │ │ │ │ │ ├── query_logger/ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── flag.rb │ │ │ │ │ │ │ └── sources.am │ │ │ │ │ │ ├── query_logger.rb │ │ │ │ │ │ ├── record.rb │ │ │ │ │ │ ├── require.rb │ │ │ │ │ │ ├── scan_info.rb │ │ │ │ │ │ ├── scan_info_builder.rb │ │ │ │ │ │ ├── scan_info_data.rb │ │ │ │ │ │ ├── scan_info_data_size_estimator.rb │ │ │ │ │ │ ├── scan_info_search_index.rb │ │ │ │ │ │ ├── sources.am │ │ │ │ │ │ ├── table.rb │ │ │ │ │ │ ├── table_cursor.rb │ │ │ │ │ │ ├── variable_size_column.rb │ │ │ │ │ │ └── writer.rb │ │ │ │ │ └── sources.am │ │ │ │ ├── mrb.c │ │ │ │ ├── nfkc-custom-rules.txt │ │ │ │ ├── nfkc.c │ │ │ │ ├── nfkc.rb │ │ │ │ ├── nfkc50.c │ │ │ │ ├── normalizer.c │ │ │ │ ├── obj.c │ │ │ │ ├── operator.c │ │ │ │ ├── output.c │ │ │ │ ├── pat.c │ │ │ │ ├── plugin.c │ │ │ │ ├── proc/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── proc_column.c │ │ │ │ │ ├── proc_config.c │ │ │ │ │ ├── proc_dump.c │ │ │ │ │ ├── proc_fuzzy_search.c │ │ │ │ │ ├── proc_highlight.c │ │ │ │ │ ├── proc_in_records.c │ │ │ │ │ ├── proc_lock.c │ │ │ │ │ ├── proc_object.c │ │ │ │ │ ├── proc_object_inspect.c │ │ │ │ │ ├── proc_object_list.c │ │ │ │ │ ├── proc_query.c │ │ │ │ │ ├── proc_query_log_flags.c │ │ │ │ │ ├── proc_schema.c │ │ │ │ │ ├── proc_select.c │ │ │ │ │ ├── proc_snippet.c │ │ │ │ │ ├── proc_table.c │ │ │ │ │ ├── proc_tokenize.c │ │ │ │ │ └── sources.am │ │ │ │ ├── proc.c │ │ │ │ ├── raw_string.c │ │ │ │ ├── report.c │ │ │ │ ├── request_canceler.c │ │ │ │ ├── request_timer.c │ │ │ │ ├── rset.c │ │ │ │ ├── scanner.c │ │ │ │ ├── scorer.c │ │ │ │ ├── scorers.c │ │ │ │ ├── snip.c │ │ │ │ ├── store.c │ │ │ │ ├── str.c │ │ │ │ ├── string.c │ │ │ │ ├── table.c │ │ │ │ ├── thread.c │ │ │ │ ├── time.c │ │ │ │ ├── token_cursor.c │ │ │ │ ├── token_filter.c │ │ │ │ ├── tokenizer.c │ │ │ │ ├── tokenizers.c │ │ │ │ ├── ts/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── sources.am │ │ │ │ │ ├── ts_buf.c │ │ │ │ │ ├── ts_buf.h │ │ │ │ │ ├── ts_cursor.c │ │ │ │ │ ├── ts_cursor.h │ │ │ │ │ ├── ts_expr.c │ │ │ │ │ ├── ts_expr.h │ │ │ │ │ ├── ts_expr_builder.c │ │ │ │ │ ├── ts_expr_builder.h │ │ │ │ │ ├── ts_expr_node.c │ │ │ │ │ ├── ts_expr_node.h │ │ │ │ │ ├── ts_expr_parser.c │ │ │ │ │ ├── ts_expr_parser.h │ │ │ │ │ ├── ts_log.h │ │ │ │ │ ├── ts_op.c │ │ │ │ │ ├── ts_op.h │ │ │ │ │ ├── ts_plan.c │ │ │ │ │ ├── ts_plan.h │ │ │ │ │ ├── ts_sorter.c │ │ │ │ │ ├── ts_sorter.h │ │ │ │ │ ├── ts_str.c │ │ │ │ │ ├── ts_str.h │ │ │ │ │ ├── ts_types.h │ │ │ │ │ ├── ts_util.c │ │ │ │ │ └── ts_util.h │ │ │ │ ├── ts.c │ │ │ │ ├── type.c │ │ │ │ ├── util.c │ │ │ │ ├── window_function.c │ │ │ │ ├── window_functions.c │ │ │ │ ├── windows.c │ │ │ │ └── windows_event_logger.c │ │ │ ├── nginx_version │ │ │ ├── plugins/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── expression_rewriters/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── optimizer.rb │ │ │ │ │ └── sources.am │ │ │ │ ├── functions/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── index_column.c │ │ │ │ │ ├── index_column_sources.am │ │ │ │ │ ├── math.c │ │ │ │ │ ├── math_sources.am │ │ │ │ │ ├── number.c │ │ │ │ │ ├── number_sources.am │ │ │ │ │ ├── string.c │ │ │ │ │ ├── string_sources.am │ │ │ │ │ ├── time.c │ │ │ │ │ ├── time_sources.am │ │ │ │ │ ├── vector.c │ │ │ │ │ └── vector_sources.am │ │ │ │ ├── query_expanders/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── tsv.c │ │ │ │ │ └── tsv_sources.am │ │ │ │ ├── ruby/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── eval.rb │ │ │ │ │ └── sources.am │ │ │ │ ├── ruby_scripts.am │ │ │ │ ├── sharding/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── logical_count.rb │ │ │ │ │ ├── logical_enumerator.rb │ │ │ │ │ ├── logical_parameters.rb │ │ │ │ │ ├── logical_range_filter.rb │ │ │ │ │ ├── logical_select.rb │ │ │ │ │ ├── logical_shard_list.rb │ │ │ │ │ ├── logical_table_remove.rb │ │ │ │ │ ├── parameters.rb │ │ │ │ │ ├── range_expression_builder.rb │ │ │ │ │ └── sources.am │ │ │ │ ├── sharding.rb │ │ │ │ ├── suggest/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── sources.am │ │ │ │ │ └── suggest.c │ │ │ │ ├── token_filters/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── stem.c │ │ │ │ │ ├── stem_sources.am │ │ │ │ │ ├── stop_word.c │ │ │ │ │ └── stop_word_sources.am │ │ │ │ └── tokenizers/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── kytea.cpp │ │ │ │ ├── kytea_sources.am │ │ │ │ ├── mecab.c │ │ │ │ └── mecab_sources.am │ │ │ ├── src/ │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── grndb.c │ │ │ │ ├── grndb_sources.am │ │ │ │ ├── grnslap.c │ │ │ │ ├── grnslap_sources.am │ │ │ │ ├── groonga.c │ │ │ │ ├── groonga_benchmark.c │ │ │ │ ├── groonga_benchmark_sources.am │ │ │ │ ├── groonga_mruby.c │ │ │ │ ├── groonga_mruby_sources.am │ │ │ │ ├── groonga_sources.am │ │ │ │ ├── httpd/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── nginx-module/ │ │ │ │ │ ├── config │ │ │ │ │ └── ngx_http_groonga_module.c │ │ │ │ └── suggest/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── create_dataset_sources.am │ │ │ │ ├── groonga_suggest_create_dataset.c │ │ │ │ ├── groonga_suggest_ddl.txt │ │ │ │ ├── groonga_suggest_httpd.c │ │ │ │ ├── groonga_suggest_learner.c │ │ │ │ ├── httpd_sources.am │ │ │ │ ├── learner_sources.am │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ ├── util_sources.am │ │ │ │ └── zmq_compatible.h │ │ │ ├── tools/ │ │ │ │ ├── Makefile.am │ │ │ │ ├── check-small-index-limit.rb │ │ │ │ ├── groonga-benchmark-indexing.rb │ │ │ │ ├── groonga-memory-leak-checker.rb │ │ │ │ ├── groonga-memory-usage-analyzer.rb │ │ │ │ ├── groonga-object-list-checker.rb │ │ │ │ ├── groonga-suggest-httpd-client.rb │ │ │ │ ├── install/ │ │ │ │ │ └── install-for-debian-jessie.sh │ │ │ │ ├── prepare-sphinx-html.rb │ │ │ │ ├── travis-before-script.sh │ │ │ │ ├── travis-install.sh │ │ │ │ └── travis-script.sh │ │ │ ├── vendor/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── download_lz4.rb │ │ │ │ ├── download_mecab.rb │ │ │ │ ├── download_message_pack.rb │ │ │ │ ├── lz4/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Makefile.am │ │ │ │ ├── mecab/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── config.h.cmake │ │ │ │ │ └── mecabrc.cmake │ │ │ │ ├── message_pack/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Makefile.am │ │ │ │ ├── mruby/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── build_config.rb │ │ │ │ │ ├── built_sources.am │ │ │ │ │ ├── mruby_build.rb │ │ │ │ │ ├── sources.am │ │ │ │ │ ├── update.rb │ │ │ │ │ └── version │ │ │ │ ├── onigmo/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── config.h.cmake │ │ │ │ └── plugins/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── groonga-normalizer-mysql/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── autogen.sh │ │ │ │ ├── configure.ac │ │ │ │ ├── data/ │ │ │ │ │ └── travis/ │ │ │ │ │ └── setup.sh │ │ │ │ ├── doc/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── text/ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── lgpl-2.0.txt │ │ │ │ │ └── news.md │ │ │ │ ├── gpg_uid │ │ │ │ ├── groonga-normalizer-mysql.pc.in │ │ │ │ ├── normalizers/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── mysql.c │ │ │ │ │ ├── mysql_general_ci_table.h │ │ │ │ │ ├── mysql_sources.am │ │ │ │ │ ├── mysql_unicode_520_ci_except_kana_ci_kana_with_voiced_sound_mark_table.h │ │ │ │ │ ├── mysql_unicode_520_ci_table.h │ │ │ │ │ ├── mysql_unicode_ci_except_kana_ci_kana_with_voiced_sound_mark_table.h │ │ │ │ │ └── mysql_unicode_ci_table.h │ │ │ │ ├── required_groonga_version │ │ │ │ ├── tool/ │ │ │ │ │ ├── dump_difference_uca.rb │ │ │ │ │ ├── dump_difference_utf8.rb │ │ │ │ │ ├── generate_uca_table.rb │ │ │ │ │ ├── generate_utf8_table.rb │ │ │ │ │ ├── parser.rb │ │ │ │ │ └── travis/ │ │ │ │ │ ├── before_script.sh │ │ │ │ │ └── install.sh │ │ │ │ └── version_full │ │ │ └── version-gen.sh │ │ ├── version_full │ │ ├── version_in_hex │ │ ├── version_major │ │ ├── version_micro │ │ └── version_minor │ ├── myisam/ │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── ft_boolean_search.c │ │ ├── ft_myisam.c │ │ ├── ft_nlq_search.c │ │ ├── ft_parser.c │ │ ├── ft_static.c │ │ ├── ft_stopwords.c │ │ ├── ft_update.c │ │ ├── ftbench/ │ │ │ ├── Ecompare.pl │ │ │ ├── Ecreate.pl │ │ │ ├── Ereport.pl │ │ │ ├── README │ │ │ └── ft-test-run.sh │ │ ├── ftdefs.h │ │ ├── fulltext.h │ │ ├── ha_myisam.cc │ │ ├── ha_myisam.h │ │ ├── mi_cache.c │ │ ├── mi_changed.c │ │ ├── mi_check.c │ │ ├── mi_checksum.c │ │ ├── mi_close.c │ │ ├── mi_create.c │ │ ├── mi_dbug.c │ │ ├── mi_delete.c │ │ ├── mi_delete_all.c │ │ ├── mi_delete_table.c │ │ ├── mi_dynrec.c │ │ ├── mi_extra.c │ │ ├── mi_extrafunc.h │ │ ├── mi_info.c │ │ ├── mi_key.c │ │ ├── mi_keycache.c │ │ ├── mi_locking.c │ │ ├── mi_log.c │ │ ├── mi_open.c │ │ ├── mi_packrec.c │ │ ├── mi_page.c │ │ ├── mi_panic.c │ │ ├── mi_preload.c │ │ ├── mi_range.c │ │ ├── mi_rename.c │ │ ├── mi_rfirst.c │ │ ├── mi_rkey.c │ │ ├── mi_rlast.c │ │ ├── mi_rnext.c │ │ ├── mi_rnext_same.c │ │ ├── mi_rprev.c │ │ ├── mi_rrnd.c │ │ ├── mi_rsame.c │ │ ├── mi_rsamepos.c │ │ ├── mi_scan.c │ │ ├── mi_search.c │ │ ├── mi_static.c │ │ ├── mi_statrec.c │ │ ├── mi_test1.c │ │ ├── mi_test2.c │ │ ├── mi_test3.c │ │ ├── mi_test_all.sh │ │ ├── mi_unique.c │ │ ├── mi_update.c │ │ ├── mi_write.c │ │ ├── myisam_ftdump.c │ │ ├── myisamchk.c │ │ ├── myisamdef.h │ │ ├── myisamlog.c │ │ ├── myisampack.c │ │ ├── mysql-test/ │ │ │ ├── mtr2/ │ │ │ │ ├── README │ │ │ │ ├── overlay.inc │ │ │ │ ├── single.rdiff │ │ │ │ ├── suite.opt │ │ │ │ └── suite.pm │ │ │ └── storage_engine/ │ │ │ ├── alter_table_online.rdiff │ │ │ ├── alter_tablespace.rdiff │ │ │ ├── check_table.rdiff │ │ │ ├── define_engine.inc │ │ │ ├── foreign_keys.rdiff │ │ │ ├── index_type_hash.rdiff │ │ │ ├── misc.rdiff │ │ │ ├── parts/ │ │ │ │ └── disabled.def │ │ │ ├── show_engine.rdiff │ │ │ ├── tbl_opt_insert_method.rdiff │ │ │ ├── tbl_opt_union.rdiff │ │ │ └── trx/ │ │ │ ├── cons_snapshot_repeatable_read.rdiff │ │ │ ├── cons_snapshot_serializable.rdiff │ │ │ ├── delete.rdiff │ │ │ ├── insert.rdiff │ │ │ ├── level_read_committed.rdiff │ │ │ ├── level_read_uncommitted.rdiff │ │ │ ├── level_repeatable_read.rdiff │ │ │ ├── level_serializable.rdiff │ │ │ ├── select_for_update.rdiff │ │ │ ├── select_lock_in_share_mode.rdiff │ │ │ ├── update.rdiff │ │ │ ├── xa.rdiff │ │ │ └── xa_recovery.rdiff │ │ ├── rt_index.c │ │ ├── rt_index.h │ │ ├── rt_key.c │ │ ├── rt_key.h │ │ ├── rt_mbr.c │ │ ├── rt_mbr.h │ │ ├── rt_split.c │ │ ├── rt_test.c │ │ ├── sort.c │ │ ├── sp_defs.h │ │ ├── sp_key.c │ │ ├── sp_test.c │ │ └── test_pack │ ├── myisammrg/ │ │ ├── CMakeLists.txt │ │ ├── ha_myisammrg.cc │ │ ├── ha_myisammrg.h │ │ ├── myrg_close.c │ │ ├── myrg_create.c │ │ ├── myrg_def.h │ │ ├── myrg_delete.c │ │ ├── myrg_extra.c │ │ ├── myrg_info.c │ │ ├── myrg_locking.c │ │ ├── myrg_open.c │ │ ├── myrg_panic.c │ │ ├── myrg_queue.c │ │ ├── myrg_range.c │ │ ├── myrg_records.c │ │ ├── myrg_rfirst.c │ │ ├── myrg_rkey.c │ │ ├── myrg_rlast.c │ │ ├── myrg_rnext.c │ │ ├── myrg_rnext_same.c │ │ ├── myrg_rprev.c │ │ ├── myrg_rrnd.c │ │ ├── myrg_rsame.c │ │ ├── myrg_static.c │ │ ├── myrg_update.c │ │ ├── myrg_write.c │ │ └── mysql-test/ │ │ └── storage_engine/ │ │ ├── alter_table.inc │ │ ├── alter_table.rdiff │ │ ├── alter_table_online.rdiff │ │ ├── alter_tablespace.rdiff │ │ ├── analyze_table.rdiff │ │ ├── autoincrement.rdiff │ │ ├── cache_index.rdiff │ │ ├── checksum_table_live.rdiff │ │ ├── cleanup_engine.inc │ │ ├── create_table.inc │ │ ├── create_table.rdiff │ │ ├── define_engine.inc │ │ ├── disabled.def │ │ ├── foreign_keys.rdiff │ │ ├── fulltext_search.rdiff │ │ ├── handler.rdiff │ │ ├── index.rdiff │ │ ├── index_enable_disable.rdiff │ │ ├── index_type_btree.rdiff │ │ ├── index_type_hash.rdiff │ │ ├── insert_delayed.rdiff │ │ ├── lock.rdiff │ │ ├── misc.rdiff │ │ ├── optimize_table.rdiff │ │ ├── parts/ │ │ │ ├── alter_table.rdiff │ │ │ ├── analyze_table.rdiff │ │ │ ├── check_table.rdiff │ │ │ ├── checksum_table.rdiff │ │ │ ├── create_table.rdiff │ │ │ ├── optimize_table.rdiff │ │ │ ├── repair_table.rdiff │ │ │ └── truncate_table.rdiff │ │ ├── repair_table.rdiff │ │ ├── show_engine.rdiff │ │ ├── tbl_opt_ai.rdiff │ │ ├── tbl_opt_avg_row_length.rdiff │ │ ├── tbl_opt_checksum.rdiff │ │ ├── tbl_opt_connection.rdiff │ │ ├── tbl_opt_data_dir.rdiff │ │ ├── tbl_opt_delay_key_write.rdiff │ │ ├── tbl_opt_index_dir.rdiff │ │ ├── tbl_opt_insert_method.rdiff │ │ ├── tbl_opt_key_block_size.rdiff │ │ ├── tbl_opt_max_rows.rdiff │ │ ├── tbl_opt_min_rows.rdiff │ │ ├── tbl_opt_pack_keys.rdiff │ │ ├── tbl_opt_password.rdiff │ │ ├── tbl_opt_row_format.rdiff │ │ ├── tbl_opt_union.rdiff │ │ ├── tbl_standard_opts.rdiff │ │ ├── tbl_temporary.rdiff │ │ ├── truncate_table.rdiff │ │ ├── trx/ │ │ │ ├── cons_snapshot_repeatable_read.rdiff │ │ │ ├── cons_snapshot_serializable.rdiff │ │ │ ├── delete.rdiff │ │ │ ├── insert.rdiff │ │ │ ├── level_read_committed.rdiff │ │ │ ├── level_read_uncommitted.rdiff │ │ │ ├── level_repeatable_read.rdiff │ │ │ ├── level_serializable.rdiff │ │ │ ├── select_for_update.rdiff │ │ │ ├── select_lock_in_share_mode.rdiff │ │ │ ├── update.rdiff │ │ │ ├── xa.rdiff │ │ │ └── xa_recovery.rdiff │ │ ├── type_char_indexes.rdiff │ │ ├── type_float_indexes.rdiff │ │ ├── type_spatial.rdiff │ │ ├── type_spatial_indexes.rdiff │ │ └── vcol.rdiff │ ├── oqgraph/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── cmake/ │ │ │ └── FindJudy.cmake │ │ ├── graphcore-config.h │ │ ├── graphcore-graph.cc │ │ ├── graphcore-graph.h │ │ ├── graphcore-types.h │ │ ├── graphcore.cc │ │ ├── graphcore.h │ │ ├── ha_oqgraph.cc │ │ ├── ha_oqgraph.h │ │ ├── mysql-test/ │ │ │ └── oqgraph/ │ │ │ ├── boundary_conditions.result │ │ │ ├── boundary_conditions.test │ │ │ ├── connections_mdev5748.result │ │ │ ├── connections_mdev5748.test │ │ │ ├── create_attr.result │ │ │ ├── create_attr.test │ │ │ ├── create_attr_legacy.result │ │ │ ├── create_attr_legacy.test │ │ │ ├── general-Aria.result │ │ │ ├── general-Aria.test │ │ │ ├── general-MyISAM.result │ │ │ ├── general-MyISAM.test │ │ │ ├── general-innodb.result │ │ │ ├── general-innodb.test │ │ │ ├── general.inc │ │ │ ├── generate_backing_table_tests_suite.sh │ │ │ ├── invalid_operations.result │ │ │ ├── invalid_operations.test │ │ │ ├── isnull.result │ │ │ ├── isnull.test │ │ │ ├── legacy_upgrade.result │ │ │ ├── legacy_upgrade.test │ │ │ ├── maintainer-general-record.sh │ │ │ ├── regression_1133093.result │ │ │ ├── regression_1133093.test │ │ │ ├── regression_1134355.result │ │ │ ├── regression_1134355.test │ │ │ ├── regression_1195735.result │ │ │ ├── regression_1195735.test │ │ │ ├── regression_1196020.result │ │ │ ├── regression_1196020.test │ │ │ ├── regression_1196027.result │ │ │ ├── regression_1196027.test │ │ │ ├── regression_1196036.result │ │ │ ├── regression_1196036.test │ │ │ ├── regression_1213120.result │ │ │ ├── regression_1213120.test │ │ │ ├── regression_1233113.result │ │ │ ├── regression_1233113.test │ │ │ ├── regression_796647.result │ │ │ ├── regression_796647.test │ │ │ ├── regression_796647b.result │ │ │ ├── regression_796647b.test │ │ │ ├── regression_796647c.result │ │ │ ├── regression_796647c.test │ │ │ ├── regression_drop_after.result │ │ │ ├── regression_drop_after.test │ │ │ ├── regression_mdev5744.opt │ │ │ ├── regression_mdev5744.result │ │ │ ├── regression_mdev5744.test │ │ │ ├── regression_mdev5871.result │ │ │ ├── regression_mdev5871.test │ │ │ ├── regression_mdev5996.inc │ │ │ ├── regression_mdev5996.result │ │ │ ├── regression_mdev5996.test │ │ │ ├── regression_mdev6282.result │ │ │ ├── regression_mdev6282.test │ │ │ ├── regression_mdev6345.result │ │ │ ├── regression_mdev6345.test │ │ │ ├── social.result │ │ │ ├── social.test │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ ├── oqgraph_config.h.in │ │ ├── oqgraph_judy.cc │ │ ├── oqgraph_judy.h │ │ ├── oqgraph_probes.d │ │ ├── oqgraph_shim.cc │ │ ├── oqgraph_shim.h │ │ ├── oqgraph_thunk.cc │ │ └── oqgraph_thunk.h │ ├── perfschema/ │ │ ├── CMakeLists.txt │ │ ├── cursor_by_account.cc │ │ ├── cursor_by_account.h │ │ ├── cursor_by_host.cc │ │ ├── cursor_by_host.h │ │ ├── cursor_by_thread.cc │ │ ├── cursor_by_thread.h │ │ ├── cursor_by_thread_connect_attr.cc │ │ ├── cursor_by_thread_connect_attr.h │ │ ├── cursor_by_user.cc │ │ ├── cursor_by_user.h │ │ ├── ha_perfschema.cc │ │ ├── ha_perfschema.h │ │ ├── my_thread.h │ │ ├── mysqld_thd_manager.cc │ │ ├── mysqld_thd_manager.h │ │ ├── pfs.cc │ │ ├── pfs.h │ │ ├── pfs_account.cc │ │ ├── pfs_account.h │ │ ├── pfs_atomic.h │ │ ├── pfs_autosize.cc │ │ ├── pfs_buffer_container.cc │ │ ├── pfs_buffer_container.h │ │ ├── pfs_builtin_memory.cc │ │ ├── pfs_builtin_memory.h │ │ ├── pfs_column_types.h │ │ ├── pfs_column_values.cc │ │ ├── pfs_column_values.h │ │ ├── pfs_con_slice.cc │ │ ├── pfs_con_slice.h │ │ ├── pfs_config.h.cmake │ │ ├── pfs_defaults.cc │ │ ├── pfs_defaults.h │ │ ├── pfs_digest.cc │ │ ├── pfs_digest.h │ │ ├── pfs_engine_table.cc │ │ ├── pfs_engine_table.h │ │ ├── pfs_events.h │ │ ├── pfs_events_stages.cc │ │ ├── pfs_events_stages.h │ │ ├── pfs_events_statements.cc │ │ ├── pfs_events_statements.h │ │ ├── pfs_events_transactions.cc │ │ ├── pfs_events_transactions.h │ │ ├── pfs_events_waits.cc │ │ ├── pfs_events_waits.h │ │ ├── pfs_global.cc │ │ ├── pfs_global.h │ │ ├── pfs_host.cc │ │ ├── pfs_host.h │ │ ├── pfs_instr.cc │ │ ├── pfs_instr.h │ │ ├── pfs_instr_class.cc │ │ ├── pfs_instr_class.h │ │ ├── pfs_lock.h │ │ ├── pfs_memory.cc │ │ ├── pfs_memory.h │ │ ├── pfs_prepared_stmt.cc │ │ ├── pfs_prepared_stmt.h │ │ ├── pfs_program.cc │ │ ├── pfs_program.h │ │ ├── pfs_server.cc │ │ ├── pfs_server.h │ │ ├── pfs_setup_actor.cc │ │ ├── pfs_setup_actor.h │ │ ├── pfs_setup_object.cc │ │ ├── pfs_setup_object.h │ │ ├── pfs_stat.h │ │ ├── pfs_status.cc │ │ ├── pfs_status.h │ │ ├── pfs_timer.cc │ │ ├── pfs_timer.h │ │ ├── pfs_user.cc │ │ ├── pfs_user.h │ │ ├── pfs_variable.cc │ │ ├── pfs_variable.h │ │ ├── pfs_visitor.cc │ │ ├── pfs_visitor.h │ │ ├── rpl_gtid.h │ │ ├── table_accounts.cc │ │ ├── table_accounts.h │ │ ├── table_all_instr.cc │ │ ├── table_all_instr.h │ │ ├── table_esgs_by_account_by_event_name.cc │ │ ├── table_esgs_by_account_by_event_name.h │ │ ├── table_esgs_by_host_by_event_name.cc │ │ ├── table_esgs_by_host_by_event_name.h │ │ ├── table_esgs_by_thread_by_event_name.cc │ │ ├── table_esgs_by_thread_by_event_name.h │ │ ├── table_esgs_by_user_by_event_name.cc │ │ ├── table_esgs_by_user_by_event_name.h │ │ ├── table_esgs_global_by_event_name.cc │ │ ├── table_esgs_global_by_event_name.h │ │ ├── table_esms_by_account_by_event_name.cc │ │ ├── table_esms_by_account_by_event_name.h │ │ ├── table_esms_by_digest.cc │ │ ├── table_esms_by_digest.h │ │ ├── table_esms_by_host_by_event_name.cc │ │ ├── table_esms_by_host_by_event_name.h │ │ ├── table_esms_by_program.cc │ │ ├── table_esms_by_program.h │ │ ├── table_esms_by_thread_by_event_name.cc │ │ ├── table_esms_by_thread_by_event_name.h │ │ ├── table_esms_by_user_by_event_name.cc │ │ ├── table_esms_by_user_by_event_name.h │ │ ├── table_esms_global_by_event_name.cc │ │ ├── table_esms_global_by_event_name.h │ │ ├── table_ets_by_account_by_event_name.cc │ │ ├── table_ets_by_account_by_event_name.h │ │ ├── table_ets_by_host_by_event_name.cc │ │ ├── table_ets_by_host_by_event_name.h │ │ ├── table_ets_by_thread_by_event_name.cc │ │ ├── table_ets_by_thread_by_event_name.h │ │ ├── table_ets_by_user_by_event_name.cc │ │ ├── table_ets_by_user_by_event_name.h │ │ ├── table_ets_global_by_event_name.cc │ │ ├── table_ets_global_by_event_name.h │ │ ├── table_events_stages.cc │ │ ├── table_events_stages.h │ │ ├── table_events_statements.cc │ │ ├── table_events_statements.h │ │ ├── table_events_transactions.cc │ │ ├── table_events_transactions.h │ │ ├── table_events_waits.cc │ │ ├── table_events_waits.h │ │ ├── table_events_waits_summary.cc │ │ ├── table_events_waits_summary.h │ │ ├── table_ews_by_account_by_event_name.cc │ │ ├── table_ews_by_account_by_event_name.h │ │ ├── table_ews_by_host_by_event_name.cc │ │ ├── table_ews_by_host_by_event_name.h │ │ ├── table_ews_by_thread_by_event_name.cc │ │ ├── table_ews_by_thread_by_event_name.h │ │ ├── table_ews_by_user_by_event_name.cc │ │ ├── table_ews_by_user_by_event_name.h │ │ ├── table_ews_global_by_event_name.cc │ │ ├── table_ews_global_by_event_name.h │ │ ├── table_file_instances.cc │ │ ├── table_file_instances.h │ │ ├── table_file_summary_by_event_name.cc │ │ ├── table_file_summary_by_event_name.h │ │ ├── table_file_summary_by_instance.cc │ │ ├── table_file_summary_by_instance.h │ │ ├── table_global_status.cc │ │ ├── table_global_status.h │ │ ├── table_global_variables.cc │ │ ├── table_global_variables.h │ │ ├── table_helper.cc │ │ ├── table_helper.h │ │ ├── table_host_cache.cc │ │ ├── table_host_cache.h │ │ ├── table_hosts.cc │ │ ├── table_hosts.h │ │ ├── table_md_locks.cc │ │ ├── table_md_locks.h │ │ ├── table_mems_by_account_by_event_name.cc │ │ ├── table_mems_by_account_by_event_name.h │ │ ├── table_mems_by_host_by_event_name.cc │ │ ├── table_mems_by_host_by_event_name.h │ │ ├── table_mems_by_thread_by_event_name.cc │ │ ├── table_mems_by_thread_by_event_name.h │ │ ├── table_mems_by_user_by_event_name.cc │ │ ├── table_mems_by_user_by_event_name.h │ │ ├── table_mems_global_by_event_name.cc │ │ ├── table_mems_global_by_event_name.h │ │ ├── table_os_global_by_type.cc │ │ ├── table_os_global_by_type.h │ │ ├── table_performance_timers.cc │ │ ├── table_performance_timers.h │ │ ├── table_prepared_stmt_instances.cc │ │ ├── table_prepared_stmt_instances.h │ │ ├── table_processlist.cc │ │ ├── table_processlist.h │ │ ├── table_replication_applier_configuration.cc │ │ ├── table_replication_applier_configuration.h │ │ ├── table_replication_applier_status.cc │ │ ├── table_replication_applier_status.h │ │ ├── table_replication_applier_status_by_coordinator.cc │ │ ├── table_replication_applier_status_by_coordinator.h │ │ ├── table_replication_applier_status_by_worker.cc │ │ ├── table_replication_applier_status_by_worker.h │ │ ├── table_replication_connection_configuration.cc │ │ ├── table_replication_connection_configuration.h │ │ ├── table_replication_connection_status.cc │ │ ├── table_replication_connection_status.h │ │ ├── table_replication_group_member_stats.cc │ │ ├── table_replication_group_member_stats.h │ │ ├── table_replication_group_members.cc │ │ ├── table_replication_group_members.h │ │ ├── table_session_account_connect_attrs.cc │ │ ├── table_session_account_connect_attrs.h │ │ ├── table_session_connect.cc │ │ ├── table_session_connect.h │ │ ├── table_session_connect_attrs.cc │ │ ├── table_session_connect_attrs.h │ │ ├── table_session_status.cc │ │ ├── table_session_status.h │ │ ├── table_session_variables.cc │ │ ├── table_session_variables.h │ │ ├── table_setup_actors.cc │ │ ├── table_setup_actors.h │ │ ├── table_setup_consumers.cc │ │ ├── table_setup_consumers.h │ │ ├── table_setup_instruments.cc │ │ ├── table_setup_instruments.h │ │ ├── table_setup_objects.cc │ │ ├── table_setup_objects.h │ │ ├── table_setup_timers.cc │ │ ├── table_setup_timers.h │ │ ├── table_socket_instances.cc │ │ ├── table_socket_instances.h │ │ ├── table_socket_summary_by_event_name.cc │ │ ├── table_socket_summary_by_event_name.h │ │ ├── table_socket_summary_by_instance.cc │ │ ├── table_socket_summary_by_instance.h │ │ ├── table_status_by_account.cc │ │ ├── table_status_by_account.h │ │ ├── table_status_by_host.cc │ │ ├── table_status_by_host.h │ │ ├── table_status_by_thread.cc │ │ ├── table_status_by_thread.h │ │ ├── table_status_by_user.cc │ │ ├── table_status_by_user.h │ │ ├── table_sync_instances.cc │ │ ├── table_sync_instances.h │ │ ├── table_table_handles.cc │ │ ├── table_table_handles.h │ │ ├── table_threads.cc │ │ ├── table_threads.h │ │ ├── table_tiws_by_index_usage.cc │ │ ├── table_tiws_by_index_usage.h │ │ ├── table_tiws_by_table.cc │ │ ├── table_tiws_by_table.h │ │ ├── table_tlws_by_table.cc │ │ ├── table_tlws_by_table.h │ │ ├── table_users.cc │ │ ├── table_users.h │ │ ├── table_uvar_by_thread.cc │ │ ├── table_uvar_by_thread.h │ │ ├── table_variables_by_thread.cc │ │ ├── table_variables_by_thread.h │ │ └── unittest/ │ │ ├── CMakeLists.txt │ │ ├── conf.txt │ │ ├── pfs-t.cc │ │ ├── pfs_account-oom-t.cc │ │ ├── pfs_connect_attr-t.cc │ │ ├── pfs_host-oom-t.cc │ │ ├── pfs_instr-oom-t.cc │ │ ├── pfs_instr-t.cc │ │ ├── pfs_instr_class-oom-t.cc │ │ ├── pfs_instr_class-t.cc │ │ ├── pfs_misc-t.cc │ │ ├── pfs_noop-t.cc │ │ ├── pfs_server_stubs.cc │ │ ├── pfs_timer-t.cc │ │ ├── pfs_user-oom-t.cc │ │ ├── stub_global_status_var.h │ │ ├── stub_pfs_defaults.h │ │ ├── stub_pfs_global.h │ │ └── stub_print_error.h │ ├── rocksdb/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── atomic_stat.h │ │ ├── build_rocksdb.cmake │ │ ├── event_listener.cc │ │ ├── event_listener.h │ │ ├── get_rocksdb_files.sh │ │ ├── ha_rocksdb.cc │ │ ├── ha_rocksdb.h │ │ ├── ha_rocksdb_proto.h │ │ ├── logger.h │ │ ├── myrocks_hotbackup.py │ │ ├── mysql-test/ │ │ │ ├── rocksdb/ │ │ │ │ ├── combinations │ │ │ │ ├── include/ │ │ │ │ │ ├── autoinc_crash_safe.inc │ │ │ │ │ ├── bulk_load.inc │ │ │ │ │ ├── bulk_load_unsorted.inc │ │ │ │ │ ├── bypass_create_table.inc │ │ │ │ │ ├── ddl_high_priority.inc │ │ │ │ │ ├── ddl_high_priority_module.inc │ │ │ │ │ ├── deadlock_stats.inc │ │ │ │ │ ├── dup_key_update.inc │ │ │ │ │ ├── group_min_max.inc │ │ │ │ │ ├── have_direct_io.inc │ │ │ │ │ ├── have_rocksdb.inc │ │ │ │ │ ├── have_rocksdb.opt │ │ │ │ │ ├── have_rocksdb_default.inc │ │ │ │ │ ├── have_rocksdb_replication.inc │ │ │ │ │ ├── have_write_committed.inc │ │ │ │ │ ├── have_write_prepared.inc │ │ │ │ │ ├── index_merge1.inc │ │ │ │ │ ├── index_merge2.inc │ │ │ │ │ ├── index_merge_2sweeps.inc │ │ │ │ │ ├── index_merge_ror.inc │ │ │ │ │ ├── index_merge_ror_cpk.inc │ │ │ │ │ ├── locking_issues_case1_1.inc │ │ │ │ │ ├── locking_issues_case1_2.inc │ │ │ │ │ ├── locking_issues_case2.inc │ │ │ │ │ ├── locking_issues_case3.inc │ │ │ │ │ ├── locking_issues_case4.inc │ │ │ │ │ ├── locking_issues_case5.inc │ │ │ │ │ ├── locking_issues_case6.inc │ │ │ │ │ ├── locking_issues_case7.inc │ │ │ │ │ ├── prefix_index_only_query_check.inc │ │ │ │ │ ├── restart_mysqld_with_invalid_option.inc │ │ │ │ │ ├── restart_mysqld_with_option.inc │ │ │ │ │ ├── rocksdb_icp.inc │ │ │ │ │ ├── simple_deadlock.inc │ │ │ │ │ ├── start_mysqld_with_option.inc │ │ │ │ │ └── use_direct_io_option.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── 1st.result │ │ │ │ │ ├── 2pc_group_commit.result │ │ │ │ │ ├── add_index_inplace.result │ │ │ │ │ ├── add_index_inplace_cardinality.result │ │ │ │ │ ├── add_index_inplace_crash.result │ │ │ │ │ ├── add_index_inplace_sstfilewriter.result │ │ │ │ │ ├── add_unique_index_inplace.result │ │ │ │ │ ├── allow_no_pk_concurrent_insert.result │ │ │ │ │ ├── allow_no_primary_key.result │ │ │ │ │ ├── allow_no_primary_key_with_sk.result │ │ │ │ │ ├── allow_to_start_after_corruption.result │ │ │ │ │ ├── alter_table.result │ │ │ │ │ ├── analyze_table.result │ │ │ │ │ ├── apply_changes_iter.result │ │ │ │ │ ├── autoinc_crash_safe.result │ │ │ │ │ ├── autoinc_crash_safe_partition.result │ │ │ │ │ ├── autoinc_debug.result │ │ │ │ │ ├── autoinc_secondary.result │ │ │ │ │ ├── autoinc_vars.result │ │ │ │ │ ├── autoinc_vars_thread.result │ │ │ │ │ ├── autoinc_vars_thread_2.result │ │ │ │ │ ├── binlog_rotate_crash.result │ │ │ │ │ ├── blind_delete_rc.result │ │ │ │ │ ├── blind_delete_rr.result │ │ │ │ │ ├── bloomfilter.result │ │ │ │ │ ├── bloomfilter2.result │ │ │ │ │ ├── bloomfilter3.result │ │ │ │ │ ├── bloomfilter4.result │ │ │ │ │ ├── bloomfilter5.result │ │ │ │ │ ├── bloomfilter_bulk_load.result │ │ │ │ │ ├── bloomfilter_skip.result │ │ │ │ │ ├── bulk_load.result │ │ │ │ │ ├── bulk_load_drop_table.result │ │ │ │ │ ├── bulk_load_errors.result │ │ │ │ │ ├── bulk_load_rev_cf.result │ │ │ │ │ ├── bulk_load_rev_cf_and_data.result │ │ │ │ │ ├── bulk_load_rev_data.result │ │ │ │ │ ├── bulk_load_sk.result │ │ │ │ │ ├── bulk_load_unsorted.result │ │ │ │ │ ├── bulk_load_unsorted_errors.result │ │ │ │ │ ├── bulk_load_unsorted_rev.result │ │ │ │ │ ├── bypass_select_basic.result │ │ │ │ │ ├── bypass_select_basic_bloom.result │ │ │ │ │ ├── bytes_written.result │ │ │ │ │ ├── cardinality.result │ │ │ │ │ ├── check_flags.result │ │ │ │ │ ├── check_ignore_unknown_options.result │ │ │ │ │ ├── check_table.result │ │ │ │ │ ├── checkpoint.result │ │ │ │ │ ├── checksum_table.result │ │ │ │ │ ├── checksum_table_live.result │ │ │ │ │ ├── col_opt_default.result │ │ │ │ │ ├── col_opt_not_null.result │ │ │ │ │ ├── col_opt_null.result │ │ │ │ │ ├── col_opt_unsigned.result │ │ │ │ │ ├── col_opt_zerofill.result │ │ │ │ │ ├── collation.result │ │ │ │ │ ├── collation_exception.result │ │ │ │ │ ├── com_rpc_tx.result │ │ │ │ │ ├── commit_in_the_middle_ddl.result │ │ │ │ │ ├── compact_deletes.result │ │ │ │ │ ├── compression_zstd.result │ │ │ │ │ ├── concurrent_alter.result │ │ │ │ │ ├── cons_snapshot_read_committed.result │ │ │ │ │ ├── cons_snapshot_repeatable_read.result │ │ │ │ │ ├── cons_snapshot_serializable.result │ │ │ │ │ ├── corrupted_data_reads_debug.result │ │ │ │ │ ├── covered_unpack_info_format.result │ │ │ │ │ ├── create_no_primary_key_table.result │ │ │ │ │ ├── create_table.result │ │ │ │ │ ├── ddl_high_priority.result │ │ │ │ │ ├── deadlock.result │ │ │ │ │ ├── deadlock_stats.result │ │ │ │ │ ├── deadlock_tracking.result │ │ │ │ │ ├── delete.result │ │ │ │ │ ├── delete_ignore.result │ │ │ │ │ ├── delete_quick.result │ │ │ │ │ ├── delete_with_keys.result │ │ │ │ │ ├── describe.result │ │ │ │ │ ├── drop_database.result │ │ │ │ │ ├── drop_index_inplace.result │ │ │ │ │ ├── drop_table.result │ │ │ │ │ ├── drop_table2.result │ │ │ │ │ ├── drop_table3.result │ │ │ │ │ ├── dup_key_update.result │ │ │ │ │ ├── duplicate_table.result │ │ │ │ │ ├── explicit_snapshot.result │ │ │ │ │ ├── fail_system_cf.result │ │ │ │ │ ├── fast_prefix_index_fetch.result │ │ │ │ │ ├── force_shutdown.result │ │ │ │ │ ├── foreign_key.result │ │ │ │ │ ├── gap_lock_issue254.result │ │ │ │ │ ├── gap_lock_raise_error.result │ │ │ │ │ ├── get_error_message.result │ │ │ │ │ ├── group_min_max.result │ │ │ │ │ ├── ha_extra_keyread.result │ │ │ │ │ ├── handler_basic.result │ │ │ │ │ ├── hermitage.result │ │ │ │ │ ├── i_s.result │ │ │ │ │ ├── i_s_ddl.result │ │ │ │ │ ├── i_s_deadlock.result │ │ │ │ │ ├── index.result │ │ │ │ │ ├── index_file_map.result │ │ │ │ │ ├── index_key_block_size.result │ │ │ │ │ ├── index_merge_rocksdb.result │ │ │ │ │ ├── index_merge_rocksdb2.result │ │ │ │ │ ├── index_primary.result │ │ │ │ │ ├── index_type_btree.result │ │ │ │ │ ├── index_type_hash.result │ │ │ │ │ ├── information_schema.result │ │ │ │ │ ├── innodb_i_s_tables_disabled.result │ │ │ │ │ ├── insert.result │ │ │ │ │ ├── insert_optimized_config.result │ │ │ │ │ ├── insert_with_keys.result │ │ │ │ │ ├── issue100.result │ │ │ │ │ ├── issue100_delete.result │ │ │ │ │ ├── issue111.result │ │ │ │ │ ├── issue243_transactionStatus.result │ │ │ │ │ ├── issue255.result │ │ │ │ │ ├── issue290.result │ │ │ │ │ ├── issue314.result │ │ │ │ │ ├── issue495.result │ │ │ │ │ ├── issue884.result │ │ │ │ │ ├── issue896.result │ │ │ │ │ ├── issue900.result │ │ │ │ │ ├── iterator_bounds.result │ │ │ │ │ ├── kill.result │ │ │ │ │ ├── level_read_committed.result │ │ │ │ │ ├── level_read_uncommitted.result │ │ │ │ │ ├── level_repeatable_read.result │ │ │ │ │ ├── level_serializable.result │ │ │ │ │ ├── loaddata.result │ │ │ │ │ ├── lock.result │ │ │ │ │ ├── lock_info.result │ │ │ │ │ ├── lock_rows_not_exist.result │ │ │ │ │ ├── lock_wait_timeout_stats.result │ │ │ │ │ ├── locking_issues.result │ │ │ │ │ ├── locking_issues_case1_1_rc.result │ │ │ │ │ ├── locking_issues_case1_1_rr.result │ │ │ │ │ ├── locking_issues_case1_2_rc.result │ │ │ │ │ ├── locking_issues_case1_2_rr.result │ │ │ │ │ ├── locking_issues_case2_rc.result │ │ │ │ │ ├── locking_issues_case2_rc_lsr.result │ │ │ │ │ ├── locking_issues_case2_rr.result │ │ │ │ │ ├── locking_issues_case2_rr_lsr.result │ │ │ │ │ ├── locking_issues_case3_rc.result │ │ │ │ │ ├── locking_issues_case3_rr.result │ │ │ │ │ ├── locking_issues_case4_rc.result │ │ │ │ │ ├── locking_issues_case4_rr.result │ │ │ │ │ ├── locking_issues_case5_rc.result │ │ │ │ │ ├── locking_issues_case5_rr.result │ │ │ │ │ ├── locking_issues_case6_rc.result │ │ │ │ │ ├── locking_issues_case6_rr.result │ │ │ │ │ ├── locking_issues_case7_rc.result │ │ │ │ │ ├── locking_issues_case7_rc_lsr.result │ │ │ │ │ ├── locking_issues_case7_rr.result │ │ │ │ │ ├── locking_issues_case7_rr_lsr.result │ │ │ │ │ ├── mariadb_ignore_dirs.result │ │ │ │ │ ├── mariadb_misc_binlog.result │ │ │ │ │ ├── mariadb_plugin.result │ │ │ │ │ ├── mariadb_port_fixes.result │ │ │ │ │ ├── mariadb_port_rpl.result │ │ │ │ │ ├── max_open_files.result │ │ │ │ │ ├── misc.result │ │ │ │ │ ├── multi_varchar_sk_lookup.result │ │ │ │ │ ├── mysqlbinlog_blind_replace.result │ │ │ │ │ ├── mysqlbinlog_gtid_skip_empty_trans_rocksdb.result │ │ │ │ │ ├── mysqldump.result │ │ │ │ │ ├── mysqldump2.result │ │ │ │ │ ├── native_procedure.result │ │ │ │ │ ├── negative_stats.result │ │ │ │ │ ├── no_merge_sort.result │ │ │ │ │ ├── optimize_myrocks_replace_into_base.result │ │ │ │ │ ├── optimize_myrocks_replace_into_lock.result │ │ │ │ │ ├── optimize_table.result │ │ │ │ │ ├── optimizer_loose_index_scans.result │ │ │ │ │ ├── partition.result │ │ │ │ │ ├── percona_nonflushing_analyze_debug.result │ │ │ │ │ ├── perf_context.result │ │ │ │ │ ├── persistent_cache.result │ │ │ │ │ ├── prefix_extractor_override.result │ │ │ │ │ ├── read_only_tx.result │ │ │ │ │ ├── records_in_range.result │ │ │ │ │ ├── repair_table.result │ │ │ │ │ ├── replace.result │ │ │ │ │ ├── rocksdb.result │ │ │ │ │ ├── rocksdb_cf_options.result │ │ │ │ │ ├── rocksdb_cf_per_partition.result │ │ │ │ │ ├── rocksdb_cf_reverse.result │ │ │ │ │ ├── rocksdb_checksums.result │ │ │ │ │ ├── rocksdb_concurrent_delete.result │ │ │ │ │ ├── rocksdb_datadir.result │ │ │ │ │ ├── rocksdb_deadlock_detect_rc.result │ │ │ │ │ ├── rocksdb_deadlock_detect_rr.result │ │ │ │ │ ├── rocksdb_deadlock_stress_rc.result │ │ │ │ │ ├── rocksdb_deadlock_stress_rr.result │ │ │ │ │ ├── rocksdb_debug.result │ │ │ │ │ ├── rocksdb_icp.result │ │ │ │ │ ├── rocksdb_icp_rev.result │ │ │ │ │ ├── rocksdb_locks.result │ │ │ │ │ ├── rocksdb_parts.result │ │ │ │ │ ├── rocksdb_qcache.result │ │ │ │ │ ├── rocksdb_range.result │ │ │ │ │ ├── rocksdb_range2.result │ │ │ │ │ ├── rocksdb_read_free_rpl.result │ │ │ │ │ ├── rocksdb_read_free_rpl_stress.result │ │ │ │ │ ├── rocksdb_row_stats.result │ │ │ │ │ ├── rocksdb_table_stats_sampling_pct_change.result │ │ │ │ │ ├── rocksdb_timeout_rollback.result │ │ │ │ │ ├── rollback_savepoint.result │ │ │ │ │ ├── rpl_row_not_found.result │ │ │ │ │ ├── rpl_row_not_found_rc.result │ │ │ │ │ ├── rpl_row_rocksdb.result │ │ │ │ │ ├── rpl_row_stats.result │ │ │ │ │ ├── rpl_row_triggers.result │ │ │ │ │ ├── rpl_savepoint.result │ │ │ │ │ ├── rpl_statement.result │ │ │ │ │ ├── rpl_statement_not_found.result │ │ │ │ │ ├── rqg_examples.result │ │ │ │ │ ├── rqg_runtime.result │ │ │ │ │ ├── rqg_transactions.result │ │ │ │ │ ├── secondary_key_update_lock.result │ │ │ │ │ ├── select.result │ │ │ │ │ ├── select_for_update.result │ │ │ │ │ ├── select_for_update_skip_locked_nowait.result │ │ │ │ │ ├── select_lock_in_share_mode.result │ │ │ │ │ ├── show_engine.result │ │ │ │ │ ├── show_table_status.result │ │ │ │ │ ├── shutdown.result │ │ │ │ │ ├── singledelete.result │ │ │ │ │ ├── skip_core_dump_on_error.result │ │ │ │ │ ├── skip_validate_tmp_table.result │ │ │ │ │ ├── slow_query_log.result │ │ │ │ │ ├── statistics.result │ │ │ │ │ ├── table_stats.result │ │ │ │ │ ├── tbl_opt_ai.result │ │ │ │ │ ├── tbl_opt_avg_row_length.result │ │ │ │ │ ├── tbl_opt_checksum.result │ │ │ │ │ ├── tbl_opt_connection.result │ │ │ │ │ ├── tbl_opt_data_index_dir.result │ │ │ │ │ ├── tbl_opt_delay_key_write.result │ │ │ │ │ ├── tbl_opt_insert_method.result │ │ │ │ │ ├── tbl_opt_key_block_size.result │ │ │ │ │ ├── tbl_opt_max_rows.result │ │ │ │ │ ├── tbl_opt_min_rows.result │ │ │ │ │ ├── tbl_opt_pack_keys.result │ │ │ │ │ ├── tbl_opt_password.result │ │ │ │ │ ├── tbl_opt_row_format.result │ │ │ │ │ ├── tbl_opt_union.result │ │ │ │ │ ├── tbl_standard_opts.result │ │ │ │ │ ├── tmpdir.result │ │ │ │ │ ├── transaction.result │ │ │ │ │ ├── truncate_partition.result │ │ │ │ │ ├── truncate_table.result │ │ │ │ │ ├── truncate_table3.result │ │ │ │ │ ├── trx_info.result │ │ │ │ │ ├── trx_info_rpl.result │ │ │ │ │ ├── ttl_primary.result │ │ │ │ │ ├── ttl_primary_read_filtering.result │ │ │ │ │ ├── ttl_primary_with_partitions.result │ │ │ │ │ ├── ttl_rows_examined.result │ │ │ │ │ ├── ttl_secondary.result │ │ │ │ │ ├── ttl_secondary_read_filtering.result │ │ │ │ │ ├── ttl_secondary_read_filtering_multiple_index.result │ │ │ │ │ ├── ttl_secondary_with_partitions.result │ │ │ │ │ ├── type_binary.result │ │ │ │ │ ├── type_binary_indexes.result │ │ │ │ │ ├── type_bit.result │ │ │ │ │ ├── type_bit_indexes.result │ │ │ │ │ ├── type_blob.result │ │ │ │ │ ├── type_blob_indexes.result │ │ │ │ │ ├── type_bool.result │ │ │ │ │ ├── type_char.result │ │ │ │ │ ├── type_char_indexes.result │ │ │ │ │ ├── type_char_indexes_collation.result │ │ │ │ │ ├── type_date_time.result │ │ │ │ │ ├── type_date_time_indexes.result │ │ │ │ │ ├── type_decimal.result │ │ │ │ │ ├── type_enum.result │ │ │ │ │ ├── type_enum_indexes.result │ │ │ │ │ ├── type_fixed.result │ │ │ │ │ ├── type_fixed_indexes.result │ │ │ │ │ ├── type_float.result │ │ │ │ │ ├── type_float_indexes.result │ │ │ │ │ ├── type_int.result │ │ │ │ │ ├── type_int_indexes.result │ │ │ │ │ ├── type_set.result │ │ │ │ │ ├── type_set_indexes.result │ │ │ │ │ ├── type_text.result │ │ │ │ │ ├── type_text_indexes.result │ │ │ │ │ ├── type_varbinary.result │ │ │ │ │ ├── type_varchar.result │ │ │ │ │ ├── unique_check.result │ │ │ │ │ ├── unique_sec.result │ │ │ │ │ ├── unique_sec_rev_cf.result │ │ │ │ │ ├── unsupported_tx_isolations.result │ │ │ │ │ ├── update.result │ │ │ │ │ ├── update_ignore.result │ │ │ │ │ ├── update_multi.result │ │ │ │ │ ├── update_with_keys.result │ │ │ │ │ ├── use_direct_io_for_flush_and_compaction.result │ │ │ │ │ ├── use_direct_reads.result │ │ │ │ │ ├── use_direct_reads_writes.result │ │ │ │ │ ├── validate_datadic.result │ │ │ │ │ ├── varbinary_format.result │ │ │ │ │ ├── write_sync.result │ │ │ │ │ └── xa.result │ │ │ │ ├── slow_query_log.awk │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── 1st.test │ │ │ │ ├── 2pc_group_commit-master.opt │ │ │ │ ├── 2pc_group_commit.test │ │ │ │ ├── add_index_inplace.test │ │ │ │ ├── add_index_inplace_cardinality-master.opt │ │ │ │ ├── add_index_inplace_cardinality.test │ │ │ │ ├── add_index_inplace_crash.test │ │ │ │ ├── add_index_inplace_sstfilewriter.test │ │ │ │ ├── add_unique_index_inplace.test │ │ │ │ ├── allow_no_pk_concurrent_insert.test │ │ │ │ ├── allow_no_primary_key.test │ │ │ │ ├── allow_no_primary_key_with_sk.test │ │ │ │ ├── allow_to_start_after_corruption-master.opt │ │ │ │ ├── allow_to_start_after_corruption.test │ │ │ │ ├── alter_table.test │ │ │ │ ├── analyze_table.test │ │ │ │ ├── apply_changes_iter.test │ │ │ │ ├── autoinc_crash_safe.cnf │ │ │ │ ├── autoinc_crash_safe.test │ │ │ │ ├── autoinc_crash_safe_partition.cnf │ │ │ │ ├── autoinc_crash_safe_partition.test │ │ │ │ ├── autoinc_debug-master.opt │ │ │ │ ├── autoinc_debug.test │ │ │ │ ├── autoinc_secondary.test │ │ │ │ ├── autoinc_vars.test │ │ │ │ ├── autoinc_vars_thread.test │ │ │ │ ├── autoinc_vars_thread_2.test │ │ │ │ ├── binlog_rotate_crash.test │ │ │ │ ├── blind_delete_rc.cnf │ │ │ │ ├── blind_delete_rc.test │ │ │ │ ├── blind_delete_rr.cnf │ │ │ │ ├── blind_delete_rr.test │ │ │ │ ├── blind_delete_without_tx_api.inc │ │ │ │ ├── bloomfilter-master.opt │ │ │ │ ├── bloomfilter.inc │ │ │ │ ├── bloomfilter.test │ │ │ │ ├── bloomfilter2-master.opt │ │ │ │ ├── bloomfilter2.test │ │ │ │ ├── bloomfilter3-master.opt │ │ │ │ ├── bloomfilter3.test │ │ │ │ ├── bloomfilter4-master.opt │ │ │ │ ├── bloomfilter4.test │ │ │ │ ├── bloomfilter5-master.opt │ │ │ │ ├── bloomfilter5.test │ │ │ │ ├── bloomfilter_bulk_load-master.opt │ │ │ │ ├── bloomfilter_bulk_load.test │ │ │ │ ├── bloomfilter_load_select.inc │ │ │ │ ├── bloomfilter_skip-master.opt │ │ │ │ ├── bloomfilter_skip.test │ │ │ │ ├── bloomfilter_table_def.inc │ │ │ │ ├── bulk_load.test │ │ │ │ ├── bulk_load_drop_table.test │ │ │ │ ├── bulk_load_errors.test │ │ │ │ ├── bulk_load_rev_cf.test │ │ │ │ ├── bulk_load_rev_cf_and_data.test │ │ │ │ ├── bulk_load_rev_data.test │ │ │ │ ├── bulk_load_sk.test │ │ │ │ ├── bulk_load_unsorted.test │ │ │ │ ├── bulk_load_unsorted_errors.test │ │ │ │ ├── bulk_load_unsorted_rev.test │ │ │ │ ├── bypass_select_basic.inc │ │ │ │ ├── bypass_select_basic.test │ │ │ │ ├── bypass_select_basic_bloom-master.opt │ │ │ │ ├── bypass_select_basic_bloom.test │ │ │ │ ├── bytes_written.test │ │ │ │ ├── cardinality-master.opt │ │ │ │ ├── cardinality.test │ │ │ │ ├── check_flags.test │ │ │ │ ├── check_ignore_unknown_options.test │ │ │ │ ├── check_log_for_xa.py │ │ │ │ ├── check_table.inc │ │ │ │ ├── check_table.test │ │ │ │ ├── checkpoint.test │ │ │ │ ├── checksum_table.test │ │ │ │ ├── checksum_table_live.test │ │ │ │ ├── col_not_null.inc │ │ │ │ ├── col_not_null_timestamp.inc │ │ │ │ ├── col_null.inc │ │ │ │ ├── col_opt_default.test │ │ │ │ ├── col_opt_not_null.test │ │ │ │ ├── col_opt_null.test │ │ │ │ ├── col_opt_unsigned.test │ │ │ │ ├── col_opt_zerofill.test │ │ │ │ ├── collation-master.opt │ │ │ │ ├── collation.test │ │ │ │ ├── collation_exception-master.opt │ │ │ │ ├── collation_exception.test │ │ │ │ ├── com_rpc_tx.cnf │ │ │ │ ├── com_rpc_tx.test │ │ │ │ ├── commit_in_the_middle_ddl.test │ │ │ │ ├── compact_deletes-master.opt │ │ │ │ ├── compact_deletes.test │ │ │ │ ├── compact_deletes_test.inc │ │ │ │ ├── compression_zstd.test │ │ │ │ ├── concurrent_alter.test │ │ │ │ ├── cons_snapshot_read_committed.opt │ │ │ │ ├── cons_snapshot_read_committed.test │ │ │ │ ├── cons_snapshot_repeatable_read.opt │ │ │ │ ├── cons_snapshot_repeatable_read.test │ │ │ │ ├── cons_snapshot_serializable.opt │ │ │ │ ├── cons_snapshot_serializable.test │ │ │ │ ├── consistent_snapshot.inc │ │ │ │ ├── corrupted_data_reads_debug.test │ │ │ │ ├── covered_unpack_info_format.test │ │ │ │ ├── create_no_primary_key_table-master.opt │ │ │ │ ├── create_no_primary_key_table.test │ │ │ │ ├── create_table.test │ │ │ │ ├── ddl_high_priority.test │ │ │ │ ├── deadlock.test │ │ │ │ ├── deadlock_stats.test │ │ │ │ ├── deadlock_tracking.test │ │ │ │ ├── delete.test │ │ │ │ ├── delete_ignore.test │ │ │ │ ├── delete_quick.test │ │ │ │ ├── delete_with_keys.test │ │ │ │ ├── describe.test │ │ │ │ ├── disabled.def │ │ │ │ ├── drop_database.test │ │ │ │ ├── drop_index_inplace.test │ │ │ │ ├── drop_stats_procedure.inc │ │ │ │ ├── drop_table-master.opt │ │ │ │ ├── drop_table.test │ │ │ │ ├── drop_table2.test │ │ │ │ ├── drop_table3-master.opt │ │ │ │ ├── drop_table3.inc │ │ │ │ ├── drop_table3.test │ │ │ │ ├── drop_table3_repopulate_table.inc │ │ │ │ ├── drop_table_repopulate_table.inc │ │ │ │ ├── drop_table_sync.inc │ │ │ │ ├── dup_key_update.test │ │ │ │ ├── duplicate_table.test │ │ │ │ ├── explicit_snapshot-master.opt │ │ │ │ ├── explicit_snapshot.test │ │ │ │ ├── fail_system_cf.test │ │ │ │ ├── fast_prefix_index_fetch.test │ │ │ │ ├── force_shutdown.test │ │ │ │ ├── foreign_key.test │ │ │ │ ├── gap_lock_issue254-master.opt │ │ │ │ ├── gap_lock_issue254.test │ │ │ │ ├── gap_lock_raise_error.test │ │ │ │ ├── get_error_message.test │ │ │ │ ├── group_min_max-master.opt │ │ │ │ ├── group_min_max.test │ │ │ │ ├── ha_extra_keyread.test │ │ │ │ ├── handler_basic.test │ │ │ │ ├── hermitage.inc │ │ │ │ ├── hermitage.test │ │ │ │ ├── hermitage_init.inc │ │ │ │ ├── i_s.test │ │ │ │ ├── i_s_ddl.test │ │ │ │ ├── i_s_deadlock.test │ │ │ │ ├── index.inc │ │ │ │ ├── index.test │ │ │ │ ├── index_file_map-master.opt │ │ │ │ ├── index_file_map.test │ │ │ │ ├── index_key_block_size.test │ │ │ │ ├── index_merge_rocksdb-master.opt │ │ │ │ ├── index_merge_rocksdb.test │ │ │ │ ├── index_merge_rocksdb2-master.opt │ │ │ │ ├── index_merge_rocksdb2.test │ │ │ │ ├── index_primary.test │ │ │ │ ├── index_type_btree.test │ │ │ │ ├── index_type_hash.test │ │ │ │ ├── information_schema-master.opt │ │ │ │ ├── information_schema.test │ │ │ │ ├── init_stats_procedure.inc │ │ │ │ ├── innodb_i_s_tables_disabled-master.opt │ │ │ │ ├── innodb_i_s_tables_disabled.test │ │ │ │ ├── insert.test │ │ │ │ ├── insert_optimized_config.test │ │ │ │ ├── insert_with_keys.test │ │ │ │ ├── issue100.test │ │ │ │ ├── issue100_delete-master.opt │ │ │ │ ├── issue100_delete.test │ │ │ │ ├── issue111.test │ │ │ │ ├── issue243_transactionStatus.test │ │ │ │ ├── issue255.test │ │ │ │ ├── issue290.test │ │ │ │ ├── issue314.test │ │ │ │ ├── issue495.test │ │ │ │ ├── issue884.test │ │ │ │ ├── issue896.test │ │ │ │ ├── issue900.test │ │ │ │ ├── iterator_bounds-master.opt │ │ │ │ ├── iterator_bounds.test │ │ │ │ ├── kill.test │ │ │ │ ├── level_read_committed.test │ │ │ │ ├── level_read_uncommitted.opt │ │ │ │ ├── level_read_uncommitted.test │ │ │ │ ├── level_repeatable_read.test │ │ │ │ ├── level_serializable.test │ │ │ │ ├── loaddata.inc │ │ │ │ ├── loaddata.test │ │ │ │ ├── lock.test │ │ │ │ ├── lock_info.test │ │ │ │ ├── lock_rows_not_exist.test │ │ │ │ ├── lock_wait_timeout_stats.test │ │ │ │ ├── locking_issues.test │ │ │ │ ├── locking_issues_case1_1_rc.test │ │ │ │ ├── locking_issues_case1_1_rr.test │ │ │ │ ├── locking_issues_case1_2_rc.test │ │ │ │ ├── locking_issues_case1_2_rr.test │ │ │ │ ├── locking_issues_case2_rc.test │ │ │ │ ├── locking_issues_case2_rc_lsr.test │ │ │ │ ├── locking_issues_case2_rr.test │ │ │ │ ├── locking_issues_case2_rr_lsr.test │ │ │ │ ├── locking_issues_case3_rc.test │ │ │ │ ├── locking_issues_case3_rr.test │ │ │ │ ├── locking_issues_case4_rc.test │ │ │ │ ├── locking_issues_case4_rr.test │ │ │ │ ├── locking_issues_case5_rc.test │ │ │ │ ├── locking_issues_case5_rr.test │ │ │ │ ├── locking_issues_case6_rc.test │ │ │ │ ├── locking_issues_case6_rr.test │ │ │ │ ├── locking_issues_case7_rc.test │ │ │ │ ├── locking_issues_case7_rc_lsr.test │ │ │ │ ├── locking_issues_case7_rr.test │ │ │ │ ├── locking_issues_case7_rr_lsr.test │ │ │ │ ├── mariadb_ignore_dirs.test │ │ │ │ ├── mariadb_misc_binlog-master.opt │ │ │ │ ├── mariadb_misc_binlog.test │ │ │ │ ├── mariadb_plugin-master.opt │ │ │ │ ├── mariadb_plugin.test │ │ │ │ ├── mariadb_port_fixes.test │ │ │ │ ├── mariadb_port_rpl.test │ │ │ │ ├── max_open_files.test │ │ │ │ ├── misc.test │ │ │ │ ├── multi_varchar_sk_lookup.test │ │ │ │ ├── mysqlbinlog_blind_replace.test │ │ │ │ ├── mysqlbinlog_gtid_skip_empty_trans_rocksdb-master.opt │ │ │ │ ├── mysqlbinlog_gtid_skip_empty_trans_rocksdb.test │ │ │ │ ├── mysqldump-master.opt │ │ │ │ ├── mysqldump.test │ │ │ │ ├── mysqldump2-master.opt │ │ │ │ ├── mysqldump2.test │ │ │ │ ├── native_procedure-master.opt │ │ │ │ ├── native_procedure.test │ │ │ │ ├── negative_stats.test │ │ │ │ ├── no_merge_sort.test │ │ │ │ ├── no_primary_key_basic_ops.inc │ │ │ │ ├── optimize_myrocks_replace_into_base.test │ │ │ │ ├── optimize_myrocks_replace_into_lock.test │ │ │ │ ├── optimize_table-master.opt │ │ │ │ ├── optimize_table.inc │ │ │ │ ├── optimize_table.test │ │ │ │ ├── optimizer_loose_index_scans.test │ │ │ │ ├── partition.test │ │ │ │ ├── percona_nonflushing_analyze_debug.test │ │ │ │ ├── perf_context.test │ │ │ │ ├── persistent_cache.test │ │ │ │ ├── prefix_extractor_override-master.opt │ │ │ │ ├── prefix_extractor_override.test │ │ │ │ ├── read_only_tx-master.opt │ │ │ │ ├── read_only_tx.test │ │ │ │ ├── records_in_range-master.opt │ │ │ │ ├── records_in_range.test │ │ │ │ ├── repair_table.inc │ │ │ │ ├── repair_table.test │ │ │ │ ├── replace.test │ │ │ │ ├── rocksdb-master.opt │ │ │ │ ├── rocksdb.test │ │ │ │ ├── rocksdb_cf_options-master.opt │ │ │ │ ├── rocksdb_cf_options-master.sh │ │ │ │ ├── rocksdb_cf_options.test │ │ │ │ ├── rocksdb_cf_per_partition.test │ │ │ │ ├── rocksdb_cf_reverse-master.opt │ │ │ │ ├── rocksdb_cf_reverse.test │ │ │ │ ├── rocksdb_checksums-master.opt │ │ │ │ ├── rocksdb_checksums.test │ │ │ │ ├── rocksdb_concurrent_delete.inc │ │ │ │ ├── rocksdb_concurrent_delete.test │ │ │ │ ├── rocksdb_concurrent_delete_main.inc │ │ │ │ ├── rocksdb_concurrent_delete_range.inc │ │ │ │ ├── rocksdb_concurrent_delete_sk.inc │ │ │ │ ├── rocksdb_concurrent_insert.py │ │ │ │ ├── rocksdb_datadir.test │ │ │ │ ├── rocksdb_deadlock_detect.inc │ │ │ │ ├── rocksdb_deadlock_detect_rc-master.opt │ │ │ │ ├── rocksdb_deadlock_detect_rc.test │ │ │ │ ├── rocksdb_deadlock_detect_rr.test │ │ │ │ ├── rocksdb_deadlock_stress.inc │ │ │ │ ├── rocksdb_deadlock_stress.py │ │ │ │ ├── rocksdb_deadlock_stress_rc-master.opt │ │ │ │ ├── rocksdb_deadlock_stress_rc.test │ │ │ │ ├── rocksdb_deadlock_stress_rr.test │ │ │ │ ├── rocksdb_debug.test │ │ │ │ ├── rocksdb_icp-master.opt │ │ │ │ ├── rocksdb_icp.test │ │ │ │ ├── rocksdb_icp_rev-master.opt │ │ │ │ ├── rocksdb_icp_rev.test │ │ │ │ ├── rocksdb_locks-master.opt │ │ │ │ ├── rocksdb_locks.test │ │ │ │ ├── rocksdb_parts-master.opt │ │ │ │ ├── rocksdb_parts.test │ │ │ │ ├── rocksdb_qcache-master.opt │ │ │ │ ├── rocksdb_qcache.test │ │ │ │ ├── rocksdb_range-master.opt │ │ │ │ ├── rocksdb_range.test │ │ │ │ ├── rocksdb_range2.test │ │ │ │ ├── rocksdb_read_free_rpl.cnf │ │ │ │ ├── rocksdb_read_free_rpl.test │ │ │ │ ├── rocksdb_read_free_rpl_stress.cnf │ │ │ │ ├── rocksdb_read_free_rpl_stress.inc │ │ │ │ ├── rocksdb_read_free_rpl_stress.test │ │ │ │ ├── rocksdb_row_stats.test │ │ │ │ ├── rocksdb_table_stats_sampling_pct_change.test │ │ │ │ ├── rocksdb_timeout_rollback-master.opt │ │ │ │ ├── rocksdb_timeout_rollback.test │ │ │ │ ├── rollback_savepoint.test │ │ │ │ ├── rpl_row_not_found.cnf │ │ │ │ ├── rpl_row_not_found.inc │ │ │ │ ├── rpl_row_not_found.test │ │ │ │ ├── rpl_row_not_found_rc.cnf │ │ │ │ ├── rpl_row_not_found_rc.test │ │ │ │ ├── rpl_row_rocksdb.cnf │ │ │ │ ├── rpl_row_rocksdb.test │ │ │ │ ├── rpl_row_stats-slave.opt │ │ │ │ ├── rpl_row_stats.cnf │ │ │ │ ├── rpl_row_stats.test │ │ │ │ ├── rpl_row_triggers.cnf │ │ │ │ ├── rpl_row_triggers.test │ │ │ │ ├── rpl_savepoint.cnf │ │ │ │ ├── rpl_savepoint.test │ │ │ │ ├── rpl_statement.cnf │ │ │ │ ├── rpl_statement.test │ │ │ │ ├── rpl_statement_not_found.cnf │ │ │ │ ├── rpl_statement_not_found.test │ │ │ │ ├── rqg.inc │ │ │ │ ├── rqg_examples-master.opt │ │ │ │ ├── rqg_examples.test │ │ │ │ ├── rqg_runtime-master.opt │ │ │ │ ├── rqg_runtime.test │ │ │ │ ├── rqg_transactions-master.opt │ │ │ │ ├── rqg_transactions.test │ │ │ │ ├── secondary_key_update_lock.test │ │ │ │ ├── select.test │ │ │ │ ├── select_for_update.test │ │ │ │ ├── select_for_update_skip_locked_nowait.test │ │ │ │ ├── select_lock_in_share_mode.test │ │ │ │ ├── set_checkpoint.inc │ │ │ │ ├── show_engine.test │ │ │ │ ├── show_table_status-master.opt │ │ │ │ ├── show_table_status.test │ │ │ │ ├── shutdown-master.opt │ │ │ │ ├── shutdown.test │ │ │ │ ├── singledelete-master.opt │ │ │ │ ├── singledelete.test │ │ │ │ ├── skip_core_dump_on_error-master.opt │ │ │ │ ├── skip_core_dump_on_error.test │ │ │ │ ├── skip_validate_tmp_table.test │ │ │ │ ├── slow_query_log-master.opt │ │ │ │ ├── slow_query_log.test │ │ │ │ ├── statistics-master.opt │ │ │ │ ├── statistics.test │ │ │ │ ├── table_stats-master.opt │ │ │ │ ├── table_stats.test │ │ │ │ ├── tbl_opt_ai.test │ │ │ │ ├── tbl_opt_avg_row_length.test │ │ │ │ ├── tbl_opt_checksum.test │ │ │ │ ├── tbl_opt_connection.test │ │ │ │ ├── tbl_opt_data_index_dir.test │ │ │ │ ├── tbl_opt_delay_key_write.test │ │ │ │ ├── tbl_opt_insert_method.test │ │ │ │ ├── tbl_opt_key_block_size.test │ │ │ │ ├── tbl_opt_max_rows.test │ │ │ │ ├── tbl_opt_min_rows.test │ │ │ │ ├── tbl_opt_pack_keys.test │ │ │ │ ├── tbl_opt_password.test │ │ │ │ ├── tbl_opt_row_format.test │ │ │ │ ├── tbl_opt_union.test │ │ │ │ ├── tbl_standard_opts.test │ │ │ │ ├── tmpdir.test │ │ │ │ ├── transaction.test │ │ │ │ ├── transaction_isolation.inc │ │ │ │ ├── transaction_select.inc │ │ │ │ ├── truncate_partition.inc │ │ │ │ ├── truncate_partition.test │ │ │ │ ├── truncate_table.test │ │ │ │ ├── truncate_table3-master.opt │ │ │ │ ├── truncate_table3.test │ │ │ │ ├── trx_info.test │ │ │ │ ├── trx_info_rpl.cnf │ │ │ │ ├── trx_info_rpl.test │ │ │ │ ├── ttl_primary-master.opt │ │ │ │ ├── ttl_primary.test │ │ │ │ ├── ttl_primary_read_filtering-master.opt │ │ │ │ ├── ttl_primary_read_filtering.test │ │ │ │ ├── ttl_primary_with_partitions-master.opt │ │ │ │ ├── ttl_primary_with_partitions.test │ │ │ │ ├── ttl_rows_examined.test │ │ │ │ ├── ttl_secondary-master.opt │ │ │ │ ├── ttl_secondary.test │ │ │ │ ├── ttl_secondary_read_filtering-master.opt │ │ │ │ ├── ttl_secondary_read_filtering.test │ │ │ │ ├── ttl_secondary_read_filtering_multiple_index.test │ │ │ │ ├── ttl_secondary_with_partitions-master.opt │ │ │ │ ├── ttl_secondary_with_partitions.test │ │ │ │ ├── type_binary.inc │ │ │ │ ├── type_binary.test │ │ │ │ ├── type_binary_indexes-master.opt │ │ │ │ ├── type_binary_indexes.test │ │ │ │ ├── type_bit.inc │ │ │ │ ├── type_bit.test │ │ │ │ ├── type_bit_indexes-master.opt │ │ │ │ ├── type_bit_indexes.test │ │ │ │ ├── type_blob.inc │ │ │ │ ├── type_blob.test │ │ │ │ ├── type_blob_indexes-master.opt │ │ │ │ ├── type_blob_indexes.test │ │ │ │ ├── type_bool.inc │ │ │ │ ├── type_bool.test │ │ │ │ ├── type_char.inc │ │ │ │ ├── type_char.test │ │ │ │ ├── type_char_indexes-master.opt │ │ │ │ ├── type_char_indexes.test │ │ │ │ ├── type_char_indexes_collation-master.opt │ │ │ │ ├── type_char_indexes_collation.test │ │ │ │ ├── type_date_time.inc │ │ │ │ ├── type_date_time.test │ │ │ │ ├── type_date_time_indexes-master.opt │ │ │ │ ├── type_date_time_indexes.test │ │ │ │ ├── type_decimal-master.opt │ │ │ │ ├── type_decimal.test │ │ │ │ ├── type_enum.inc │ │ │ │ ├── type_enum.test │ │ │ │ ├── type_enum_indexes-master.opt │ │ │ │ ├── type_enum_indexes.test │ │ │ │ ├── type_fixed.inc │ │ │ │ ├── type_fixed.test │ │ │ │ ├── type_fixed_indexes-master.opt │ │ │ │ ├── type_fixed_indexes.test │ │ │ │ ├── type_float.inc │ │ │ │ ├── type_float.test │ │ │ │ ├── type_float_indexes-master.opt │ │ │ │ ├── type_float_indexes.test │ │ │ │ ├── type_int.inc │ │ │ │ ├── type_int.test │ │ │ │ ├── type_int_indexes-master.opt │ │ │ │ ├── type_int_indexes.test │ │ │ │ ├── type_set.inc │ │ │ │ ├── type_set.test │ │ │ │ ├── type_set_indexes-master.opt │ │ │ │ ├── type_set_indexes.test │ │ │ │ ├── type_text.inc │ │ │ │ ├── type_text.test │ │ │ │ ├── type_text_indexes-master.opt │ │ │ │ ├── type_text_indexes.test │ │ │ │ ├── type_varbinary.inc │ │ │ │ ├── type_varbinary.test │ │ │ │ ├── type_varchar-master.opt │ │ │ │ ├── type_varchar.inc │ │ │ │ ├── type_varchar.test │ │ │ │ ├── type_varchar_endspace.inc │ │ │ │ ├── unique_check.test │ │ │ │ ├── unique_sec.inc │ │ │ │ ├── unique_sec.test │ │ │ │ ├── unique_sec_rev_cf.test │ │ │ │ ├── unsupported_tx_isolations.test │ │ │ │ ├── update.test │ │ │ │ ├── update_ignore-master.opt │ │ │ │ ├── update_ignore.test │ │ │ │ ├── update_multi.test │ │ │ │ ├── update_multi_exec.inc │ │ │ │ ├── update_with_keys.test │ │ │ │ ├── use_direct_io_for_flush_and_compaction.test │ │ │ │ ├── use_direct_reads.test │ │ │ │ ├── use_direct_reads_writes.test │ │ │ │ ├── validate_datadic.test │ │ │ │ ├── varbinary_format.test │ │ │ │ ├── write_sync.test │ │ │ │ ├── xa-master.opt │ │ │ │ └── xa.test │ │ │ ├── rocksdb_hotbackup/ │ │ │ │ ├── base.cnf │ │ │ │ ├── include/ │ │ │ │ │ ├── clean_tmpfiles.sh │ │ │ │ │ ├── cleanup.inc │ │ │ │ │ ├── create_slocket_socket.sh │ │ │ │ │ ├── create_table.sh │ │ │ │ │ ├── load_data.sh │ │ │ │ │ ├── load_data_and_run.sh │ │ │ │ │ ├── load_data_slocket.sh │ │ │ │ │ ├── remove_slocket_socket.sh │ │ │ │ │ ├── setup.inc │ │ │ │ │ ├── setup_replication_gtid.sh │ │ │ │ │ ├── setup_replication_gtid_and_sync.inc │ │ │ │ │ ├── setup_slocket.inc │ │ │ │ │ └── stream_run.sh │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── gtid.result │ │ │ │ │ ├── slocket.result │ │ │ │ │ ├── stream.result │ │ │ │ │ ├── wdt.result │ │ │ │ │ ├── xbstream.result │ │ │ │ │ ├── xbstream_direct.result │ │ │ │ │ └── xbstream_socket.result │ │ │ │ └── t/ │ │ │ │ ├── gtid-master.opt │ │ │ │ ├── gtid-slave.opt │ │ │ │ ├── gtid.test │ │ │ │ ├── slocket.test │ │ │ │ ├── stream.test │ │ │ │ ├── wdt.test │ │ │ │ ├── xbstream.inc │ │ │ │ ├── xbstream.test │ │ │ │ ├── xbstream_direct-master.opt │ │ │ │ ├── xbstream_direct.test │ │ │ │ └── xbstream_socket.test │ │ │ ├── rocksdb_rpl/ │ │ │ │ ├── combinations │ │ │ │ ├── include/ │ │ │ │ │ ├── have_rocksdb.inc │ │ │ │ │ ├── have_rocksdb.opt │ │ │ │ │ ├── rpl_gtid_crash_safe.inc │ │ │ │ │ └── rpl_no_unique_check_on_lag.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── consistent_snapshot_mixed_engines.result │ │ │ │ │ ├── mdev12179.result │ │ │ │ │ ├── multiclient_2pc.result │ │ │ │ │ ├── optimize_myrocks_replace_into.result │ │ │ │ │ ├── rocksdb_slave_check_before_image_consistency.result │ │ │ │ │ ├── rpl_binlog_xid_count.result │ │ │ │ │ ├── rpl_crash_safe_wal_corrupt.result │ │ │ │ │ ├── rpl_ddl_high_priority.result │ │ │ │ │ ├── rpl_gtid_crash_safe.result │ │ │ │ │ ├── rpl_gtid_crash_safe_optimized.result │ │ │ │ │ ├── rpl_gtid_crash_safe_wal_corrupt.result │ │ │ │ │ ├── rpl_gtid_rocksdb_sys_header.result │ │ │ │ │ ├── rpl_missing_columns_sk_update.result │ │ │ │ │ ├── rpl_mts_dependency_unique_key_conflicts.result │ │ │ │ │ ├── rpl_no_unique_check_on_lag.result │ │ │ │ │ ├── rpl_no_unique_check_on_lag_mts.result │ │ │ │ │ ├── rpl_rocksdb_2pc_crash_recover.result │ │ │ │ │ ├── rpl_rocksdb_slave_gtid_info_optimized.result │ │ │ │ │ ├── rpl_rocksdb_snapshot.result │ │ │ │ │ ├── rpl_rocksdb_snapshot_without_gtid.result │ │ │ │ │ ├── rpl_rocksdb_stress_crash.result │ │ │ │ │ ├── rpl_skip_trx_api_binlog_format.result │ │ │ │ │ ├── rpl_xa.result │ │ │ │ │ ├── singledelete_idempotent_recovery.result │ │ │ │ │ └── singledelete_idempotent_table.result │ │ │ │ ├── rpl_1slave_base.cnf │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── consistent_snapshot_mixed_engines-master.opt │ │ │ │ ├── consistent_snapshot_mixed_engines.test │ │ │ │ ├── disabled.def │ │ │ │ ├── mdev12179.test │ │ │ │ ├── multiclient_2pc-master.opt │ │ │ │ ├── multiclient_2pc.test │ │ │ │ ├── optimize_myrocks_replace_into.test │ │ │ │ ├── rocksdb_slave_check_before_image_consistency-slave.opt │ │ │ │ ├── rocksdb_slave_check_before_image_consistency.test │ │ │ │ ├── rpl_binlog_xid_count-master.opt │ │ │ │ ├── rpl_binlog_xid_count.test │ │ │ │ ├── rpl_check_for_binlog_info.pl │ │ │ │ ├── rpl_crash_safe_wal_corrupt.cnf │ │ │ │ ├── rpl_crash_safe_wal_corrupt.test │ │ │ │ ├── rpl_ddl_high_priority.test │ │ │ │ ├── rpl_gtid_crash_safe-master.opt │ │ │ │ ├── rpl_gtid_crash_safe-slave.opt │ │ │ │ ├── rpl_gtid_crash_safe.test │ │ │ │ ├── rpl_gtid_crash_safe_optimized-master.opt │ │ │ │ ├── rpl_gtid_crash_safe_optimized-slave.opt │ │ │ │ ├── rpl_gtid_crash_safe_optimized.test │ │ │ │ ├── rpl_gtid_crash_safe_wal_corrupt.cnf │ │ │ │ ├── rpl_gtid_crash_safe_wal_corrupt.inc │ │ │ │ ├── rpl_gtid_crash_safe_wal_corrupt.test │ │ │ │ ├── rpl_gtid_rocksdb_sys_header-master.opt │ │ │ │ ├── rpl_gtid_rocksdb_sys_header-slave.opt │ │ │ │ ├── rpl_gtid_rocksdb_sys_header.test │ │ │ │ ├── rpl_missing_columns_sk_update.cnf │ │ │ │ ├── rpl_missing_columns_sk_update.test │ │ │ │ ├── rpl_mts_dependency_unique_key_conflicts.test │ │ │ │ ├── rpl_no_unique_check_on_lag-slave.opt │ │ │ │ ├── rpl_no_unique_check_on_lag.test │ │ │ │ ├── rpl_no_unique_check_on_lag_mts-slave.opt │ │ │ │ ├── rpl_no_unique_check_on_lag_mts.test │ │ │ │ ├── rpl_rocksdb_2pc_crash_recover-master.opt │ │ │ │ ├── rpl_rocksdb_2pc_crash_recover-slave.opt │ │ │ │ ├── rpl_rocksdb_2pc_crash_recover.test │ │ │ │ ├── rpl_rocksdb_slave_gtid_info_optimized-master.opt │ │ │ │ ├── rpl_rocksdb_slave_gtid_info_optimized-slave.opt │ │ │ │ ├── rpl_rocksdb_slave_gtid_info_optimized.test │ │ │ │ ├── rpl_rocksdb_snapshot-master.opt │ │ │ │ ├── rpl_rocksdb_snapshot-slave.opt │ │ │ │ ├── rpl_rocksdb_snapshot.test │ │ │ │ ├── rpl_rocksdb_snapshot_without_gtid.test │ │ │ │ ├── rpl_rocksdb_stress_crash-master.opt │ │ │ │ ├── rpl_rocksdb_stress_crash-slave.opt │ │ │ │ ├── rpl_rocksdb_stress_crash.test │ │ │ │ ├── rpl_skip_trx_api_binlog_format-master.opt │ │ │ │ ├── rpl_skip_trx_api_binlog_format-slave.opt │ │ │ │ ├── rpl_skip_trx_api_binlog_format.test │ │ │ │ ├── rpl_xa.inc │ │ │ │ ├── rpl_xa.test │ │ │ │ ├── singledelete_idempotent_recovery.cnf │ │ │ │ ├── singledelete_idempotent_recovery.test │ │ │ │ ├── singledelete_idempotent_table.cnf │ │ │ │ └── singledelete_idempotent_table.test │ │ │ ├── rocksdb_stress/ │ │ │ │ ├── combinations │ │ │ │ ├── include/ │ │ │ │ │ ├── have_rocksdb.inc │ │ │ │ │ ├── have_rocksdb.opt │ │ │ │ │ └── rocksdb_stress.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── rocksdb_stress.result │ │ │ │ │ └── rocksdb_stress_crash.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── disabled.def │ │ │ │ ├── load_generator.py │ │ │ │ ├── rocksdb_stress.test │ │ │ │ └── rocksdb_stress_crash.test │ │ │ ├── rocksdb_sys_vars/ │ │ │ │ ├── include/ │ │ │ │ │ ├── correctboolvalue.inc │ │ │ │ │ ├── have_rocksdb.inc │ │ │ │ │ ├── have_rocksdb.opt │ │ │ │ │ └── rocksdb_sys_var.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── all_vars.result │ │ │ │ │ ├── rocksdb_access_hint_on_compaction_start_basic.result │ │ │ │ │ ├── rocksdb_advise_random_on_open_basic.result │ │ │ │ │ ├── rocksdb_allow_concurrent_memtable_write_basic.result │ │ │ │ │ ├── rocksdb_allow_mmap_reads_basic.result │ │ │ │ │ ├── rocksdb_allow_mmap_writes_basic.result │ │ │ │ │ ├── rocksdb_allow_to_start_after_corruption_basic.result │ │ │ │ │ ├── rocksdb_blind_delete_primary_key_basic.result │ │ │ │ │ ├── rocksdb_block_cache_size_basic.result │ │ │ │ │ ├── rocksdb_block_restart_interval_basic.result │ │ │ │ │ ├── rocksdb_block_size_basic.result │ │ │ │ │ ├── rocksdb_block_size_deviation_basic.result │ │ │ │ │ ├── rocksdb_bulk_load_allow_sk_basic.result │ │ │ │ │ ├── rocksdb_bulk_load_allow_unsorted_basic.result │ │ │ │ │ ├── rocksdb_bulk_load_basic.result │ │ │ │ │ ├── rocksdb_bulk_load_size_basic.result │ │ │ │ │ ├── rocksdb_bytes_per_sync_basic.result │ │ │ │ │ ├── rocksdb_cache_dump_basic.result │ │ │ │ │ ├── rocksdb_cache_high_pri_pool_ratio_basic.result │ │ │ │ │ ├── rocksdb_cache_index_and_filter_blocks_basic.result │ │ │ │ │ ├── rocksdb_cache_index_and_filter_with_high_priority_basic.result │ │ │ │ │ ├── rocksdb_checksums_pct_basic.result │ │ │ │ │ ├── rocksdb_collect_sst_properties_basic.result │ │ │ │ │ ├── rocksdb_commit_in_the_middle_basic.result │ │ │ │ │ ├── rocksdb_commit_time_batch_for_recovery_basic.result │ │ │ │ │ ├── rocksdb_compact_cf_basic.result │ │ │ │ │ ├── rocksdb_compaction_readahead_size_basic.result │ │ │ │ │ ├── rocksdb_compaction_sequential_deletes_basic.result │ │ │ │ │ ├── rocksdb_compaction_sequential_deletes_count_sd_basic.result │ │ │ │ │ ├── rocksdb_compaction_sequential_deletes_file_size_basic.result │ │ │ │ │ ├── rocksdb_compaction_sequential_deletes_window_basic.result │ │ │ │ │ ├── rocksdb_create_checkpoint_basic.result │ │ │ │ │ ├── rocksdb_create_if_missing_basic.result │ │ │ │ │ ├── rocksdb_create_missing_column_families_basic.result │ │ │ │ │ ├── rocksdb_datadir_basic.result │ │ │ │ │ ├── rocksdb_db_write_buffer_size_basic.result │ │ │ │ │ ├── rocksdb_deadlock_detect_basic.result │ │ │ │ │ ├── rocksdb_deadlock_detect_depth_basic.result │ │ │ │ │ ├── rocksdb_debug_manual_compaction_delay_basic.result │ │ │ │ │ ├── rocksdb_debug_optimizer_no_zero_cardinality_basic.result │ │ │ │ │ ├── rocksdb_debug_ttl_ignore_pk_basic.result │ │ │ │ │ ├── rocksdb_debug_ttl_read_filter_ts_basic.result │ │ │ │ │ ├── rocksdb_debug_ttl_rec_ts_basic.result │ │ │ │ │ ├── rocksdb_debug_ttl_snapshot_ts_basic.result │ │ │ │ │ ├── rocksdb_default_cf_options_basic.result │ │ │ │ │ ├── rocksdb_delayed_write_rate_basic.result │ │ │ │ │ ├── rocksdb_delete_cf_basic.result │ │ │ │ │ ├── rocksdb_delete_obsolete_files_period_micros_basic.result │ │ │ │ │ ├── rocksdb_enable_2pc_basic.result │ │ │ │ │ ├── rocksdb_enable_bulk_load_api_basic.result │ │ │ │ │ ├── rocksdb_enable_insert_with_update_caching_basic.result │ │ │ │ │ ├── rocksdb_enable_thread_tracking_basic.result │ │ │ │ │ ├── rocksdb_enable_ttl_basic.result │ │ │ │ │ ├── rocksdb_enable_ttl_read_filtering_basic.result │ │ │ │ │ ├── rocksdb_enable_write_thread_adaptive_yield_basic.result │ │ │ │ │ ├── rocksdb_error_if_exists_basic.result │ │ │ │ │ ├── rocksdb_error_on_suboptimal_collation_basic.result │ │ │ │ │ ├── rocksdb_flush_log_at_trx_commit_basic.result │ │ │ │ │ ├── rocksdb_force_compute_memtable_stats_basic.result │ │ │ │ │ ├── rocksdb_force_compute_memtable_stats_cachetime_basic.result │ │ │ │ │ ├── rocksdb_force_flush_memtable_and_lzero_now_basic.result │ │ │ │ │ ├── rocksdb_force_flush_memtable_now_basic.result │ │ │ │ │ ├── rocksdb_force_index_records_in_range_basic.result │ │ │ │ │ ├── rocksdb_git_hash_basic.result │ │ │ │ │ ├── rocksdb_hash_index_allow_collision_basic.result │ │ │ │ │ ├── rocksdb_ignore_datadic_errors_basic.result │ │ │ │ │ ├── rocksdb_ignore_unknown_options_basic.result │ │ │ │ │ ├── rocksdb_index_type_basic.result │ │ │ │ │ ├── rocksdb_info_log_level_basic.result │ │ │ │ │ ├── rocksdb_io_write_timeout_basic.result │ │ │ │ │ ├── rocksdb_is_fd_close_on_exec_basic.result │ │ │ │ │ ├── rocksdb_keep_log_file_num_basic.result │ │ │ │ │ ├── rocksdb_large_prefix_basic.result │ │ │ │ │ ├── rocksdb_lock_scanned_rows_basic.result │ │ │ │ │ ├── rocksdb_lock_wait_timeout_basic.result │ │ │ │ │ ├── rocksdb_log_file_time_to_roll_basic.result │ │ │ │ │ ├── rocksdb_manifest_preallocation_size_basic.result │ │ │ │ │ ├── rocksdb_manual_compaction_threads_basic.result │ │ │ │ │ ├── rocksdb_manual_wal_flush_basic.result │ │ │ │ │ ├── rocksdb_master_skip_tx_api_basic.result │ │ │ │ │ ├── rocksdb_max_background_jobs_basic.result │ │ │ │ │ ├── rocksdb_max_latest_deadlocks_basic.result │ │ │ │ │ ├── rocksdb_max_log_file_size_basic.result │ │ │ │ │ ├── rocksdb_max_manifest_file_size_basic.result │ │ │ │ │ ├── rocksdb_max_manual_compactions_basic.result │ │ │ │ │ ├── rocksdb_max_open_files_basic.result │ │ │ │ │ ├── rocksdb_max_row_locks_basic.result │ │ │ │ │ ├── rocksdb_max_subcompactions_basic.result │ │ │ │ │ ├── rocksdb_max_total_wal_size_basic.result │ │ │ │ │ ├── rocksdb_merge_buf_size_basic.result │ │ │ │ │ ├── rocksdb_merge_combine_read_size_basic.result │ │ │ │ │ ├── rocksdb_merge_tmp_file_removal_delay_ms_basic.result │ │ │ │ │ ├── rocksdb_new_table_reader_for_compaction_inputs_basic.result │ │ │ │ │ ├── rocksdb_no_block_cache_basic.result │ │ │ │ │ ├── rocksdb_override_cf_options_basic.result │ │ │ │ │ ├── rocksdb_paranoid_checks_basic.result │ │ │ │ │ ├── rocksdb_pause_background_work_basic.result │ │ │ │ │ ├── rocksdb_perf_context_level_basic.result │ │ │ │ │ ├── rocksdb_persistent_cache_path_basic.result │ │ │ │ │ ├── rocksdb_persistent_cache_size_mb_basic.result │ │ │ │ │ ├── rocksdb_pin_l0_filter_and_index_blocks_in_cache_basic.result │ │ │ │ │ ├── rocksdb_print_snapshot_conflict_queries_basic.result │ │ │ │ │ ├── rocksdb_rate_limiter_bytes_per_sec_basic.result │ │ │ │ │ ├── rocksdb_read_free_rpl_basic.result │ │ │ │ │ ├── rocksdb_read_free_rpl_tables_basic.result │ │ │ │ │ ├── rocksdb_records_in_range_basic.result │ │ │ │ │ ├── rocksdb_remove_mariabackup_checkpoint_basic.result │ │ │ │ │ ├── rocksdb_reset_stats_basic.result │ │ │ │ │ ├── rocksdb_rollback_on_timeout_basic.result │ │ │ │ │ ├── rocksdb_seconds_between_stat_computes_basic.result │ │ │ │ │ ├── rocksdb_signal_drop_index_thread_basic.result │ │ │ │ │ ├── rocksdb_sim_cache_size_basic.result │ │ │ │ │ ├── rocksdb_skip_bloom_filter_on_read_basic.result │ │ │ │ │ ├── rocksdb_skip_fill_cache_basic.result │ │ │ │ │ ├── rocksdb_skip_unique_check_tables_basic.result │ │ │ │ │ ├── rocksdb_sst_mgr_rate_bytes_per_sec_basic.result │ │ │ │ │ ├── rocksdb_stats_dump_period_sec_basic.result │ │ │ │ │ ├── rocksdb_stats_level_basic.result │ │ │ │ │ ├── rocksdb_stats_recalc_rate_basic.result │ │ │ │ │ ├── rocksdb_store_row_debug_checksums_basic.result │ │ │ │ │ ├── rocksdb_strict_collation_check_basic.result │ │ │ │ │ ├── rocksdb_strict_collation_exceptions_basic.result │ │ │ │ │ ├── rocksdb_supported_compression_types_basic.result │ │ │ │ │ ├── rocksdb_table_cache_numshardbits_basic.result │ │ │ │ │ ├── rocksdb_table_stats_sampling_pct_basic.result │ │ │ │ │ ├── rocksdb_tmpdir_basic.result │ │ │ │ │ ├── rocksdb_trace_sst_api_basic.result │ │ │ │ │ ├── rocksdb_two_write_queues_basic.result │ │ │ │ │ ├── rocksdb_unsafe_for_binlog_basic.result │ │ │ │ │ ├── rocksdb_update_cf_options.result │ │ │ │ │ ├── rocksdb_update_cf_options_basic.result │ │ │ │ │ ├── rocksdb_use_adaptive_mutex_basic.result │ │ │ │ │ ├── rocksdb_use_clock_cache_basic.result │ │ │ │ │ ├── rocksdb_use_direct_io_for_flush_and_compaction_basic.result │ │ │ │ │ ├── rocksdb_use_direct_reads_basic.result │ │ │ │ │ ├── rocksdb_use_fsync_basic.result │ │ │ │ │ ├── rocksdb_validate_tables_basic.result │ │ │ │ │ ├── rocksdb_verify_row_debug_checksums_basic.result │ │ │ │ │ ├── rocksdb_wal_bytes_per_sync_basic.result │ │ │ │ │ ├── rocksdb_wal_dir_basic.result │ │ │ │ │ ├── rocksdb_wal_recovery_mode_basic.result │ │ │ │ │ ├── rocksdb_wal_size_limit_mb_basic.result │ │ │ │ │ ├── rocksdb_wal_ttl_seconds_basic.result │ │ │ │ │ ├── rocksdb_whole_key_filtering_basic.result │ │ │ │ │ ├── rocksdb_write_batch_max_bytes_basic.result │ │ │ │ │ ├── rocksdb_write_disable_wal_basic.result │ │ │ │ │ ├── rocksdb_write_ignore_missing_column_families_basic.result │ │ │ │ │ └── rocksdb_write_policy_basic.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── all_vars.test │ │ │ │ ├── disabled.def │ │ │ │ ├── rocksdb_access_hint_on_compaction_start_basic.test │ │ │ │ ├── rocksdb_advise_random_on_open_basic.test │ │ │ │ ├── rocksdb_allow_concurrent_memtable_write_basic.test │ │ │ │ ├── rocksdb_allow_mmap_reads_basic.test │ │ │ │ ├── rocksdb_allow_mmap_writes_basic.test │ │ │ │ ├── rocksdb_allow_to_start_after_corruption_basic.test │ │ │ │ ├── rocksdb_blind_delete_primary_key_basic.test │ │ │ │ ├── rocksdb_block_cache_size_basic.test │ │ │ │ ├── rocksdb_block_restart_interval_basic.test │ │ │ │ ├── rocksdb_block_size_basic.test │ │ │ │ ├── rocksdb_block_size_deviation_basic.test │ │ │ │ ├── rocksdb_bulk_load_allow_sk_basic.test │ │ │ │ ├── rocksdb_bulk_load_allow_unsorted_basic.test │ │ │ │ ├── rocksdb_bulk_load_basic.test │ │ │ │ ├── rocksdb_bulk_load_size_basic.test │ │ │ │ ├── rocksdb_bytes_per_sync_basic.test │ │ │ │ ├── rocksdb_cache_dump_basic.test │ │ │ │ ├── rocksdb_cache_high_pri_pool_ratio_basic.test │ │ │ │ ├── rocksdb_cache_index_and_filter_blocks_basic.test │ │ │ │ ├── rocksdb_cache_index_and_filter_with_high_priority_basic.test │ │ │ │ ├── rocksdb_checksums_pct_basic.test │ │ │ │ ├── rocksdb_collect_sst_properties_basic.test │ │ │ │ ├── rocksdb_commit_in_the_middle_basic.test │ │ │ │ ├── rocksdb_commit_time_batch_for_recovery_basic.test │ │ │ │ ├── rocksdb_compact_cf_basic.test │ │ │ │ ├── rocksdb_compaction_readahead_size_basic.test │ │ │ │ ├── rocksdb_compaction_sequential_deletes_basic.test │ │ │ │ ├── rocksdb_compaction_sequential_deletes_count_sd_basic.test │ │ │ │ ├── rocksdb_compaction_sequential_deletes_file_size_basic.test │ │ │ │ ├── rocksdb_compaction_sequential_deletes_window_basic.test │ │ │ │ ├── rocksdb_create_checkpoint_basic.test │ │ │ │ ├── rocksdb_create_if_missing_basic.test │ │ │ │ ├── rocksdb_create_missing_column_families_basic.test │ │ │ │ ├── rocksdb_datadir_basic.test │ │ │ │ ├── rocksdb_db_write_buffer_size_basic.test │ │ │ │ ├── rocksdb_deadlock_detect_basic.test │ │ │ │ ├── rocksdb_deadlock_detect_depth_basic.test │ │ │ │ ├── rocksdb_debug_manual_compaction_delay_basic.test │ │ │ │ ├── rocksdb_debug_optimizer_no_zero_cardinality_basic.test │ │ │ │ ├── rocksdb_debug_ttl_ignore_pk_basic.test │ │ │ │ ├── rocksdb_debug_ttl_read_filter_ts_basic.test │ │ │ │ ├── rocksdb_debug_ttl_rec_ts_basic.test │ │ │ │ ├── rocksdb_debug_ttl_snapshot_ts_basic.test │ │ │ │ ├── rocksdb_default_cf_options_basic.test │ │ │ │ ├── rocksdb_delayed_write_rate_basic.test │ │ │ │ ├── rocksdb_delete_cf_basic-master.opt │ │ │ │ ├── rocksdb_delete_cf_basic.test │ │ │ │ ├── rocksdb_delete_obsolete_files_period_micros_basic.test │ │ │ │ ├── rocksdb_enable_2pc_basic.test │ │ │ │ ├── rocksdb_enable_bulk_load_api_basic.test │ │ │ │ ├── rocksdb_enable_insert_with_update_caching_basic.test │ │ │ │ ├── rocksdb_enable_thread_tracking_basic.test │ │ │ │ ├── rocksdb_enable_ttl_basic.test │ │ │ │ ├── rocksdb_enable_ttl_read_filtering_basic.test │ │ │ │ ├── rocksdb_enable_write_thread_adaptive_yield_basic.test │ │ │ │ ├── rocksdb_error_if_exists_basic.test │ │ │ │ ├── rocksdb_error_on_suboptimal_collation_basic.test │ │ │ │ ├── rocksdb_flush_log_at_trx_commit_basic.test │ │ │ │ ├── rocksdb_force_compute_memtable_stats_basic.test │ │ │ │ ├── rocksdb_force_compute_memtable_stats_cachetime_basic.test │ │ │ │ ├── rocksdb_force_flush_memtable_and_lzero_now_basic.test │ │ │ │ ├── rocksdb_force_flush_memtable_now_basic.test │ │ │ │ ├── rocksdb_force_index_records_in_range_basic.test │ │ │ │ ├── rocksdb_git_hash_basic.test │ │ │ │ ├── rocksdb_hash_index_allow_collision_basic.test │ │ │ │ ├── rocksdb_ignore_datadic_errors_basic.test │ │ │ │ ├── rocksdb_ignore_unknown_options_basic.test │ │ │ │ ├── rocksdb_index_type_basic.test │ │ │ │ ├── rocksdb_info_log_level_basic.test │ │ │ │ ├── rocksdb_io_write_timeout_basic.test │ │ │ │ ├── rocksdb_is_fd_close_on_exec_basic.test │ │ │ │ ├── rocksdb_keep_log_file_num_basic.test │ │ │ │ ├── rocksdb_large_prefix_basic.test │ │ │ │ ├── rocksdb_lock_scanned_rows_basic.test │ │ │ │ ├── rocksdb_lock_wait_timeout_basic.test │ │ │ │ ├── rocksdb_log_file_time_to_roll_basic.test │ │ │ │ ├── rocksdb_manifest_preallocation_size_basic.test │ │ │ │ ├── rocksdb_manual_compaction_threads_basic.test │ │ │ │ ├── rocksdb_manual_wal_flush_basic.test │ │ │ │ ├── rocksdb_master_skip_tx_api_basic.test │ │ │ │ ├── rocksdb_max_background_jobs_basic.test │ │ │ │ ├── rocksdb_max_latest_deadlocks_basic.test │ │ │ │ ├── rocksdb_max_log_file_size_basic.test │ │ │ │ ├── rocksdb_max_manifest_file_size_basic.test │ │ │ │ ├── rocksdb_max_manual_compactions_basic.test │ │ │ │ ├── rocksdb_max_open_files_basic.test │ │ │ │ ├── rocksdb_max_row_locks_basic.test │ │ │ │ ├── rocksdb_max_subcompactions_basic.test │ │ │ │ ├── rocksdb_max_total_wal_size_basic.test │ │ │ │ ├── rocksdb_merge_buf_size_basic.test │ │ │ │ ├── rocksdb_merge_combine_read_size_basic.test │ │ │ │ ├── rocksdb_merge_tmp_file_removal_delay_ms_basic.test │ │ │ │ ├── rocksdb_new_table_reader_for_compaction_inputs_basic.test │ │ │ │ ├── rocksdb_no_block_cache_basic.test │ │ │ │ ├── rocksdb_override_cf_options_basic.test │ │ │ │ ├── rocksdb_paranoid_checks_basic.test │ │ │ │ ├── rocksdb_pause_background_work_basic.test │ │ │ │ ├── rocksdb_perf_context_level_basic.test │ │ │ │ ├── rocksdb_persistent_cache_path_basic.test │ │ │ │ ├── rocksdb_persistent_cache_size_mb_basic.test │ │ │ │ ├── rocksdb_pin_l0_filter_and_index_blocks_in_cache_basic.test │ │ │ │ ├── rocksdb_print_snapshot_conflict_queries_basic.test │ │ │ │ ├── rocksdb_rate_limiter_bytes_per_sec_basic.test │ │ │ │ ├── rocksdb_read_free_rpl_basic.test │ │ │ │ ├── rocksdb_read_free_rpl_tables_basic.test │ │ │ │ ├── rocksdb_records_in_range_basic.test │ │ │ │ ├── rocksdb_remove_mariabackup_checkpoint_basic.test │ │ │ │ ├── rocksdb_reset_stats_basic.test │ │ │ │ ├── rocksdb_rollback_on_timeout_basic.test │ │ │ │ ├── rocksdb_seconds_between_stat_computes_basic.test │ │ │ │ ├── rocksdb_signal_drop_index_thread_basic.test │ │ │ │ ├── rocksdb_sim_cache_size_basic.test │ │ │ │ ├── rocksdb_skip_bloom_filter_on_read_basic.test │ │ │ │ ├── rocksdb_skip_fill_cache_basic.test │ │ │ │ ├── rocksdb_skip_unique_check_tables_basic.test │ │ │ │ ├── rocksdb_sst_mgr_rate_bytes_per_sec_basic.test │ │ │ │ ├── rocksdb_stats_dump_period_sec_basic.test │ │ │ │ ├── rocksdb_stats_level_basic.test │ │ │ │ ├── rocksdb_stats_recalc_rate_basic.test │ │ │ │ ├── rocksdb_store_row_debug_checksums_basic.test │ │ │ │ ├── rocksdb_strict_collation_check_basic.test │ │ │ │ ├── rocksdb_strict_collation_exceptions_basic.test │ │ │ │ ├── rocksdb_supported_compression_types_basic.test │ │ │ │ ├── rocksdb_table_cache_numshardbits_basic.test │ │ │ │ ├── rocksdb_table_stats_sampling_pct_basic.test │ │ │ │ ├── rocksdb_tmpdir_basic.test │ │ │ │ ├── rocksdb_trace_sst_api_basic.test │ │ │ │ ├── rocksdb_two_write_queues_basic.test │ │ │ │ ├── rocksdb_unsafe_for_binlog_basic.test │ │ │ │ ├── rocksdb_update_cf_options.test │ │ │ │ ├── rocksdb_update_cf_options_basic.test │ │ │ │ ├── rocksdb_use_adaptive_mutex_basic.test │ │ │ │ ├── rocksdb_use_clock_cache_basic.test │ │ │ │ ├── rocksdb_use_direct_io_for_flush_and_compaction_basic.test │ │ │ │ ├── rocksdb_use_direct_reads_basic.test │ │ │ │ ├── rocksdb_use_fsync_basic.test │ │ │ │ ├── rocksdb_validate_tables_basic.test │ │ │ │ ├── rocksdb_verify_row_debug_checksums_basic.test │ │ │ │ ├── rocksdb_wal_bytes_per_sync_basic.test │ │ │ │ ├── rocksdb_wal_dir_basic.test │ │ │ │ ├── rocksdb_wal_recovery_mode_basic.test │ │ │ │ ├── rocksdb_wal_size_limit_mb_basic.test │ │ │ │ ├── rocksdb_wal_ttl_seconds_basic.test │ │ │ │ ├── rocksdb_whole_key_filtering_basic.test │ │ │ │ ├── rocksdb_write_batch_max_bytes_basic.test │ │ │ │ ├── rocksdb_write_disable_wal_basic.test │ │ │ │ ├── rocksdb_write_ignore_missing_column_families_basic.test │ │ │ │ └── rocksdb_write_policy_basic.test │ │ │ └── storage_engine/ │ │ │ ├── cache_index.rdiff │ │ │ ├── checksum_table_live.rdiff │ │ │ ├── cleanup_engine.inc │ │ │ ├── define_engine.inc │ │ │ ├── disabled.def │ │ │ ├── index.rdiff │ │ │ ├── index_type_btree.rdiff │ │ │ ├── index_type_hash.rdiff │ │ │ ├── mask_engine.inc │ │ │ ├── misc.rdiff │ │ │ ├── parts/ │ │ │ │ ├── checksum_table.rdiff │ │ │ │ ├── create_table.rdiff │ │ │ │ ├── disabled.def │ │ │ │ └── suite.opt │ │ │ ├── show_engine.rdiff │ │ │ ├── show_table_status.rdiff │ │ │ ├── suite.opt │ │ │ ├── tbl_opt_insert_method.rdiff │ │ │ ├── tbl_opt_union.rdiff │ │ │ ├── tbl_temporary.rdiff │ │ │ ├── truncate_table.rdiff │ │ │ ├── trx/ │ │ │ │ ├── delete.rdiff │ │ │ │ ├── disabled.def │ │ │ │ ├── insert.rdiff │ │ │ │ ├── level_read_committed.rdiff │ │ │ │ ├── level_repeatable_read.rdiff │ │ │ │ ├── suite.opt │ │ │ │ └── update.rdiff │ │ │ ├── type_binary_indexes.rdiff │ │ │ ├── type_bit_indexes.rdiff │ │ │ ├── type_enum_indexes.rdiff │ │ │ └── type_set_indexes.rdiff │ │ ├── nosql_access.cc │ │ ├── nosql_access.h │ │ ├── properties_collector.cc │ │ ├── properties_collector.h │ │ ├── rdb_buff.h │ │ ├── rdb_cf_manager.cc │ │ ├── rdb_cf_manager.h │ │ ├── rdb_cf_options.cc │ │ ├── rdb_cf_options.h │ │ ├── rdb_compact_filter.h │ │ ├── rdb_comparator.h │ │ ├── rdb_converter.cc │ │ ├── rdb_converter.h │ │ ├── rdb_datadic.cc │ │ ├── rdb_datadic.h │ │ ├── rdb_global.h │ │ ├── rdb_i_s.cc │ │ ├── rdb_i_s.h │ │ ├── rdb_index_merge.cc │ │ ├── rdb_index_merge.h │ │ ├── rdb_io_watchdog.cc │ │ ├── rdb_io_watchdog.h │ │ ├── rdb_mariadb_port.h │ │ ├── rdb_mariadb_server_port.cc │ │ ├── rdb_mariadb_server_port.h │ │ ├── rdb_mutex_wrapper.cc │ │ ├── rdb_mutex_wrapper.h │ │ ├── rdb_perf_context.cc │ │ ├── rdb_perf_context.h │ │ ├── rdb_psi.cc │ │ ├── rdb_psi.h │ │ ├── rdb_source_revision.h.in │ │ ├── rdb_sst_info.cc │ │ ├── rdb_sst_info.h │ │ ├── rdb_threads.cc │ │ ├── rdb_threads.h │ │ ├── rdb_utils.cc │ │ ├── rdb_utils.h │ │ ├── rocksdb-range-access.txt │ │ ├── tools/ │ │ │ └── mysql_ldb.cc │ │ ├── unittest/ │ │ │ ├── CMakeLists.txt │ │ │ └── test_properties_collector.cc │ │ └── ut0counter.h │ ├── sequence/ │ │ ├── CMakeLists.txt │ │ ├── mysql-test/ │ │ │ └── sequence/ │ │ │ ├── group_by.result │ │ │ ├── group_by.test │ │ │ ├── inc.inc │ │ │ ├── inc.opt │ │ │ ├── simple.result │ │ │ ├── simple.test │ │ │ └── suite.pm │ │ └── sequence.cc │ ├── sphinx/ │ │ ├── CMakeLists.txt │ │ ├── gen_data.php │ │ ├── ha_sphinx.cc │ │ ├── ha_sphinx.h │ │ ├── make-patch.sh │ │ ├── mysql-test/ │ │ │ └── sphinx/ │ │ │ ├── my.cnf │ │ │ ├── sphinx.result │ │ │ ├── sphinx.test │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ ├── testdata.xml │ │ │ ├── union-5539.result │ │ │ └── union-5539.test │ │ └── snippets_udf.cc │ ├── spider/ │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── configure.in │ │ ├── ha_spider.cc │ │ ├── ha_spider.h │ │ ├── hs_client/ │ │ │ ├── allocator.hpp │ │ │ ├── auto_addrinfo.hpp │ │ │ ├── auto_file.hpp │ │ │ ├── auto_ptrcontainer.hpp │ │ │ ├── config.cpp │ │ │ ├── config.hpp │ │ │ ├── escape.cpp │ │ │ ├── escape.hpp │ │ │ ├── fatal.cpp │ │ │ ├── fatal.hpp │ │ │ ├── hs_compat.h │ │ │ ├── hstcpcli.cpp │ │ │ ├── hstcpcli.hpp │ │ │ ├── mutex.hpp │ │ │ ├── socket.cpp │ │ │ ├── socket.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── string_ref.hpp │ │ │ ├── string_util.cpp │ │ │ ├── string_util.hpp │ │ │ ├── thread.hpp │ │ │ └── util.hpp │ │ ├── mysql-test/ │ │ │ └── spider/ │ │ │ ├── bg/ │ │ │ │ ├── include/ │ │ │ │ │ ├── deinit_child2_1.inc │ │ │ │ │ ├── deinit_child2_2.inc │ │ │ │ │ ├── deinit_child2_3.inc │ │ │ │ │ ├── deinit_child3_1.inc │ │ │ │ │ ├── deinit_child3_2.inc │ │ │ │ │ ├── deinit_child3_3.inc │ │ │ │ │ ├── deinit_master_1.inc │ │ │ │ │ ├── deinit_slave1_1.inc │ │ │ │ │ ├── ha_deinit_child2_1.inc │ │ │ │ │ ├── ha_deinit_child2_2.inc │ │ │ │ │ ├── ha_deinit_child2_3.inc │ │ │ │ │ ├── ha_deinit_child3_1.inc │ │ │ │ │ ├── ha_deinit_child3_2.inc │ │ │ │ │ ├── ha_deinit_child3_3.inc │ │ │ │ │ ├── ha_deinit_master_1.inc │ │ │ │ │ ├── ha_init_child2_1.inc │ │ │ │ │ ├── ha_init_child2_2.inc │ │ │ │ │ ├── ha_init_child2_3.inc │ │ │ │ │ ├── ha_init_child3_1.inc │ │ │ │ │ ├── ha_init_child3_2.inc │ │ │ │ │ ├── ha_init_child3_3.inc │ │ │ │ │ ├── ha_init_master_1.inc │ │ │ │ │ ├── hs_deinit_child2_1.inc │ │ │ │ │ ├── hs_deinit_child2_2.inc │ │ │ │ │ ├── hs_deinit_child2_3.inc │ │ │ │ │ ├── hs_deinit_master_1.inc │ │ │ │ │ ├── hs_init_child2_1.inc │ │ │ │ │ ├── hs_init_child2_2.inc │ │ │ │ │ ├── hs_init_child2_3.inc │ │ │ │ │ ├── hs_init_master_1.inc │ │ │ │ │ ├── init_child2_1.inc │ │ │ │ │ ├── init_child2_2.inc │ │ │ │ │ ├── init_child2_3.inc │ │ │ │ │ ├── init_child3_1.inc │ │ │ │ │ ├── init_child3_2.inc │ │ │ │ │ ├── init_child3_3.inc │ │ │ │ │ ├── init_master_1.inc │ │ │ │ │ └── init_slave1_1.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── basic_sql.result │ │ │ │ │ ├── basic_sql_part.result │ │ │ │ │ ├── direct_aggregate.result │ │ │ │ │ ├── direct_aggregate_part.result │ │ │ │ │ ├── direct_update.result │ │ │ │ │ ├── direct_update_part.result │ │ │ │ │ ├── function.result │ │ │ │ │ ├── ha.result │ │ │ │ │ ├── ha_part.result │ │ │ │ │ ├── spider3_fixes.result │ │ │ │ │ ├── spider3_fixes_part.result │ │ │ │ │ ├── spider_fixes.result │ │ │ │ │ ├── spider_fixes_part.result │ │ │ │ │ └── vp_fixes.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── basic_sql.test │ │ │ │ ├── basic_sql_part.test │ │ │ │ ├── connect_child2_1.inc │ │ │ │ ├── connect_child2_2.inc │ │ │ │ ├── connect_child2_3.inc │ │ │ │ ├── connect_child3_1.inc │ │ │ │ ├── connect_child3_2.inc │ │ │ │ ├── connect_child3_3.inc │ │ │ │ ├── connect_master_1.inc │ │ │ │ ├── connect_slave1_1.inc │ │ │ │ ├── direct_aggregate.test │ │ │ │ ├── direct_aggregate_part.test │ │ │ │ ├── direct_update.test │ │ │ │ ├── direct_update_part.test │ │ │ │ ├── function.test │ │ │ │ ├── ha.test │ │ │ │ ├── ha_part.test │ │ │ │ ├── ha_test_deinit.inc │ │ │ │ ├── ha_test_init.inc │ │ │ │ ├── have_engine.inc │ │ │ │ ├── have_func.inc │ │ │ │ ├── have_partition.inc │ │ │ │ ├── have_trigger.inc │ │ │ │ ├── hs_test_deinit.inc │ │ │ │ ├── hs_test_init.inc │ │ │ │ ├── slave_test_deinit.inc │ │ │ │ ├── slave_test_init.inc │ │ │ │ ├── spider3_fixes.test │ │ │ │ ├── spider3_fixes_part.test │ │ │ │ ├── spider_fixes.test │ │ │ │ ├── spider_fixes_part.test │ │ │ │ ├── test_deinit.inc │ │ │ │ ├── test_init.inc │ │ │ │ └── vp_fixes.test │ │ │ ├── bugfix/ │ │ │ │ ├── disabled.def │ │ │ │ ├── include/ │ │ │ │ │ ├── checksum_table_with_quick_mode_3_deinit.inc │ │ │ │ │ ├── checksum_table_with_quick_mode_3_init.inc │ │ │ │ │ ├── cp932_column_deinit.inc │ │ │ │ │ ├── cp932_column_init.inc │ │ │ │ │ ├── delete_with_float_column_default_deinit.inc │ │ │ │ │ ├── delete_with_float_column_default_init.inc │ │ │ │ │ ├── delete_with_float_column_deinit.inc │ │ │ │ │ ├── delete_with_float_column_init.inc │ │ │ │ │ ├── delete_with_float_column_mariadb_deinit.inc │ │ │ │ │ ├── delete_with_float_column_mariadb_init.inc │ │ │ │ │ ├── delete_with_float_column_mysql_deinit.inc │ │ │ │ │ ├── delete_with_float_column_mysql_init.inc │ │ │ │ │ ├── direct_sql_with_comma_pwd_deinit.inc │ │ │ │ │ ├── direct_sql_with_comma_pwd_init.inc │ │ │ │ │ ├── direct_sql_with_tmp_table_deinit.inc │ │ │ │ │ ├── direct_sql_with_tmp_table_init.inc │ │ │ │ │ ├── group_by_order_by_limit_deinit.inc │ │ │ │ │ ├── group_by_order_by_limit_init.inc │ │ │ │ │ ├── insert_select_deinit.inc │ │ │ │ │ ├── insert_select_init.inc │ │ │ │ │ ├── mdev_19866_deinit.inc │ │ │ │ │ ├── mdev_19866_init.inc │ │ │ │ │ ├── mdev_20100_deinit.inc │ │ │ │ │ ├── mdev_20100_init.inc │ │ │ │ │ ├── mdev_20502_deinit.inc │ │ │ │ │ ├── mdev_20502_init.inc │ │ │ │ │ ├── mdev_21884_deinit.inc │ │ │ │ │ ├── mdev_21884_init.inc │ │ │ │ │ ├── mdev_22246_deinit.inc │ │ │ │ │ ├── mdev_22246_init.inc │ │ │ │ │ ├── mdev_22265_deinit.inc │ │ │ │ │ ├── mdev_22265_init.inc │ │ │ │ │ ├── mdev_24020_deinit.inc │ │ │ │ │ ├── mdev_24020_init.inc │ │ │ │ │ ├── mdev_24517_deinit.inc │ │ │ │ │ ├── mdev_24517_init.inc │ │ │ │ │ ├── mdev_24523_deinit.inc │ │ │ │ │ ├── mdev_24523_init.inc │ │ │ │ │ ├── quick_mode_0_deinit.inc │ │ │ │ │ ├── quick_mode_0_init.inc │ │ │ │ │ ├── quick_mode_1_deinit.inc │ │ │ │ │ ├── quick_mode_1_init.inc │ │ │ │ │ ├── quick_mode_2_deinit.inc │ │ │ │ │ ├── quick_mode_2_init.inc │ │ │ │ │ ├── quick_mode_3_deinit.inc │ │ │ │ │ ├── quick_mode_3_init.inc │ │ │ │ │ ├── return_found_rows_insert_deinit.inc │ │ │ │ │ ├── return_found_rows_insert_init.inc │ │ │ │ │ ├── return_found_rows_update_deinit.inc │ │ │ │ │ ├── return_found_rows_update_init.inc │ │ │ │ │ ├── same_server_link_deinit.inc │ │ │ │ │ ├── same_server_link_init.inc │ │ │ │ │ ├── select_by_null_deinit.inc │ │ │ │ │ ├── select_by_null_init.inc │ │ │ │ │ ├── select_with_backquote_deinit.inc │ │ │ │ │ ├── select_with_backquote_init.inc │ │ │ │ │ ├── self_reference_deinit.inc │ │ │ │ │ ├── self_reference_init.inc │ │ │ │ │ ├── slave_transaction_retry_errors_5digit_deinit.inc │ │ │ │ │ ├── slave_transaction_retry_errors_5digit_init.inc │ │ │ │ │ ├── slave_trx_isolation_deinit.inc │ │ │ │ │ ├── slave_trx_isolation_init.inc │ │ │ │ │ ├── spider_table_sts_deinit.inc │ │ │ │ │ ├── spider_table_sts_init.inc │ │ │ │ │ ├── sql_mode_deinit.inc │ │ │ │ │ ├── sql_mode_init.inc │ │ │ │ │ ├── sql_mode_mariadb_deinit.inc │ │ │ │ │ ├── sql_mode_mariadb_init.inc │ │ │ │ │ ├── sql_mode_mysql_deinit.inc │ │ │ │ │ ├── sql_mode_mysql_init.inc │ │ │ │ │ ├── strict_group_by_deinit.inc │ │ │ │ │ ├── strict_group_by_init.inc │ │ │ │ │ ├── wait_timeout_deinit.inc │ │ │ │ │ ├── wait_timeout_init.inc │ │ │ │ │ ├── wrapper_mariadb_deinit.inc │ │ │ │ │ ├── wrapper_mariadb_init.inc │ │ │ │ │ ├── xa_cmd_deinit.inc │ │ │ │ │ └── xa_cmd_init.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── my_1_1.cnf │ │ │ │ ├── my_2_1.cnf │ │ │ │ ├── my_2_2.cnf │ │ │ │ ├── my_2_3.cnf │ │ │ │ ├── my_3_1.cnf │ │ │ │ ├── my_3_2.cnf │ │ │ │ ├── my_3_3.cnf │ │ │ │ ├── my_4_1.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── checksum_table_with_quick_mode_3.result │ │ │ │ │ ├── cp932_column.result │ │ │ │ │ ├── delete_with_float_column_default.result │ │ │ │ │ ├── delete_with_float_column_mariadb.result │ │ │ │ │ ├── delete_with_float_column_mysql.result │ │ │ │ │ ├── direct_sql_with_comma_pwd.result │ │ │ │ │ ├── direct_sql_with_tmp_table.result │ │ │ │ │ ├── group_by_order_by_limit.result │ │ │ │ │ ├── insert_select.result │ │ │ │ │ ├── mdev_19866.result │ │ │ │ │ ├── mdev_20100.result │ │ │ │ │ ├── mdev_20502.result │ │ │ │ │ ├── mdev_21884.result │ │ │ │ │ ├── mdev_22246.result │ │ │ │ │ ├── mdev_22265.result │ │ │ │ │ ├── mdev_24020.result │ │ │ │ │ ├── mdev_24343.result │ │ │ │ │ ├── mdev_24517.result │ │ │ │ │ ├── mdev_24523.result │ │ │ │ │ ├── mdev_24760.result │ │ │ │ │ ├── mdev_25116.result │ │ │ │ │ ├── mdev_25684.result │ │ │ │ │ ├── mdev_26013.result │ │ │ │ │ ├── mdev_26158.result │ │ │ │ │ ├── mdev_26539.result │ │ │ │ │ ├── mdev_26544.result │ │ │ │ │ ├── mdev_26582.result │ │ │ │ │ ├── mdev_27172.result │ │ │ │ │ ├── mdev_27184.result │ │ │ │ │ ├── mdev_27239.result │ │ │ │ │ ├── mdev_27240.result │ │ │ │ │ ├── mdev_28854.result │ │ │ │ │ ├── mdev_29008.result │ │ │ │ │ ├── mdev_29011.result │ │ │ │ │ ├── quick_mode_0.result │ │ │ │ │ ├── quick_mode_1.result │ │ │ │ │ ├── quick_mode_2.result │ │ │ │ │ ├── quick_mode_3.result │ │ │ │ │ ├── return_found_rows_insert.result │ │ │ │ │ ├── return_found_rows_update.result │ │ │ │ │ ├── same_server_link.result │ │ │ │ │ ├── select_by_null.result │ │ │ │ │ ├── select_with_backquote.result │ │ │ │ │ ├── self_reference.result │ │ │ │ │ ├── slave_transaction_retry_errors_5digit.result │ │ │ │ │ ├── slave_trx_isolation.result │ │ │ │ │ ├── spider_table_sts.result │ │ │ │ │ ├── sql_mode_mariadb.result │ │ │ │ │ ├── sql_mode_mysql.result │ │ │ │ │ ├── strict_group_by.result │ │ │ │ │ ├── wait_timeout.result │ │ │ │ │ ├── wrapper_mariadb.result │ │ │ │ │ └── xa_cmd.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── checksum_table_with_quick_mode_3.cnf │ │ │ │ ├── checksum_table_with_quick_mode_3.test │ │ │ │ ├── cp932_column.cnf │ │ │ │ ├── cp932_column.test │ │ │ │ ├── delete_with_float_column.inc │ │ │ │ ├── delete_with_float_column_default.cnf │ │ │ │ ├── delete_with_float_column_default.test │ │ │ │ ├── delete_with_float_column_mariadb.cnf │ │ │ │ ├── delete_with_float_column_mariadb.test │ │ │ │ ├── delete_with_float_column_mysql.cnf │ │ │ │ ├── delete_with_float_column_mysql.test │ │ │ │ ├── direct_sql_with_comma_pwd.cnf │ │ │ │ ├── direct_sql_with_comma_pwd.test │ │ │ │ ├── direct_sql_with_tmp_table.cnf │ │ │ │ ├── direct_sql_with_tmp_table.test │ │ │ │ ├── group_by_order_by_limit.cnf │ │ │ │ ├── group_by_order_by_limit.test │ │ │ │ ├── insert_select.cnf │ │ │ │ ├── insert_select.test │ │ │ │ ├── mdev_19866.cnf │ │ │ │ ├── mdev_19866.test │ │ │ │ ├── mdev_20100.cnf │ │ │ │ ├── mdev_20100.test │ │ │ │ ├── mdev_20502.cnf │ │ │ │ ├── mdev_20502.test │ │ │ │ ├── mdev_21884.cnf │ │ │ │ ├── mdev_21884.test │ │ │ │ ├── mdev_22246.cnf │ │ │ │ ├── mdev_22246.test │ │ │ │ ├── mdev_22265.cnf │ │ │ │ ├── mdev_22265.test │ │ │ │ ├── mdev_24020.cnf │ │ │ │ ├── mdev_24020.test │ │ │ │ ├── mdev_24343.cnf │ │ │ │ ├── mdev_24343.test │ │ │ │ ├── mdev_24517.cnf │ │ │ │ ├── mdev_24517.test │ │ │ │ ├── mdev_24523.cnf │ │ │ │ ├── mdev_24523.test │ │ │ │ ├── mdev_24760.cnf │ │ │ │ ├── mdev_24760.test │ │ │ │ ├── mdev_25116.cnf │ │ │ │ ├── mdev_25116.test │ │ │ │ ├── mdev_25684.cnf │ │ │ │ ├── mdev_25684.test │ │ │ │ ├── mdev_26013.cnf │ │ │ │ ├── mdev_26013.test │ │ │ │ ├── mdev_26158.cnf │ │ │ │ ├── mdev_26158.test │ │ │ │ ├── mdev_26539.cnf │ │ │ │ ├── mdev_26539.test │ │ │ │ ├── mdev_26544.cnf │ │ │ │ ├── mdev_26544.test │ │ │ │ ├── mdev_26582.cnf │ │ │ │ ├── mdev_26582.test │ │ │ │ ├── mdev_27172.cnf │ │ │ │ ├── mdev_27172.test │ │ │ │ ├── mdev_27184.cnf │ │ │ │ ├── mdev_27184.test │ │ │ │ ├── mdev_27239.cnf │ │ │ │ ├── mdev_27239.test │ │ │ │ ├── mdev_27240.cnf │ │ │ │ ├── mdev_27240.test │ │ │ │ ├── mdev_28854.cnf │ │ │ │ ├── mdev_28854.test │ │ │ │ ├── mdev_29008.cnf │ │ │ │ ├── mdev_29008.test │ │ │ │ ├── mdev_29011.cnf │ │ │ │ ├── mdev_29011.test │ │ │ │ ├── quick_mode_0.cnf │ │ │ │ ├── quick_mode_0.test │ │ │ │ ├── quick_mode_1.cnf │ │ │ │ ├── quick_mode_1.test │ │ │ │ ├── quick_mode_2.cnf │ │ │ │ ├── quick_mode_2.test │ │ │ │ ├── quick_mode_3.cnf │ │ │ │ ├── quick_mode_3.test │ │ │ │ ├── return_found_rows_insert.cnf │ │ │ │ ├── return_found_rows_insert.test │ │ │ │ ├── return_found_rows_update.cnf │ │ │ │ ├── return_found_rows_update.test │ │ │ │ ├── same_server_link.cnf │ │ │ │ ├── same_server_link.test │ │ │ │ ├── select_by_null.cnf │ │ │ │ ├── select_by_null.test │ │ │ │ ├── select_with_backquote.cnf │ │ │ │ ├── select_with_backquote.test │ │ │ │ ├── self_reference.cnf │ │ │ │ ├── self_reference.test │ │ │ │ ├── slave_transaction_retry_errors_5digit.cnf │ │ │ │ ├── slave_transaction_retry_errors_5digit.test │ │ │ │ ├── slave_trx_isolation.cnf │ │ │ │ ├── slave_trx_isolation.test │ │ │ │ ├── spider_table_sts.cnf │ │ │ │ ├── spider_table_sts.test │ │ │ │ ├── sql_mode.inc │ │ │ │ ├── sql_mode_mariadb.cnf │ │ │ │ ├── sql_mode_mariadb.test │ │ │ │ ├── sql_mode_mysql.cnf │ │ │ │ ├── sql_mode_mysql.test │ │ │ │ ├── strict_group_by.cnf │ │ │ │ ├── strict_group_by.test │ │ │ │ ├── wait_timeout.cnf │ │ │ │ ├── wait_timeout.test │ │ │ │ ├── wrapper_mariadb.cnf │ │ │ │ ├── wrapper_mariadb.test │ │ │ │ ├── xa_cmd.cnf │ │ │ │ └── xa_cmd.test │ │ │ ├── feature/ │ │ │ │ ├── include/ │ │ │ │ │ ├── checksum_table_parallel_deinit.inc │ │ │ │ │ ├── checksum_table_parallel_extended_deinit.inc │ │ │ │ │ ├── checksum_table_parallel_extended_init.inc │ │ │ │ │ ├── checksum_table_parallel_init.inc │ │ │ │ │ ├── checksum_table_parallel_no_opt_deinit.inc │ │ │ │ │ ├── checksum_table_parallel_no_opt_init.inc │ │ │ │ │ ├── checksum_table_parallel_quick_deinit.inc │ │ │ │ │ ├── checksum_table_parallel_quick_init.inc │ │ │ │ │ ├── slave_transaction_retry_errors_deinit.inc │ │ │ │ │ └── slave_transaction_retry_errors_init.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── my_1_1.cnf │ │ │ │ ├── my_2_1.cnf │ │ │ │ ├── my_2_2.cnf │ │ │ │ ├── my_2_3.cnf │ │ │ │ ├── my_3_1.cnf │ │ │ │ ├── my_3_2.cnf │ │ │ │ ├── my_3_3.cnf │ │ │ │ ├── my_4_1.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── checksum_table_parallel_extended.result │ │ │ │ │ ├── checksum_table_parallel_no_opt.result │ │ │ │ │ ├── checksum_table_parallel_quick.result │ │ │ │ │ └── slave_transaction_retry_errors.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── checksum_table_parallel.inc │ │ │ │ ├── checksum_table_parallel_extended.cnf │ │ │ │ ├── checksum_table_parallel_extended.test │ │ │ │ ├── checksum_table_parallel_no_opt.cnf │ │ │ │ ├── checksum_table_parallel_no_opt.test │ │ │ │ ├── checksum_table_parallel_quick.cnf │ │ │ │ ├── checksum_table_parallel_quick.test │ │ │ │ ├── slave_transaction_retry_errors.cnf │ │ │ │ └── slave_transaction_retry_errors.test │ │ │ ├── handler/ │ │ │ │ ├── include/ │ │ │ │ │ ├── deinit_child2_1.inc │ │ │ │ │ ├── deinit_child2_2.inc │ │ │ │ │ ├── deinit_child2_3.inc │ │ │ │ │ ├── deinit_child3_1.inc │ │ │ │ │ ├── deinit_child3_2.inc │ │ │ │ │ ├── deinit_child3_3.inc │ │ │ │ │ ├── deinit_master_1.inc │ │ │ │ │ ├── deinit_slave1_1.inc │ │ │ │ │ ├── ha_deinit_child2_1.inc │ │ │ │ │ ├── ha_deinit_child2_2.inc │ │ │ │ │ ├── ha_deinit_child2_3.inc │ │ │ │ │ ├── ha_deinit_child3_1.inc │ │ │ │ │ ├── ha_deinit_child3_2.inc │ │ │ │ │ ├── ha_deinit_child3_3.inc │ │ │ │ │ ├── ha_deinit_master_1.inc │ │ │ │ │ ├── ha_init_child2_1.inc │ │ │ │ │ ├── ha_init_child2_2.inc │ │ │ │ │ ├── ha_init_child2_3.inc │ │ │ │ │ ├── ha_init_child3_1.inc │ │ │ │ │ ├── ha_init_child3_2.inc │ │ │ │ │ ├── ha_init_child3_3.inc │ │ │ │ │ ├── ha_init_master_1.inc │ │ │ │ │ ├── hs_deinit_child2_1.inc │ │ │ │ │ ├── hs_deinit_child2_2.inc │ │ │ │ │ ├── hs_deinit_child2_3.inc │ │ │ │ │ ├── hs_deinit_master_1.inc │ │ │ │ │ ├── hs_init_child2_1.inc │ │ │ │ │ ├── hs_init_child2_2.inc │ │ │ │ │ ├── hs_init_child2_3.inc │ │ │ │ │ ├── hs_init_master_1.inc │ │ │ │ │ ├── init_child2_1.inc │ │ │ │ │ ├── init_child2_2.inc │ │ │ │ │ ├── init_child2_3.inc │ │ │ │ │ ├── init_child3_1.inc │ │ │ │ │ ├── init_child3_2.inc │ │ │ │ │ ├── init_child3_3.inc │ │ │ │ │ ├── init_master_1.inc │ │ │ │ │ └── init_slave1_1.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── basic_sql.result │ │ │ │ │ ├── basic_sql_part.result │ │ │ │ │ ├── direct_aggregate.result │ │ │ │ │ ├── direct_aggregate_part.result │ │ │ │ │ ├── direct_update.result │ │ │ │ │ ├── direct_update_part.result │ │ │ │ │ ├── function.result │ │ │ │ │ ├── ha.result │ │ │ │ │ ├── ha_part.result │ │ │ │ │ ├── spider3_fixes.result │ │ │ │ │ ├── spider3_fixes_part.result │ │ │ │ │ ├── spider_fixes.result │ │ │ │ │ ├── spider_fixes_part.result │ │ │ │ │ └── vp_fixes.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── basic_sql.test │ │ │ │ ├── basic_sql_part.test │ │ │ │ ├── connect_child2_1.inc │ │ │ │ ├── connect_child2_2.inc │ │ │ │ ├── connect_child2_3.inc │ │ │ │ ├── connect_child3_1.inc │ │ │ │ ├── connect_child3_2.inc │ │ │ │ ├── connect_child3_3.inc │ │ │ │ ├── connect_master_1.inc │ │ │ │ ├── connect_slave1_1.inc │ │ │ │ ├── direct_aggregate.test │ │ │ │ ├── direct_aggregate_part.test │ │ │ │ ├── direct_update.test │ │ │ │ ├── direct_update_part.test │ │ │ │ ├── function.test │ │ │ │ ├── ha.test │ │ │ │ ├── ha_part.test │ │ │ │ ├── ha_test_deinit.inc │ │ │ │ ├── ha_test_init.inc │ │ │ │ ├── have_engine.inc │ │ │ │ ├── have_func.inc │ │ │ │ ├── have_partition.inc │ │ │ │ ├── have_trigger.inc │ │ │ │ ├── hs_test_deinit.inc │ │ │ │ ├── hs_test_init.inc │ │ │ │ ├── slave_test_deinit.inc │ │ │ │ ├── slave_test_init.inc │ │ │ │ ├── spider3_fixes.test │ │ │ │ ├── spider3_fixes_part.test │ │ │ │ ├── spider_fixes.test │ │ │ │ ├── spider_fixes_part.test │ │ │ │ ├── test_deinit.inc │ │ │ │ ├── test_init.inc │ │ │ │ └── vp_fixes.test │ │ │ ├── include/ │ │ │ │ ├── checksum_table_with_quick_mode_3_deinit.inc │ │ │ │ ├── checksum_table_with_quick_mode_3_init.inc │ │ │ │ ├── deinit_child2_1.inc │ │ │ │ ├── deinit_child2_2.inc │ │ │ │ ├── deinit_child2_3.inc │ │ │ │ ├── deinit_child3_1.inc │ │ │ │ ├── deinit_child3_2.inc │ │ │ │ ├── deinit_child3_3.inc │ │ │ │ ├── deinit_engine.inc │ │ │ │ ├── deinit_handlersocket.inc │ │ │ │ ├── deinit_innodb_plugin.inc │ │ │ │ ├── deinit_master_1.inc │ │ │ │ ├── deinit_slave1_1.inc │ │ │ │ ├── deinit_spider.inc │ │ │ │ ├── direct_join_deinit.inc │ │ │ │ ├── direct_join_init.inc │ │ │ │ ├── direct_join_using_deinit.inc │ │ │ │ ├── direct_join_using_init.inc │ │ │ │ ├── direct_left_join_deinit.inc │ │ │ │ ├── direct_left_join_init.inc │ │ │ │ ├── direct_left_join_nullable_deinit.inc │ │ │ │ ├── direct_left_join_nullable_init.inc │ │ │ │ ├── direct_left_right_join_nullable_deinit.inc │ │ │ │ ├── direct_left_right_join_nullable_init.inc │ │ │ │ ├── direct_left_right_left_join_nullable_deinit.inc │ │ │ │ ├── direct_left_right_left_join_nullable_init.inc │ │ │ │ ├── direct_right_join_deinit.inc │ │ │ │ ├── direct_right_join_init.inc │ │ │ │ ├── direct_right_join_nullable_deinit.inc │ │ │ │ ├── direct_right_join_nullable_init.inc │ │ │ │ ├── direct_right_left_join_nullable_deinit.inc │ │ │ │ ├── direct_right_left_join_nullable_init.inc │ │ │ │ ├── direct_right_left_right_join_nullable_deinit.inc │ │ │ │ ├── direct_right_left_right_join_nullable_init.inc │ │ │ │ ├── ha_deinit_child2_1.inc │ │ │ │ ├── ha_deinit_child2_2.inc │ │ │ │ ├── ha_deinit_child2_3.inc │ │ │ │ ├── ha_deinit_child3_1.inc │ │ │ │ ├── ha_deinit_child3_2.inc │ │ │ │ ├── ha_deinit_child3_3.inc │ │ │ │ ├── ha_deinit_master_1.inc │ │ │ │ ├── ha_init_child2_1.inc │ │ │ │ ├── ha_init_child2_2.inc │ │ │ │ ├── ha_init_child2_3.inc │ │ │ │ ├── ha_init_child3_1.inc │ │ │ │ ├── ha_init_child3_2.inc │ │ │ │ ├── ha_init_child3_3.inc │ │ │ │ ├── ha_init_master_1.inc │ │ │ │ ├── hs_deinit_child2_1.inc │ │ │ │ ├── hs_deinit_child2_2.inc │ │ │ │ ├── hs_deinit_child2_3.inc │ │ │ │ ├── hs_deinit_master_1.inc │ │ │ │ ├── hs_init_child2_1.inc │ │ │ │ ├── hs_init_child2_2.inc │ │ │ │ ├── hs_init_child2_3.inc │ │ │ │ ├── hs_init_master_1.inc │ │ │ │ ├── init_child2_1.inc │ │ │ │ ├── init_child2_2.inc │ │ │ │ ├── init_child2_3.inc │ │ │ │ ├── init_child3_1.inc │ │ │ │ ├── init_child3_2.inc │ │ │ │ ├── init_child3_3.inc │ │ │ │ ├── init_engine.inc │ │ │ │ ├── init_master_1.inc │ │ │ │ ├── init_slave1_1.inc │ │ │ │ ├── init_spider.inc │ │ │ │ ├── partition_cond_push_deinit.inc │ │ │ │ ├── partition_cond_push_init.inc │ │ │ │ ├── partition_fulltext_deinit.inc │ │ │ │ ├── partition_fulltext_init.inc │ │ │ │ ├── partition_join_pushdown_for_single_partition_deinit.inc │ │ │ │ ├── partition_join_pushdown_for_single_partition_init.inc │ │ │ │ ├── partition_mrr_deinit.inc │ │ │ │ ├── partition_mrr_init.inc │ │ │ │ ├── quick_mode_0_deinit.inc │ │ │ │ ├── quick_mode_0_init.inc │ │ │ │ ├── quick_mode_1_deinit.inc │ │ │ │ ├── quick_mode_1_init.inc │ │ │ │ ├── quick_mode_2_deinit.inc │ │ │ │ ├── quick_mode_2_init.inc │ │ │ │ ├── quick_mode_3_deinit.inc │ │ │ │ ├── quick_mode_3_init.inc │ │ │ │ ├── slave_trx_isolation_deinit.inc │ │ │ │ └── slave_trx_isolation_init.inc │ │ │ ├── my.cnf │ │ │ ├── oracle/ │ │ │ │ ├── include/ │ │ │ │ │ ├── deinit_child2_1.inc │ │ │ │ │ ├── deinit_child2_2.inc │ │ │ │ │ ├── deinit_child2_3.inc │ │ │ │ │ ├── deinit_child3_1.inc │ │ │ │ │ ├── deinit_child3_2.inc │ │ │ │ │ ├── deinit_child3_3.inc │ │ │ │ │ ├── deinit_master_1.inc │ │ │ │ │ ├── deinit_slave1_1.inc │ │ │ │ │ ├── ha_deinit_child2_1.inc │ │ │ │ │ ├── ha_deinit_child2_2.inc │ │ │ │ │ ├── ha_deinit_child2_3.inc │ │ │ │ │ ├── ha_deinit_child3_1.inc │ │ │ │ │ ├── ha_deinit_child3_2.inc │ │ │ │ │ ├── ha_deinit_child3_3.inc │ │ │ │ │ ├── ha_deinit_master_1.inc │ │ │ │ │ ├── ha_init_child2_1.inc │ │ │ │ │ ├── ha_init_child2_2.inc │ │ │ │ │ ├── ha_init_child2_3.inc │ │ │ │ │ ├── ha_init_child3_1.inc │ │ │ │ │ ├── ha_init_child3_2.inc │ │ │ │ │ ├── ha_init_child3_3.inc │ │ │ │ │ ├── ha_init_master_1.inc │ │ │ │ │ ├── hs_deinit_child2_1.inc │ │ │ │ │ ├── hs_deinit_child2_2.inc │ │ │ │ │ ├── hs_deinit_child2_3.inc │ │ │ │ │ ├── hs_deinit_master_1.inc │ │ │ │ │ ├── hs_init_child2_1.inc │ │ │ │ │ ├── hs_init_child2_2.inc │ │ │ │ │ ├── hs_init_child2_3.inc │ │ │ │ │ ├── hs_init_master_1.inc │ │ │ │ │ ├── init_child2_1.inc │ │ │ │ │ ├── init_child2_2.inc │ │ │ │ │ ├── init_child2_3.inc │ │ │ │ │ ├── init_child3_1.inc │ │ │ │ │ ├── init_child3_2.inc │ │ │ │ │ ├── init_child3_3.inc │ │ │ │ │ ├── init_master_1.inc │ │ │ │ │ ├── init_slave1_1.inc │ │ │ │ │ └── init_spider.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── basic_sql.result │ │ │ │ │ ├── basic_sql_part.result │ │ │ │ │ ├── direct_aggregate.result │ │ │ │ │ ├── direct_aggregate_part.result │ │ │ │ │ ├── direct_update.result │ │ │ │ │ ├── direct_update_part.result │ │ │ │ │ ├── function.result │ │ │ │ │ ├── ha.result │ │ │ │ │ ├── ha_part.result │ │ │ │ │ ├── spider3_fixes.result │ │ │ │ │ ├── spider3_fixes_part.result │ │ │ │ │ ├── spider_fixes.result │ │ │ │ │ ├── spider_fixes_part.result │ │ │ │ │ └── vp_fixes.result │ │ │ │ └── t/ │ │ │ │ ├── basic_sql.test │ │ │ │ ├── basic_sql_part.test │ │ │ │ ├── connect_child2_1.inc │ │ │ │ ├── connect_child2_2.inc │ │ │ │ ├── connect_child2_3.inc │ │ │ │ ├── connect_child3_1.inc │ │ │ │ ├── connect_child3_2.inc │ │ │ │ ├── connect_child3_3.inc │ │ │ │ ├── connect_master_1.inc │ │ │ │ ├── connect_slave1_1.inc │ │ │ │ ├── direct_aggregate.test │ │ │ │ ├── direct_aggregate_part.test │ │ │ │ ├── direct_update.test │ │ │ │ ├── direct_update_part.test │ │ │ │ ├── function.test │ │ │ │ ├── ha.test │ │ │ │ ├── ha_part.test │ │ │ │ ├── ha_test_deinit.inc │ │ │ │ ├── ha_test_init.inc │ │ │ │ ├── have_engine.inc │ │ │ │ ├── have_func.inc │ │ │ │ ├── have_partition.inc │ │ │ │ ├── have_trigger.inc │ │ │ │ ├── hs_test_deinit.inc │ │ │ │ ├── hs_test_init.inc │ │ │ │ ├── slave_test_deinit.inc │ │ │ │ ├── slave_test_init.inc │ │ │ │ ├── spider3_fixes.test │ │ │ │ ├── spider3_fixes_part.test │ │ │ │ ├── spider_fixes.test │ │ │ │ ├── spider_fixes_part.test │ │ │ │ ├── test_deinit.inc │ │ │ │ ├── test_init.inc │ │ │ │ └── vp_fixes.test │ │ │ ├── oracle2/ │ │ │ │ ├── include/ │ │ │ │ │ ├── deinit_child2_1.inc │ │ │ │ │ ├── deinit_child2_2.inc │ │ │ │ │ ├── deinit_child2_3.inc │ │ │ │ │ ├── deinit_child3_1.inc │ │ │ │ │ ├── deinit_child3_2.inc │ │ │ │ │ ├── deinit_child3_3.inc │ │ │ │ │ ├── deinit_master_1.inc │ │ │ │ │ ├── deinit_slave1_1.inc │ │ │ │ │ ├── ha_deinit_child2_1.inc │ │ │ │ │ ├── ha_deinit_child2_2.inc │ │ │ │ │ ├── ha_deinit_child2_3.inc │ │ │ │ │ ├── ha_deinit_child3_1.inc │ │ │ │ │ ├── ha_deinit_child3_2.inc │ │ │ │ │ ├── ha_deinit_child3_3.inc │ │ │ │ │ ├── ha_deinit_master_1.inc │ │ │ │ │ ├── ha_init_child2_1.inc │ │ │ │ │ ├── ha_init_child2_2.inc │ │ │ │ │ ├── ha_init_child2_3.inc │ │ │ │ │ ├── ha_init_child3_1.inc │ │ │ │ │ ├── ha_init_child3_2.inc │ │ │ │ │ ├── ha_init_child3_3.inc │ │ │ │ │ ├── ha_init_master_1.inc │ │ │ │ │ ├── hs_deinit_child2_1.inc │ │ │ │ │ ├── hs_deinit_child2_2.inc │ │ │ │ │ ├── hs_deinit_child2_3.inc │ │ │ │ │ ├── hs_deinit_master_1.inc │ │ │ │ │ ├── hs_init_child2_1.inc │ │ │ │ │ ├── hs_init_child2_2.inc │ │ │ │ │ ├── hs_init_child2_3.inc │ │ │ │ │ ├── hs_init_master_1.inc │ │ │ │ │ ├── init_child2_1.inc │ │ │ │ │ ├── init_child2_2.inc │ │ │ │ │ ├── init_child2_3.inc │ │ │ │ │ ├── init_child3_1.inc │ │ │ │ │ ├── init_child3_2.inc │ │ │ │ │ ├── init_child3_3.inc │ │ │ │ │ ├── init_master_1.inc │ │ │ │ │ ├── init_slave1_1.inc │ │ │ │ │ └── init_spider.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── basic_sql.result │ │ │ │ │ ├── basic_sql_part.result │ │ │ │ │ ├── direct_aggregate.result │ │ │ │ │ ├── direct_aggregate_part.result │ │ │ │ │ ├── direct_update.result │ │ │ │ │ ├── direct_update_part.result │ │ │ │ │ ├── function.result │ │ │ │ │ ├── ha.result │ │ │ │ │ ├── ha_part.result │ │ │ │ │ ├── spider3_fixes.result │ │ │ │ │ ├── spider3_fixes_part.result │ │ │ │ │ ├── spider_fixes.result │ │ │ │ │ ├── spider_fixes_part.result │ │ │ │ │ └── vp_fixes.result │ │ │ │ └── t/ │ │ │ │ ├── basic_sql.test │ │ │ │ ├── basic_sql_part.test │ │ │ │ ├── connect_child2_1.inc │ │ │ │ ├── connect_child2_2.inc │ │ │ │ ├── connect_child2_3.inc │ │ │ │ ├── connect_child3_1.inc │ │ │ │ ├── connect_child3_2.inc │ │ │ │ ├── connect_child3_3.inc │ │ │ │ ├── connect_master_1.inc │ │ │ │ ├── connect_slave1_1.inc │ │ │ │ ├── direct_aggregate.test │ │ │ │ ├── direct_aggregate_part.test │ │ │ │ ├── direct_update.test │ │ │ │ ├── direct_update_part.test │ │ │ │ ├── function.test │ │ │ │ ├── ha.test │ │ │ │ ├── ha_part.test │ │ │ │ ├── ha_test_deinit.inc │ │ │ │ ├── ha_test_init.inc │ │ │ │ ├── have_engine.inc │ │ │ │ ├── have_func.inc │ │ │ │ ├── have_partition.inc │ │ │ │ ├── have_trigger.inc │ │ │ │ ├── hs_test_deinit.inc │ │ │ │ ├── hs_test_init.inc │ │ │ │ ├── slave_test_deinit.inc │ │ │ │ ├── slave_test_init.inc │ │ │ │ ├── spider3_fixes.test │ │ │ │ ├── spider3_fixes_part.test │ │ │ │ ├── spider_fixes.test │ │ │ │ ├── spider_fixes_part.test │ │ │ │ ├── test_deinit.inc │ │ │ │ ├── test_init.inc │ │ │ │ └── vp_fixes.test │ │ │ ├── r/ │ │ │ │ ├── auto_increment.result │ │ │ │ ├── basic_sql.result │ │ │ │ ├── basic_sql_part.result │ │ │ │ ├── checksum_table_with_quick_mode_3.result │ │ │ │ ├── direct_aggregate.result │ │ │ │ ├── direct_aggregate_part.result │ │ │ │ ├── direct_join.result │ │ │ │ ├── direct_join_using.result │ │ │ │ ├── direct_left_join.result │ │ │ │ ├── direct_left_join_nullable.result │ │ │ │ ├── direct_left_right_join_nullable.result │ │ │ │ ├── direct_left_right_left_join_nullable.result │ │ │ │ ├── direct_right_join.result │ │ │ │ ├── direct_right_join_nullable.result │ │ │ │ ├── direct_right_left_join_nullable.result │ │ │ │ ├── direct_right_left_right_join_nullable.result │ │ │ │ ├── direct_update.result │ │ │ │ ├── direct_update_part.result │ │ │ │ ├── function.result │ │ │ │ ├── ha.result │ │ │ │ ├── ha_part.result │ │ │ │ ├── partition_cond_push.result │ │ │ │ ├── partition_fulltext.result │ │ │ │ ├── partition_join_pushdown_for_single_partition.result │ │ │ │ ├── partition_mrr.result │ │ │ │ ├── pushdown_not_like.result │ │ │ │ ├── quick_mode_0.result │ │ │ │ ├── quick_mode_1.result │ │ │ │ ├── quick_mode_2.result │ │ │ │ ├── quick_mode_3.result │ │ │ │ ├── show_system_tables.result │ │ │ │ ├── slave_trx_isolation.result │ │ │ │ ├── spider3_fixes.result │ │ │ │ ├── spider3_fixes_part.result │ │ │ │ ├── spider_fixes.result │ │ │ │ ├── spider_fixes_part.result │ │ │ │ ├── spider_wrapper_protocols.result │ │ │ │ ├── timestamp.result │ │ │ │ ├── udf_pushdown.result │ │ │ │ └── vp_fixes.result │ │ │ ├── regression/ │ │ │ │ ├── e1121/ │ │ │ │ │ ├── include/ │ │ │ │ │ │ ├── direct_join_by_pkey_key_deinit.inc │ │ │ │ │ │ ├── direct_join_by_pkey_key_init.inc │ │ │ │ │ │ ├── direct_join_by_pkey_pkey_deinit.inc │ │ │ │ │ │ ├── direct_join_by_pkey_pkey_init.inc │ │ │ │ │ │ ├── load_data_ddi0_deinit.inc │ │ │ │ │ │ ├── load_data_ddi0_init.inc │ │ │ │ │ │ ├── load_data_ddi1_deinit.inc │ │ │ │ │ │ ├── load_data_ddi1_init.inc │ │ │ │ │ │ ├── load_data_deinit.inc │ │ │ │ │ │ └── load_data_init.inc │ │ │ │ │ ├── my.cnf │ │ │ │ │ ├── my_1_1.cnf │ │ │ │ │ ├── my_2_1.cnf │ │ │ │ │ ├── r/ │ │ │ │ │ │ ├── direct_join_by_pkey_key.result │ │ │ │ │ │ ├── direct_join_by_pkey_pkey.result │ │ │ │ │ │ ├── load_data_ddi0.result │ │ │ │ │ │ ├── load_data_ddi1.result │ │ │ │ │ │ ├── load_data_ignore_ddi0.result │ │ │ │ │ │ ├── load_data_ignore_ddi1.result │ │ │ │ │ │ ├── load_data_local_ddi0.result │ │ │ │ │ │ ├── load_data_local_ddi1.result │ │ │ │ │ │ ├── load_data_local_ignore_ddi0.result │ │ │ │ │ │ ├── load_data_local_ignore_ddi1.result │ │ │ │ │ │ ├── load_data_local_replace_ddi0.result │ │ │ │ │ │ ├── load_data_local_replace_ddi1.result │ │ │ │ │ │ ├── load_data_replace_ddi0.result │ │ │ │ │ │ └── load_data_replace_ddi1.result │ │ │ │ │ ├── suite.opt │ │ │ │ │ ├── suite.pm │ │ │ │ │ └── t/ │ │ │ │ │ ├── direct_join_by_pkey_key.test │ │ │ │ │ ├── direct_join_by_pkey_pkey.test │ │ │ │ │ ├── load_data.inc │ │ │ │ │ ├── load_data_ddi0.test │ │ │ │ │ ├── load_data_ddi1.test │ │ │ │ │ ├── load_data_ignore_ddi0.test │ │ │ │ │ ├── load_data_ignore_ddi1.test │ │ │ │ │ ├── load_data_local_ddi0.test │ │ │ │ │ ├── load_data_local_ddi1.test │ │ │ │ │ ├── load_data_local_ignore_ddi0.test │ │ │ │ │ ├── load_data_local_ignore_ddi1.test │ │ │ │ │ ├── load_data_local_replace_ddi0.test │ │ │ │ │ ├── load_data_local_replace_ddi1.test │ │ │ │ │ ├── load_data_replace_ddi0.test │ │ │ │ │ └── load_data_replace_ddi1.test │ │ │ │ └── e112122/ │ │ │ │ ├── include/ │ │ │ │ │ ├── group_by_order_by_limit_ok_deinit.inc │ │ │ │ │ ├── group_by_order_by_limit_ok_init.inc │ │ │ │ │ ├── load_data_part_ddi0_deinit.inc │ │ │ │ │ ├── load_data_part_ddi0_init.inc │ │ │ │ │ ├── load_data_part_ddi1_deinit.inc │ │ │ │ │ ├── load_data_part_ddi1_init.inc │ │ │ │ │ ├── load_data_part_deinit.inc │ │ │ │ │ └── load_data_part_init.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── my_1_1.cnf │ │ │ │ ├── my_2_1.cnf │ │ │ │ ├── my_2_2.cnf │ │ │ │ ├── r/ │ │ │ │ │ ├── group_by_order_by_limit_ok.result │ │ │ │ │ ├── load_data_part_ddi0.result │ │ │ │ │ ├── load_data_part_ddi1.result │ │ │ │ │ ├── load_data_part_ignore_ddi0.result │ │ │ │ │ ├── load_data_part_ignore_ddi1.result │ │ │ │ │ ├── load_data_part_local_ddi0.result │ │ │ │ │ ├── load_data_part_local_ddi1.result │ │ │ │ │ ├── load_data_part_local_ignore_ddi0.result │ │ │ │ │ ├── load_data_part_local_ignore_ddi1.result │ │ │ │ │ ├── load_data_part_local_replace_ddi0.result │ │ │ │ │ ├── load_data_part_local_replace_ddi1.result │ │ │ │ │ ├── load_data_part_replace_ddi0.result │ │ │ │ │ └── load_data_part_replace_ddi1.result │ │ │ │ ├── suite.opt │ │ │ │ ├── suite.pm │ │ │ │ └── t/ │ │ │ │ ├── group_by_order_by_limit_ok.test │ │ │ │ ├── load_data_part.inc │ │ │ │ ├── load_data_part_ddi0.test │ │ │ │ ├── load_data_part_ddi1.test │ │ │ │ ├── load_data_part_ignore_ddi0.test │ │ │ │ ├── load_data_part_ignore_ddi1.test │ │ │ │ ├── load_data_part_local_ddi0.test │ │ │ │ ├── load_data_part_local_ddi1.test │ │ │ │ ├── load_data_part_local_ignore_ddi0.test │ │ │ │ ├── load_data_part_local_ignore_ddi1.test │ │ │ │ ├── load_data_part_local_replace_ddi0.test │ │ │ │ ├── load_data_part_local_replace_ddi1.test │ │ │ │ ├── load_data_part_replace_ddi0.test │ │ │ │ └── load_data_part_replace_ddi1.test │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t/ │ │ │ ├── auto_increment.test │ │ │ ├── auto_increment_deinit.inc │ │ │ ├── auto_increment_init.inc │ │ │ ├── basic_sql.test │ │ │ ├── basic_sql_part.test │ │ │ ├── checksum_table_with_quick_mode_3.test │ │ │ ├── connect_child2_1.inc │ │ │ ├── connect_child2_2.inc │ │ │ ├── connect_child2_3.inc │ │ │ ├── connect_child3_1.inc │ │ │ ├── connect_child3_2.inc │ │ │ ├── connect_child3_3.inc │ │ │ ├── connect_master_1.inc │ │ │ ├── connect_slave1_1.inc │ │ │ ├── direct_aggregate.test │ │ │ ├── direct_aggregate_part.test │ │ │ ├── direct_join.test │ │ │ ├── direct_join_using.test │ │ │ ├── direct_left_join.test │ │ │ ├── direct_left_join_nullable.test │ │ │ ├── direct_left_right_join_nullable.test │ │ │ ├── direct_left_right_left_join_nullable.test │ │ │ ├── direct_right_join.test │ │ │ ├── direct_right_join_nullable.test │ │ │ ├── direct_right_left_join_nullable.test │ │ │ ├── direct_right_left_right_join_nullable.test │ │ │ ├── direct_update.test │ │ │ ├── direct_update_part.test │ │ │ ├── function.test │ │ │ ├── ha.test │ │ │ ├── ha_part.test │ │ │ ├── ha_test_deinit.inc │ │ │ ├── ha_test_init.inc │ │ │ ├── have_engine.inc │ │ │ ├── have_func.inc │ │ │ ├── have_partition.inc │ │ │ ├── have_plugin.inc │ │ │ ├── have_trigger.inc │ │ │ ├── hs_test_deinit.inc │ │ │ ├── hs_test_init.inc │ │ │ ├── partition_cond_push.test │ │ │ ├── partition_fulltext.test │ │ │ ├── partition_join_pushdown_for_single_partition.test │ │ │ ├── partition_mrr.test │ │ │ ├── pushdown_not_like.test │ │ │ ├── quick_mode_0.test │ │ │ ├── quick_mode_1.test │ │ │ ├── quick_mode_2.test │ │ │ ├── quick_mode_3.test │ │ │ ├── show_system_tables.test │ │ │ ├── slave_test_deinit.inc │ │ │ ├── slave_test_init.inc │ │ │ ├── slave_trx_isolation.test │ │ │ ├── spider3_fixes.test │ │ │ ├── spider3_fixes_part.test │ │ │ ├── spider_fixes.test │ │ │ ├── spider_fixes_part.test │ │ │ ├── spider_wrapper_protocols.test │ │ │ ├── test_deinit.inc │ │ │ ├── test_init.inc │ │ │ ├── timestamp.test │ │ │ ├── timestamp_deinit.inc │ │ │ ├── timestamp_init.inc │ │ │ ├── udf_pushdown.inc │ │ │ ├── udf_pushdown.test │ │ │ └── vp_fixes.test │ │ ├── spd_conn.cc │ │ ├── spd_conn.h │ │ ├── spd_copy_tables.cc │ │ ├── spd_copy_tables.h │ │ ├── spd_db_conn.cc │ │ ├── spd_db_conn.h │ │ ├── spd_db_handlersocket.cc │ │ ├── spd_db_handlersocket.h │ │ ├── spd_db_include.cc │ │ ├── spd_db_include.h │ │ ├── spd_db_mysql.cc │ │ ├── spd_db_mysql.h │ │ ├── spd_db_oracle.cc │ │ ├── spd_db_oracle.h │ │ ├── spd_direct_sql.cc │ │ ├── spd_direct_sql.h │ │ ├── spd_environ.h │ │ ├── spd_err.h │ │ ├── spd_group_by_handler.cc │ │ ├── spd_group_by_handler.h │ │ ├── spd_i_s.cc │ │ ├── spd_include.h │ │ ├── spd_init_query.h │ │ ├── spd_malloc.cc │ │ ├── spd_malloc.h │ │ ├── spd_param.cc │ │ ├── spd_param.h │ │ ├── spd_ping_table.cc │ │ ├── spd_ping_table.h │ │ ├── spd_sys_table.cc │ │ ├── spd_sys_table.h │ │ ├── spd_table.cc │ │ ├── spd_table.h │ │ ├── spd_trx.cc │ │ ├── spd_trx.h │ │ ├── spd_udf.cc │ │ ├── spd_udf.def │ │ ├── spd_udf.h │ │ └── spider.cnf │ └── test_sql_discovery/ │ ├── CMakeLists.txt │ ├── mysql-test/ │ │ ├── archive/ │ │ │ └── discover.test │ │ ├── main/ │ │ │ └── t/ │ │ │ ├── create.test │ │ │ ├── drop.test │ │ │ ├── mdl_sync.test │ │ │ ├── partition_disabled.test │ │ │ ├── plugin.test │ │ │ └── rename.test │ │ └── sql_discovery/ │ │ ├── inc.inc │ │ ├── inc.opt │ │ ├── simple.result │ │ ├── simple.test │ │ └── suite.pm │ └── test_sql_discovery.cc ├── strings/ │ ├── CHARSET_INFO.txt │ ├── CMakeLists.txt │ ├── README │ ├── bchange.c │ ├── bmove_upp.c │ ├── conf_to_src.c │ ├── ctype-big5.c │ ├── ctype-bin.c │ ├── ctype-cp932.c │ ├── ctype-czech.c │ ├── ctype-euc_kr.c │ ├── ctype-eucjpms.c │ ├── ctype-extra.c │ ├── ctype-gb2312.c │ ├── ctype-gbk.c │ ├── ctype-latin1.c │ ├── ctype-mb.c │ ├── ctype-mb.h │ ├── ctype-mb.inl │ ├── ctype-simple.c │ ├── ctype-simple.h │ ├── ctype-sjis.c │ ├── ctype-tis620.c │ ├── ctype-uca-scanner_next.inl │ ├── ctype-uca.c │ ├── ctype-uca.inl │ ├── ctype-ucs2.c │ ├── ctype-ucs2.h │ ├── ctype-ujis.c │ ├── ctype-unidata.h │ ├── ctype-utf16.h │ ├── ctype-utf32.h │ ├── ctype-utf8.c │ ├── ctype-utf8.h │ ├── ctype-win1250ch.c │ ├── ctype.c │ ├── decimal.c │ ├── do_ctype.c │ ├── dtoa.c │ ├── dump_map.c │ ├── int2str.c │ ├── is_prefix.c │ ├── json_lib.c │ ├── latin2.def │ ├── llstr.c │ ├── longlong2str.c │ ├── my_strchr.c │ ├── my_strtoll10.c │ ├── my_vsnprintf.c │ ├── str2int.c │ ├── strappend.c │ ├── strcend.c │ ├── strcoll.inl │ ├── strcont.c │ ├── strend.c │ ├── strfill.c │ ├── string.doc │ ├── strings_def.h │ ├── strmake.c │ ├── strmov.c │ ├── strmov_overlapp.c │ ├── strnlen.c │ ├── strnmov.c │ ├── strxmov.c │ ├── strxnmov.c │ ├── t_ctype.h │ ├── uca-dump.c │ ├── uctypedump.c │ ├── utr11-dump.c │ └── xml.c ├── support-files/ │ ├── CMakeLists.txt │ ├── MacOSX/ │ │ ├── Description.plist.sh │ │ ├── Info.plist.sh │ │ ├── MySQLCOM │ │ ├── ReadMe.txt │ │ ├── StartupItem.Description.plist │ │ ├── StartupItem.Info.plist │ │ ├── StartupItem.postinstall │ │ ├── StartupParameters.plist.sh │ │ ├── mwar-wrapper │ │ ├── mwcc-wrapper │ │ ├── postflight.sh │ │ └── preflight.sh │ ├── binary-configure.sh │ ├── build-tags │ ├── ccfilter │ ├── compiler_warnings.supp │ ├── db.opt │ ├── dtrace/ │ │ ├── locktime.d │ │ ├── query-execandqc.d │ │ ├── query-filesort-time.d │ │ ├── query-network-time.d │ │ ├── query-parse-time.d │ │ ├── query-rowops.d │ │ ├── query-time.d │ │ ├── statement-time.d │ │ └── statement-type-aggregate.d │ ├── magic │ ├── mariadb-extra.socket.in │ ├── mariadb-extra@.socket.in │ ├── mariadb.pc.in │ ├── mariadb.service.in │ ├── mariadb.socket.in │ ├── mariadb@.service.in │ ├── mariadb@.socket.in │ ├── mysql-log-rotate.sh │ ├── mysql-multi.server.sh │ ├── mysql.m4 │ ├── mysql.server-sys5.sh │ ├── mysql.server.sh │ ├── mysqld_multi.server.sh │ ├── policy/ │ │ ├── apparmor/ │ │ │ ├── README │ │ │ ├── usr.sbin.mysqld │ │ │ └── usr.sbin.mysqld.local │ │ └── selinux/ │ │ ├── README │ │ ├── mariadb-server.fc │ │ ├── mariadb-server.te │ │ └── mariadb.te │ ├── rpm/ │ │ ├── client.cnf │ │ ├── enable_encryption.preset │ │ ├── my.cnf │ │ ├── mysql-clients.cnf │ │ ├── plugin-postin.sh │ │ ├── server-postin.sh │ │ ├── server-posttrans.sh │ │ ├── server-postun.sh │ │ ├── server-prein.sh │ │ ├── server-preun.sh │ │ ├── server.cnf │ │ └── shared-post.sh │ ├── sysusers.conf.in │ ├── tmpfiles.conf.in │ ├── use_galera_new_cluster.conf │ ├── wsrep.cnf.sh │ └── wsrep_notify.sh ├── tests/ │ ├── CMakeLists.txt │ ├── async_queries.c │ ├── auto_increment.tst │ ├── big_record.pl │ ├── bug25714.c │ ├── check_async_queries.pl │ ├── connect_test.c │ ├── consistent_snapshot.pl │ ├── deadlock_test.c │ ├── drop_test.pl │ ├── export.pl │ ├── fork2_test.pl │ ├── fork_big.pl │ ├── fork_big2.pl │ ├── function.tst │ ├── index_corrupt.pl │ ├── insert_and_repair.pl │ ├── insert_test.c │ ├── list_test.c │ ├── lock_test.pl │ ├── mail_to_db.pl │ ├── myisam-big-rows.tst │ ├── mysql_client_fw.c │ ├── mysql_client_test.c │ ├── nonblock-wrappers.h │ ├── pmail.pl │ ├── rename_test.pl │ ├── restore-lock.smack │ ├── select_test.c │ ├── showdb_test.c │ ├── ssl_test.c │ ├── table_types.pl │ ├── test_delayed_insert.pl │ ├── thread_test.c │ └── truncate.pl ├── tpool/ │ ├── CMakeLists.txt │ ├── aio_liburing.cc │ ├── aio_linux.cc │ ├── aio_simulated.cc │ ├── aio_win.cc │ ├── task.cc │ ├── task_group.cc │ ├── tpool.h │ ├── tpool_generic.cc │ ├── tpool_structs.h │ ├── tpool_win.cc │ └── wait_notification.cc ├── unittest/ │ ├── README.txt │ ├── embedded/ │ │ ├── CMakeLists.txt │ │ └── test-connect.cc │ ├── examples/ │ │ ├── CMakeLists.txt │ │ ├── core-t.c │ │ ├── no_plan-t.c │ │ ├── simple-t.c │ │ ├── skip-t.c │ │ ├── skip_all-t.c │ │ └── todo-t.c │ ├── json_lib/ │ │ ├── CMakeLists.txt │ │ └── json_lib-t.c │ ├── my_decimal/ │ │ ├── CMakeLists.txt │ │ └── my_decimal-t.cc │ ├── mysys/ │ │ ├── CMakeLists.txt │ │ ├── aes-t.c │ │ ├── base64-t.c │ │ ├── bitmap-t.c │ │ ├── byte_order-t.c │ │ ├── crc32-t.c │ │ ├── dynstring-t.c │ │ ├── lf-t.c │ │ ├── ma_dyncol-t.c │ │ ├── my_atomic-t.c │ │ ├── my_delete-t.c │ │ ├── my_getopt-t.c │ │ ├── my_malloc-t.c │ │ ├── my_rdtsc-t.c │ │ ├── my_vsnprintf-t.c │ │ ├── queues-t.c │ │ ├── stacktrace-t.c │ │ ├── thr_template.c │ │ └── waiting_threads-t.c │ ├── mytap/ │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ ├── t/ │ │ │ └── basic-t.c │ │ ├── tap.c │ │ └── tap.h │ ├── sql/ │ │ ├── CMakeLists.txt │ │ ├── dummy_builtins.cc │ │ ├── explain_filename-t.cc │ │ ├── mf_iocache-t.cc │ │ ├── my_apc-t.cc │ │ └── my_json_writer-t.cc │ ├── strings/ │ │ ├── CMakeLists.txt │ │ ├── json-t.c │ │ └── strings-t.c │ └── unit.pl ├── vio/ │ ├── CMakeLists.txt │ ├── docs/ │ │ ├── COPYING.openssl │ │ └── INSTALL │ ├── test-ssl.c │ ├── test-sslclient.c │ ├── test-sslserver.c │ ├── vio.c │ ├── vio_priv.h │ ├── viopipe.c │ ├── viosocket.c │ ├── viossl.c │ ├── viosslfactories.c │ ├── viotest-ssl.c │ ├── viotest-sslconnect.cc │ └── viotest.cc ├── win/ │ ├── appveyor_skip_tests.txt │ ├── create_def_file.js │ ├── packaging/ │ │ ├── CMakeLists.txt │ │ ├── COPYING.rtf │ │ ├── CPackWixConfig.cmake │ │ ├── CPackZIPConfig.cmake │ │ ├── CPackZIPDebugInfoConfig.cmake │ │ ├── CPackZIPTestConfig.cmake │ │ ├── ca/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomAction.cpp │ │ │ ├── CustomAction.def │ │ │ └── CustomAction.rc │ │ ├── create_msi.cmake │ │ ├── extra.wxs.in │ │ ├── heidisql.cmake │ │ ├── heidisql.wxi.in │ │ ├── heidisql_feature.wxi.in │ │ └── mysql_server.wxs.in │ └── upgrade_wizard/ │ ├── CMakeLists.txt │ ├── res/ │ │ └── upgrade.rc2 │ ├── resource.h │ ├── stdafx.h │ ├── targetver.h │ ├── upgrade.cpp │ ├── upgrade.h │ ├── upgrade.rc │ ├── upgradeDlg.cpp │ ├── upgradeDlg.h │ └── upgrade_wizard.exe.manifest └── zlib/ ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── README ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── qnx/ │ └── package.qpg ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom/ │ ├── watcom_f.mak │ └── watcom_l.mak ├── win32/ │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.h ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h