├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.compiler.sh ├── .travis.yml ├── BUILD-CMAKE ├── 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-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 ├── CMakeLists.txt ├── COPYING ├── COPYING.thirdparty ├── CREDITS ├── Docs ├── INSTALL-BINARY ├── README-wsrep ├── glibc-2.2.5.patch ├── linuxthreads.txt ├── myisam.txt ├── mysql.info └── sp-imp-spec.txt ├── EXCEPTIONS-CLIENT ├── INSTALL-SOURCE ├── INSTALL-WIN-SOURCE ├── KNOWN_BUGS.txt ├── README.md ├── VERSION ├── appveyor.yml ├── client ├── CMakeLists.txt ├── async_example.c ├── client_priv.h ├── completion_hash.cc ├── completion_hash.h ├── echo.c ├── 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 ├── sql_string.cc.dontuse └── sql_string.h.dontuse ├── cmake ├── CPackRPM.cmake ├── FindJNI.cmake ├── FindJava.cmake ├── FindLZ4.cmake ├── Findzstd.cmake ├── abi_check.cmake ├── build_configurations │ └── mysql_release.cmake ├── character_sets.cmake ├── check_compiler_flag.cmake ├── compile_flags.cmake ├── configurable_file_content.in ├── configure.pl ├── cpack_deb.cmake ├── cpack_rpm.cmake ├── cpack_source_ignore_files.cmake ├── cpu_info.cmake ├── crc32.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 │ ├── Darwin.cmake │ ├── FreeBSD.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 ├── systemd.cmake ├── tags.cmake ├── versioninfo.rc.in ├── win_compatibility.manifest ├── wsrep.cmake └── zlib.cmake ├── 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 └── user.r ├── debian ├── additions │ ├── Docs__Images__Makefile.in │ ├── Docs__Makefile.in │ ├── debian-start │ ├── debian-start.inc.sh │ ├── echo_stderr │ ├── enable_encryption.preset │ ├── innotop │ │ ├── changelog.innotop │ │ ├── innotop │ │ └── innotop.1 │ ├── mariadb.cnf │ ├── my.cnf │ ├── mysqld_safe_syslog.cnf │ ├── mysqlreport │ └── mysqlreport.1 ├── 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 ├── libmariadb3-compat.install ├── libmariadb3.install ├── libmariadb3.postinst ├── libmariadbclient18.install ├── libmariadbd-dev.install ├── libmariadbd19.install ├── libmysqlclient18.install ├── mariadb-backup.install ├── mariadb-client-10.3.README.Debian ├── mariadb-client-10.3.docs ├── mariadb-client-10.3.install ├── mariadb-client-10.3.links ├── mariadb-client-10.3.manpages ├── mariadb-client-10.3.menu ├── mariadb-client-core-10.3.install ├── mariadb-common.dirs ├── mariadb-common.install ├── mariadb-common.postrm ├── mariadb-plugin-aws-key-management.install ├── mariadb-plugin-cassandra.install ├── 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-spider.install ├── mariadb-plugin-spider.postinst ├── mariadb-plugin-tokudb.install ├── mariadb-server-10.3.README.Debian ├── mariadb-server-10.3.config ├── mariadb-server-10.3.dirs ├── mariadb-server-10.3.install ├── mariadb-server-10.3.logcheck.ignore.paranoid ├── mariadb-server-10.3.logcheck.ignore.server ├── mariadb-server-10.3.logcheck.ignore.workstation ├── mariadb-server-10.3.mysql-server.logrotate ├── mariadb-server-10.3.mysql.default ├── mariadb-server-10.3.mysql.init ├── mariadb-server-10.3.postinst ├── mariadb-server-10.3.postrm ├── mariadb-server-10.3.preinst ├── mariadb-server-10.3.prerm ├── mariadb-server-10.3.py ├── mariadb-server-10.3.templates ├── mariadb-server-10.3.triggers ├── mariadb-server-core-10.3.install ├── mariadb-test-data.install ├── mariadb-test.install ├── mariadb-test.links ├── mysql-common.dirs ├── mysql-common.install ├── mysql-common.postrm ├── not-installed ├── po │ ├── POTFILES.in │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── es.po │ ├── eu.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 ├── rules └── source │ └── format ├── extra ├── CMakeLists.txt ├── charset2html.c ├── comp_err.c ├── crc32-vpmsum │ ├── CMakeLists.txt │ ├── clang_workaround.h │ ├── crc32c_constants.h │ ├── crc32ieee_constants.h │ └── vec_crc32.c ├── innochecksum.cc ├── mariabackup │ ├── CMakeLists.txt │ ├── backup_copy.cc │ ├── backup_copy.h │ ├── backup_mysql.cc │ ├── backup_mysql.h │ ├── backup_wsrep.h │ ├── changed_page_bitmap.cc │ ├── changed_page_bitmap.h │ ├── common.h │ ├── crc │ │ ├── CMakeLists.txt │ │ ├── config.h.cmake │ │ ├── crc-intel-pclmul.c │ │ ├── crc-intel-pclmul.h │ │ ├── crc_glue.c │ │ └── crc_glue.h │ ├── datasink.c │ ├── datasink.h │ ├── ds_archive.c │ ├── ds_archive.h │ ├── ds_buffer.c │ ├── ds_buffer.h │ ├── ds_compress.c │ ├── ds_compress.h │ ├── ds_local.cc │ ├── ds_local.h │ ├── ds_stdout.c │ ├── ds_stdout.h │ ├── ds_tmpfile.c │ ├── ds_tmpfile.h │ ├── ds_xbstream.c │ ├── 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.c │ ├── xbstream.h │ ├── xbstream_read.c │ ├── xbstream_write.c │ ├── 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 └── yassl │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── FLOSS-EXCEPTIONS │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── certs │ ├── ca-cert.pem │ ├── ca-key.pem │ ├── client-cert.der │ ├── client-cert.pem │ ├── client-key.der │ ├── client-key.pem │ ├── client-keyEnc.pem │ ├── client-keyEnc3.pem │ ├── dh1024.dat │ ├── dsa-cert.pem │ ├── dsa1024.der │ ├── dsa1024.pem │ ├── server-cert.pem │ ├── server-key.pem │ ├── server-keyEnc.pem │ └── taoCert.txt │ ├── examples │ ├── client │ │ ├── client.cpp │ │ └── client.dsp │ ├── echoclient │ │ ├── echoclient.cpp │ │ ├── echoclient.dsp │ │ ├── input │ │ └── quit │ ├── echoserver │ │ ├── echoserver.cpp │ │ └── echoserver.dsp │ └── server │ │ ├── server.cpp │ │ └── server.dsp │ ├── include │ ├── buffer.hpp │ ├── cert_wrapper.hpp │ ├── crypto_wrapper.hpp │ ├── factory.hpp │ ├── handshake.hpp │ ├── lock.hpp │ ├── log.hpp │ ├── openssl │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── generate_prefix_files.pl │ │ ├── hmac.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── objects.h │ │ ├── opensslv.h │ │ ├── pem.h │ │ ├── pkcs12.h │ │ ├── prefix_crypto.h │ │ ├── prefix_ssl.h │ │ ├── rand.h │ │ ├── rsa.h │ │ ├── sha.h │ │ ├── ssl.h │ │ ├── transport_types.h │ │ ├── x509.h │ │ └── x509v3.h │ ├── socket_wrapper.hpp │ ├── timer.hpp │ ├── yassl.hpp │ ├── yassl_error.hpp │ ├── yassl_imp.hpp │ ├── yassl_int.hpp │ └── yassl_types.hpp │ ├── lib │ └── dummy │ ├── src │ ├── buffer.cpp │ ├── cert_wrapper.cpp │ ├── crypto_wrapper.cpp │ ├── dummy.cpp │ ├── handshake.cpp │ ├── lock.cpp │ ├── log.cpp │ ├── make.bat │ ├── socket_wrapper.cpp │ ├── ssl.cpp │ ├── timer.cpp │ ├── yassl.cpp │ ├── yassl_error.cpp │ ├── yassl_imp.cpp │ └── yassl_int.cpp │ ├── taocrypt │ ├── CMakeLists.txt │ ├── COPYING │ ├── INSTALL │ ├── README │ ├── benchmark │ │ ├── benchmark.cpp │ │ ├── benchmark.dsp │ │ ├── dh1024.der │ │ ├── dsa1024.der │ │ ├── make.bat │ │ └── rsa1024.der │ ├── certs │ │ ├── client-cert.der │ │ ├── client-key.der │ │ ├── dh1024.dat │ │ └── dsa512.der │ ├── include │ │ ├── aes.hpp │ │ ├── algebra.hpp │ │ ├── arc4.hpp │ │ ├── asn.hpp │ │ ├── block.hpp │ │ ├── blowfish.hpp │ │ ├── coding.hpp │ │ ├── des.hpp │ │ ├── dh.hpp │ │ ├── dsa.hpp │ │ ├── error.hpp │ │ ├── file.hpp │ │ ├── hash.hpp │ │ ├── hc128.hpp │ │ ├── hmac.hpp │ │ ├── integer.hpp │ │ ├── kernelc.hpp │ │ ├── md2.hpp │ │ ├── md4.hpp │ │ ├── md5.hpp │ │ ├── misc.hpp │ │ ├── modarith.hpp │ │ ├── modes.hpp │ │ ├── pwdbased.hpp │ │ ├── rabbit.hpp │ │ ├── random.hpp │ │ ├── ripemd.hpp │ │ ├── rsa.hpp │ │ ├── runtime.hpp │ │ ├── sha.hpp │ │ ├── twofish.hpp │ │ ├── type_traits.hpp │ │ └── types.hpp │ ├── mySTL │ │ ├── algorithm.hpp │ │ ├── helpers.hpp │ │ ├── list.hpp │ │ ├── memory.hpp │ │ ├── memory_array.hpp │ │ ├── pair.hpp │ │ ├── stdexcept.hpp │ │ └── vector.hpp │ ├── src │ │ ├── aes.cpp │ │ ├── aestables.cpp │ │ ├── algebra.cpp │ │ ├── arc4.cpp │ │ ├── asn.cpp │ │ ├── bftables.cpp │ │ ├── blowfish.cpp │ │ ├── coding.cpp │ │ ├── des.cpp │ │ ├── dh.cpp │ │ ├── dsa.cpp │ │ ├── file.cpp │ │ ├── hash.cpp │ │ ├── hc128.cpp │ │ ├── integer.cpp │ │ ├── make.bat │ │ ├── md2.cpp │ │ ├── md4.cpp │ │ ├── md5.cpp │ │ ├── misc.cpp │ │ ├── rabbit.cpp │ │ ├── random.cpp │ │ ├── ripemd.cpp │ │ ├── rsa.cpp │ │ ├── sha.cpp │ │ ├── tftables.cpp │ │ └── twofish.cpp │ ├── taocrypt.dsp │ ├── taocrypt.dsw │ ├── test.dsw │ └── test │ │ ├── make.bat │ │ ├── memory.cpp │ │ ├── test.cpp │ │ └── test.dsp │ ├── testsuite │ ├── cipher-test.sh │ ├── input │ ├── make.bat │ ├── quit │ ├── test.hpp │ ├── testsuite.cpp │ └── testsuite.dsp │ ├── yassl.dsp │ └── yassl.dsw ├── include ├── CMakeLists.txt ├── atomic │ ├── gcc_builtins.h │ ├── gcc_sync.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 ├── 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_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_context.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_net.h ├── my_nosys.h ├── my_pthread.h ├── my_rdtsc.h ├── my_rnd.h ├── my_service_manager.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.h ├── mysql.h.pp ├── 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_encryption.h │ ├── plugin_encryption.h.pp │ ├── plugin_ftparser.h │ ├── plugin_ftparser.h.pp │ ├── plugin_password_validation.h │ ├── plugin_password_validation.h.pp │ ├── psi │ │ ├── mysql_file.h │ │ ├── mysql_idle.h │ │ ├── mysql_socket.h │ │ ├── mysql_stage.h │ │ ├── mysql_statement.h │ │ ├── mysql_table.h │ │ ├── mysql_thread.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_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_rnd.h │ ├── service_thd_specifics.h │ ├── service_thd_timezone.h │ ├── service_thd_wait.h │ ├── service_wsrep.h │ └── services.h ├── mysql_async.h ├── 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 ├── probes_mysql.d.base ├── probes_mysql.h ├── probes_mysql_nodtrace.h.in ├── queues.h ├── rijndael.h ├── service_versions.h ├── source_revision.h.in ├── 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 ├── thread_pool_priv.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 │ │ ├── images │ │ │ ├── db.ico │ │ │ ├── find.ico │ │ │ ├── logo.ico │ │ │ ├── mysql.bmp │ │ │ └── net.ico │ │ └── snapshot.jpg │ └── 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 ├── 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 ├── 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 ├── comp_err.1 ├── galera_new_cluster.1 ├── galera_recovery.1 ├── innochecksum.1 ├── mariabackup.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 ├── 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 ├── perror.1 ├── replace.1 ├── resolve_stack_dump.1 ├── resolveip.1 ├── tokuft_logprint.1 ├── tokuftdump.1 ├── wsrep_sst_common.1 ├── wsrep_sst_mariabackup.1 ├── wsrep_sst_mysqldump.1 ├── wsrep_sst_rsync.1 ├── wsrep_sst_rsync_wan.1 ├── wsrep_sst_xtrabackup-v2.1 └── wsrep_sst_xtrabackup.1 ├── mysql-test ├── CMakeLists.txt ├── README ├── README-gcov ├── README.stress ├── 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 ├── 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 │ ├── 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_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_client.cnf │ ├── default_my.cnf │ ├── default_mysqld.cnf │ ├── delete_anonymous_users.inc │ ├── diff_servers.inc │ ├── diff_tables.inc │ ├── empty_string_literal.inc │ ├── end_include_file.inc │ ├── endspace.inc │ ├── equal_fields_propagation_datetime.inc │ ├── expect_crash.inc │ ├── explain_non_select.inc │ ├── explain_utils.inc │ ├── file_does_not_exist.inc │ ├── filter_file.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_init.inc │ ├── galera_set_sync_point.inc │ ├── galera_signal_sync_point.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 │ ├── have_32bit.inc │ ├── have_64bit.inc │ ├── have_archive.inc │ ├── have_archive.opt │ ├── have_aria.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-mysql.inc │ ├── have_debug.inc │ ├── have_debug_sync.inc │ ├── have_des.inc │ ├── have_eucjpms.inc │ ├── have_euckr.inc │ ├── have_example_plugin.inc │ ├── have_gb2312.inc │ ├── have_gbk.inc │ ├── have_geometry.inc │ ├── have_geometry.require │ ├── 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_disallow_writes.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_log_bin.require │ ├── have_lowercase0.inc │ ├── have_lowercase1.inc │ ├── have_lowercase2.inc │ ├── have_maria.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_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_symlink.inc │ ├── have_symlink.require │ ├── have_tis620.inc │ ├── have_ucs2.inc │ ├── have_udf.inc │ ├── have_ujis.inc │ ├── have_unix_socket.inc │ ├── have_utf16.inc │ ├── have_utf16.require │ ├── have_utf32.inc │ ├── have_utf32.require │ ├── have_utf8.inc │ ├── have_utf8mb4.inc │ ├── have_utf8mb4.require │ ├── have_working_dns.inc │ ├── have_working_dns.require │ ├── have_wsrep.inc │ ├── have_wsrep_enabled.inc │ ├── have_wsrep_provider.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_encrypt_log.combinations │ ├── innodb_encrypt_log.inc │ ├── innodb_page_size.combinations │ ├── innodb_page_size.inc │ ├── innodb_page_size_small.combinations │ ├── innodb_page_size_small.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 │ ├── io_thd_fault_injection.inc │ ├── ipv6.inc │ ├── ipv6_clients.inc │ ├── is_embedded.inc │ ├── kill_binlog_dump_threads.inc │ ├── kill_mysqld.inc │ ├── kill_query.inc │ ├── kill_query_and_diff_master_slave.inc │ ├── libdaemon_example.ini │ ├── linux.inc │ ├── linux_sys_vars.inc │ ├── load_sysvars.inc │ ├── loaddata_autocom.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 │ ├── 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_as_root.inc │ ├── not_binlog_format_row.inc │ ├── not_blackhole.inc │ ├── not_crashrep.inc │ ├── not_debug.inc │ ├── not_embedded.inc │ ├── not_encrypted.inc │ ├── not_parallel.inc │ ├── not_ssl.inc │ ├── not_staging.inc │ ├── not_staging.require │ ├── not_threadpool.inc │ ├── not_true.require │ ├── not_valgrind.inc │ ├── not_valgrind.require │ ├── 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 │ ├── platform.combinations │ ├── platform.inc │ ├── plugin.defs │ ├── 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 │ ├── 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 │ ├── 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_for_binlog_checkpoint.inc │ ├── wait_for_binlog_event.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 ├── lib │ ├── My │ │ ├── Config.pm │ │ ├── ConfigFactory.pm │ │ ├── CoreDump.pm │ │ ├── File │ │ │ └── Path.pm │ │ ├── Find.pm │ │ ├── Handles.pm │ │ ├── Options.pm │ │ ├── Platform.pm │ │ ├── SafeProcess.pm │ │ ├── SafeProcess │ │ │ ├── Base.pm │ │ │ ├── CMakeLists.txt │ │ │ ├── safe_kill_win.cc │ │ │ ├── safe_process.cc │ │ │ └── safe_process_win.cc │ │ ├── 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 │ ├── 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 ├── 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_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_errors.result │ ├── alter_table_errors.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 │ ├── 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 │ ├── 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 │ ├── blackhole.result │ ├── blackhole.test │ ├── blackhole_plugin.result │ ├── blackhole_plugin.test │ ├── bool.result │ ├── bool.test │ ├── bootstrap-master.opt │ ├── bootstrap.result │ ├── bootstrap.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 │ ├── check.result │ ├── check.test │ ├── check_constraint.result │ ├── check_constraint.test │ ├── check_constraint_show.result │ ├── check_constraint_show.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.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_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-master.opt │ ├── concurrent_innodb_safelog.result │ ├── concurrent_innodb_safelog.test │ ├── concurrent_innodb_unsafelog-master.opt │ ├── concurrent_innodb_unsafelog.result │ ├── concurrent_innodb_unsafelog.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_tmp.result │ ├── create_select_tmp.test │ ├── create_user.result │ ├── create_user.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 │ ├── cte_grant.result │ ├── cte_grant.test │ ├── cte_nonrecursive.result │ ├── cte_nonrecursive.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_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_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_uca.result │ ├── ctype_utf32_uca.test │ ├── ctype_utf8-master.opt │ ├── ctype_utf8.result │ ├── ctype_utf8.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 │ ├── 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_innodb.result │ ├── deadlock_innodb.test │ ├── debug_sync.result │ ├── debug_sync.test │ ├── default.result │ ├── default.test │ ├── default_debug.result │ ├── default_debug.test │ ├── default_session.result │ ├── default_session.test │ ├── default_storage_engine.result │ ├── default_storage_engine.test │ ├── delayed.result │ ├── delayed.test │ ├── delete.result │ ├── delete.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-no_root.result │ ├── drop-no_root.test │ ├── drop.result │ ├── drop.test │ ├── drop_bad_db_type.result │ ├── drop_bad_db_type.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 │ ├── execution_constants.result │ ├── execution_constants.test │ ├── explain.result │ ├── explain.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.result │ ├── features.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 │ ├── 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_block_commit.result │ ├── flush_block_commit.test │ ├── flush_block_commit_notembedded.result │ ├── flush_block_commit_notembedded.test │ ├── flush_read_lock.result │ ├── flush_read_lock.test │ ├── flush_read_lock_kill.result │ ├── flush_read_lock_kill.test │ ├── flush_table.result │ ├── flush_table.test │ ├── foreign_key.result │ ├── foreign_key.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_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_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_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_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 │ ├── gis2.result │ ├── gis2.test │ ├── grant.result │ ├── grant.test │ ├── grant2.result │ ├── grant2.test │ ├── grant3-master.opt │ ├── grant3.result │ ├── grant3.test │ ├── grant4.result │ ├── grant4.test │ ├── grant5.result │ ├── grant5.test │ ├── grant_4332.result │ ├── grant_4332.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_lowercase.opt │ ├── grant_lowercase.result │ ├── grant_lowercase.test │ ├── grant_lowercase_fs.result │ ├── grant_lowercase_fs.test │ ├── grant_not_windows.result │ ├── grant_not_windows.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.result │ ├── handlersocket.test │ ├── having.result │ ├── having.test │ ├── help.result │ ├── help.test │ ├── host_cache_size_functionality.result │ ├── host_cache_size_functionality.test │ ├── huge_frm-6224.result │ ├── huge_frm-6224.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 │ ├── 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_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_routines.result │ ├── information_schema_routines.test │ ├── information_schema_stats.result │ ├── information_schema_stats.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.result │ ├── innodb_ext_key.test │ ├── innodb_group.result │ ├── innodb_group.test │ ├── innodb_icp.result │ ├── innodb_icp.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_innodb.result │ ├── insert_innodb.test │ ├── insert_notembedded.result │ ├── insert_notembedded.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 │ ├── 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 │ ├── 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 │ ├── 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.result │ ├── locale.test │ ├── lock.result │ ├── lock.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 │ ├── locked_temporary-5955.result │ ├── locked_temporary-5955.test │ ├── log_errchk.result │ ├── log_errchk.test │ ├── log_slow.result │ ├── log_slow.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_tmpdir-master.opt │ ├── long_tmpdir-master.sh │ ├── long_tmpdir.result │ ├── long_tmpdir.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_statement_time.result │ ├── max_statement_time.test │ ├── mdev-504.result │ ├── mdev-504.test │ ├── mdev13607.result │ ├── mdev13607.test │ ├── mdev316.result │ ├── mdev316.test │ ├── mdev375.result │ ├── mdev375.test │ ├── mdev6830.result │ ├── mdev6830.test │ ├── mdev_14586.result │ ├── mdev_14586.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_update2-master.opt │ ├── multi_update2.result │ ├── multi_update2.test │ ├── multi_update_binlog.result │ ├── multi_update_binlog.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 │ ├── 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_notembedded.result │ ├── myisam_icp_notembedded.test │ ├── 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.result │ ├── mysql.test │ ├── mysql5613mysql.result │ ├── mysql5613mysql.test │ ├── mysql57_virtual.result │ ├── mysql57_virtual.test │ ├── mysql_binary_mode.result │ ├── mysql_binary_mode.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_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-6984.opt │ ├── mysql_upgrade-6984.result │ ├── mysql_upgrade-6984.test │ ├── mysql_upgrade.result │ ├── mysql_upgrade.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_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.result │ ├── mysqlcheck.test │ ├── mysqld--defaults-file.result │ ├── mysqld--defaults-file.test │ ├── mysqld--help,win.rdiff │ ├── 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.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-utf8mb4.result │ ├── mysqldump-utf8mb4.test │ ├── 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 │ ├── no-threads-master.opt │ ├── no-threads.result │ ├── no-threads.test │ ├── no_binlog.result │ ├── no_binlog.test │ ├── no_password_column-mdev-11170.result │ ├── no_password_column-mdev-11170.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_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_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_precedence.result │ ├── parser_precedence.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.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_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_symlink.result │ ├── partition_symlink.test │ ├── partition_sync.result │ ├── partition_sync.test │ ├── partition_truncate.result │ ├── partition_truncate.test │ ├── partition_utf8.result │ ├── partition_utf8.test │ ├── partition_windows.result │ ├── partition_windows.test │ ├── perror-win.result │ ├── perror-win.test │ ├── perror.result │ ├── perror.test │ ├── 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.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.result │ ├── plugin_not_embedded.test │ ├── plugin_vars.result │ ├── plugin_vars.test │ ├── pool_of_threads.cnf │ ├── pool_of_threads.result │ ├── pool_of_threads.test │ ├── preload.result │ ├── preload.test │ ├── prepare.result │ ├── prepare.test │ ├── processlist.result │ ├── processlist.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_grant.result │ ├── ps_grant.test │ ├── ps_max_subselect-5113.result │ ├── ps_max_subselect-5113.test │ ├── ps_not_windows.result │ ├── ps_not_windows.test │ ├── ps_qc_innodb.result │ ├── ps_qc_innodb.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_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 │ ├── 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_order_innodb.result │ ├── rowid_order_innodb.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_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 │ ├── shm-master.opt │ ├── shm.result │ ├── shm.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.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_grants_with_plugin-7985.result │ ├── show_grants_with_plugin-7985.test │ ├── show_profile.result │ ├── show_profile.test │ ├── show_row_order-9226.result │ ├── show_row_order-9226.test │ ├── shutdown.result │ ├── shutdown.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-master.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-innodb.result │ ├── sp-innodb.test │ ├── sp-lock.result │ ├── sp-lock.test │ ├── sp-no-code.result │ ├── sp-no-code.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 │ ├── 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-crl-revoked-crl.result │ ├── 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_cert_verify.result │ ├── ssl_cert_verify.test │ ├── ssl_cipher-master.opt │ ├── ssl_cipher.result │ ├── ssl_cipher.test │ ├── ssl_compress.result │ ├── ssl_compress.test │ ├── ssl_connect.result │ ├── ssl_connect.test │ ├── ssl_crl-master.opt │ ├── ssl_crl.result │ ├── ssl_crl.test │ ├── ssl_crl_clients-master.opt │ ├── ssl_crl_clients-valid.result │ ├── ssl_crl_clients.result │ ├── ssl_crl_clients.test │ ├── ssl_crl_clients_valid-master.opt │ ├── ssl_crl_clients_valid.result │ ├── ssl_crl_clients_valid.test │ ├── ssl_crl_clrpath-master.opt │ ├── ssl_crl_clrpath.result │ ├── ssl_crl_clrpath.test │ ├── ssl_timeout-9836.opt │ ├── ssl_timeout-9836.result │ ├── ssl_timeout-9836.test │ ├── ssl_timeout.result │ ├── ssl_timeout.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_myisam_debug.result │ ├── stat_tables_myisam_debug.test │ ├── 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 │ ├── subselect-crash_15755.result │ ├── subselect-crash_15755.test │ ├── subselect.result │ ├── subselect.test │ ├── subselect2.result │ ├── subselect2.test │ ├── 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_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 │ ├── 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.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 │ ├── temporal_literal.result │ ├── temporal_literal.test │ ├── temporal_scale_4283.result │ ├── temporal_scale_4283.test │ ├── thread_id_overflow.result │ ├── thread_id_overflow.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 │ ├── tmp_table_count-7586.result │ ├── tmp_table_count-7586.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.result │ ├── truncate_badse.test │ ├── truncate_coverage.result │ ├── truncate_coverage.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_datetime.result │ ├── type_datetime.test │ ├── type_datetime_hires.result │ ├── type_datetime_hires.test │ ├── type_decimal.result │ ├── type_decimal.test │ ├── type_enum.result │ ├── type_enum.test │ ├── type_float.result │ ├── type_float.test │ ├── type_int.result │ ├── type_int.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_set.result │ ├── type_set.test │ ├── type_temporal_innodb.result │ ├── type_temporal_innodb.test │ ├── type_temporal_mysql56.result │ ├── type_temporal_mysql56.test │ ├── type_time.result │ ├── type_time.test │ ├── type_time_6065.result │ ├── type_time_6065.test │ ├── type_time_hires.result │ ├── type_time_hires.test │ ├── type_timestamp.result │ ├── type_timestamp.test │ ├── type_timestamp_hires.result │ ├── type_timestamp_hires.test │ ├── type_uint.result │ ├── type_uint.test │ ├── type_varchar.result │ ├── type_varchar.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 │ ├── uniques_crash-7912.result │ ├── uniques_crash-7912.test │ ├── unsafe_binlog_innodb-master.opt │ ├── 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.result │ ├── upgrade.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.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 │ ├── wl4435_generated.inc │ ├── xa.result │ ├── xa.test │ ├── xa_binlog.result │ ├── xa_binlog.test │ ├── xa_sync.result │ ├── xa_sync.test │ ├── xml.result │ ├── xml.test │ ├── xtradb_mrr.result │ └── xtradb_mrr.test ├── mtr.out-of-source ├── mysql-stress-test.pl ├── mysql-test-run.pl ├── purify.supp ├── std_data │ ├── 14897.frm │ ├── Moscow_leap │ ├── bad2_master.info │ ├── bad3_master.info │ ├── bad4_master.info │ ├── bad5_master.info │ ├── bad6_master.info │ ├── bad_gis_data.dat │ ├── bad_master.info │ ├── bad_row_type.MYD │ ├── bad_row_type.MYI │ ├── bad_row_type.frm │ ├── binlog_savepoint.000001 │ ├── binlog_transaction.000001 │ ├── bug11747416_32228_binlog.000001 │ ├── bug15328.cnf │ ├── bug16171518_1.dat │ ├── bug16171518_2.dat │ ├── bug16266.000001 │ ├── bug19371.MYD │ ├── bug19371.MYI │ ├── bug19371.frm │ ├── bug30435_10k_items.txt │ ├── bug30435_5k.txt │ ├── bug33029-slave-relay-bin.000001 │ ├── bug35469.dat │ ├── 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 │ ├── ca-cert-verify.pem │ ├── cacert.pem │ ├── cakey.pem │ ├── charset_utf8.txt │ ├── checkDBI_DBD-mysql.pl │ ├── client-cert.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 │ ├── crl-ca-cert.pem │ ├── crl-client-cert.pem │ ├── crl-client-key.pem │ ├── crl-client-revoked.crl │ ├── crl-server-cert.pem │ ├── crl-server-key.pem │ ├── crldir │ │ └── fc725416.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 │ │ └── 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 │ ├── host_old.MYD │ ├── host_old.MYI │ ├── host_old.frm │ ├── init_file.dat │ ├── 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 │ ├── loaddata1.dat │ ├── loaddata2.dat │ ├── loaddata3.dat │ ├── loaddata4.dat │ ├── loaddata5.dat │ ├── loaddata6.dat │ ├── loaddata7.dat │ ├── loaddata_dq.dat │ ├── loaddata_pair.dat │ ├── loaddata_utf8.dat │ ├── loadxml.dat │ ├── loadxml2.dat │ ├── logkey.txt │ ├── long_table_name.MYD │ ├── long_table_name.MYI │ ├── long_table_name.frm │ ├── mariadb-5.5-binlog.000001 │ ├── master-bin.000001 │ ├── 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 │ ├── 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 │ ├── 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_bug28618.dat │ ├── rpl_loaddata.dat │ ├── rpl_loaddata2.dat │ ├── rpl_mixed.dat │ ├── rpl_timezone.dat │ ├── rpl_timezone2.dat │ ├── server-cert-verify-fail.pem │ ├── server-cert-verify-pass.pem │ ├── server-cert.pem │ ├── server-key-verify-fail.pem │ ├── server-key-verify-pass.pem │ ├── server-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 │ ├── warnings_loaddata.dat │ ├── words.dat │ ├── words2.dat │ ├── words3.dat │ ├── wsrep_notify.sh │ └── zoneinfo │ │ └── GMT ├── suite.pm ├── 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_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 │ │ ├── discover.result │ │ ├── discover.test │ │ ├── discover_5438.result │ │ ├── discover_5438.test │ │ ├── mysqlhotcopy_archive.result │ │ ├── mysqlhotcopy_archive.test │ │ ├── partition_archive.result │ │ ├── partition_archive.test │ │ ├── repair.result │ │ ├── repair.test │ │ └── suite.pm │ ├── binlog │ │ ├── combinations │ │ ├── disabled.def │ │ ├── include │ │ │ ├── binlog.test │ │ │ ├── binlog_cache_stat.test │ │ │ ├── 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_write_error.inc │ │ │ ├── binlog_xa_recover.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 │ │ ├── r │ │ │ ├── binlog_base64_flag.result │ │ │ ├── binlog_bug23533.result │ │ │ ├── binlog_bug36391.result │ │ │ ├── binlog_checkpoint.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_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_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_cache_stat.result │ │ │ ├── binlog_mixed_load_data.result │ │ │ ├── binlog_mysqlbinlog-cp932.result │ │ │ ├── binlog_mysqlbinlog2.result │ │ │ ├── binlog_mysqlbinlog_base64.result │ │ │ ├── binlog_mysqlbinlog_row.result │ │ │ ├── binlog_mysqlbinlog_row_innodb.result │ │ │ ├── binlog_mysqlbinlog_row_myisam.result │ │ │ ├── binlog_mysqlbinlog_row_trans.result │ │ │ ├── binlog_old_versions.result │ │ │ ├── binlog_parallel_replication_marks_row.result │ │ │ ├── binlog_parallel_replication_marks_stm_mix.result │ │ │ ├── binlog_query_filter_rules.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_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_tmp_table.result │ │ │ ├── binlog_tmp_table_row.result │ │ │ ├── binlog_trigger.result │ │ │ ├── binlog_truncate_innodb.result │ │ │ ├── binlog_truncate_kill.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_recover.result │ │ │ ├── flashback.result │ │ │ ├── load_data_stm_view.result │ │ │ ├── mysqladmin.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 │ │ │ ├── binlog_base64_flag.test │ │ │ ├── binlog_bug23533.test │ │ │ ├── binlog_bug36391-master.opt │ │ │ ├── binlog_bug36391.test │ │ │ ├── binlog_checkpoint.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_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.test │ │ │ ├── binlog_innodb_row.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_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_row-master.opt │ │ │ ├── binlog_mysqlbinlog_row.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_old_versions.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_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_spurious_ddl_errors-master.opt │ │ │ ├── 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_tmp_table.test │ │ │ ├── binlog_tmp_table_row.test │ │ │ ├── binlog_trigger.test │ │ │ ├── binlog_truncate_innodb-master.opt │ │ │ ├── binlog_truncate_innodb.test │ │ │ ├── binlog_truncate_kill.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_recover-master.opt │ │ │ ├── binlog_xa_recover.test │ │ │ ├── flashback-master.opt │ │ │ ├── flashback.test │ │ │ ├── load_data_stm_view.test │ │ │ ├── mysqladmin.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_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-master.opt │ │ ├── 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.result │ │ ├── rpl_parallel.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_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 │ ├── compat │ │ └── oracle │ │ │ ├── r │ │ │ ├── binlog_stm_ps.result │ │ │ ├── binlog_stm_sp.result │ │ │ ├── binlog_stm_sp_package.result │ │ │ ├── column_compression.result │ │ │ ├── empty_string_literal.result │ │ │ ├── events.result │ │ │ ├── exception.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_trim.result │ │ │ ├── gis.result │ │ │ ├── information_schema_parameters.result │ │ │ ├── misc.result │ │ │ ├── parser.result │ │ │ ├── ps.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.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 │ │ │ ├── variables.result │ │ │ ├── vcol.result │ │ │ ├── versioning.result │ │ │ └── win.result │ │ │ └── t │ │ │ ├── binlog_stm_ps.test │ │ │ ├── binlog_stm_sp.test │ │ │ ├── binlog_stm_sp_package.test │ │ │ ├── column_compression.test │ │ │ ├── empty_string_literal.test │ │ │ ├── events.test │ │ │ ├── exception.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_trim.test │ │ │ ├── gis.test │ │ │ ├── information_schema_parameters.test │ │ │ ├── misc.test │ │ │ ├── parser.test │ │ │ ├── ps.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.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 │ │ │ ├── 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 │ │ ├── read_only.result │ │ └── read_only.test │ ├── encryption │ │ ├── disabled.def │ │ ├── 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 │ │ ├── r │ │ │ ├── aria_tiny.result │ │ │ ├── create_or_replace.result │ │ │ ├── debug_key_management.result │ │ │ ├── encrypt_and_grep.result │ │ │ ├── encryption_force.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-first-page-read.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-scrub-log.result │ │ │ ├── innodb-spatial-index.result │ │ │ ├── innodb_encrypt_log.result │ │ │ ├── innodb_encrypt_log_corruption.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_lotoftables.result │ │ │ ├── innodb_onlinealter_encryption.result │ │ │ ├── innodb_page_encryption_key_change.result │ │ │ ├── innodb_scrub.result │ │ │ ├── innodb_scrub_background.result │ │ │ ├── second_plugin-12863.result │ │ │ └── tempfiles.result │ │ ├── suite.pm │ │ └── t │ │ │ ├── aria_tiny.test │ │ │ ├── create_or_replace.opt │ │ │ ├── create_or_replace.test │ │ │ ├── debug_key_management.opt │ │ │ ├── debug_key_management.test │ │ │ ├── encrypt_and_grep.opt │ │ │ ├── encrypt_and_grep.test │ │ │ ├── encryption_force.opt │ │ │ ├── encryption_force.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.opt │ │ │ ├── innodb-bad-key-change.test │ │ │ ├── innodb-bad-key-change2.opt │ │ │ ├── innodb-bad-key-change2.test │ │ │ ├── innodb-bad-key-change3.test │ │ │ ├── innodb-bad-key-change4.opt │ │ │ ├── innodb-bad-key-change4.test │ │ │ ├── innodb-checksum-algorithm.test │ │ │ ├── innodb-compressed-blob.combinations │ │ │ ├── innodb-compressed-blob.opt │ │ │ ├── innodb-compressed-blob.test │ │ │ ├── innodb-discard-import-change.test │ │ │ ├── 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-first-page-read.test │ │ │ ├── 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.opt │ │ │ ├── innodb-redo-badkey.test │ │ │ ├── innodb-redo-nokeys.opt │ │ │ ├── innodb-redo-nokeys.test │ │ │ ├── innodb-remove-encryption.test │ │ │ ├── innodb-scrub-log.opt │ │ │ ├── innodb-scrub-log.test │ │ │ ├── innodb-spatial-index.opt │ │ │ ├── innodb-spatial-index.test │ │ │ ├── innodb_encrypt_log.opt │ │ │ ├── innodb_encrypt_log.test │ │ │ ├── innodb_encrypt_log_corruption.opt │ │ │ ├── innodb_encrypt_log_corruption.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_lotoftables.opt │ │ │ ├── innodb_lotoftables.test │ │ │ ├── innodb_onlinealter_encryption.opt │ │ │ ├── innodb_onlinealter_encryption.test │ │ │ ├── innodb_page_encryption_key_change.test │ │ │ ├── innodb_scrub.opt │ │ │ ├── innodb_scrub.test │ │ │ ├── innodb_scrub_background.opt │ │ │ ├── innodb_scrub_background.test │ │ │ ├── second_plugin-12863.test │ │ │ ├── tempfiles.combinations │ │ │ ├── tempfiles.opt │ │ │ └── tempfiles.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 │ │ │ │ ├── rpl000010.result │ │ │ │ ├── rpl000011.result │ │ │ │ ├── rpl000013.result │ │ │ │ ├── rpl000017.result │ │ │ │ ├── rpl_000015.result │ │ │ │ ├── rpl_LD_INFILE.result │ │ │ │ ├── rpl_REDIRECT.result │ │ │ │ ├── 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_empty_master_crash.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_master_pos_wait.result │ │ │ │ ├── rpl_misc_functions.result │ │ │ │ ├── rpl_multi_delete.result │ │ │ │ ├── rpl_multi_delete2.result │ │ │ │ ├── rpl_multi_update4.result │ │ │ │ ├── rpl_ps.result │ │ │ │ ├── rpl_rbr_to_sbr.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.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 │ │ │ │ ├── rpl000010-slave.opt │ │ │ │ ├── rpl000010.test │ │ │ │ ├── rpl000011.test │ │ │ │ ├── rpl000013.test │ │ │ │ ├── rpl000017-slave.opt │ │ │ │ ├── rpl000017.test │ │ │ │ ├── rpl_000015.test │ │ │ │ ├── rpl_LD_INFILE.test │ │ │ │ ├── rpl_REDIRECT.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_empty_master_crash.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_master_pos_wait.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_rbr_to_sbr.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-slave.opt │ │ │ │ ├── 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 │ │ ├── federatedx.result │ │ ├── federatedx.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 │ │ ├── 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_have_debug_sync.inc │ │ │ ├── galera_load_provider.inc │ │ │ ├── galera_reset_cluster_address.inc │ │ │ ├── galera_resume.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_unload_provider.inc │ │ │ ├── galera_wsrep_recover.inc │ │ │ ├── have_mariabackup.inc │ │ │ ├── have_wsrep_replicate_myisam.inc │ │ │ ├── have_xtrabackup.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 │ │ │ ├── MDEV-15443.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-328A.result │ │ │ ├── MW-328B.result │ │ │ ├── MW-328C.result │ │ │ ├── MW-328D.result │ │ │ ├── MW-328E.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_account_management.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_gtid.result │ │ │ ├── galera_as_master_gtid_change_master.result │ │ │ ├── galera_as_master_large.result │ │ │ ├── galera_as_slave.result │ │ │ ├── galera_as_slave_autoinc.result │ │ │ ├── galera_as_slave_gtid.result │ │ │ ├── galera_as_slave_nonprim.result │ │ │ ├── galera_as_slave_preordered.result │ │ │ ├── galera_as_slave_replication_bundle.result │ │ │ ├── galera_autoinc_sst_xtrabackup.result │ │ │ ├── galera_bf_abort.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_lock_table.result │ │ │ ├── galera_bf_abort_sleep.result │ │ │ ├── galera_bf_background_statistics.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_rows_query_log_events.result │ │ │ ├── galera_binlog_stmt_autoinc.result │ │ │ ├── galera_concurrent_ctas.result │ │ │ ├── galera_create_function.result │ │ │ ├── galera_create_procedure.result │ │ │ ├── galera_create_table_like.result │ │ │ ├── galera_create_trigger.result │ │ │ ├── galera_ddl_multiline.result │ │ │ ├── galera_defaults.result │ │ │ ├── galera_delete_limit.result │ │ │ ├── galera_desync_overlapped.result │ │ │ ├── galera_drop_database.result │ │ │ ├── galera_drop_multi.result │ │ │ ├── galera_encrypt_tmp_files.result │ │ │ ├── galera_enum.result │ │ │ ├── galera_events.result │ │ │ ├── galera_fk_cascade_delete.result │ │ │ ├── galera_fk_cascade_update.result │ │ │ ├── galera_fk_conflict.result │ │ │ ├── galera_fk_mismatch.result │ │ │ ├── galera_fk_multicolumn.result │ │ │ ├── galera_fk_multitable.result │ │ │ ├── galera_fk_no_pk.result │ │ │ ├── galera_fk_selfreferential.result │ │ │ ├── galera_fk_setnull.result │ │ │ ├── galera_flush.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_slave.result │ │ │ ├── galera_gtid_slave_sst_rsync.result │ │ │ ├── galera_insert_ignore.result │ │ │ ├── galera_insert_multi.result │ │ │ ├── galera_ist_innodb_flush_logs,debug.rdiff │ │ │ ├── galera_ist_innodb_flush_logs.result │ │ │ ├── galera_ist_mysqldump,debug.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_ist_xtrabackup-v2,debug.rdiff │ │ │ ├── galera_ist_xtrabackup-v2.result │ │ │ ├── galera_kill_applier.result │ │ │ ├── galera_kill_ddl.result │ │ │ ├── galera_kill_largechanges.result │ │ │ ├── galera_kill_nochanges.result │ │ │ ├── galera_kill_smallchanges.result │ │ │ ├── galera_lock_table.result │ │ │ ├── galera_log_bin.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_migrate.result │ │ │ ├── galera_multi_database.result │ │ │ ├── galera_myisam_autocommit.result │ │ │ ├── galera_myisam_transactions.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_pc_ignore_sb.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_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_dirty_reads.result │ │ │ ├── galera_serializable.result │ │ │ ├── galera_server.result │ │ │ ├── galera_split_brain.result │ │ │ ├── galera_sql_log_bin_zero.result │ │ │ ├── galera_ssl.result │ │ │ ├── galera_ssl_compression.result │ │ │ ├── galera_ssl_upgrade.result │ │ │ ├── galera_sst_mariabackup,debug.rdiff │ │ │ ├── galera_sst_mariabackup.result │ │ │ ├── galera_sst_mysqldump,debug.rdiff │ │ │ ├── galera_sst_mysqldump.result │ │ │ ├── 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_data_dir,debug.rdiff │ │ │ ├── galera_sst_rsync_data_dir.result │ │ │ ├── galera_sst_xtrabackup-v2,debug.rdiff │ │ │ ├── galera_sst_xtrabackup-v2-options.result │ │ │ ├── galera_sst_xtrabackup-v2.result │ │ │ ├── galera_sst_xtrabackup-v2_data_dir.result │ │ │ ├── galera_sst_xtrabackup-v2_encrypt_with_key.result │ │ │ ├── galera_status_cluster.result │ │ │ ├── galera_status_local_index.result │ │ │ ├── galera_status_local_state.result │ │ │ ├── galera_suspend_slave.result │ │ │ ├── galera_sync_wait_show.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_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_desync_on.result │ │ │ ├── galera_var_dirty_reads.result │ │ │ ├── galera_var_fkchecks.result │ │ │ ├── galera_var_gtid_domain_id.result │ │ │ ├── galera_var_innodb_disallow_writes.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_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_wsrep_on_off.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_new_cluster.result │ │ │ ├── galera_wsrep_provider_options_syntax.result │ │ │ ├── galera_wsrep_provider_unset_set.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 │ │ │ ├── mdev_10518.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.result │ │ │ ├── mysql-wsrep#332.result │ │ │ ├── mysql-wsrep#90.result │ │ │ ├── partition.result │ │ │ ├── pxc-421.result │ │ │ ├── query_cache.result │ │ │ ├── rename.result │ │ │ ├── rpl_row_annotate.result │ │ │ ├── sql_log_bin.result │ │ │ ├── unique_key.result │ │ │ ├── versioning_trx_id.result │ │ │ └── view.result │ │ ├── suite.pm │ │ └── t │ │ │ ├── GAL-382.test │ │ │ ├── GAL-401.test │ │ │ ├── GAL-419.test │ │ │ ├── GAL-480.test │ │ │ ├── MDEV-15443.cnf │ │ │ ├── MDEV-15443.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-master.opt │ │ │ ├── MW-313.test │ │ │ ├── MW-328-footer.inc │ │ │ ├── MW-328-header.inc │ │ │ ├── MW-328A.test │ │ │ ├── MW-328B.test │ │ │ ├── MW-328C.test │ │ │ ├── MW-328D.test │ │ │ ├── MW-328E.test │ │ │ ├── MW-329-master.opt │ │ │ ├── MW-329.test │ │ │ ├── MW-336.test │ │ │ ├── MW-357.test │ │ │ ├── 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-master.opt │ │ │ ├── MW-86-wait1.test │ │ │ ├── MW-86-wait8-master.opt │ │ │ ├── MW-86-wait8.test │ │ │ ├── basic.test │ │ │ ├── binlog_checksum.test │ │ │ ├── create.test │ │ │ ├── enforce_storage_engine.test │ │ │ ├── enforce_storage_engine2.opt │ │ │ ├── enforce_storage_engine2.test │ │ │ ├── ev51914.test │ │ │ ├── fk.test │ │ │ ├── galera#414.cnf │ │ │ ├── galera#414.test │ │ │ ├── galera#500.test │ │ │ ├── galera#505.test │ │ │ ├── galera_account_management.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.test │ │ │ ├── galera_as_master.cnf │ │ │ ├── galera_as_master.test │ │ │ ├── galera_as_master_gtid.cnf │ │ │ ├── galera_as_master_gtid.test │ │ │ ├── galera_as_master_gtid_change_master.cnf │ │ │ ├── galera_as_master_gtid_change_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_gtid.cnf │ │ │ ├── galera_as_slave_gtid.test │ │ │ ├── galera_as_slave_nonprim.cnf │ │ │ ├── galera_as_slave_nonprim.test │ │ │ ├── galera_as_slave_preordered.cnf │ │ │ ├── galera_as_slave_preordered.test │ │ │ ├── galera_as_slave_replication_bundle.cnf │ │ │ ├── galera_as_slave_replication_bundle.test │ │ │ ├── galera_autoinc_sst_xtrabackup.cnf │ │ │ ├── galera_autoinc_sst_xtrabackup.test │ │ │ ├── galera_bf_abort.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_lock_table.test │ │ │ ├── galera_bf_abort_sleep.test │ │ │ ├── galera_bf_background_statistics.opt │ │ │ ├── galera_bf_background_statistics.test │ │ │ ├── galera_bf_lock_wait.test │ │ │ ├── galera_binlog_cache_size.test │ │ │ ├── galera_binlog_checksum-master.opt │ │ │ ├── galera_binlog_checksum.test │ │ │ ├── galera_binlog_event_max_size_max-master.opt │ │ │ ├── galera_binlog_event_max_size_max.test │ │ │ ├── galera_binlog_event_max_size_min-master.opt │ │ │ ├── galera_binlog_event_max_size_min.test │ │ │ ├── galera_binlog_row_image.test │ │ │ ├── galera_binlog_rows_query_log_events.test │ │ │ ├── galera_binlog_stmt_autoinc.test │ │ │ ├── galera_concurrent_ctas.test │ │ │ ├── galera_create_function.test │ │ │ ├── galera_create_procedure.test │ │ │ ├── galera_create_table_like.test │ │ │ ├── galera_create_trigger.test │ │ │ ├── galera_ddl_multiline.test │ │ │ ├── galera_defaults.test │ │ │ ├── galera_delete_limit.test │ │ │ ├── galera_desync_overlapped.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_fk_cascade_delete.test │ │ │ ├── galera_fk_cascade_update.test │ │ │ ├── galera_fk_conflict.test │ │ │ ├── galera_fk_mismatch.test │ │ │ ├── galera_fk_multicolumn.test │ │ │ ├── galera_fk_multitable.test │ │ │ ├── galera_fk_no_pk.test │ │ │ ├── galera_fk_selfreferential.test │ │ │ ├── galera_fk_setnull.test │ │ │ ├── galera_flush-master.opt │ │ │ ├── galera_flush.test │ │ │ ├── galera_flush_local.opt │ │ │ ├── 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.test │ │ │ ├── galera_gtid_slave.cnf │ │ │ ├── galera_gtid_slave.test │ │ │ ├── galera_gtid_slave_sst_rsync.cnf │ │ │ ├── galera_gtid_slave_sst_rsync.test │ │ │ ├── galera_insert_ignore.test │ │ │ ├── galera_insert_multi.test │ │ │ ├── galera_ist_innodb_flush_logs.cnf │ │ │ ├── galera_ist_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_ist_xtrabackup-v2.cnf │ │ │ ├── galera_ist_xtrabackup-v2.test │ │ │ ├── galera_kill_applier.test │ │ │ ├── galera_kill_ddl.test │ │ │ ├── galera_kill_largechanges.test │ │ │ ├── galera_kill_nochanges.test │ │ │ ├── galera_kill_smallchanges.test │ │ │ ├── galera_lock_table.test │ │ │ ├── galera_log_bin-master.opt │ │ │ ├── galera_log_bin.test │ │ │ ├── galera_log_output_csv-master.opt │ │ │ ├── galera_log_output_csv.test │ │ │ ├── galera_many_columns.test │ │ │ ├── galera_many_indexes.test │ │ │ ├── galera_many_rows.test │ │ │ ├── galera_many_tables_nopk.test │ │ │ ├── galera_many_tables_pk.test │ │ │ ├── galera_mdev_10812.test │ │ │ ├── galera_mdev_13787.opt │ │ │ ├── galera_mdev_13787.test │ │ │ ├── galera_mdev_15611.cnf │ │ │ ├── galera_mdev_15611.test │ │ │ ├── galera_mdl_race.test │ │ │ ├── galera_migrate.cnf │ │ │ ├── galera_migrate.test │ │ │ ├── galera_multi_database.test │ │ │ ├── galera_myisam_autocommit.test │ │ │ ├── galera_myisam_transactions.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_pc_ignore_sb.test │ │ │ ├── galera_pk_bigint_signed.test │ │ │ ├── galera_pk_bigint_unsigned.test │ │ │ ├── galera_prepared_statement.test │ │ │ ├── galera_query_cache-master.opt │ │ │ ├── galera_query_cache.test │ │ │ ├── galera_query_cache_sync_wait-master.opt │ │ │ ├── galera_query_cache_sync_wait.test │ │ │ ├── galera_read_only.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-master.opt │ │ │ ├── galera_sbr_binlog.test │ │ │ ├── galera_schema_dirty_reads.test │ │ │ ├── galera_serializable.test │ │ │ ├── galera_server.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_mariabackup.cnf │ │ │ ├── galera_sst_mariabackup.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_data_dir.cnf │ │ │ ├── galera_sst_rsync_data_dir.test │ │ │ ├── galera_sst_xtrabackup-v2-options.cnf │ │ │ ├── galera_sst_xtrabackup-v2-options.test │ │ │ ├── galera_sst_xtrabackup-v2.cnf │ │ │ ├── galera_sst_xtrabackup-v2.test │ │ │ ├── galera_sst_xtrabackup-v2_data_dir.cnf │ │ │ ├── galera_sst_xtrabackup-v2_data_dir.test │ │ │ ├── galera_sst_xtrabackup-v2_encrypt_with_key.cnf │ │ │ ├── galera_sst_xtrabackup-v2_encrypt_with_key.test │ │ │ ├── galera_status_cluster.test │ │ │ ├── galera_status_local_index.test │ │ │ ├── galera_status_local_state.test │ │ │ ├── galera_suspend_slave.test │ │ │ ├── galera_sync_wait_show.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_truncate.test │ │ │ ├── galera_truncate_temporary.test │ │ │ ├── galera_udf-master.opt │ │ │ ├── galera_unicode_identifiers.test │ │ │ ├── galera_unicode_pk.test │ │ │ ├── galera_update_limit.test │ │ │ ├── galera_v1_row_events-master.opt │ │ │ ├── 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.opt │ │ │ ├── galera_var_auto_inc_control_on.test │ │ │ ├── galera_var_certify_nonPK_off.test │ │ │ ├── galera_var_cluster_address.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_innodb_disallow_writes.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_myisam_off.test │ │ │ ├── galera_var_replicate_myisam_on.test │ │ │ ├── galera_var_retry_autocommit.test │ │ │ ├── galera_var_slave_threads.test │ │ │ ├── galera_var_sst_auth.opt │ │ │ ├── galera_var_sst_auth.test │ │ │ ├── galera_var_sync_wait.test │ │ │ ├── galera_var_wsrep_on_off.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-master.opt │ │ │ ├── galera_wsrep_log_conficts.test │ │ │ ├── galera_wsrep_new_cluster-master.opt │ │ │ ├── galera_wsrep_new_cluster.test │ │ │ ├── galera_wsrep_provider_options_syntax.test │ │ │ ├── galera_wsrep_provider_unset_set.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 │ │ │ ├── mdev_10518.cnf │ │ │ ├── mdev_10518.test │ │ │ ├── mdev_9290.test │ │ │ ├── mysql-wsrep#110.test │ │ │ ├── mysql-wsrep#198.test │ │ │ ├── mysql-wsrep#201-master.opt │ │ │ ├── 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 │ │ │ ├── partition.test │ │ │ ├── pxc-421.test │ │ │ ├── query_cache.opt │ │ │ ├── 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 │ ├── galera_3nodes │ │ ├── disabled.def │ │ ├── galera_2x3nodes.cnf │ │ ├── galera_3nodes.cnf │ │ ├── include │ │ │ ├── galera_suspend.inc │ │ │ └── have_ipv6.inc │ │ ├── my.cnf │ │ ├── r │ │ │ ├── GAL-501.result │ │ │ ├── galera_certification_ccc.result │ │ │ ├── galera_certification_double_failure.result │ │ │ ├── galera_evs_suspect_timeout.result │ │ │ ├── galera_garbd.result │ │ │ ├── galera_gtid_2_cluster.result │ │ │ ├── galera_innobackupex_backup.result │ │ │ ├── galera_ipv6_mysqldump.result │ │ │ ├── galera_ipv6_rsync.result │ │ │ ├── galera_ipv6_xtrabackup-v2.result │ │ │ ├── galera_ist_gcache_rollover.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_var_dirty_reads2.result │ │ ├── suite.pm │ │ └── t │ │ │ ├── GAL-501.cnf │ │ │ ├── GAL-501.test │ │ │ ├── galera_certification_ccc.test │ │ │ ├── galera_certification_double_failure.test │ │ │ ├── galera_evs_suspect_timeout.test │ │ │ ├── galera_garbd.test │ │ │ ├── galera_gtid_2_cluster.cnf │ │ │ ├── galera_gtid_2_cluster.test │ │ │ ├── galera_innobackupex_backup.test │ │ │ ├── galera_ipv6_mysqldump.cnf │ │ │ ├── galera_ipv6_mysqldump.test │ │ │ ├── galera_ipv6_rsync.cnf │ │ │ ├── galera_ipv6_rsync.test │ │ │ ├── galera_ipv6_xtrabackup-v2.cnf │ │ │ ├── galera_ipv6_xtrabackup-v2.test │ │ │ ├── galera_ist_gcache_rollover.cnf │ │ │ ├── galera_ist_gcache_rollover.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.test │ │ │ ├── galera_slave_options_do.cnf │ │ │ ├── galera_slave_options_do.test │ │ │ ├── galera_slave_options_ignore.cnf │ │ │ ├── galera_slave_options_ignore.test │ │ │ └── galera_var_dirty_reads2.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_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 │ │ └── 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_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.test │ │ │ ├── innodb_virtual_fk.test │ │ │ ├── innodb_virtual_fk_restart.test │ │ │ ├── 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 │ ├── 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 │ ├── heap │ │ ├── btree_varchar_null.result │ │ ├── btree_varchar_null.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 │ │ ├── disabled.def │ │ ├── include │ │ │ ├── alter_table_pk_no_sort.inc │ │ │ ├── autoinc_persist_alter.inc │ │ │ ├── dml_ops.inc │ │ │ ├── have_innodb_bzip2.inc │ │ │ ├── have_innodb_lz4.inc │ │ │ ├── have_innodb_lzma.inc │ │ │ ├── have_innodb_lzo.inc │ │ │ ├── have_innodb_punchhole.inc │ │ │ ├── have_innodb_snappy.inc │ │ │ ├── have_undo_tablespaces.combinations │ │ │ ├── have_undo_tablespaces.inc │ │ │ ├── ibd_convert.pl │ │ │ ├── import.inc │ │ │ ├── innodb-page-compression.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_simulate_comp_failures.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_copy.result │ │ │ ├── alter_crash.result │ │ │ ├── alter_foreign_crash.result │ │ │ ├── alter_inplace_perfschema.result │ │ │ ├── alter_key_block_size-11757.result │ │ │ ├── alter_kill.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_rename_existing.result │ │ │ ├── alter_rename_files.result │ │ │ ├── alter_table.result │ │ │ ├── analyze_table.result │ │ │ ├── auto_increment_dup,skip-log-bin.rdiff │ │ │ ├── auto_increment_dup.result │ │ │ ├── autoinc_debug.result │ │ │ ├── autoinc_persist.result │ │ │ ├── binlog_consistent.result │ │ │ ├── blob-update-debug.result │ │ │ ├── blob_unique2pk.result │ │ │ ├── count_distinct.result │ │ │ ├── create-index-debug.result │ │ │ ├── create-index.result │ │ │ ├── create_isl_with_direct.result │ │ │ ├── data_types.result │ │ │ ├── ddl_purge.result │ │ │ ├── deadlock_detect.result │ │ │ ├── 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 │ │ │ ├── drop_table_background.result │ │ │ ├── dropdb.result │ │ │ ├── file_format_defaults.result │ │ │ ├── foreign-keys.result │ │ │ ├── foreign_key.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_no_optimize_thread.result │ │ │ ├── help_url.result │ │ │ ├── ibuf_not_empty.result │ │ │ ├── index_merge_threshold.result │ │ │ ├── index_tree_operation.result │ │ │ ├── innochecksum.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.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-schedule-algorithm.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-page-cleaners.result │ │ │ ├── innodb-page_compression_bzip2.result │ │ │ ├── innodb-page_compression_default.result │ │ │ ├── innodb-page_compression_lz4.result │ │ │ ├── innodb-page_compression_lzma.result │ │ │ ├── innodb-page_compression_lzo.result │ │ │ ├── innodb-page_compression_snappy.result │ │ │ ├── innodb-page_compression_tables.result │ │ │ ├── innodb-page_compression_zip.result │ │ │ ├── innodb-replace-debug.result │ │ │ ├── innodb-replace.result │ │ │ ├── innodb-semi-consistent.result │ │ │ ├── innodb-stats-initialize-failure.result │ │ │ ├── innodb-stats-modified-counter.result │ │ │ ├── innodb-stats-sample.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.result │ │ │ ├── innodb-virtual-columns2.result │ │ │ ├── innodb-wl5522-1.result │ │ │ ├── innodb-wl5522-debug.result │ │ │ ├── innodb-wl5522.result │ │ │ ├── innodb-wl5980-alter.result │ │ │ ├── innodb-xa.result │ │ │ ├── innodb.result │ │ │ ├── innodb_autoinc_lock_mode_zero.result │ │ │ ├── innodb_blob_truncate.result │ │ │ ├── innodb_buffer_pool_resize.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_bug14704286.result │ │ │ ├── innodb_bug21704.result │ │ │ ├── innodb_bug27216817.result │ │ │ ├── innodb_bug30423.result │ │ │ ├── innodb_bug30919.result │ │ │ ├── innodb_bug34053.result │ │ │ ├── innodb_bug34300.result │ │ │ ├── innodb_bug35220.result │ │ │ ├── innodb_bug38231.result │ │ │ ├── innodb_bug39438.result │ │ │ ├── innodb_bug40360.result │ │ │ ├── innodb_bug40565.result │ │ │ ├── innodb_bug41904.result │ │ │ ├── innodb_bug42101-nonzero.result │ │ │ ├── innodb_bug42101.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_bulk_create_index.result │ │ │ ├── innodb_bulk_create_index_debug.result │ │ │ ├── innodb_bulk_create_index_flush.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_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_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_mutexes.result │ │ │ ├── innodb_mysql.result │ │ │ ├── innodb_mysql_rbk.result │ │ │ ├── innodb_notembedded.result │ │ │ ├── innodb_prefix_index_restart_server.result │ │ │ ├── innodb_query_cache.result │ │ │ ├── innodb_simulate_comp_failures.result │ │ │ ├── innodb_simulate_comp_failures_small.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_sys_semaphore_waits.result │ │ │ ├── innodb_timeout_rollback.result │ │ │ ├── innodb_trx_weight.result │ │ │ ├── innodb_uninstall.result │ │ │ ├── innodb_zip_innochecksum.result │ │ │ ├── innodb_zip_innochecksum2.result │ │ │ ├── innodb_zip_innochecksum3.result │ │ │ ├── insert_debug.result │ │ │ ├── instant_alter,32k.rdiff │ │ │ ├── instant_alter,4k.rdiff │ │ │ ├── instant_alter,64k.rdiff │ │ │ ├── instant_alter,8k.rdiff │ │ │ ├── instant_alter.result │ │ │ ├── instant_alter_crash.result │ │ │ ├── instant_alter_debug.result │ │ │ ├── instant_alter_inject.result │ │ │ ├── instant_alter_rollback.result │ │ │ ├── lock_deleted.result │ │ │ ├── log_alter_table.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 │ │ │ ├── mdev-117.result │ │ │ ├── mdev-15707.result │ │ │ ├── monitor.result │ │ │ ├── multi_repair-7404.result │ │ │ ├── mvcc.result │ │ │ ├── purge_secondary.result │ │ │ ├── purge_thread_shutdown.result │ │ │ ├── read_only_recover_committed.result │ │ │ ├── read_only_recovery.result │ │ │ ├── readahead.result │ │ │ ├── recovery_shutdown.result │ │ │ ├── redo_log_during_checkpoint.result │ │ │ ├── rename_table.result │ │ │ ├── rename_table_debug.result │ │ │ ├── restart.result │ │ │ ├── row_format_redundant.result │ │ │ ├── row_lock.result │ │ │ ├── snapshot.result │ │ │ ├── sp_temp_table.result │ │ │ ├── stored_fk.result │ │ │ ├── strict_mode.result │ │ │ ├── system_tables.result │ │ │ ├── table_definition_cache_debug.result │ │ │ ├── table_flags,32k,debug.rdiff │ │ │ ├── table_flags,32k,release.rdiff │ │ │ ├── table_flags,64k,debug.rdiff │ │ │ ├── table_flags,64k,release.rdiff │ │ │ ├── table_flags,debug.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 │ │ │ ├── undo_log.result │ │ │ ├── undo_truncate.result │ │ │ ├── undo_truncate_recover.result │ │ │ ├── update-cascade.result │ │ │ ├── update_time.result │ │ │ ├── update_time_wl6658.result │ │ │ └── xa_recovery.result │ │ └── t │ │ │ ├── 101_compatibility.test │ │ │ ├── add_constraint.test │ │ │ ├── alter_algorithm.combinations │ │ │ ├── alter_algorithm.inc │ │ │ ├── alter_algorithm.test │ │ │ ├── alter_copy.test │ │ │ ├── alter_crash.opt │ │ │ ├── alter_crash.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_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_rename_existing.test │ │ │ ├── alter_rename_files.test │ │ │ ├── alter_sql_mode.combinations │ │ │ ├── alter_sql_mode.inc │ │ │ ├── alter_table.test │ │ │ ├── analyze_table.test │ │ │ ├── auto_increment_dup.opt │ │ │ ├── auto_increment_dup.test │ │ │ ├── autoinc_debug.test │ │ │ ├── autoinc_persist.test │ │ │ ├── binlog_consistent.test │ │ │ ├── blob-update-debug.test │ │ │ ├── blob_unique2pk.test │ │ │ ├── count_distinct.test │ │ │ ├── create-index-debug.test │ │ │ ├── create-index.test │ │ │ ├── create_isl_with_direct.opt │ │ │ ├── create_isl_with_direct.test │ │ │ ├── data_types.opt │ │ │ ├── data_types.test │ │ │ ├── ddl_purge.test │ │ │ ├── deadlock_detect.test │ │ │ ├── default_row_format_alter.test │ │ │ ├── default_row_format_compatibility.test │ │ │ ├── default_row_format_create.test │ │ │ ├── defrag_mdl-9155.test │ │ │ ├── dml_purge.test │ │ │ ├── doublewrite.test │ │ │ ├── drop_table_background.test │ │ │ ├── dropdb.test │ │ │ ├── file_format_defaults.test │ │ │ ├── foreign-keys.test │ │ │ ├── foreign_key.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_no_optimize_thread-master.opt │ │ │ ├── group_commit_no_optimize_thread.test │ │ │ ├── help_url.test │ │ │ ├── ibuf_not_empty.test │ │ │ ├── index_merge_threshold.opt │ │ │ ├── index_merge_threshold.test │ │ │ ├── index_tree_operation.opt │ │ │ ├── index_tree_operation.test │ │ │ ├── innochecksum.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.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.test │ │ │ ├── innodb-index_ucs2.test │ │ │ ├── innodb-isolation.test │ │ │ ├── innodb-lock-schedule-algorithm.opt │ │ │ ├── innodb-lock-schedule-algorithm.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-page-cleaners.test │ │ │ ├── innodb-page_compression_bzip2.test │ │ │ ├── innodb-page_compression_default.test │ │ │ ├── innodb-page_compression_lz4.test │ │ │ ├── innodb-page_compression_lzma.test │ │ │ ├── innodb-page_compression_lzo.test │ │ │ ├── innodb-page_compression_snappy.test │ │ │ ├── innodb-page_compression_tables.test │ │ │ ├── innodb-page_compression_zip.test │ │ │ ├── innodb-replace-debug.test │ │ │ ├── innodb-replace.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-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.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_autoinc_lock_mode_zero-master.opt │ │ │ ├── innodb_autoinc_lock_mode_zero.test │ │ │ ├── innodb_blob_truncate.test │ │ │ ├── innodb_buffer_pool_resize.opt │ │ │ ├── innodb_buffer_pool_resize.test │ │ │ ├── innodb_buffer_pool_resize_with_chunks.opt │ │ │ ├── innodb_buffer_pool_resize_with_chunks.test │ │ │ ├── innodb_bug11754376.test │ │ │ ├── innodb_bug12400341-master.opt │ │ │ ├── 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_bug14704286.test │ │ │ ├── innodb_bug21704.test │ │ │ ├── innodb_bug30423.test │ │ │ ├── innodb_bug30919-master.opt │ │ │ ├── innodb_bug30919.test │ │ │ ├── innodb_bug34053.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_bug42101-nonzero-master.opt │ │ │ ├── innodb_bug42101-nonzero.test │ │ │ ├── innodb_bug42101.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_bug60049-master.opt │ │ │ ├── innodb_bug60049.test │ │ │ ├── innodb_bug60196-master.opt │ │ │ ├── innodb_bug60196.test │ │ │ ├── innodb_bug60229.test │ │ │ ├── innodb_bug68148.test │ │ │ ├── innodb_bulk_create_index.test │ │ │ ├── innodb_bulk_create_index_debug.test │ │ │ ├── innodb_bulk_create_index_flush.test │ │ │ ├── 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_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_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_mutexes-master.opt │ │ │ ├── innodb_mutexes.test │ │ │ ├── innodb_mysql-master.opt │ │ │ ├── innodb_mysql.test │ │ │ ├── innodb_mysql_rbk-master.opt │ │ │ ├── innodb_mysql_rbk.test │ │ │ ├── innodb_notembedded.test │ │ │ ├── innodb_prefix_index_restart_server.test │ │ │ ├── innodb_query_cache.test │ │ │ ├── innodb_simulate_comp_failures-master.opt │ │ │ ├── innodb_simulate_comp_failures.test │ │ │ ├── innodb_simulate_comp_failures_small-master.opt │ │ │ ├── innodb_simulate_comp_failures_small.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_sys_semaphore_waits-master.opt │ │ │ ├── innodb_sys_semaphore_waits.test │ │ │ ├── innodb_timeout_rollback-master.opt │ │ │ ├── innodb_timeout_rollback.test │ │ │ ├── innodb_trx_weight.opt │ │ │ ├── innodb_trx_weight.test │ │ │ ├── innodb_uninstall.opt │ │ │ ├── innodb_uninstall.test │ │ │ ├── innodb_zip_innochecksum.opt │ │ │ ├── innodb_zip_innochecksum.test │ │ │ ├── innodb_zip_innochecksum2.opt │ │ │ ├── innodb_zip_innochecksum2.test │ │ │ ├── innodb_zip_innochecksum3.opt │ │ │ ├── innodb_zip_innochecksum3.test │ │ │ ├── insert_debug.test │ │ │ ├── instant_alter.opt │ │ │ ├── instant_alter.test │ │ │ ├── instant_alter_crash.test │ │ │ ├── instant_alter_debug.test │ │ │ ├── instant_alter_inject.test │ │ │ ├── instant_alter_rollback.test │ │ │ ├── lock_deleted.test │ │ │ ├── log_alter_table.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 │ │ │ ├── mdev-117.test │ │ │ ├── mdev-15707.opt │ │ │ ├── mdev-15707.test │ │ │ ├── monitor.test │ │ │ ├── multi_repair-7404.test │ │ │ ├── mvcc.test │ │ │ ├── purge_secondary.opt │ │ │ ├── purge_secondary.test │ │ │ ├── purge_thread_shutdown.test │ │ │ ├── read_only_recover_committed.test │ │ │ ├── read_only_recovery.test │ │ │ ├── readahead.test │ │ │ ├── recovery_shutdown.test │ │ │ ├── redo_log_during_checkpoint.test │ │ │ ├── rename_table.opt │ │ │ ├── rename_table.test │ │ │ ├── rename_table_debug.test │ │ │ ├── restart.test │ │ │ ├── row_format_redundant.test │ │ │ ├── row_lock.test │ │ │ ├── snapshot.test │ │ │ ├── sp_temp_table.test │ │ │ ├── stored_fk.test │ │ │ ├── strict_mode.test │ │ │ ├── system_tables.test │ │ │ ├── table_definition_cache_debug.opt │ │ │ ├── table_definition_cache_debug.test │ │ │ ├── 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 │ │ │ ├── undo_log.test │ │ │ ├── undo_truncate.opt │ │ │ ├── undo_truncate.test │ │ │ ├── undo_truncate_recover.test │ │ │ ├── update-cascade.test │ │ │ ├── update_time-master.opt │ │ │ ├── update_time.test │ │ │ ├── update_time_wl6658.test │ │ │ └── xa_recovery.test │ ├── innodb_fts │ │ ├── r │ │ │ ├── basic.result │ │ │ ├── concurrent_insert.result │ │ │ ├── crash_recovery.result │ │ │ ├── create.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_table_evict.result │ │ │ ├── fulltext_update.result │ │ │ ├── fulltext_var.result │ │ │ ├── innodb-fts-ddl.result │ │ │ ├── innodb-fts-fic.result │ │ │ ├── innodb-fts-stopword.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 │ │ │ ├── sync.result │ │ │ ├── sync_block.result │ │ │ └── sync_ddl.result │ │ └── t │ │ │ ├── basic.test │ │ │ ├── concurrent_insert.test │ │ │ ├── crash_recovery.test │ │ │ ├── create.opt │ │ │ ├── create.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_table_evict.test │ │ │ ├── fulltext_update.test │ │ │ ├── fulltext_var.test │ │ │ ├── innodb-fts-ddl.test │ │ │ ├── innodb-fts-fic.test │ │ │ ├── innodb-fts-stopword.opt │ │ │ ├── innodb-fts-stopword.test │ │ │ ├── innodb_fts_large_records.test │ │ │ ├── innodb_fts_misc.test │ │ │ ├── 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 │ │ │ ├── sync.opt │ │ │ ├── sync.test │ │ │ ├── sync_block.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_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_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_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_undo.test │ │ │ ├── types.test │ │ │ └── update_root.test │ ├── innodb_zip │ │ ├── disabled.def │ │ ├── include │ │ │ ├── have_no_undo_tablespaces.inc │ │ │ ├── innodb-wl6045.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.result │ │ │ ├── 4k.result │ │ │ ├── 8k.result │ │ │ ├── bug36169.result │ │ │ ├── bug36172.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 │ │ │ ├── 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 │ │ │ ├── 16k-master.opt │ │ │ ├── 16k.test │ │ │ ├── 4k-master.opt │ │ │ ├── 4k.test │ │ │ ├── 8k-master.opt │ │ │ ├── 8k.test │ │ │ ├── bug36169.test │ │ │ ├── bug36172.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.opt │ │ │ ├── innochecksum.test │ │ │ ├── innochecksum_2.opt │ │ │ ├── innochecksum_2.test │ │ │ ├── innochecksum_3.test │ │ │ ├── innodb-zip.test │ │ │ ├── large_blob-master.opt │ │ │ ├── large_blob.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 │ │ ├── std_data │ │ │ ├── jisx0201_sjis.dat │ │ │ ├── jisx0201_ucs2.dat │ │ │ ├── jisx0201_ujis.dat │ │ │ ├── jisx0201_utf8.dat │ │ │ ├── jisx0208_sjis.dat │ │ │ ├── jisx0208_sjis2.dat │ │ │ ├── jisx0208_sjis3.dat │ │ │ ├── jisx0208_ucs2.dat │ │ │ ├── jisx0208_ujis.dat │ │ │ ├── jisx0208_utf8.dat │ │ │ ├── jisx0212_ucs2.dat │ │ │ ├── jisx0212_ujis.dat │ │ │ └── jisx0212_utf8.dat │ │ └── 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 │ │ └── t │ │ │ └── json_no_table.test │ ├── large_tests │ │ ├── README.TXT │ │ ├── r │ │ │ ├── alter_table.result │ │ │ ├── lock_tables_big.result │ │ │ └── rpl_slave_net_timeout.result │ │ └── t │ │ │ ├── alter_table.test │ │ │ ├── lock_tables_big.test │ │ │ ├── rpl_slave_net_timeout-slave.opt │ │ │ └── rpl_slave_net_timeout.test │ ├── maria │ │ ├── alter.result │ │ ├── alter.test │ │ ├── collations.result │ │ ├── collations.test │ │ ├── compat_aliases-master.opt │ │ ├── concurrent.result │ │ ├── concurrent.test │ │ ├── create.result │ │ ├── create.test │ │ ├── distinct.result │ │ ├── distinct.test │ │ ├── dynamic.result │ │ ├── dynamic.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 │ │ ├── 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 │ │ ├── ps_maria.result │ │ ├── ps_maria.test │ │ ├── repair.result │ │ ├── repair.test │ │ ├── small_blocksize-master.opt │ │ ├── small_blocksize.result │ │ ├── small_blocksize.test │ │ ├── suite.pm │ │ ├── truncate.result │ │ └── truncate.test │ ├── mariabackup │ │ ├── absolute_ibdata_paths.opt │ │ ├── absolute_ibdata_paths.result │ │ ├── absolute_ibdata_paths.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_ssl.result │ │ ├── backup_ssl.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 │ │ ├── drop_table_during_backup.result │ │ ├── drop_table_during_backup.test │ │ ├── extra_lsndir.result │ │ ├── extra_lsndir.test │ │ ├── filekeys-data.enc │ │ ├── filekeys-data.key │ │ ├── full_backup.result │ │ ├── full_backup.test │ │ ├── huge_lsn.opt │ │ ├── huge_lsn.result │ │ ├── huge_lsn.test │ │ ├── include │ │ │ ├── have_file_key_management.inc │ │ │ ├── have_rocksdb.inc │ │ │ └── restart_and_restore.inc │ │ ├── incremental_backup.result │ │ ├── incremental_backup.test │ │ ├── incremental_ddl_during_backup.result │ │ ├── incremental_ddl_during_backup.test │ │ ├── incremental_encrypted.opt │ │ ├── incremental_encrypted.result │ │ ├── incremental_encrypted.test │ │ ├── innodb_log_optimize_ddl.result │ │ ├── innodb_log_optimize_ddl.test │ │ ├── lock_ddl_per_table.opt │ │ ├── lock_ddl_per_table.result │ │ ├── lock_ddl_per_table.test │ │ ├── log_checksum_mismatch.result │ │ ├── log_checksum_mismatch.test │ │ ├── mdev-14447.opt │ │ ├── mdev-14447.result │ │ ├── mdev-14447.test │ │ ├── missing_ibd.result │ │ ├── missing_ibd.test │ │ ├── mlog_index_load.result │ │ ├── mlog_index_load.test │ │ ├── nolock_ddl_during_backup_end.result │ │ ├── nolock_ddl_during_backup_end.test │ │ ├── partial.result │ │ ├── partial.test │ │ ├── partial_exclude.result │ │ ├── partial_exclude.test │ │ ├── partition_datadir.result │ │ ├── partition_datadir.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 │ │ ├── skip_innodb.opt │ │ ├── skip_innodb.result │ │ ├── skip_innodb.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 │ │ ├── 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 │ │ ├── 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-9544.cnf │ │ ├── mdev-9544.result │ │ ├── mdev-9544.test │ │ ├── multi_parallel.cnf │ │ ├── multi_parallel.result │ │ ├── multi_parallel.test │ │ ├── multi_parallel_loop.inc │ │ ├── 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 │ │ │ ├── cache.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_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_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_myisam.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_t55.out │ │ │ ├── partition_tinyint_innodb.result │ │ │ ├── partition_tinyint_myisam.result │ │ │ ├── partition_value_innodb.result │ │ │ ├── partition_value_myisam.result │ │ │ ├── print_error.result │ │ │ ├── rpl_partition.result │ │ │ ├── show_create.result │ │ │ ├── truncate_locked.result │ │ │ └── update_and_cache.result │ │ └── t │ │ │ ├── alter_data_directory_innodb.test │ │ │ ├── cache.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_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_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_myisam-master.opt │ │ │ ├── partition_debug_myisam.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-master.opt │ │ │ ├── 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 │ │ │ ├── print_error.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 │ │ │ ├── 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 │ │ │ ├── pfs_no_running_event_scheduler.inc │ │ │ ├── pfs_running_event_scheduler.inc │ │ │ ├── pfs_upgrade.inc │ │ │ ├── privilege.inc │ │ │ ├── rpl_statements_truncate.inc │ │ │ ├── schema.inc │ │ │ ├── setup_helper.inc │ │ │ ├── sizing_auto.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 │ │ │ ├── upgrade_check.inc │ │ │ ├── wait_for_pfs_thread_count.inc │ │ │ └── wait_till_sleep.inc │ │ ├── r │ │ │ ├── all_tests.result │ │ │ ├── bad_option_1.result │ │ │ ├── bad_option_2.result │ │ │ ├── bad_option_3.result │ │ │ ├── bad_option_4.result │ │ │ ├── bad_option_5.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 │ │ │ ├── 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_thread_by_event_name.result │ │ │ ├── ddl_esms_by_user_by_event_name.result │ │ │ ├── ddl_esms_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_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_host_cache.result │ │ │ ├── ddl_hosts.result │ │ │ ├── ddl_mutex_instances.result │ │ │ ├── ddl_os_global_by_type.result │ │ │ ├── ddl_performance_timers.result │ │ │ ├── ddl_rwlock_instances.result │ │ │ ├── ddl_session_account_connect_attrs.result │ │ │ ├── ddl_session_connect_attrs.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_threads.result │ │ │ ├── ddl_tiws_by_index_usage.result │ │ │ ├── ddl_tiws_by_table.result │ │ │ ├── ddl_tlws_by_table.result │ │ │ ├── ddl_users.result │ │ │ ├── digest_null_literal.result │ │ │ ├── digest_table_full.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_thread_by_event_name.result │ │ │ ├── dml_esms_by_user_by_event_name.result │ │ │ ├── dml_esms_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_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_handler.result │ │ │ ├── dml_host_cache.result │ │ │ ├── dml_hosts.result │ │ │ ├── dml_mutex_instances.result │ │ │ ├── dml_os_global_by_type.result │ │ │ ├── dml_performance_timers.result │ │ │ ├── dml_rwlock_instances.result │ │ │ ├── dml_session_account_connect_attrs.result │ │ │ ├── dml_session_connect_attrs.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_threads.result │ │ │ ├── dml_tiws_by_index_usage.result │ │ │ ├── dml_tiws_by_table.result │ │ │ ├── dml_tlws_by_table.result │ │ │ ├── dml_users.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 │ │ │ ├── func_file_io.result │ │ │ ├── func_mutex.result │ │ │ ├── global_read_lock.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_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_table_io.result │ │ │ ├── memory_table_io.result │ │ │ ├── merge_table_io.result │ │ │ ├── misc.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 │ │ │ ├── privilege.result │ │ │ ├── privilege_table_io.result │ │ │ ├── query_cache.result │ │ │ ├── read_only.result │ │ │ ├── relaylog.result │ │ │ ├── rollback_table_io.result │ │ │ ├── rpl_gtid_func.result │ │ │ ├── rpl_statements.result │ │ │ ├── schema.result │ │ │ ├── selects.result │ │ │ ├── server_init.result │ │ │ ├── setup_actors.result │ │ │ ├── setup_consumers_defaults.result │ │ │ ├── setup_instruments_defaults.result │ │ │ ├── setup_objects.result │ │ │ ├── short_option_1.result │ │ │ ├── short_option_2.result │ │ │ ├── sizing_default.result │ │ │ ├── sizing_growth.result │ │ │ ├── sizing_high.result │ │ │ ├── sizing_low.result │ │ │ ├── sizing_med.result │ │ │ ├── sizing_off.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_waits.result │ │ │ ├── start_server_innodb.result │ │ │ ├── start_server_low_digest.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_mutex_class.result │ │ │ ├── start_server_no_mutex_inst.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_thread_class.result │ │ │ ├── start_server_no_thread_inst.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 │ │ │ ├── statement_digest.result │ │ │ ├── statement_digest_charset.result │ │ │ ├── statement_digest_consumers.result │ │ │ ├── statement_digest_consumers2.result │ │ │ ├── statement_digest_long_query.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 │ │ │ ├── threads_innodb.result │ │ │ ├── threads_insert_delayed.result │ │ │ ├── threads_mysql.result │ │ │ ├── trigger_table_io.result │ │ │ ├── unary_digest.result │ │ │ ├── update_order-3837.result │ │ │ └── view_table_io.result │ │ └── t │ │ │ ├── all_tests.test │ │ │ ├── bad_option_1.test │ │ │ ├── bad_option_2.test │ │ │ ├── bad_option_3.test │ │ │ ├── bad_option_4.test │ │ │ ├── bad_option_5.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 │ │ │ ├── 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_thread_by_event_name.test │ │ │ ├── ddl_esms_by_user_by_event_name.test │ │ │ ├── ddl_esms_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_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_host_cache.test │ │ │ ├── ddl_hosts.test │ │ │ ├── ddl_mutex_instances.test │ │ │ ├── ddl_os_global_by_type.test │ │ │ ├── ddl_performance_timers.test │ │ │ ├── ddl_rwlock_instances.test │ │ │ ├── ddl_session_account_connect_attrs.test │ │ │ ├── ddl_session_connect_attrs.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_threads.test │ │ │ ├── ddl_tiws_by_index_usage.test │ │ │ ├── ddl_tiws_by_table.test │ │ │ ├── ddl_tlws_by_table.test │ │ │ ├── ddl_users.test │ │ │ ├── digest_null_literal.test │ │ │ ├── digest_table_full-master.opt │ │ │ ├── digest_table_full.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_thread_by_event_name.test │ │ │ ├── dml_esms_by_user_by_event_name.test │ │ │ ├── dml_esms_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_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_handler.test │ │ │ ├── dml_host_cache.test │ │ │ ├── dml_hosts.test │ │ │ ├── dml_mutex_instances.test │ │ │ ├── dml_os_global_by_type.test │ │ │ ├── dml_performance_timers.test │ │ │ ├── dml_rwlock_instances.test │ │ │ ├── dml_session_account_connect_attrs.test │ │ │ ├── dml_session_connect_attrs.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_threads.test │ │ │ ├── dml_tiws_by_index_usage.test │ │ │ ├── dml_tiws_by_table.test │ │ │ ├── dml_tlws_by_table.test │ │ │ ├── dml_users.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 │ │ │ ├── func_file_io.test │ │ │ ├── func_mutex.test │ │ │ ├── global_read_lock.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_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_table_io.test │ │ │ ├── memory_table_io.test │ │ │ ├── merge_table_io.test │ │ │ ├── misc.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.test │ │ │ ├── pfs_upgrade_func.test │ │ │ ├── pfs_upgrade_proc.test │ │ │ ├── pfs_upgrade_table.test │ │ │ ├── pfs_upgrade_view.test │ │ │ ├── pool_of_threads-master.opt │ │ │ ├── privilege.test │ │ │ ├── privilege_table_io.test │ │ │ ├── query_cache-master.opt │ │ │ ├── query_cache.test │ │ │ ├── read_only.test │ │ │ ├── relaylog.test │ │ │ ├── rollback_table_io.test │ │ │ ├── rpl_gtid_func.test │ │ │ ├── rpl_statements.test │ │ │ ├── schema.test │ │ │ ├── selects-master.opt │ │ │ ├── selects.test │ │ │ ├── server_init.test │ │ │ ├── setup_actors.test │ │ │ ├── setup_consumers_defaults-master.opt │ │ │ ├── setup_consumers_defaults.test │ │ │ ├── setup_instruments_defaults-master.opt │ │ │ ├── setup_instruments_defaults.test │ │ │ ├── setup_objects.test │ │ │ ├── short_option_1-master.opt │ │ │ ├── short_option_1.test │ │ │ ├── short_option_2-master.opt │ │ │ ├── short_option_2.test │ │ │ ├── sizing_default.cnf │ │ │ ├── sizing_default.test │ │ │ ├── sizing_growth-master.opt │ │ │ ├── sizing_growth.test │ │ │ ├── sizing_high.cnf │ │ │ ├── sizing_high.test │ │ │ ├── sizing_low.cnf │ │ │ ├── sizing_low.test │ │ │ ├── sizing_med.cnf │ │ │ ├── sizing_med.test │ │ │ ├── sizing_off.cnf │ │ │ ├── sizing_off.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-master.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_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_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_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_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_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_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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── threads_innodb.test │ │ │ ├── threads_insert_delayed.test │ │ │ ├── threads_mysql-master.opt │ │ │ ├── threads_mysql.test │ │ │ ├── trigger_table_io.test │ │ │ ├── unary_digest.test │ │ │ ├── update_order-3837.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 │ ├── plugins │ │ ├── r │ │ │ ├── audit_null.result │ │ │ ├── audit_null_debug.result │ │ │ ├── auth_ed25519.result │ │ │ ├── auth_v0100.result │ │ │ ├── binlog-simple_plugin_check.result │ │ │ ├── cassandra.result │ │ │ ├── cassandra_qcache.result │ │ │ ├── cassandra_reinstall.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 │ │ │ ├── pam.result │ │ │ ├── pam_cleartext.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 │ │ │ ├── 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 │ │ │ ├── cassandra.opt │ │ │ ├── cassandra.test │ │ │ ├── cassandra_qcache.opt │ │ │ ├── cassandra_qcache.test │ │ │ ├── cassandra_reinstall.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 │ │ │ ├── pam.test │ │ │ ├── pam_cleartext.opt │ │ │ ├── pam_cleartext.test │ │ │ ├── pam_init.inc │ │ │ ├── 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 │ │ │ ├── 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.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_user-5176.result │ │ ├── drop_current_user-5176.test │ │ ├── drop_routines.result │ │ ├── drop_routines.test │ │ ├── flush_roles-12366.result │ │ ├── flush_roles-12366.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_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.inc │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.inc │ │ │ ├── rpl_partition.inc │ │ │ ├── rpl_partition.test │ │ │ ├── rpl_record_compare.test │ │ │ ├── rpl_relayrotate.inc │ │ │ ├── rpl_relayrotate.test │ │ │ ├── rpl_reset_slave.test │ │ │ ├── rpl_row_001.test │ │ │ ├── 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_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_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 │ │ │ └── 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 │ │ │ ├── ignore_table_autoinc-9737.result │ │ │ ├── kill_hard-6290.result │ │ │ ├── last_insert_id.result │ │ │ ├── myisam_external_lock.result │ │ │ ├── mysql-wsrep#110-2.result │ │ │ ├── parallel_conflicts.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_errors.result │ │ │ ├── rpl_binlog_grant.result │ │ │ ├── rpl_binlog_index.result │ │ │ ├── rpl_bit.result │ │ │ ├── rpl_bit_npk.result │ │ │ ├── rpl_blackhole.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_charset.result │ │ │ ├── rpl_charset_sjis.result │ │ │ ├── rpl_checksum.result │ │ │ ├── rpl_checksum_cache.result │ │ │ ├── rpl_circular_for_4_hosts.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_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_view.result │ │ │ ├── rpl_dual_pos_advance.result │ │ │ ├── rpl_empty_master_host.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_failed_optimize.result │ │ │ ├── rpl_filter_dbs_dynamic.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_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_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_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_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_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_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_optimize.result │ │ │ ├── rpl_packet.result │ │ │ ├── rpl_parallel.result │ │ │ ├── rpl_parallel2.result │ │ │ ├── rpl_parallel_charset.result │ │ │ ├── rpl_parallel_conflicts.result │ │ │ ├── rpl_parallel_mdev6589.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_partition.result │ │ │ ├── rpl_parallel_retry.result │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.result │ │ │ ├── rpl_parallel_temptable.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_plugin_load.result │ │ │ ├── rpl_ps.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_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_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_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_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_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_unsafe_funcs.result │ │ │ ├── rpl_row_until.result │ │ │ ├── rpl_row_utf16.result │ │ │ ├── rpl_row_utf32.result │ │ │ ├── rpl_row_view01.result │ │ │ ├── rpl_row_wide_table.result │ │ │ ├── rpl_savepoint.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_master_shutdown.result │ │ │ ├── rpl_semi_sync_skip_repl.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.test │ │ │ ├── rpl_set_statement_default_master.result │ │ │ ├── rpl_show_slave_hosts.result │ │ │ ├── rpl_show_slave_running.result │ │ │ ├── rpl_skip_error.result │ │ │ ├── rpl_skip_incident.result │ │ │ ├── rpl_skip_replication.result │ │ │ ├── rpl_slave_grp_exec.result │ │ │ ├── rpl_slave_load_in.result │ │ │ ├── rpl_slave_load_remove_tmpfile.result │ │ │ ├── rpl_slave_load_tmpdir_not_exist.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_temporary.result │ │ │ ├── rpl_temporary_error2.result │ │ │ ├── rpl_temporary_errors.result │ │ │ ├── rpl_test_framework.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 │ │ │ ├── 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 │ │ │ ├── ignore_table_autoinc-9737.test │ │ │ ├── kill_hard-6290.test │ │ │ ├── last_insert_id.cnf │ │ │ ├── last_insert_id.test │ │ │ ├── myisam_external_lock-slave.opt │ │ │ ├── myisam_external_lock.test │ │ │ ├── mysql-wsrep#110-2.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_errors-master.opt │ │ │ ├── rpl_binlog_errors.test │ │ │ ├── rpl_binlog_grant.test │ │ │ ├── rpl_binlog_index.test │ │ │ ├── rpl_bit.test │ │ │ ├── rpl_bit_npk.test │ │ │ ├── rpl_blackhole.test │ │ │ ├── rpl_bug26395.test │ │ │ ├── rpl_bug31076.test │ │ │ ├── rpl_bug33931.test │ │ │ ├── rpl_bug37426.test │ │ │ ├── rpl_bug38694-slave.opt │ │ │ ├── rpl_bug38694.test │ │ │ ├── rpl_bug41902-slave.opt │ │ │ ├── rpl_bug41902.test │ │ │ ├── rpl_cant_read_event_incident.test │ │ │ ├── rpl_change_master.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_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_tmp_table_if_not_exists.test │ │ │ ├── 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_view.test │ │ │ ├── rpl_dual_pos_advance.test │ │ │ ├── rpl_empty_master_host.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_failed_optimize.test │ │ │ ├── rpl_filter_dbs_dynamic.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_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_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_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_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_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_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_optimize.test │ │ │ ├── rpl_packet-master.opt │ │ │ ├── rpl_packet-slave.opt │ │ │ ├── rpl_packet.test │ │ │ ├── rpl_parallel.test │ │ │ ├── rpl_parallel2.test │ │ │ ├── rpl_parallel_charset.test │ │ │ ├── rpl_parallel_conflicts-slave.opt │ │ │ ├── rpl_parallel_conflicts.test │ │ │ ├── rpl_parallel_mdev6589.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_partition.test │ │ │ ├── rpl_parallel_retry.test │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.test │ │ │ ├── rpl_parallel_temptable-master.opt │ │ │ ├── rpl_parallel_temptable.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_plugin_load.test │ │ │ ├── rpl_ps.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_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_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_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_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_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_unsafe_funcs.test │ │ │ ├── rpl_row_until.test │ │ │ ├── rpl_row_utf16.test │ │ │ ├── rpl_row_utf32.test │ │ │ ├── rpl_row_view01.test │ │ │ ├── rpl_row_wide_table.test │ │ │ ├── rpl_savepoint.test │ │ │ ├── rpl_semi_sync.test │ │ │ ├── rpl_semi_sync_after_sync.test │ │ │ ├── rpl_semi_sync_after_sync_row.test │ │ │ ├── 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_master_shutdown.test │ │ │ ├── rpl_semi_sync_skip_repl.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_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_grp_exec.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_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-slave.opt │ │ │ ├── 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_temporary.test │ │ │ ├── rpl_temporary_error2.test │ │ │ ├── rpl_temporary_errors-slave.opt │ │ │ ├── rpl_temporary_errors.test │ │ │ ├── rpl_test_framework.cnf │ │ │ ├── rpl_test_framework.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 │ │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── se-innodb.out │ │ ├── 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 │ │ └── t │ │ │ ├── ddl_archive.test │ │ │ ├── ddl_csv.test │ │ │ ├── ddl_innodb.test │ │ │ ├── ddl_memory.test │ │ │ ├── ddl_myisam.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 │ │ │ ├── sysvars_server.inc │ │ │ └── sysvars_server.opt │ │ ├── r │ │ │ ├── all_vars.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.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_cache_size_basic.result │ │ │ ├── binlog_checksum_basic.result │ │ │ ├── binlog_commit_wait_count_basic.result │ │ │ ├── binlog_commit_wait_usec_basic.result │ │ │ ├── binlog_direct_non_transactional_updates_basic.result │ │ │ ├── binlog_format_basic.result │ │ │ ├── binlog_optimize_thread_scheduling_basic.result │ │ │ ├── binlog_row_image_basic.result │ │ │ ├── binlog_stmt_cache_size_basic.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── explicit_defaults_for_timestamp_basic.result │ │ │ ├── explicit_defaults_for_timestamp_off.result │ │ │ ├── explicit_defaults_for_timestamp_on.result │ │ │ ├── external_user_basic.result │ │ │ ├── extra_max_connections_basic.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_current_pos_basic.result │ │ │ ├── gtid_domain_id_basic.result │ │ │ ├── gtid_ignore_duplicates_basic.result │ │ │ ├── gtid_seq_no_basic.result │ │ │ ├── gtid_slave_pos_basic.result │ │ │ ├── gtid_strict_mode_basic.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_file_basic.result │ │ │ ├── init_slave_basic.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_adaptive_max_sleep_delay_basic.result │ │ │ ├── innodb_autoextend_increment_basic.result │ │ │ ├── innodb_autoinc_lock_mode_basic.result │ │ │ ├── innodb_autoinc_lock_mode_func.result │ │ │ ├── innodb_background_scrub_data_check_interval_basic.result │ │ │ ├── innodb_background_scrub_data_compressed_basic.result │ │ │ ├── innodb_background_scrub_data_interval_basic.result │ │ │ ├── innodb_background_scrub_data_uncompressed_basic.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_instances_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_checksums_basic.result │ │ │ ├── innodb_cmp_per_index_enabled_basic.result │ │ │ ├── innodb_commit_concurrency_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_concurrency_tickets_basic.result │ │ │ ├── innodb_data_file_path_basic.result │ │ │ ├── innodb_data_home_dir_basic.result │ │ │ ├── innodb_deadlock_detect_basic.result │ │ │ ├── innodb_debug_force_scrubbing_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_background_merge_basic.result │ │ │ ├── innodb_disable_resize_buffer_pool_debug_basic.result │ │ │ ├── innodb_disable_sort_file_cache_basic.result │ │ │ ├── innodb_disallow_writes_basic.result │ │ │ ├── innodb_doublewrite_basic.result │ │ │ ├── innodb_doublewrite_batch_size_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_load_corrupted_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_32.result │ │ │ ├── innodb_ft_result_cache_limit_64.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_idle_flush_pct_basic.result │ │ │ ├── innodb_immediate_scrub_data_uncompressed_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_locks_unsafe_for_binlog_basic.result │ │ │ ├── innodb_log_buffer_size_basic.result │ │ │ ├── innodb_log_checkpoint_now_basic.result │ │ │ ├── innodb_log_checksums_basic.result │ │ │ ├── innodb_log_compressed_pages_basic.result │ │ │ ├── innodb_log_file_size_basic.result │ │ │ ├── innodb_log_files_in_group_basic.result │ │ │ ├── innodb_log_group_home_dir_basic.result │ │ │ ├── innodb_log_optimize_ddl_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_cleaners_basic.result │ │ │ ├── innodb_page_hash_locks_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_replication_delay_basic.result │ │ │ ├── innodb_rollback_on_timeout_basic.result │ │ │ ├── innodb_rollback_segments_basic.result │ │ │ ├── innodb_saved_page_number_debug_basic.result │ │ │ ├── innodb_scrub_log_basic.result │ │ │ ├── innodb_scrub_log_speed_basic.result │ │ │ ├── innodb_simulate_comp_failures_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_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_array_size_basic.result │ │ │ ├── innodb_sync_debug_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_thread_concurrency_basic.result │ │ │ ├── innodb_thread_sleep_delay_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_logs_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_index_basic.result │ │ │ ├── log_bin_trust_function_creators_basic.result │ │ │ ├── log_bin_trust_function_creators_func.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 │ │ │ ├── max_allowed_packet_basic.result │ │ │ ├── max_allowed_packet_func.result │ │ │ ├── max_binlog_cache_size_basic.result │ │ │ ├── max_binlog_cache_size_func.result │ │ │ ├── max_binlog_size_basic.result │ │ │ ├── max_binlog_stmt_cache_size_basic.result │ │ │ ├── max_connect_errors_basic.result │ │ │ ├── max_connections_basic.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_long_data_size_basic.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_basic.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 │ │ │ ├── multi_range_count_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 │ │ │ ├── profiling_basic.result │ │ │ ├── profiling_history_size_basic.result │ │ │ ├── progress_report_time_basic.result │ │ │ ├── protocol_version_basic.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_buffer_size_basic.result │ │ │ ├── read_only_basic.result │ │ │ ├── read_only_func.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_recovery_basic.result │ │ │ ├── relay_log_space_limit_basic.result │ │ │ ├── replicate_annotate_row_events_basic.result │ │ │ ├── replicate_do_db_basic.result │ │ │ ├── replicate_do_table_basic.result │ │ │ ├── replicate_events_marked_for_skip_basic.result │ │ │ ├── replicate_ignore_db_basic.result │ │ │ ├── replicate_ignore_table_basic.result │ │ │ ├── replicate_wild_do_table_basic.result │ │ │ ├── replicate_wild_ignore_table_basic.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_timeout_basic.result │ │ │ ├── rpl_semi_sync_master_trace_level_basic.result │ │ │ ├── rpl_semi_sync_master_wait_no_slave_basic.result │ │ │ ├── rpl_semi_sync_master_wait_point_basic.result │ │ │ ├── rpl_semi_sync_slave_enabled_basic.result │ │ │ ├── rpl_semi_sync_slave_trace_level_basic.result │ │ │ ├── secure_auth_basic.result │ │ │ ├── secure_auth_func.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 │ │ │ ├── session_track_system_variables_basic.result │ │ │ ├── shared_memory_base_name_basic.result │ │ │ ├── shared_memory_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_ddl_exec_mode_basic.result │ │ │ ├── slave_domain_parallel_threads_basic.result │ │ │ ├── slave_exec_mode_basic.result │ │ │ ├── slave_load_tmpdir_basic.result │ │ │ ├── slave_max_allowed_packet_basic.result │ │ │ ├── slave_net_timeout_basic.result │ │ │ ├── slave_parallel_max_queued_basic.result │ │ │ ├── slave_parallel_mode_basic.result │ │ │ ├── slave_parallel_threads_basic.result │ │ │ ├── slave_skip_errors_basic.result │ │ │ ├── slave_sql_verify_checksum_basic.result │ │ │ ├── slave_transaction_retries_basic.result │ │ │ ├── slave_transaction_retry_errors.result │ │ │ ├── slave_transaction_retry_interval_basic.result │ │ │ ├── slave_type_conversions_basic.result │ │ │ ├── slow_launch_time_basic.result │ │ │ ├── slow_launch_time_func.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_big_tables_basic.result │ │ │ ├── sql_big_tables_func.result │ │ │ ├── sql_buffer_result_basic.result │ │ │ ├── sql_buffer_result_func.result │ │ │ ├── sql_log_bin_basic.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.result │ │ │ ├── sync_binlog_basic.result │ │ │ ├── sync_frm_basic.result │ │ │ ├── sync_master_info_basic.result │ │ │ ├── sync_relay_log_basic.result │ │ │ ├── sync_relay_log_info_basic.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.result │ │ │ ├── sysvars_wsrep,32bit.rdiff │ │ │ ├── sysvars_wsrep.result │ │ │ ├── table_definition_cache_basic.result │ │ │ ├── table_open_cache_basic.result │ │ │ ├── tcp_keepalive_time.result │ │ │ ├── thread_cache_size_basic.result │ │ │ ├── thread_cache_size_func.result │ │ │ ├── thread_concurrency_basic.result │ │ │ ├── thread_handling_basic.result │ │ │ ├── thread_pool_idle_timeout_basic.result │ │ │ ├── thread_pool_max_threads_basic.result │ │ │ ├── thread_pool_min_threads_basic.result │ │ │ ├── thread_pool_oversubscribe_basic.result │ │ │ ├── thread_pool_size_basic.result │ │ │ ├── thread_pool_size_high.result │ │ │ ├── thread_pool_stall_limit_basic.result │ │ │ ├── thread_stack_basic.result │ │ │ ├── time_format_basic.result │ │ │ ├── time_zone_basic.result │ │ │ ├── time_zone_func.result │ │ │ ├── timed_mutexes_basic.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 │ │ │ ├── tmp_memory_table_size_basic.result │ │ │ ├── tmp_table_size_basic.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_notify_cmd_basic.result │ │ │ ├── wsrep_on_basic.result │ │ │ ├── wsrep_osu_method_basic.result │ │ │ ├── wsrep_provider_basic.result │ │ │ ├── wsrep_provider_options_basic.result │ │ │ ├── wsrep_recover_basic.result │ │ │ ├── wsrep_replicate_myisam_basic.result │ │ │ ├── wsrep_restart_slave_basic.result │ │ │ ├── wsrep_retry_autocommit_basic.result │ │ │ ├── wsrep_slave_fk_checks_basic.result │ │ │ ├── wsrep_slave_threads_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_start_position_basic.result │ │ │ └── wsrep_sync_wait_basic.result │ │ └── t │ │ │ ├── all_vars-master.opt │ │ │ ├── all_vars.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_cache_size_basic.test │ │ │ ├── binlog_checksum_basic.test │ │ │ ├── binlog_commit_wait_count_basic.test │ │ │ ├── binlog_commit_wait_usec_basic.test │ │ │ ├── binlog_direct_non_transactional_updates_basic.test │ │ │ ├── binlog_format_basic.test │ │ │ ├── binlog_optimize_thread_scheduling_basic.test │ │ │ ├── binlog_row_image_basic.test │ │ │ ├── binlog_stmt_cache_size_basic.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── explicit_defaults_for_timestamp_basic.test │ │ │ ├── explicit_defaults_for_timestamp_off.test │ │ │ ├── explicit_defaults_for_timestamp_on-master.opt │ │ │ ├── explicit_defaults_for_timestamp_on.test │ │ │ ├── external_user_basic.test │ │ │ ├── extra_max_connections_basic.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_current_pos_basic.test │ │ │ ├── gtid_domain_id_basic.test │ │ │ ├── gtid_ignore_duplicates_basic.test │ │ │ ├── gtid_seq_no_basic.test │ │ │ ├── gtid_slave_pos_basic.test │ │ │ ├── gtid_strict_mode_basic.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_file_basic.test │ │ │ ├── init_slave_basic.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_adaptive_max_sleep_delay_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_background_scrub_data_check_interval_basic.test │ │ │ ├── innodb_background_scrub_data_compressed_basic.test │ │ │ ├── innodb_background_scrub_data_interval_basic.test │ │ │ ├── innodb_background_scrub_data_uncompressed_basic.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_instances_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_checksums_basic.test │ │ │ ├── innodb_cmp_per_index_enabled_basic.test │ │ │ ├── innodb_commit_concurrency_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_concurrency_tickets_basic.test │ │ │ ├── innodb_data_file_path_basic.test │ │ │ ├── innodb_data_home_dir_basic.test │ │ │ ├── innodb_deadlock_detect_basic.test │ │ │ ├── innodb_debug_force_scrubbing_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_background_merge_basic.test │ │ │ ├── innodb_disable_resize_buffer_pool_debug_basic.test │ │ │ ├── innodb_disable_sort_file_cache_basic.test │ │ │ ├── innodb_disallow_writes_basic.test │ │ │ ├── innodb_doublewrite_basic.test │ │ │ ├── innodb_doublewrite_batch_size_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_load_corrupted_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_32.test │ │ │ ├── innodb_ft_result_cache_limit_64.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_idle_flush_pct_basic.test │ │ │ ├── innodb_immediate_scrub_data_uncompressed_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_locks_unsafe_for_binlog_basic.test │ │ │ ├── innodb_log_buffer_size_basic.test │ │ │ ├── innodb_log_checkpoint_now_basic.test │ │ │ ├── innodb_log_checksums_basic.test │ │ │ ├── innodb_log_compressed_pages_basic.test │ │ │ ├── innodb_log_file_size_basic.test │ │ │ ├── innodb_log_files_in_group_basic.test │ │ │ ├── innodb_log_group_home_dir_basic.test │ │ │ ├── innodb_log_optimize_ddl_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_cleaners_basic.test │ │ │ ├── innodb_page_hash_locks_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.test │ │ │ ├── innodb_read_only_basic.test │ │ │ ├── innodb_replication_delay_basic.test │ │ │ ├── innodb_rollback_on_timeout_basic.test │ │ │ ├── innodb_rollback_segments_basic.test │ │ │ ├── innodb_saved_page_number_debug_basic.test │ │ │ ├── innodb_scrub_log_basic.test │ │ │ ├── innodb_scrub_log_speed_basic.test │ │ │ ├── innodb_simulate_comp_failures_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_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_array_size_basic.test │ │ │ ├── innodb_sync_debug_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_thread_concurrency_basic.test │ │ │ ├── innodb_thread_sleep_delay_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_logs_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.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_index_basic.test │ │ │ ├── log_bin_trust_function_creators_basic.test │ │ │ ├── log_bin_trust_function_creators_func.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 │ │ │ ├── max_allowed_packet_basic.test │ │ │ ├── max_allowed_packet_func.test │ │ │ ├── max_binlog_cache_size_basic.test │ │ │ ├── max_binlog_size_basic.test │ │ │ ├── max_binlog_stmt_cache_size_basic.test │ │ │ ├── max_connect_errors_basic.test │ │ │ ├── max_connections_basic.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_long_data_size_basic.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_basic.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 │ │ │ ├── multi_range_count_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.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 │ │ │ ├── profiling_basic.test │ │ │ ├── profiling_history_size_basic.test │ │ │ ├── progress_report_time_basic.test │ │ │ ├── protocol_version_basic.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_buffer_size_basic.test │ │ │ ├── read_only_basic.test │ │ │ ├── read_only_func.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_recovery_basic.test │ │ │ ├── relay_log_space_limit_basic.test │ │ │ ├── replicate_annotate_row_events_basic.test │ │ │ ├── replicate_do_db_basic.test │ │ │ ├── replicate_do_table_basic.test │ │ │ ├── replicate_events_marked_for_skip_basic.test │ │ │ ├── replicate_ignore_db_basic.test │ │ │ ├── replicate_ignore_table_basic.test │ │ │ ├── replicate_wild_do_table_basic.test │ │ │ ├── replicate_wild_ignore_table_basic.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_timeout_basic.test │ │ │ ├── rpl_semi_sync_master_trace_level_basic.test │ │ │ ├── rpl_semi_sync_master_wait_no_slave_basic.test │ │ │ ├── rpl_semi_sync_master_wait_point_basic.test │ │ │ ├── rpl_semi_sync_slave_enabled_basic.test │ │ │ ├── rpl_semi_sync_slave_trace_level_basic.test │ │ │ ├── secure_auth_basic.test │ │ │ ├── secure_auth_func-master.opt │ │ │ ├── secure_auth_func.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 │ │ │ ├── session_track_system_variables_basic.test │ │ │ ├── shared_memory_base_name_basic.test │ │ │ ├── shared_memory_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_ddl_exec_mode_basic.test │ │ │ ├── slave_domain_parallel_threads_basic.test │ │ │ ├── slave_exec_mode_basic.test │ │ │ ├── slave_load_tmpdir_basic.test │ │ │ ├── slave_max_allowed_packet_basic.test │ │ │ ├── slave_net_timeout_basic.test │ │ │ ├── slave_parallel_max_queued_basic.test │ │ │ ├── slave_parallel_mode_basic-master.opt │ │ │ ├── slave_parallel_mode_basic.test │ │ │ ├── slave_parallel_threads_basic.cnf │ │ │ ├── slave_parallel_threads_basic.test │ │ │ ├── slave_skip_errors_basic.test │ │ │ ├── slave_sql_verify_checksum_basic.test │ │ │ ├── slave_transaction_retries_basic.test │ │ │ ├── slave_transaction_retry_errors-master.opt │ │ │ ├── slave_transaction_retry_errors.test │ │ │ ├── slave_transaction_retry_interval_basic.test │ │ │ ├── slave_type_conversions_basic.test │ │ │ ├── slow_launch_time_basic.test │ │ │ ├── slow_launch_time_func-master.opt │ │ │ ├── slow_launch_time_func.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_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_frm_basic.test │ │ │ ├── sync_master_info_basic.test │ │ │ ├── sync_relay_log_basic.test │ │ │ ├── sync_relay_log_info_basic.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.opt │ │ │ ├── sysvars_server_embedded.test │ │ │ ├── sysvars_server_notembedded.opt │ │ │ ├── sysvars_server_notembedded.test │ │ │ ├── sysvars_wsrep.test │ │ │ ├── table_definition_cache_basic.test │ │ │ ├── table_open_cache_basic.test │ │ │ ├── tcp_keepalive_time.test │ │ │ ├── thread_cache_size_basic-master.opt │ │ │ ├── thread_cache_size_basic.test │ │ │ ├── thread_cache_size_func-master.opt │ │ │ ├── thread_cache_size_func.test │ │ │ ├── thread_concurrency_basic.test │ │ │ ├── thread_handling_basic.test │ │ │ ├── thread_pool_idle_timeout_basic.test │ │ │ ├── thread_pool_max_threads_basic.test │ │ │ ├── thread_pool_min_threads_basic.test │ │ │ ├── thread_pool_oversubscribe_basic.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_stack_basic.test │ │ │ ├── time_format_basic.test │ │ │ ├── time_zone_basic.test │ │ │ ├── time_zone_func.test │ │ │ ├── timed_mutexes_basic.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 │ │ │ ├── tmp_memory_table_size_basic.test │ │ │ ├── tmp_table_size_basic.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_notify_cmd_basic.test │ │ │ ├── wsrep_on_basic.opt │ │ │ ├── wsrep_on_basic.test │ │ │ ├── wsrep_osu_method_basic.test │ │ │ ├── wsrep_provider_basic.test │ │ │ ├── wsrep_provider_options_basic.test │ │ │ ├── wsrep_recover_basic.test │ │ │ ├── wsrep_replicate_myisam_basic.test │ │ │ ├── wsrep_restart_slave_basic.test │ │ │ ├── wsrep_retry_autocommit_basic.test │ │ │ ├── wsrep_slave_fk_checks_basic.test │ │ │ ├── wsrep_slave_threads_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_start_position_basic.test │ │ │ └── wsrep_sync_wait_basic.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_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.test │ │ │ ├── vcol_keys_myisam.test │ │ │ ├── vcol_memory.test │ │ │ ├── vcol_merge.test │ │ │ ├── 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_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 │ │ ├── r │ │ │ ├── alter.result │ │ │ ├── auto_increment.result │ │ │ ├── commit_id.result │ │ │ ├── create.result │ │ │ ├── cte.result │ │ │ ├── debug.result │ │ │ ├── delete.result │ │ │ ├── derived.result │ │ │ ├── foreign.result │ │ │ ├── insert.result │ │ │ ├── insert2.result │ │ │ ├── load_data.result │ │ │ ├── online.result │ │ │ ├── optimized.result │ │ │ ├── partition.result │ │ │ ├── partition_rotation.result │ │ │ ├── replace.result │ │ │ ├── rpl.result │ │ │ ├── rpl_mix.result │ │ │ ├── select.result │ │ │ ├── select2,trx_id.rdiff │ │ │ ├── select2.result │ │ │ ├── simple.result │ │ │ ├── sysvars.result │ │ │ ├── truncate.result │ │ │ ├── truncate_privilege.result │ │ │ ├── trx_id.result │ │ │ ├── update,trx_id.rdiff │ │ │ ├── update.result │ │ │ ├── update2.result │ │ │ └── view.result │ │ ├── t │ │ │ ├── alter.test │ │ │ ├── auto_increment.test │ │ │ ├── commit_id.test │ │ │ ├── create.test │ │ │ ├── cte.test │ │ │ ├── debug.test │ │ │ ├── delete.test │ │ │ ├── derived.test │ │ │ ├── engines.combinations │ │ │ ├── foreign.combinations │ │ │ ├── foreign.test │ │ │ ├── insert.test │ │ │ ├── insert2.test │ │ │ ├── load_data.test │ │ │ ├── online.test │ │ │ ├── optimized.test │ │ │ ├── partition.combinations │ │ │ ├── partition.test │ │ │ ├── partition_rotation.test │ │ │ ├── replace.test │ │ │ ├── rpl.test │ │ │ ├── rpl_mix.test │ │ │ ├── select.test │ │ │ ├── select2.test │ │ │ ├── simple.test │ │ │ ├── sysvars.test │ │ │ ├── truncate.test │ │ │ ├── truncate_privilege.test │ │ │ ├── trx_id.opt │ │ │ ├── trx_id.test │ │ │ ├── update.test │ │ │ ├── update2.test │ │ │ └── view.test │ │ └── wait_system_clock.inc │ └── wsrep │ │ ├── README │ │ ├── disabled.def │ │ ├── include │ │ └── check_galera_version.inc │ │ ├── my.cnf │ │ ├── r │ │ ├── alter_table_innodb.result │ │ ├── binlog_format.result │ │ ├── foreign_key.result │ │ ├── mdev_10186.result │ │ ├── mdev_6832.result │ │ ├── mdev_7798.result │ │ ├── mysql_tzinfo_to_sql_symlink.result │ │ ├── plugin.result │ │ ├── pool_of_threads.result │ │ ├── trans.result │ │ ├── variables.result │ │ └── wsrep_rpl.result │ │ ├── suite.pm │ │ └── t │ │ ├── alter_table_innodb.opt │ │ ├── alter_table_innodb.test │ │ ├── binlog_format.opt │ │ ├── binlog_format.test │ │ ├── foreign_key.opt │ │ ├── foreign_key.test │ │ ├── mdev_10186.opt │ │ ├── mdev_10186.test │ │ ├── mdev_6832.opt │ │ ├── mdev_6832.test │ │ ├── mdev_7798.opt │ │ ├── mdev_7798.test │ │ ├── mysql_tzinfo_to_sql_symlink.test │ │ ├── plugin.test │ │ ├── pool_of_threads.opt │ │ ├── pool_of_threads.test │ │ ├── trans.test │ │ ├── variables.test │ │ ├── wsrep_rpl.cnf │ │ └── wsrep_rpl.test ├── unstable-tests └── valgrind.supp ├── mysys ├── CMakeLists.txt ├── ChangeLog ├── array.c ├── base64.c ├── charset-def.c ├── charset.c ├── checksum.c ├── errors.c ├── file_logger.c ├── get_password.c ├── guess_malloc_library.c ├── hash.c ├── lf_alloc-pin.c ├── lf_dynarray.c ├── lf_hash.c ├── 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_context.c ├── my_copy.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_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_timer_cycles.il ├── my_uuid.c ├── my_wincond.c ├── my_windac.c ├── my_winerr.c ├── my_winfile.c ├── my_winthread.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.ic ├── my_sha1.cc ├── my_sha224.cc ├── my_sha256.cc ├── my_sha384.cc ├── my_sha512.cc ├── openssl.c └── yassl.cc ├── pcre ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── HACKING ├── INSTALL ├── LICENCE ├── NEWS ├── NON-AUTOTOOLS-BUILD ├── NON-UNIX-USE ├── README ├── RunGrepTest ├── RunTest ├── RunTest.bat ├── cmake │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindEditline.cmake │ ├── FindPackageHandleStandardArgs.cmake │ └── FindReadline.cmake ├── config-cmake.h.in ├── configure.ac ├── doc │ ├── html │ │ ├── NON-AUTOTOOLS-BUILD.txt │ │ ├── README.txt │ │ ├── index.html │ │ ├── pcre-config.html │ │ ├── pcre.html │ │ ├── pcre16.html │ │ ├── pcre32.html │ │ ├── pcre_assign_jit_stack.html │ │ ├── pcre_compile.html │ │ ├── pcre_compile2.html │ │ ├── pcre_config.html │ │ ├── pcre_copy_named_substring.html │ │ ├── pcre_copy_substring.html │ │ ├── pcre_dfa_exec.html │ │ ├── pcre_exec.html │ │ ├── pcre_free_study.html │ │ ├── pcre_free_substring.html │ │ ├── pcre_free_substring_list.html │ │ ├── pcre_fullinfo.html │ │ ├── pcre_get_named_substring.html │ │ ├── pcre_get_stringnumber.html │ │ ├── pcre_get_stringtable_entries.html │ │ ├── pcre_get_substring.html │ │ ├── pcre_get_substring_list.html │ │ ├── pcre_jit_exec.html │ │ ├── pcre_jit_stack_alloc.html │ │ ├── pcre_jit_stack_free.html │ │ ├── pcre_maketables.html │ │ ├── pcre_pattern_to_host_byte_order.html │ │ ├── pcre_refcount.html │ │ ├── pcre_study.html │ │ ├── pcre_utf16_to_host_byte_order.html │ │ ├── pcre_utf32_to_host_byte_order.html │ │ ├── pcre_version.html │ │ ├── pcreapi.html │ │ ├── pcrebuild.html │ │ ├── pcrecallout.html │ │ ├── pcrecompat.html │ │ ├── pcrecpp.html │ │ ├── pcredemo.html │ │ ├── pcregrep.html │ │ ├── pcrejit.html │ │ ├── pcrelimits.html │ │ ├── pcrematching.html │ │ ├── pcrepartial.html │ │ ├── pcrepattern.html │ │ ├── pcreperform.html │ │ ├── pcreposix.html │ │ ├── pcreprecompile.html │ │ ├── pcresample.html │ │ ├── pcrestack.html │ │ ├── pcresyntax.html │ │ ├── pcretest.html │ │ └── pcreunicode.html │ ├── index.html.src │ ├── pcre-config.1 │ ├── pcre-config.txt │ ├── pcre.3 │ ├── pcre.txt │ ├── pcre16.3 │ ├── pcre32.3 │ ├── pcre_assign_jit_stack.3 │ ├── pcre_compile.3 │ ├── pcre_compile2.3 │ ├── pcre_config.3 │ ├── pcre_copy_named_substring.3 │ ├── pcre_copy_substring.3 │ ├── pcre_dfa_exec.3 │ ├── pcre_exec.3 │ ├── pcre_free_study.3 │ ├── pcre_free_substring.3 │ ├── pcre_free_substring_list.3 │ ├── pcre_fullinfo.3 │ ├── pcre_get_named_substring.3 │ ├── pcre_get_stringnumber.3 │ ├── pcre_get_stringtable_entries.3 │ ├── pcre_get_substring.3 │ ├── pcre_get_substring_list.3 │ ├── pcre_jit_exec.3 │ ├── pcre_jit_stack_alloc.3 │ ├── pcre_jit_stack_free.3 │ ├── pcre_maketables.3 │ ├── pcre_pattern_to_host_byte_order.3 │ ├── pcre_refcount.3 │ ├── pcre_study.3 │ ├── pcre_utf16_to_host_byte_order.3 │ ├── pcre_utf32_to_host_byte_order.3 │ ├── pcre_version.3 │ ├── pcreapi.3 │ ├── pcrebuild.3 │ ├── pcrecallout.3 │ ├── pcrecompat.3 │ ├── pcrecpp.3 │ ├── pcredemo.3 │ ├── pcregrep.1 │ ├── pcregrep.txt │ ├── pcrejit.3 │ ├── pcrelimits.3 │ ├── pcrematching.3 │ ├── pcrepartial.3 │ ├── pcrepattern.3 │ ├── pcreperform.3 │ ├── pcreposix.3 │ ├── pcreprecompile.3 │ ├── pcresample.3 │ ├── pcrestack.3 │ ├── pcresyntax.3 │ ├── pcretest.1 │ ├── pcretest.txt │ ├── pcreunicode.3 │ └── perltest.txt ├── pcre.h.in ├── pcre16_byte_order.c ├── pcre16_chartables.c ├── pcre16_compile.c ├── pcre16_config.c ├── pcre16_dfa_exec.c ├── pcre16_exec.c ├── pcre16_fullinfo.c ├── pcre16_get.c ├── pcre16_globals.c ├── pcre16_jit_compile.c ├── pcre16_maketables.c ├── pcre16_newline.c ├── pcre16_ord2utf16.c ├── pcre16_printint.c ├── pcre16_refcount.c ├── pcre16_string_utils.c ├── pcre16_study.c ├── pcre16_tables.c ├── pcre16_ucd.c ├── pcre16_utf16_utils.c ├── pcre16_valid_utf16.c ├── pcre16_version.c ├── pcre16_xclass.c ├── pcre32_byte_order.c ├── pcre32_chartables.c ├── pcre32_compile.c ├── pcre32_config.c ├── pcre32_dfa_exec.c ├── pcre32_exec.c ├── pcre32_fullinfo.c ├── pcre32_get.c ├── pcre32_globals.c ├── pcre32_jit_compile.c ├── pcre32_maketables.c ├── pcre32_newline.c ├── pcre32_ord2utf32.c ├── pcre32_printint.c ├── pcre32_refcount.c ├── pcre32_string_utils.c ├── pcre32_study.c ├── pcre32_tables.c ├── pcre32_ucd.c ├── pcre32_utf32_utils.c ├── pcre32_valid_utf32.c ├── pcre32_version.c ├── pcre32_xclass.c ├── pcre_byte_order.c ├── pcre_chartables.c.dist ├── pcre_compile.c ├── pcre_config.c ├── pcre_dfa_exec.c ├── pcre_exec.c ├── pcre_fullinfo.c ├── pcre_get.c ├── pcre_globals.c ├── pcre_grep_test.sh ├── pcre_internal.h ├── pcre_jit_compile.c ├── pcre_jit_test.c ├── pcre_maketables.c ├── pcre_newline.c ├── pcre_ord2utf8.c ├── pcre_printint.c ├── pcre_refcount.c ├── pcre_scanner.cc ├── pcre_scanner.h ├── pcre_scanner_unittest.cc ├── pcre_string_utils.c ├── pcre_stringpiece.cc ├── pcre_stringpiece.h.in ├── pcre_stringpiece_unittest.cc ├── pcre_study.c ├── pcre_tables.c ├── pcre_test.bat ├── pcre_test.sh ├── pcre_ucd.c ├── pcre_valid_utf8.c ├── pcre_version.c ├── pcre_xclass.c ├── pcrecpp.cc ├── pcrecpp.h ├── pcrecpp_internal.h ├── pcrecpp_unittest.cc ├── pcrecpparg.h.in ├── pcredemo.c ├── pcregrep.c ├── pcreposix.c ├── pcreposix.h ├── pcretest.c ├── testdata │ ├── grepbinary │ ├── grepfilelist │ ├── grepinput │ ├── grepinput3 │ ├── grepinput8 │ ├── grepinputv │ ├── grepinputx │ ├── greplist │ ├── grepoutput │ ├── grepoutput8 │ ├── grepoutputN │ ├── greppatN4 │ ├── saved16 │ ├── saved16BE-1 │ ├── saved16BE-2 │ ├── saved16LE-1 │ ├── saved16LE-2 │ ├── saved32 │ ├── saved32BE-1 │ ├── saved32BE-2 │ ├── saved32LE-1 │ ├── saved32LE-2 │ ├── saved8 │ ├── testinput1 │ ├── testinput10 │ ├── testinput11 │ ├── testinput12 │ ├── testinput13 │ ├── testinput14 │ ├── testinput15 │ ├── testinput16 │ ├── testinput17 │ ├── testinput18 │ ├── testinput19 │ ├── testinput2 │ ├── testinput20 │ ├── testinput21 │ ├── testinput22 │ ├── testinput23 │ ├── testinput24 │ ├── testinput25 │ ├── testinput26 │ ├── testinput3 │ ├── testinput4 │ ├── testinput5 │ ├── testinput6 │ ├── testinput7 │ ├── testinput8 │ ├── testinput9 │ ├── testinputEBC │ ├── testoutput1 │ ├── testoutput10 │ ├── testoutput11-16 │ ├── testoutput11-32 │ ├── testoutput11-8 │ ├── testoutput12 │ ├── testoutput13 │ ├── testoutput14 │ ├── testoutput15 │ ├── testoutput16 │ ├── testoutput17 │ ├── testoutput18-16 │ ├── testoutput18-32 │ ├── testoutput19 │ ├── testoutput2 │ ├── testoutput20 │ ├── testoutput21-16 │ ├── testoutput21-32 │ ├── testoutput22-16 │ ├── testoutput22-32 │ ├── testoutput23 │ ├── testoutput24 │ ├── testoutput25 │ ├── testoutput26 │ ├── testoutput3 │ ├── testoutput3A │ ├── testoutput3B │ ├── testoutput4 │ ├── testoutput5 │ ├── testoutput6 │ ├── testoutput7 │ ├── testoutput8 │ ├── testoutput9 │ ├── testoutputEBC │ ├── wintestinput3 │ └── wintestoutput3 └── ucp.h ├── 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 │ │ │ ├── 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 │ ├── mapper │ │ └── pam_user_map.c │ └── testing │ │ └── 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 │ │ ├── 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 ├── 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 │ ├── misc │ │ ├── microbench-hs.log │ │ └── microbench-my.log │ ├── perl-Net-HandlerSocket │ │ ├── COPYRIGHT.txt │ │ ├── Changes │ │ ├── HandlerSocket.xs │ │ ├── MANIFEST │ │ ├── Makefile.PL.in │ │ ├── Makefile.PL.installed │ │ ├── README │ │ ├── lib │ │ │ └── Net │ │ │ │ ├── HandlerSocket.pm │ │ │ │ └── HandlerSocket │ │ │ │ └── Pool.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 ├── 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 ├── 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.pl.in ├── 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 ├── mysql_to_mariadb.sql ├── mysqlaccess.conf ├── mysqlaccess.sh ├── mysqld_multi.sh ├── mysqld_safe.sh ├── mysqldumpslow.sh ├── mysqlhotcopy.sh ├── mytop.sh ├── wsrep_sst_common.sh ├── wsrep_sst_mariabackup.sh ├── wsrep_sst_mysqldump.sh ├── wsrep_sst_rsync.sh ├── wsrep_sst_xtrabackup-v2.sh └── wsrep_sst_xtrabackup.sh ├── 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 ├── mysql_async.c └── pack.c ├── sql ├── CMakeLists.txt ├── MSG00001.bin ├── add_errmsg ├── authors.h ├── bounded_queue.h ├── client_settings.h ├── compat56.cc ├── compat56.h ├── contributors.h ├── create_options.cc ├── create_options.h ├── custom_conf.h ├── datadict.cc ├── datadict.h ├── debug_sync.cc ├── debug_sync.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 ├── group_by_handler.cc ├── group_by_handler.h ├── gstream.cc ├── gstream.h ├── ha_partition.cc ├── ha_partition.h ├── ha_sequence.cc ├── ha_sequence.h ├── handler.cc ├── handler.h ├── hash_filo.cc ├── hash_filo.h ├── hostname.cc ├── hostname.h ├── init.cc ├── init.h ├── innodb_priv.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_inetfunc.cc ├── item_inetfunc.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 ├── 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_old.cc ├── log_event_old.h ├── 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 ├── mysql_install_db.cc ├── mysql_upgrade_service.cc ├── mysqld.cc ├── mysqld.h ├── mysqld_suffix.h ├── net_serv.cc ├── nt_servc.cc ├── nt_servc.h ├── 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 ├── parse_file.cc ├── parse_file.h ├── partition_element.h ├── partition_info.cc ├── partition_info.h ├── password.c ├── plistsort.c ├── 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 ├── 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 ├── scheduler.cc ├── scheduler.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 ├── 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_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_insert.cc ├── sql_insert.h ├── sql_join_cache.cc ├── sql_join_cache.h ├── sql_lex.cc ├── sql_lex.h ├── sql_lifo_buffer.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_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.ic ├── 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_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_int.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 ├── sql_yacc_ora.yy ├── strfunc.cc ├── strfunc.h ├── structs.h ├── sys_vars.cc ├── sys_vars.ic ├── sys_vars_shared.h ├── table.cc ├── table.h ├── table_cache.cc ├── table_cache.h ├── temporary_tables.cc ├── thr_malloc.cc ├── thr_malloc.h ├── threadpool.h ├── threadpool_common.cc ├── threadpool_generic.cc ├── threadpool_win.cc ├── transaction.cc ├── transaction.h ├── tzfile.h ├── tztime.cc ├── tztime.h ├── udf_example.c ├── udf_example.def ├── uniques.cc ├── uniques.h ├── unireg.cc ├── unireg.h ├── vers_string.h ├── vers_utils.h ├── winservice.c ├── winservice.h ├── wsrep_applier.cc ├── wsrep_applier.h ├── wsrep_binlog.cc ├── wsrep_binlog.h ├── wsrep_check_opts.cc ├── wsrep_dummy.cc ├── wsrep_hton.cc ├── wsrep_mysqld.cc ├── wsrep_mysqld.h ├── wsrep_notify.cc ├── wsrep_priv.h ├── wsrep_sst.cc ├── wsrep_sst.h ├── wsrep_thd.cc ├── wsrep_thd.h ├── wsrep_utils.cc ├── wsrep_utils.h ├── wsrep_var.cc ├── wsrep_var.h ├── wsrep_xid.cc └── wsrep_xid.h ├── 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 ├── cassandra │ ├── CMakeLists.txt │ ├── cassandra_se.cc │ ├── cassandra_se.h │ ├── gen-cpp │ │ ├── Cassandra.cpp │ │ ├── Cassandra.h │ │ ├── Cassandra_server.skeleton.cpp │ │ ├── cassandra_constants.cpp │ │ ├── cassandra_constants.h │ │ ├── cassandra_types.cpp │ │ └── cassandra_types.h │ ├── ha_cassandra.cc │ └── ha_cassandra.h ├── connect │ ├── .gitignore │ ├── ApacheInterface.java │ ├── CMakeLists.txt │ ├── Client.java │ ├── JavaWrappers.jar │ ├── JdbcInterface.java │ ├── MariadbInterface.java │ ├── Mongo2Interface.java │ ├── Mongo3Interface.java │ ├── MysqlInterface.java │ ├── OracleInterface.java │ ├── PostgresqlInterface.java │ ├── array.cpp │ ├── array.h │ ├── blkfil.cpp │ ├── blkfil.h │ ├── block.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 │ ├── frcas.h │ ├── frids.h │ ├── frmsg.h │ ├── frmsg1.h │ ├── frmsg2.h │ ├── 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 │ ├── 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_xml.result │ │ │ ├── alter_xml2.result │ │ │ ├── bin.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 │ │ │ ├── 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 │ │ │ ├── secure_file_priv.result │ │ │ ├── tbl.result │ │ │ ├── tbl_thread.result │ │ │ ├── temporary.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 │ │ │ ├── Testbal.dat │ │ │ ├── beers.xml │ │ │ ├── bib0.json │ │ │ ├── biblio.json │ │ │ ├── bios.json │ │ │ ├── bookstore.xml │ │ │ ├── boys.txt │ │ │ ├── boyswin.txt │ │ │ ├── cities.json │ │ │ ├── coffee.htm │ │ │ ├── contact.ini │ │ │ ├── contacts.xls │ │ │ ├── cp1251.xml │ │ │ ├── dept.dat │ │ │ ├── emp.txt │ │ │ ├── employee.dat │ │ │ ├── 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_xml.test │ │ │ ├── alter_xml2.test │ │ │ ├── bin.test │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── secure_file_priv-master.opt │ │ │ ├── secure_file_priv.test │ │ │ ├── tbl.test │ │ │ ├── tbl_thread.test │ │ │ ├── temporary.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 │ ├── 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 │ ├── 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 ├── 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 │ ├── TODO │ ├── federatedx_io.cc │ ├── federatedx_io_mysql.cc │ ├── federatedx_io_null.cc │ ├── federatedx_probes.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 │ ├── CMakeLists.txt │ ├── COPYING.Google │ ├── COPYING.Percona │ ├── btr │ │ ├── btr0btr.cc │ │ ├── btr0bulk.cc │ │ ├── btr0cur.cc │ │ ├── btr0defragment.cc │ │ ├── btr0pcur.cc │ │ ├── btr0scrub.cc │ │ └── btr0sea.cc │ ├── buf │ │ ├── buf0buddy.cc │ │ ├── buf0buf.cc │ │ ├── buf0checksum.cc │ │ ├── buf0dblwr.cc │ │ ├── buf0dump.cc │ │ ├── buf0flu.cc │ │ ├── buf0lru.cc │ │ └── buf0rea.cc │ ├── bzip2.cmake │ ├── compile-innodb │ ├── data │ │ ├── data0data.cc │ │ └── data0type.cc │ ├── dict │ │ ├── dict0boot.cc │ │ ├── dict0crea.cc │ │ ├── dict0defrag_bg.cc │ │ ├── dict0dict.cc │ │ ├── dict0load.cc │ │ ├── dict0mem.cc │ │ ├── dict0stats.cc │ │ └── dict0stats_bg.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 │ │ ├── ha0ha.cc │ │ ├── ha0storage.cc │ │ └── hash0hash.cc │ ├── handler │ │ ├── ha_innodb.cc │ │ ├── ha_innodb.h │ │ ├── handler0alter.cc │ │ ├── i_s.cc │ │ └── i_s.h │ ├── ibuf │ │ └── ibuf0ibuf.cc │ ├── include │ │ ├── btr0btr.h │ │ ├── btr0btr.ic │ │ ├── btr0bulk.h │ │ ├── btr0cur.h │ │ ├── btr0cur.ic │ │ ├── btr0defragment.h │ │ ├── btr0pcur.h │ │ ├── btr0pcur.ic │ │ ├── btr0scrub.h │ │ ├── btr0sea.h │ │ ├── btr0sea.ic │ │ ├── btr0types.h │ │ ├── buf0buddy.h │ │ ├── buf0buddy.ic │ │ ├── buf0buf.h │ │ ├── buf0buf.ic │ │ ├── buf0checksum.h │ │ ├── buf0dblwr.h │ │ ├── buf0dump.h │ │ ├── buf0flu.h │ │ ├── buf0flu.ic │ │ ├── buf0lru.h │ │ ├── buf0rea.h │ │ ├── buf0types.h │ │ ├── data0data.h │ │ ├── data0data.ic │ │ ├── data0type.h │ │ ├── data0type.ic │ │ ├── data0types.h │ │ ├── db0err.h │ │ ├── dict0boot.h │ │ ├── dict0boot.ic │ │ ├── dict0crea.h │ │ ├── dict0crea.ic │ │ ├── dict0defrag_bg.h │ │ ├── dict0dict.h │ │ ├── dict0dict.ic │ │ ├── dict0load.h │ │ ├── dict0mem.h │ │ ├── dict0mem.ic │ │ ├── dict0pagecompress.h │ │ ├── dict0pagecompress.ic │ │ ├── dict0priv.h │ │ ├── dict0priv.ic │ │ ├── dict0stats.h │ │ ├── dict0stats.ic │ │ ├── dict0stats_bg.h │ │ ├── dict0types.h │ │ ├── dyn0buf.h │ │ ├── dyn0types.h │ │ ├── eval0eval.h │ │ ├── eval0eval.ic │ │ ├── eval0proc.h │ │ ├── eval0proc.ic │ │ ├── fil0crypt.h │ │ ├── fil0crypt.ic │ │ ├── fil0fil.h │ │ ├── fil0fil.ic │ │ ├── fil0pagecompress.h │ │ ├── fsp0file.h │ │ ├── fsp0fsp.h │ │ ├── fsp0fsp.ic │ │ ├── fsp0pagecompress.h │ │ ├── fsp0pagecompress.ic │ │ ├── fsp0space.h │ │ ├── fsp0sysspace.h │ │ ├── fsp0types.h │ │ ├── fts0ast.h │ │ ├── fts0blex.h │ │ ├── fts0fts.h │ │ ├── fts0opt.h │ │ ├── fts0pars.h │ │ ├── fts0plugin.h │ │ ├── fts0priv.h │ │ ├── fts0priv.ic │ │ ├── fts0tlex.h │ │ ├── fts0tokenize.h │ │ ├── fts0types.h │ │ ├── fts0types.ic │ │ ├── fts0vlc.ic │ │ ├── fut0fut.h │ │ ├── fut0fut.ic │ │ ├── fut0lst.h │ │ ├── fut0lst.ic │ │ ├── gis0geo.h │ │ ├── gis0rtree.h │ │ ├── gis0rtree.ic │ │ ├── gis0type.h │ │ ├── ha0ha.h │ │ ├── ha0ha.ic │ │ ├── ha0storage.h │ │ ├── ha0storage.ic │ │ ├── ha_prototypes.h │ │ ├── handler0alter.h │ │ ├── hash0hash.h │ │ ├── hash0hash.ic │ │ ├── ib0mutex.h │ │ ├── ibuf0ibuf.h │ │ ├── ibuf0ibuf.ic │ │ ├── ibuf0types.h │ │ ├── lock0iter.h │ │ ├── lock0lock.h │ │ ├── lock0lock.ic │ │ ├── lock0prdt.h │ │ ├── lock0priv.h │ │ ├── lock0priv.ic │ │ ├── lock0types.h │ │ ├── log0crypt.h │ │ ├── log0log.h │ │ ├── log0log.ic │ │ ├── log0recv.h │ │ ├── log0types.h │ │ ├── mach0data.h │ │ ├── mach0data.ic │ │ ├── mem0mem.h │ │ ├── mem0mem.ic │ │ ├── mtr0log.h │ │ ├── mtr0log.ic │ │ ├── mtr0mtr.h │ │ ├── mtr0mtr.ic │ │ ├── mtr0types.h │ │ ├── os0api.h │ │ ├── os0event.h │ │ ├── os0file.h │ │ ├── os0file.ic │ │ ├── os0once.h │ │ ├── os0proc.h │ │ ├── os0thread.h │ │ ├── page0cur.h │ │ ├── page0cur.ic │ │ ├── page0page.h │ │ ├── page0page.ic │ │ ├── page0size.h │ │ ├── page0types.h │ │ ├── page0zip.h │ │ ├── page0zip.ic │ │ ├── pars0grm.h │ │ ├── pars0opt.h │ │ ├── pars0pars.h │ │ ├── pars0sym.h │ │ ├── pars0types.h │ │ ├── que0que.h │ │ ├── que0que.ic │ │ ├── que0types.h │ │ ├── read0types.h │ │ ├── rem0cmp.h │ │ ├── rem0cmp.ic │ │ ├── rem0rec.h │ │ ├── rem0rec.ic │ │ ├── rem0types.h │ │ ├── row0ext.h │ │ ├── row0ext.ic │ │ ├── row0ftsort.h │ │ ├── row0import.h │ │ ├── row0ins.h │ │ ├── row0log.h │ │ ├── row0log.ic │ │ ├── row0merge.h │ │ ├── row0mysql.h │ │ ├── row0purge.h │ │ ├── row0quiesce.h │ │ ├── row0row.h │ │ ├── row0row.ic │ │ ├── row0sel.h │ │ ├── row0sel.ic │ │ ├── row0trunc.h │ │ ├── row0types.h │ │ ├── row0uins.h │ │ ├── row0umod.h │ │ ├── row0undo.h │ │ ├── row0upd.h │ │ ├── row0upd.ic │ │ ├── row0vers.h │ │ ├── srv0conc.h │ │ ├── srv0mon.h │ │ ├── srv0mon.ic │ │ ├── srv0srv.h │ │ ├── srv0start.h │ │ ├── sync0arr.h │ │ ├── sync0arr.ic │ │ ├── sync0debug.h │ │ ├── sync0policy.h │ │ ├── sync0policy.ic │ │ ├── sync0rw.h │ │ ├── sync0rw.ic │ │ ├── sync0sync.h │ │ ├── sync0types.h │ │ ├── trx0i_s.h │ │ ├── trx0purge.h │ │ ├── trx0purge.ic │ │ ├── trx0rec.h │ │ ├── trx0rec.ic │ │ ├── trx0roll.h │ │ ├── trx0rseg.h │ │ ├── trx0rseg.ic │ │ ├── trx0sys.h │ │ ├── trx0trx.h │ │ ├── trx0trx.ic │ │ ├── trx0types.h │ │ ├── trx0undo.h │ │ ├── trx0undo.ic │ │ ├── trx0xa.h │ │ ├── univ.i │ │ ├── ut0byte.h │ │ ├── ut0byte.ic │ │ ├── ut0counter.h │ │ ├── ut0crc32.h │ │ ├── ut0dbg.h │ │ ├── ut0list.h │ │ ├── ut0list.ic │ │ ├── ut0lst.h │ │ ├── ut0mem.h │ │ ├── ut0mem.ic │ │ ├── ut0mutex.h │ │ ├── ut0new.h │ │ ├── ut0pool.h │ │ ├── ut0rbt.h │ │ ├── ut0rnd.h │ │ ├── ut0rnd.ic │ │ ├── ut0sort.h │ │ ├── ut0stage.h │ │ ├── ut0timer.h │ │ ├── ut0timer.ic │ │ ├── ut0ut.h │ │ ├── ut0ut.ic │ │ ├── ut0vec.h │ │ ├── ut0vec.ic │ │ └── ut0wqueue.h │ ├── innodb.cmake │ ├── lock │ │ ├── lock0iter.cc │ │ ├── lock0lock.cc │ │ ├── lock0prdt.cc │ │ └── lock0wait.cc │ ├── log │ │ ├── log0crypt.cc │ │ ├── log0log.cc │ │ └── log0recv.cc │ ├── lz4.cmake │ ├── lzma.cmake │ ├── lzo.cmake │ ├── mach │ │ └── mach0data.cc │ ├── mem │ │ └── mem0mem.cc │ ├── mtr │ │ ├── mtr0log.cc │ │ └── 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 │ │ ├── os0event.cc │ │ ├── os0file.cc │ │ ├── os0proc.cc │ │ └── os0thread.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 │ │ ├── row0trunc.cc │ │ ├── row0uins.cc │ │ ├── row0umod.cc │ │ ├── row0undo.cc │ │ ├── row0upd.cc │ │ └── row0vers.cc │ ├── snappy.cmake │ ├── srv │ │ ├── srv0conc.cc │ │ ├── srv0mon.cc │ │ ├── srv0srv.cc │ │ └── srv0start.cc │ ├── sync │ │ ├── sync0arr.cc │ │ ├── sync0debug.cc │ │ ├── sync0rw.cc │ │ └── sync0sync.cc │ ├── trx │ │ ├── trx0i_s.cc │ │ ├── trx0purge.cc │ │ ├── trx0rec.cc │ │ ├── trx0roll.cc │ │ ├── trx0rseg.cc │ │ ├── trx0sys.cc │ │ ├── trx0trx.cc │ │ └── trx0undo.cc │ └── ut │ │ ├── ut0crc32.cc │ │ ├── ut0dbg.cc │ │ ├── ut0list.cc │ │ ├── ut0mem.cc │ │ ├── ut0new.cc │ │ ├── ut0rbt.cc │ │ ├── ut0rnd.cc │ │ ├── ut0timer.cc │ │ ├── ut0ut.cc │ │ ├── ut0vec.cc │ │ └── ut0wqueue.cc ├── maria │ ├── CMakeLists.txt │ ├── file_formats.txt │ ├── ft_maria.c │ ├── ha_maria.cc │ ├── ha_maria.h │ ├── lockman.c │ ├── lockman.h │ ├── ma_bitmap.c │ ├── ma_blockrec.c │ ├── ma_blockrec.h │ ├── ma_cache.c │ ├── ma_changed.c │ ├── ma_check.c │ ├── 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.res │ ├── 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_chk.c │ ├── maria_def.h │ ├── maria_dump_log.c │ ├── maria_ftdump.c │ ├── maria_pack.c │ ├── maria_read_log.c │ ├── maria_rename.sh │ ├── tablockman.c │ ├── tablockman.h │ ├── 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_all-t │ │ ├── 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 │ ├── build │ │ ├── Makefile.am │ │ ├── cmake_modules │ │ │ ├── Makefile.am │ │ │ └── ReadFileList.cmake │ │ └── makefiles │ │ │ ├── LC_MESSAGES.am │ │ │ ├── gettext.am │ │ │ ├── locale.am │ │ │ ├── sphinx-build.am │ │ │ └── sphinx.am │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ ├── packages │ │ ├── Makefile.am │ │ ├── apt │ │ │ ├── Makefile.am │ │ │ ├── Vagrantfile │ │ │ ├── build-deb.sh │ │ │ ├── env.sh.in │ │ │ ├── sign-packages.sh │ │ │ ├── sign-repository.sh │ │ │ └── update-repository.sh │ │ ├── rpm │ │ │ ├── Makefile.am │ │ │ └── centos │ │ │ │ ├── Makefile.am │ │ │ │ ├── mariadb-mroonga.spec.in │ │ │ │ ├── mysql55-mroonga.spec.in │ │ │ │ ├── mysql56-community-mroonga.spec.in │ │ │ │ └── percona-server-56-mroonga.spec.in │ │ ├── source │ │ │ ├── Makefile.am │ │ │ └── patches │ │ │ │ └── mariadb-10.0.3-windows-build.diff │ │ ├── ubuntu │ │ │ ├── Makefile.am │ │ │ └── upload.rb │ │ ├── windows │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-vc2015-msi-32.bat │ │ │ ├── build-vc2015-msi-64.bat │ │ │ ├── build-vc2015-zip-32.bat │ │ │ ├── build-vc2015-zip-64.bat │ │ │ └── build-vc2015.bat │ │ └── yum │ │ │ ├── Makefile.am │ │ │ ├── Vagrantfile │ │ │ ├── build-in-vm.sh │ │ │ ├── build-rpm.sh │ │ │ ├── env.sh.in │ │ │ ├── sign-rpm.sh │ │ │ └── update-repository.sh │ ├── 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 │ │ │ ├── build │ │ │ ├── Makefile.am │ │ │ ├── ac_macros │ │ │ │ ├── check_functions.m4 │ │ │ │ └── check_headers.m4 │ │ │ ├── cmake_modules │ │ │ │ ├── Makefile.am │ │ │ │ └── ReadFileList.cmake │ │ │ └── makefiles │ │ │ │ ├── LC_MESSAGES.am │ │ │ │ ├── gettext.am │ │ │ │ ├── locale.am │ │ │ │ ├── sphinx-build.am │ │ │ │ └── sphinx.am │ │ │ ├── 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 │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ └── 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.h │ │ │ ├── groonga.hpp │ │ │ └── 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 │ │ │ ├── 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.cpp │ │ │ ├── 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 │ │ │ ├── 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.c │ │ │ ├── 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.rb │ │ │ │ │ ├── context │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── error_level.rb │ │ │ │ │ │ ├── rc.rb │ │ │ │ │ │ └── sources.am │ │ │ │ │ ├── database.rb │ │ │ │ │ ├── error.rb │ │ │ │ │ ├── eval_context.rb │ │ │ │ │ ├── expression.rb │ │ │ │ │ ├── expression_rewriter.rb │ │ │ │ │ ├── expression_rewriters.rb │ │ │ │ │ ├── expression_size_estimator.rb │ │ │ │ │ ├── expression_tree.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_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.rb │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── level.rb │ │ │ │ │ │ └── sources.am │ │ │ │ │ ├── object.rb │ │ │ │ │ ├── operator.rb │ │ │ │ │ ├── plugin_loader.rb │ │ │ │ │ ├── query_logger.rb │ │ │ │ │ ├── query_logger │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── flag.rb │ │ │ │ │ │ └── sources.am │ │ │ │ │ ├── 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 │ │ │ ├── nfkc-custom-rules.txt │ │ │ ├── nfkc.c │ │ │ ├── nfkc.rb │ │ │ ├── nfkc50.c │ │ │ ├── normalizer.c │ │ │ ├── obj.c │ │ │ ├── operator.c │ │ │ ├── output.c │ │ │ ├── pat.c │ │ │ ├── plugin.c │ │ │ ├── proc.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 │ │ │ ├── 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.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 │ │ │ ├── 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.rb │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── build │ │ │ │ ├── Makefile.am │ │ │ │ └── cmake_modules │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── ReadFileList.cmake │ │ │ │ ├── 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 │ │ │ │ ├── packages │ │ │ │ ├── Makefile.am │ │ │ │ ├── apt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ ├── build-deb.sh │ │ │ │ │ ├── env.sh.in │ │ │ │ │ ├── sign-packages.sh │ │ │ │ │ ├── sign-repository.sh │ │ │ │ │ └── update-repository.sh │ │ │ │ ├── debian │ │ │ │ │ ├── changelog │ │ │ │ │ ├── compat │ │ │ │ │ ├── control │ │ │ │ │ ├── copyright │ │ │ │ │ ├── groonga-normalizer-mysql.install │ │ │ │ │ ├── patches │ │ │ │ │ │ └── series │ │ │ │ │ ├── rules │ │ │ │ │ ├── source │ │ │ │ │ │ └── format │ │ │ │ │ └── watch │ │ │ │ ├── rpm │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── centos │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── groonga-normalizer-mysql.spec.in │ │ │ │ │ └── fedora │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── groonga-normalizer-mysql.spec.in │ │ │ │ ├── source │ │ │ │ │ └── Makefile.am │ │ │ │ ├── ubuntu │ │ │ │ │ └── Makefile.am │ │ │ │ └── yum │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ ├── build-rpm.sh │ │ │ │ │ ├── env.sh.in │ │ │ │ │ ├── sign-rpm.sh │ │ │ │ │ └── update-repository.sh │ │ │ │ ├── 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 │ │ │ └── version-gen.sh │ ├── version │ ├── version_in_hex │ ├── version_major │ ├── version_micro │ └── version_minor ├── myisam │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NEWS │ ├── TODO │ ├── 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.res │ ├── 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 │ ├── gen_pfs_lex_token.cc │ ├── ha_perfschema.cc │ ├── ha_perfschema.h │ ├── pfs.cc │ ├── pfs.h │ ├── pfs_account.cc │ ├── pfs_account.h │ ├── pfs_atomic.h │ ├── pfs_autosize.cc │ ├── pfs_column_types.h │ ├── pfs_column_values.cc │ ├── pfs_column_values.h │ ├── pfs_con_slice.cc │ ├── pfs_con_slice.h │ ├── 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_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_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_timer.cc │ ├── pfs_timer.h │ ├── pfs_user.cc │ ├── pfs_user.h │ ├── pfs_visitor.cc │ ├── pfs_visitor.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_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_events_stages.cc │ ├── table_events_stages.h │ ├── table_events_statements.cc │ ├── table_events_statements.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_helper.cc │ ├── table_helper.h │ ├── table_host_cache.cc │ ├── table_host_cache.h │ ├── table_hosts.cc │ ├── table_hosts.h │ ├── table_os_global_by_type.cc │ ├── table_os_global_by_type.h │ ├── table_performance_timers.cc │ ├── table_performance_timers.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_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_sync_instances.cc │ ├── table_sync_instances.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 │ └── 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_server_stubs.cc │ │ ├── pfs_timer-t.cc │ │ ├── pfs_user-oom-t.cc │ │ ├── stub_pfs_defaults.h │ │ ├── stub_pfs_global.h │ │ └── stub_print_error.h ├── rocksdb │ ├── .clang-format │ ├── .gitignore │ ├── 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 │ ├── mysql-test │ │ ├── rocksdb │ │ │ ├── combinations │ │ │ ├── include │ │ │ │ ├── autoinc_crash_safe.inc │ │ │ │ ├── bulk_load.inc │ │ │ │ ├── bulk_load_unsorted.inc │ │ │ │ ├── ddl_high_priority.inc │ │ │ │ ├── ddl_high_priority_module.inc │ │ │ │ ├── deadlock_stats.inc │ │ │ │ ├── dup_key_update.inc │ │ │ │ ├── have_rocksdb.inc │ │ │ │ ├── have_rocksdb.opt │ │ │ │ ├── have_rocksdb_default.inc │ │ │ │ ├── have_rocksdb_replication.inc │ │ │ │ ├── have_write_committed.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_concurrent_delete.inc │ │ │ │ ├── rocksdb_icp.inc │ │ │ │ ├── simple_deadlock.inc │ │ │ │ └── start_mysqld_with_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 │ │ │ │ ├── blind_delete_without_tx_api.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 │ │ │ │ ├── bytes_written.result │ │ │ │ ├── cardinality.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_before_lock.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 │ │ │ │ ├── foreign_key.result │ │ │ │ ├── gap_lock_issue254.result │ │ │ │ ├── gap_lock_raise_error.result │ │ │ │ ├── get_error_message.result │ │ │ │ ├── handler_basic.result │ │ │ │ ├── hermitage.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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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_gtid_skip_empty_trans_rocksdb.result │ │ │ │ ├── mysqldump.result │ │ │ │ ├── mysqldump2.result │ │ │ │ ├── native_procedure.result │ │ │ │ ├── negative_stats.result │ │ │ │ ├── no_merge_sort.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_row_stats.result │ │ │ │ ├── rocksdb_table_stats_sampling_pct_change.result │ │ │ │ ├── rollback_savepoint.result │ │ │ │ ├── rpl_read_free.result │ │ │ │ ├── rpl_row_not_found.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_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_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_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_reads.result │ │ │ │ ├── use_direct_reads_writes.result │ │ │ │ ├── validate_datadic.result │ │ │ │ ├── varbinary_format.result │ │ │ │ └── write_sync.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 │ │ │ │ ├── blind_delete_without_tx_api.cnf │ │ │ │ ├── blind_delete_without_tx_api.test │ │ │ │ ├── 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 │ │ │ │ ├── bytes_written.test │ │ │ │ ├── cardinality-master.opt │ │ │ │ ├── cardinality.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.test │ │ │ │ ├── cons_snapshot_repeatable_read.test │ │ │ │ ├── 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_before_lock.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 │ │ │ │ ├── foreign_key.test │ │ │ │ ├── gap_lock_issue254-master.opt │ │ │ │ ├── gap_lock_issue254.test │ │ │ │ ├── gap_lock_raise_error.test │ │ │ │ ├── get_error_message.test │ │ │ │ ├── handler_basic.test │ │ │ │ ├── hermitage.inc │ │ │ │ ├── hermitage.test │ │ │ │ ├── hermitage_init.inc │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── level_read_committed.test │ │ │ │ ├── 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 │ │ │ │ ├── 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_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_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.test │ │ │ │ ├── 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_row_stats.test │ │ │ │ ├── rocksdb_table_stats_sampling_pct_change.test │ │ │ │ ├── rollback_savepoint.test │ │ │ │ ├── rpl_read_free.cnf │ │ │ │ ├── rpl_read_free.test │ │ │ │ ├── rpl_row_not_found.cnf │ │ │ │ ├── rpl_row_not_found.inc │ │ │ │ ├── rpl_row_not_found.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 │ │ │ │ ├── se-innodb.out │ │ │ │ ├── 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_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_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_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_reads.test │ │ │ │ ├── use_direct_reads_writes.test │ │ │ │ ├── validate_datadic.test │ │ │ │ ├── varbinary_format.test │ │ │ │ └── write_sync.test │ │ ├── rocksdb_hotbackup │ │ │ ├── base.cnf │ │ │ ├── include │ │ │ │ ├── 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_socket.result │ │ │ └── t │ │ │ │ ├── gtid-master.opt │ │ │ │ ├── gtid-slave.opt │ │ │ │ ├── gtid.test │ │ │ │ ├── slocket.test │ │ │ │ ├── stream.test │ │ │ │ ├── wdt.test │ │ │ │ ├── xbstream.test │ │ │ │ └── xbstream_socket.test │ │ ├── rocksdb_rpl │ │ │ ├── combinations │ │ │ ├── include │ │ │ │ ├── have_rocksdb.inc │ │ │ │ ├── have_rocksdb.opt │ │ │ │ └── rpl_no_unique_check_on_lag.inc │ │ │ ├── my.cnf │ │ │ ├── r │ │ │ │ ├── consistent_snapshot_mixed_engines.result │ │ │ │ ├── mdev12179.result │ │ │ │ ├── multiclient_2pc.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_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_snapshot.result │ │ │ │ ├── rpl_rocksdb_snapshot_without_gtid.result │ │ │ │ ├── rpl_rocksdb_stress_crash.result │ │ │ │ ├── rpl_skip_trx_api_binlog_format.result │ │ │ │ ├── singledelete_idempotent_recovery.result │ │ │ │ └── singledelete_idempotent_table.result │ │ │ ├── rpl_1slave_base.cnf │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t │ │ │ │ ├── combinations │ │ │ │ ├── consistent_snapshot_mixed_engines-master.opt │ │ │ │ ├── consistent_snapshot_mixed_engines.test │ │ │ │ ├── disabled.def │ │ │ │ ├── mdev12179.test │ │ │ │ ├── multiclient_2pc-master.opt │ │ │ │ ├── multiclient_2pc.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_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_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 │ │ │ │ ├── singledelete_idempotent_recovery.cnf │ │ │ │ ├── singledelete_idempotent_recovery.test │ │ │ │ ├── singledelete_idempotent_table.cnf │ │ │ │ └── singledelete_idempotent_table.test │ │ ├── rocksdb_stress │ │ │ ├── combinations │ │ │ ├── include │ │ │ │ └── rocksdb_stress.inc │ │ │ ├── my.cnf │ │ │ ├── r │ │ │ │ ├── rocksdb_stress.result │ │ │ │ └── rocksdb_stress_crash.result │ │ │ └── t │ │ │ │ ├── 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_index_and_filter_blocks_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_obsolete_files_period_micros_basic.result │ │ │ │ ├── rocksdb_enable_2pc_basic.result │ │ │ │ ├── rocksdb_enable_bulk_load_api_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_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_tables_basic.result │ │ │ │ ├── rocksdb_records_in_range_basic.result │ │ │ │ ├── rocksdb_remove_mariabackup_checkpoint_basic.result │ │ │ │ ├── rocksdb_reset_stats_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_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 │ │ │ │ ├── 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_index_and_filter_blocks_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_obsolete_files_period_micros_basic.test │ │ │ │ ├── rocksdb_enable_2pc_basic.test │ │ │ │ ├── rocksdb_enable_bulk_load_api_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_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_tables_basic.test │ │ │ │ ├── rocksdb_records_in_range_basic.test │ │ │ │ ├── rocksdb_remove_mariabackup_checkpoint_basic.test │ │ │ │ ├── rocksdb_reset_stats_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_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 │ ├── 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_datadic.cc │ ├── rdb_datadic.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 │ │ │ ├── disabled.def │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── direct_aggregate.result │ │ │ ├── direct_aggregate_part.result │ │ │ ├── direct_join.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 │ │ │ ├── spider3_fixes.result │ │ │ ├── spider3_fixes_part.result │ │ │ ├── spider_fixes.result │ │ │ ├── spider_fixes_part.result │ │ │ ├── timestamp.result │ │ │ └── vp_fixes.result │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t │ │ │ ├── auto_increment.test │ │ │ ├── auto_increment_deinit.inc │ │ │ ├── auto_increment_init.inc │ │ │ ├── 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_join.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 │ │ │ ├── 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 │ │ │ ├── timestamp.test │ │ │ ├── timestamp_deinit.inc │ │ │ ├── timestamp_init.inc │ │ │ └── vp_fixes.test │ ├── scripts │ │ └── install_spider.sql │ ├── 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.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_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 ├── 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 └── tokudb │ ├── CMakeLists.txt │ ├── PerconaFT │ ├── .clang-format │ ├── CMakeLists.txt │ ├── COPYING.AGPLv3 │ ├── COPYING.GPLv2 │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── DartConfig.cmake │ ├── PATENTS │ ├── README.md │ ├── bash.suppressions │ ├── buildbot │ │ └── compile.suppressions │ ├── buildheader │ │ ├── CMakeLists.txt │ │ ├── db-4.6.19.h │ │ └── make_tdb.cc │ ├── cmake │ │ └── merge_archives_unix.cmake.in │ ├── cmake_modules │ │ ├── FindValgrind.cmake │ │ ├── TokuBuildTagDatabases.cmake │ │ ├── TokuFeatureDetection.cmake │ │ ├── TokuMergeLibs.cmake │ │ ├── TokuSetupCTest.cmake │ │ ├── TokuSetupCompiler.cmake │ │ └── TokuThirdParty.cmake │ ├── ft │ │ ├── CMakeLists.txt │ │ ├── bndata.cc │ │ ├── bndata.h │ │ ├── cachetable │ │ │ ├── background_job_manager.cc │ │ │ ├── background_job_manager.h │ │ │ ├── cachetable-internal.h │ │ │ ├── cachetable.cc │ │ │ ├── cachetable.h │ │ │ ├── checkpoint.cc │ │ │ └── checkpoint.h │ │ ├── comparator.h │ │ ├── cursor.cc │ │ ├── cursor.h │ │ ├── ft-cachetable-wrappers.cc │ │ ├── ft-cachetable-wrappers.h │ │ ├── ft-flusher-internal.h │ │ ├── ft-flusher.cc │ │ ├── ft-flusher.h │ │ ├── ft-hot-flusher.cc │ │ ├── ft-internal.h │ │ ├── ft-ops.cc │ │ ├── ft-ops.h │ │ ├── ft-recount-rows.cc │ │ ├── ft-status.cc │ │ ├── ft-status.h │ │ ├── ft-test-helpers.cc │ │ ├── ft-verify.cc │ │ ├── ft.cc │ │ ├── ft.h │ │ ├── le-cursor.cc │ │ ├── le-cursor.h │ │ ├── leafentry.cc │ │ ├── leafentry.h │ │ ├── loader │ │ │ ├── callbacks.cc │ │ │ ├── dbufio.cc │ │ │ ├── dbufio.h │ │ │ ├── loader-internal.h │ │ │ ├── loader.cc │ │ │ ├── loader.h │ │ │ ├── pqueue.cc │ │ │ └── pqueue.h │ │ ├── logger │ │ │ ├── log-internal.h │ │ │ ├── log.h │ │ │ ├── log_upgrade.cc │ │ │ ├── logcursor.cc │ │ │ ├── logcursor.h │ │ │ ├── logfilemgr.cc │ │ │ ├── logfilemgr.h │ │ │ ├── logformat.cc │ │ │ ├── logger.cc │ │ │ ├── logger.h │ │ │ ├── recover.cc │ │ │ └── recover.h │ │ ├── msg.cc │ │ ├── msg.h │ │ ├── msg_buffer.cc │ │ ├── msg_buffer.h │ │ ├── node.cc │ │ ├── node.h │ │ ├── pivotkeys.cc │ │ ├── serialize │ │ │ ├── block_allocator.cc │ │ │ ├── block_allocator.h │ │ │ ├── block_table.cc │ │ │ ├── block_table.h │ │ │ ├── compress.cc │ │ │ ├── compress.h │ │ │ ├── ft-node-deserialize.cc │ │ │ ├── ft-serialize.cc │ │ │ ├── ft-serialize.h │ │ │ ├── ft_layout_version.h │ │ │ ├── ft_node-serialize.cc │ │ │ ├── ft_node-serialize.h │ │ │ ├── quicklz.cc │ │ │ ├── quicklz.h │ │ │ ├── rbtree_mhs.cc │ │ │ ├── rbtree_mhs.h │ │ │ ├── rbuf.h │ │ │ ├── sub_block.cc │ │ │ ├── sub_block.h │ │ │ ├── wbuf.h │ │ │ └── workset.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark-test.cc │ │ │ ├── block_allocator_test.cc │ │ │ ├── bnc-insert-benchmark.cc │ │ │ ├── cachetable-4357.cc │ │ │ ├── cachetable-4365.cc │ │ │ ├── cachetable-5097.cc │ │ │ ├── cachetable-5978-2.cc │ │ │ ├── cachetable-5978.cc │ │ │ ├── cachetable-all-write.cc │ │ │ ├── cachetable-checkpoint-pending.cc │ │ │ ├── cachetable-checkpoint-pinned-nodes.cc │ │ │ ├── cachetable-checkpoint-prefetched-nodes.cc │ │ │ ├── cachetable-checkpoint-test.cc │ │ │ ├── cachetable-checkpointer-class.cc │ │ │ ├── cachetable-cleaner-checkpoint.cc │ │ │ ├── cachetable-cleaner-checkpoint2.cc │ │ │ ├── cachetable-cleaner-thread-attrs-accumulate.cc │ │ │ ├── cachetable-cleaner-thread-empty-cachetable.cc │ │ │ ├── cachetable-cleaner-thread-everything-pinned.cc │ │ │ ├── cachetable-cleaner-thread-nothing-needs-flushing.cc │ │ │ ├── cachetable-cleaner-thread-same-fullhash.cc │ │ │ ├── cachetable-cleaner-thread-simple.cc │ │ │ ├── cachetable-clock-all-pinned.cc │ │ │ ├── cachetable-clock-eviction.cc │ │ │ ├── cachetable-clock-eviction2.cc │ │ │ ├── cachetable-clock-eviction3.cc │ │ │ ├── cachetable-clock-eviction4.cc │ │ │ ├── cachetable-clone-checkpoint.cc │ │ │ ├── cachetable-clone-partial-fetch-pinned-node.cc │ │ │ ├── cachetable-clone-partial-fetch.cc │ │ │ ├── cachetable-clone-pin-nonblocking.cc │ │ │ ├── cachetable-clone-unpin-remove.cc │ │ │ ├── cachetable-count-pinned-test.cc │ │ │ ├── cachetable-debug-test.cc │ │ │ ├── cachetable-eviction-close-test.cc │ │ │ ├── cachetable-eviction-close-test2.cc │ │ │ ├── cachetable-eviction-getandpin-test.cc │ │ │ ├── cachetable-eviction-getandpin-test2.cc │ │ │ ├── cachetable-evictor-class.cc │ │ │ ├── cachetable-fd-test.cc │ │ │ ├── cachetable-fetch-inducing-evictor.cc │ │ │ ├── cachetable-flush-during-cleaner.cc │ │ │ ├── cachetable-flush-test.cc │ │ │ ├── cachetable-getandpin-test.cc │ │ │ ├── cachetable-kibbutz_and_flush_cachefile.cc │ │ │ ├── cachetable-partial-fetch.cc │ │ │ ├── cachetable-pin-checkpoint.cc │ │ │ ├── cachetable-pin-nonblocking-checkpoint-clean.cc │ │ │ ├── cachetable-prefetch-checkpoint-test.cc │ │ │ ├── cachetable-prefetch-close-leak-test.cc │ │ │ ├── cachetable-prefetch-close-test.cc │ │ │ ├── cachetable-prefetch-flowcontrol-test.cc │ │ │ ├── cachetable-prefetch-getandpin-test.cc │ │ │ ├── cachetable-prefetch-maybegetandpin-test.cc │ │ │ ├── cachetable-prefetch2-test.cc │ │ │ ├── cachetable-put-checkpoint.cc │ │ │ ├── cachetable-put-test.cc │ │ │ ├── cachetable-reserve-filenum.cc │ │ │ ├── cachetable-rwlock-test.cc │ │ │ ├── cachetable-simple-clone.cc │ │ │ ├── cachetable-simple-clone2.cc │ │ │ ├── cachetable-simple-close.cc │ │ │ ├── cachetable-simple-maybe-get-pin.cc │ │ │ ├── cachetable-simple-pin-cheap.cc │ │ │ ├── cachetable-simple-pin-dep-nodes.cc │ │ │ ├── cachetable-simple-pin-nonblocking-cheap.cc │ │ │ ├── cachetable-simple-pin-nonblocking.cc │ │ │ ├── cachetable-simple-pin.cc │ │ │ ├── cachetable-simple-put-dep-nodes.cc │ │ │ ├── cachetable-simple-read-pin-nonblocking.cc │ │ │ ├── cachetable-simple-read-pin.cc │ │ │ ├── cachetable-simple-unpin-remove-checkpoint.cc │ │ │ ├── cachetable-simple-verify.cc │ │ │ ├── cachetable-test.cc │ │ │ ├── cachetable-test.h │ │ │ ├── cachetable-unpin-and-remove-test.cc │ │ │ ├── cachetable-unpin-remove-and-checkpoint.cc │ │ │ ├── cachetable-unpin-test.cc │ │ │ ├── cachetable-writer-thread-limit.cc │ │ │ ├── comparator-test.cc │ │ │ ├── compress-test.cc │ │ │ ├── dbufio-test-destroy.cc │ │ │ ├── dbufio-test.cc │ │ │ ├── dmt-test.cc │ │ │ ├── dmt-test2.cc │ │ │ ├── fifo-test.cc │ │ │ ├── ft-bfe-query.cc │ │ │ ├── ft-clock-test.cc │ │ │ ├── ft-serialize-benchmark.cc │ │ │ ├── ft-serialize-sub-block-test.cc │ │ │ ├── ft-serialize-test.cc │ │ │ ├── ft-test-cursor-2.cc │ │ │ ├── ft-test-cursor.cc │ │ │ ├── ft-test-header.cc │ │ │ ├── ft-test.cc │ │ │ ├── ft-test0.cc │ │ │ ├── ft-test1.cc │ │ │ ├── ft-test2.cc │ │ │ ├── ft-test3.cc │ │ │ ├── ft-test4.cc │ │ │ ├── ft-test5.cc │ │ │ ├── ftloader-error-injector.h │ │ │ ├── ftloader-test-bad-generate.cc │ │ │ ├── ftloader-test-extractor-errors.cc │ │ │ ├── ftloader-test-extractor.cc │ │ │ ├── ftloader-test-merge-files-dbufio.cc │ │ │ ├── ftloader-test-open.cc │ │ │ ├── ftloader-test-vm.cc │ │ │ ├── ftloader-test-writer-errors.cc │ │ │ ├── ftloader-test-writer.cc │ │ │ ├── ftloader-test.cc │ │ │ ├── generate-upgrade-recovery-logs.cc │ │ │ ├── is_empty.cc │ │ │ ├── keyrange.cc │ │ │ ├── keytest.cc │ │ │ ├── le-cursor-provdel.cc │ │ │ ├── le-cursor-right.cc │ │ │ ├── le-cursor-walk.cc │ │ │ ├── list-test.cc │ │ │ ├── log-test-maybe-trim.cc │ │ │ ├── log-test.cc │ │ │ ├── log-test2.cc │ │ │ ├── log-test3.cc │ │ │ ├── log-test4.cc │ │ │ ├── log-test5.cc │ │ │ ├── log-test6.cc │ │ │ ├── log-test7.cc │ │ │ ├── logcursor-bad-checksum.cc │ │ │ ├── logcursor-bw.cc │ │ │ ├── logcursor-empty-logdir.cc │ │ │ ├── logcursor-empty-logfile-2.cc │ │ │ ├── logcursor-empty-logfile-3.cc │ │ │ ├── logcursor-empty-logfile.cc │ │ │ ├── logcursor-fw.cc │ │ │ ├── logcursor-print.cc │ │ │ ├── logcursor-timestamp.cc │ │ │ ├── logfilemgr-create-destroy.cc │ │ │ ├── logfilemgr-print.cc │ │ │ ├── make-tree.cc │ │ │ ├── mempool-115.cc │ │ │ ├── msnfilter.cc │ │ │ ├── orthopush-flush.cc │ │ │ ├── pqueue-test.cc │ │ │ ├── quicklz-test.cc │ │ │ ├── recovery-bad-last-entry.cc │ │ │ ├── recovery-cbegin-cend-hello.cc │ │ │ ├── recovery-cbegin-cend.cc │ │ │ ├── recovery-cbegin.cc │ │ │ ├── recovery-cend-cbegin.cc │ │ │ ├── recovery-datadir-is-file.cc │ │ │ ├── recovery-empty.cc │ │ │ ├── recovery-fopen-missing-file.cc │ │ │ ├── recovery-hello.cc │ │ │ ├── recovery-lsn-error-during-forward-scan.cc │ │ │ ├── recovery-no-datadir.cc │ │ │ ├── recovery-no-log.cc │ │ │ ├── recovery-no-logdir.cc │ │ │ ├── recovery-test5123.cc │ │ │ ├── shortcut.cc │ │ │ ├── subblock-test-checksum.cc │ │ │ ├── subblock-test-compression.cc │ │ │ ├── subblock-test-index.cc │ │ │ ├── subblock-test-size.cc │ │ │ ├── test-TDB2-pe.cc │ │ │ ├── test-TDB89.cc │ │ │ ├── test-assert.cc │ │ │ ├── test-bjm.cc │ │ │ ├── test-checkpoint-during-flush.cc │ │ │ ├── test-checkpoint-during-merge.cc │ │ │ ├── test-checkpoint-during-rebalance.cc │ │ │ ├── test-checkpoint-during-split.cc │ │ │ ├── test-del-inorder.cc │ │ │ ├── test-dirty-flushes-on-cleaner.cc │ │ │ ├── test-dump-ft.cc │ │ │ ├── test-flushes-on-cleaner.cc │ │ │ ├── test-ft-overflow.cc │ │ │ ├── test-ft-txns.h │ │ │ ├── test-hot-with-bounds.cc │ │ │ ├── test-inc-split.cc │ │ │ ├── test-leafentry-child-txn.cc │ │ │ ├── test-leafentry-nested.cc │ │ │ ├── test-merges-on-cleaner.cc │ │ │ ├── test-oldest-referenced-xid-flush.cc │ │ │ ├── test-pick-child-to-flush.cc │ │ │ ├── test-rbtree-insert-remove-with-mhs.cc │ │ │ ├── test-rbtree-insert-remove-without-mhs.cc │ │ │ ├── test-txn-child-manager.cc │ │ │ ├── test-upgrade-recovery-logs.cc │ │ │ ├── test.h │ │ │ ├── test1308a.cc │ │ │ ├── test3681.cc │ │ │ ├── test3856.cc │ │ │ ├── test3884.cc │ │ │ ├── test4115.cc │ │ │ ├── test4244.cc │ │ │ ├── test_logcursor.cc │ │ │ ├── test_oexcl.cc │ │ │ ├── test_rightmost_leaf_seqinsert_heuristic.cc │ │ │ ├── test_rightmost_leaf_split_merge.cc │ │ │ ├── test_toku_malloc_plain_free.cc │ │ │ ├── upgrade.data │ │ │ │ ├── upgrade-recovery-logs-24-clean │ │ │ │ │ └── log000000000000.tokulog24 │ │ │ │ ├── upgrade-recovery-logs-24-dirty │ │ │ │ │ └── log000000000000.tokulog24 │ │ │ │ ├── upgrade-recovery-logs-25-clean │ │ │ │ │ └── log000000000000.tokulog25 │ │ │ │ ├── upgrade-recovery-logs-25-dirty │ │ │ │ │ └── log000000000000.tokulog25 │ │ │ │ ├── upgrade-recovery-logs-26-clean │ │ │ │ │ └── log000000000000.tokulog26 │ │ │ │ ├── upgrade-recovery-logs-26-dirty │ │ │ │ │ └── log000000000000.tokulog26 │ │ │ │ ├── upgrade-recovery-logs-27-clean │ │ │ │ │ └── log000000000000.tokulog27 │ │ │ │ ├── upgrade-recovery-logs-27-dirty │ │ │ │ │ └── log000000000000.tokulog27 │ │ │ │ ├── upgrade-recovery-logs-28-clean │ │ │ │ │ └── log000000000000.tokulog28 │ │ │ │ ├── upgrade-recovery-logs-28-dirty │ │ │ │ │ └── log000000000000.tokulog28 │ │ │ │ ├── upgrade-recovery-logs-29-clean │ │ │ │ │ └── log000000000000.tokulog29 │ │ │ │ └── upgrade-recovery-logs-29-dirty │ │ │ │ │ └── log000000000000.tokulog29 │ │ │ ├── upgrade_test_simple.cc │ │ │ ├── verify-bad-msn.cc │ │ │ ├── verify-bad-pivots.cc │ │ │ ├── verify-dup-in-leaf.cc │ │ │ ├── verify-dup-pivots.cc │ │ │ ├── verify-misrouted-msgs.cc │ │ │ ├── verify-unsorted-leaf.cc │ │ │ ├── verify-unsorted-pivots.cc │ │ │ ├── xid_lsn_independent.cc │ │ │ └── ybt-test.cc │ │ ├── txn │ │ │ ├── roll.cc │ │ │ ├── rollback-apply.cc │ │ │ ├── rollback-apply.h │ │ │ ├── rollback-ct-callbacks.cc │ │ │ ├── rollback-ct-callbacks.h │ │ │ ├── rollback.cc │ │ │ ├── rollback.h │ │ │ ├── rollback_log_node_cache.cc │ │ │ ├── rollback_log_node_cache.h │ │ │ ├── txn.cc │ │ │ ├── txn.h │ │ │ ├── txn_child_manager.cc │ │ │ ├── txn_child_manager.h │ │ │ ├── txn_manager.cc │ │ │ ├── txn_manager.h │ │ │ ├── txn_state.h │ │ │ ├── xids.cc │ │ │ └── xids.h │ │ ├── ule-internal.h │ │ ├── ule.cc │ │ ├── ule.h │ │ └── valgrind.suppressions │ ├── ftcxx │ │ ├── CMakeLists.txt │ │ ├── buffer.cpp │ │ ├── buffer.hpp │ │ ├── cursor-inl.hpp │ │ ├── cursor.cpp │ │ ├── cursor.hpp │ │ ├── db.hpp │ │ ├── db_env-inl.hpp │ │ ├── db_env.cpp │ │ ├── db_env.hpp │ │ ├── db_txn.hpp │ │ ├── exceptions.hpp │ │ ├── malloc_utils.cpp │ │ ├── malloc_utils.hpp │ │ ├── slice.hpp │ │ ├── stats.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_test.cpp │ │ │ ├── cursor_test.cpp │ │ │ └── doubling_buffer.cpp │ ├── locktree │ │ ├── CMakeLists.txt │ │ ├── concurrent_tree.cc │ │ ├── concurrent_tree.h │ │ ├── keyrange.cc │ │ ├── keyrange.h │ │ ├── lock_request.cc │ │ ├── lock_request.h │ │ ├── locktree.cc │ │ ├── locktree.h │ │ ├── manager.cc │ │ ├── range_buffer.cc │ │ ├── range_buffer.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── concurrent_tree_create_destroy.cc │ │ │ ├── concurrent_tree_lkr_acquire_release.cc │ │ │ ├── concurrent_tree_lkr_insert_remove.cc │ │ │ ├── concurrent_tree_lkr_insert_serial_large.cc │ │ │ ├── concurrent_tree_lkr_remove_all.cc │ │ │ ├── concurrent_tree_unit_test.h │ │ │ ├── kill_waiter.cc │ │ │ ├── lock_request_create_set.cc │ │ │ ├── lock_request_get_set_keys.cc │ │ │ ├── lock_request_killed.cc │ │ │ ├── lock_request_not_killed.cc │ │ │ ├── lock_request_start_deadlock.cc │ │ │ ├── lock_request_start_pending.cc │ │ │ ├── lock_request_start_release_wait.cc │ │ │ ├── lock_request_start_retry_race.cc │ │ │ ├── lock_request_start_retry_race_3.cc │ │ │ ├── lock_request_start_retry_wait_race_2.cc │ │ │ ├── lock_request_unit_test.h │ │ │ ├── lock_request_wait_time_callback.cc │ │ │ ├── locktree_conflicts.cc │ │ │ ├── locktree_create_destroy.cc │ │ │ ├── locktree_escalation_1big7lt_1small.cc │ │ │ ├── locktree_escalation_2big_1lt.cc │ │ │ ├── locktree_escalation_2big_2lt.cc │ │ │ ├── locktree_escalation_impossible.cc │ │ │ ├── locktree_escalation_stalls.cc │ │ │ ├── locktree_infinity.cc │ │ │ ├── locktree_misc.cc │ │ │ ├── locktree_overlapping_relock.cc │ │ │ ├── locktree_simple_lock.cc │ │ │ ├── locktree_single_txnid_optimization.cc │ │ │ ├── locktree_unit_test.h │ │ │ ├── manager_create_destroy.cc │ │ │ ├── manager_locktree_map.cc │ │ │ ├── manager_parallel_locktree_get_release.cc │ │ │ ├── manager_params.cc │ │ │ ├── manager_reference_release_lt.cc │ │ │ ├── manager_status.cc │ │ │ ├── manager_unit_test.h │ │ │ ├── range_buffer_test.cc │ │ │ ├── test.h │ │ │ ├── txnid_set_test.cc │ │ │ └── wfg_test.cc │ │ ├── treenode.cc │ │ ├── treenode.h │ │ ├── txnid_set.cc │ │ ├── txnid_set.h │ │ ├── wfg.cc │ │ └── wfg.h │ ├── portability │ │ ├── CMakeLists.txt │ │ ├── file.cc │ │ ├── huge_page_detection.cc │ │ ├── memory.cc │ │ ├── memory.h │ │ ├── os_malloc.cc │ │ ├── portability.cc │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── ensure_memcheck_fails.sh │ │ │ ├── rwlock_condvar.h │ │ │ ├── test-active-cpus.cc │ │ │ ├── test-cache-line-boundary-fails.cc │ │ │ ├── test-cpu-freq-openlimit17.cc │ │ │ ├── test-cpu-freq.cc │ │ │ ├── test-filesystem-sizes.cc │ │ │ ├── test-flock.cc │ │ │ ├── test-fsync-directory.cc │ │ │ ├── test-fsync.cc │ │ │ ├── test-gettime.cc │ │ │ ├── test-gettimeofday.cc │ │ │ ├── test-hugepage.cc │ │ │ ├── test-max-data.cc │ │ │ ├── test-memory-status.cc │ │ │ ├── test-pagesize.cc │ │ │ ├── test-pthread-rwlock-rdlock.cc │ │ │ ├── test-pthread-rwlock-rwr.cc │ │ │ ├── test-pwrite4g.cc │ │ │ ├── test-snprintf.cc │ │ │ ├── test-stat.cc │ │ │ ├── test-toku-malloc.cc │ │ │ ├── test-xid.cc │ │ │ ├── test.h │ │ │ ├── try-assert-zero.cc │ │ │ ├── try-assert0.cc │ │ │ ├── try-leak-lost.cc │ │ │ ├── try-leak-reachable.cc │ │ │ └── try-uninit.cc │ │ ├── toku_assert.cc │ │ ├── toku_assert.h │ │ ├── toku_atomic.h │ │ ├── toku_byteswap.h │ │ ├── toku_config.h.in │ │ ├── toku_crash.cc │ │ ├── toku_crash.h │ │ ├── toku_debug_sync.h │ │ ├── toku_htod.h │ │ ├── toku_htonl.h │ │ ├── toku_instr_mysql.cc │ │ ├── toku_instr_mysql.h │ │ ├── toku_instrumentation.h │ │ ├── toku_list.h │ │ ├── toku_os.h │ │ ├── toku_os_types.h │ │ ├── toku_path.cc │ │ ├── toku_path.h │ │ ├── toku_portability.h │ │ ├── toku_pthread.cc │ │ ├── toku_pthread.h │ │ ├── toku_race_tools.h │ │ ├── toku_random.h │ │ ├── toku_stdint.h │ │ ├── toku_stdlib.h │ │ ├── toku_time.cc │ │ └── toku_time.h │ ├── scripts │ │ ├── run-all-nightly-tests.bash │ │ ├── run-nightly-coverage-tests.bash │ │ ├── run-nightly-drd-tests.bash │ │ ├── run-nightly-release-tests.bash │ │ ├── run.fractal.tree.tests.cmake │ │ ├── run.stress-tests-forever.bash │ │ ├── run.stress-tests.py │ │ ├── tokugrind │ │ ├── tokuvalgrind │ │ └── watch.stress-tests.bash │ ├── src │ │ ├── CMakeLists.txt │ │ ├── errors.cc │ │ ├── export.map │ │ ├── indexer-internal.h │ │ ├── indexer-undo-do.cc │ │ ├── indexer.cc │ │ ├── indexer.h │ │ ├── loader.cc │ │ ├── loader.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── big-nested-abort-abort.cc │ │ │ ├── big-nested-abort-commit.cc │ │ │ ├── big-nested-commit-abort.cc │ │ │ ├── big-nested-commit-commit.cc │ │ │ ├── big-shutdown.cc │ │ │ ├── bigtxn27.cc │ │ │ ├── blackhole.cc │ │ │ ├── blocking-first-empty.cc │ │ │ ├── blocking-first.cc │ │ │ ├── blocking-last.cc │ │ │ ├── blocking-next-prev-deadlock.cc │ │ │ ├── blocking-next-prev.cc │ │ │ ├── blocking-prelock-range.cc │ │ │ ├── blocking-put-timeout.cc │ │ │ ├── blocking-put-wakeup.cc │ │ │ ├── blocking-put.cc │ │ │ ├── blocking-set-range-0.cc │ │ │ ├── blocking-set-range-n.cc │ │ │ ├── blocking-set-range-reverse-0.cc │ │ │ ├── blocking-set.cc │ │ │ ├── blocking-table-lock.cc │ │ │ ├── bug1381.cc │ │ │ ├── cachetable-race.cc │ │ │ ├── checkpoint1.cc │ │ │ ├── checkpoint_fairness.cc │ │ │ ├── checkpoint_stress.cc │ │ │ ├── checkpoint_test.h │ │ │ ├── create-datadir.cc │ │ │ ├── cursor-isolation.cc │ │ │ ├── cursor-more-than-a-leaf-provdel.cc │ │ │ ├── cursor-set-del-rmw.cc │ │ │ ├── cursor-set-range-rmw.cc │ │ │ ├── cursor-step-over-delete.cc │ │ │ ├── db-put-simple-deadlock-threads.cc │ │ │ ├── db-put-simple-deadlock.cc │ │ │ ├── db-put-simple-lockwait.cc │ │ │ ├── db-put-update-deadlock.cc │ │ │ ├── dbremove-nofile-limit.cc │ │ │ ├── del-multiple-huge-primary-row.cc │ │ │ ├── del-multiple-srcdb.cc │ │ │ ├── del-multiple.cc │ │ │ ├── del-simple.cc │ │ │ ├── directory_lock.cc │ │ │ ├── diskfull.cc │ │ │ ├── drd.suppressions │ │ │ ├── dump-env.cc │ │ │ ├── env-put-multiple.cc │ │ │ ├── env_loader_memory.cc │ │ │ ├── env_nproc.cc │ │ │ ├── env_startup.cc │ │ │ ├── filesize.cc │ │ │ ├── get_key_after_bytes_unit.cc │ │ │ ├── get_last_key.cc │ │ │ ├── helgrind.suppressions │ │ │ ├── helgrind1.cc │ │ │ ├── helgrind2.cc │ │ │ ├── helgrind3.cc │ │ │ ├── hot-optimize-table-tests.cc │ │ │ ├── hotindexer-bw.cc │ │ │ ├── hotindexer-error-callback.cc │ │ │ ├── hotindexer-insert-committed-optimized.cc │ │ │ ├── hotindexer-insert-committed.cc │ │ │ ├── hotindexer-insert-provisional.cc │ │ │ ├── hotindexer-lock-test.cc │ │ │ ├── hotindexer-multiclient.cc │ │ │ ├── hotindexer-nested-insert-committed.cc │ │ │ ├── hotindexer-put-abort.cc │ │ │ ├── hotindexer-put-commit.cc │ │ │ ├── hotindexer-put-multiple.cc │ │ │ ├── hotindexer-simple-abort-put.cc │ │ │ ├── hotindexer-simple-abort.cc │ │ │ ├── hotindexer-undo-do-test.cc │ │ │ ├── hotindexer-undo-do-tests │ │ │ │ ├── README │ │ │ │ ├── commit.d0.d100.d200.result │ │ │ │ ├── commit.d0.d100.d200.test │ │ │ │ ├── commit.d0.d100.i200.result │ │ │ │ ├── commit.d0.d100.i200.test │ │ │ │ ├── commit.d0.d100.result │ │ │ │ ├── commit.d0.d100.test │ │ │ │ ├── commit.d0.i100.d200.result │ │ │ │ ├── commit.d0.i100.d200.test │ │ │ │ ├── commit.d0.i100.i200.result │ │ │ │ ├── commit.d0.i100.i200.test │ │ │ │ ├── commit.d0.i100.result │ │ │ │ ├── commit.d0.i100.test │ │ │ │ ├── commit.d0.result │ │ │ │ ├── commit.d0.test │ │ │ │ ├── commit.i0.d100.d200.result │ │ │ │ ├── commit.i0.d100.d200.test │ │ │ │ ├── commit.i0.d100.i200.result │ │ │ │ ├── commit.i0.d100.i200.test │ │ │ │ ├── commit.i0.d100.result │ │ │ │ ├── commit.i0.d100.test │ │ │ │ ├── commit.i0.i100.d200.result │ │ │ │ ├── commit.i0.i100.d200.test │ │ │ │ ├── commit.i0.i100.i200.result │ │ │ │ ├── commit.i0.i100.i200.test │ │ │ │ ├── commit.i0.i100.result │ │ │ │ ├── commit.i0.i100.test │ │ │ │ ├── commit.i0.result │ │ │ │ ├── commit.i0.test │ │ │ │ ├── insert.300.result │ │ │ │ ├── insert.300.test │ │ │ │ ├── placeholder.0.live.result │ │ │ │ ├── placeholder.0.live.test │ │ │ │ ├── placeholder.0.result │ │ │ │ ├── placeholder.0.test │ │ │ │ ├── placeholder.1.live.result │ │ │ │ ├── placeholder.1.live.test │ │ │ │ ├── placeholder.2.live.result │ │ │ │ ├── placeholder.2.live.test │ │ │ │ ├── placeholder.2.result │ │ │ │ ├── placeholder.2.test │ │ │ │ ├── placeholder.3.result │ │ │ │ ├── placeholder.3.test │ │ │ │ ├── prov-2.py │ │ │ │ ├── prov.1.live.result │ │ │ │ ├── prov.1.live.test │ │ │ │ ├── prov.1.result │ │ │ │ ├── prov.1.test │ │ │ │ ├── prov.aborting.d0.i100.result │ │ │ │ ├── prov.aborting.d0.i100.test │ │ │ │ ├── prov.aborting.i100.i200.result │ │ │ │ ├── prov.aborting.i100.i200.test │ │ │ │ ├── prov.committing.d0.i100.result │ │ │ │ ├── prov.committing.d0.i100.test │ │ │ │ ├── prov.committing.i100.i200.result │ │ │ │ ├── prov.committing.i100.i200.test │ │ │ │ ├── prov.d0.d100.result │ │ │ │ ├── prov.d0.d100.test │ │ │ │ ├── prov.d0.d200.d201.result │ │ │ │ ├── prov.d0.d200.d201.test │ │ │ │ ├── prov.d0.d200.i201.result │ │ │ │ ├── prov.d0.d200.i201.test │ │ │ │ ├── prov.d0.i100.result │ │ │ │ ├── prov.d0.i100.test │ │ │ │ ├── prov.d0.i200.d201.result │ │ │ │ ├── prov.d0.i200.d201.test │ │ │ │ ├── prov.d0.i200.i201.result │ │ │ │ ├── prov.d0.i200.i201.test │ │ │ │ ├── prov.d0.p200.d201.result │ │ │ │ ├── prov.d0.p200.d201.test │ │ │ │ ├── prov.d0.p200.i201.result │ │ │ │ ├── prov.d0.p200.i201.test │ │ │ │ ├── prov.i0.d100.result │ │ │ │ ├── prov.i0.d100.test │ │ │ │ ├── prov.i0.d200.d201.result │ │ │ │ ├── prov.i0.d200.d201.test │ │ │ │ ├── prov.i0.d200.i201.result │ │ │ │ ├── prov.i0.d200.i201.test │ │ │ │ ├── prov.i0.i100.result │ │ │ │ ├── prov.i0.i100.test │ │ │ │ ├── prov.i0.i200.d201.result │ │ │ │ ├── prov.i0.i200.d201.test │ │ │ │ ├── prov.i0.i200.i201.result │ │ │ │ ├── prov.i0.i200.i201.test │ │ │ │ ├── prov.i0.p200.d201.result │ │ │ │ ├── prov.i0.p200.d201.test │ │ │ │ ├── prov.i0.p200.i201.result │ │ │ │ ├── prov.i0.p200.i201.test │ │ │ │ ├── prov.live.d0.d100.result │ │ │ │ ├── prov.live.d0.d100.test │ │ │ │ ├── prov.live.d0.i100.result │ │ │ │ ├── prov.live.d0.i100.test │ │ │ │ ├── prov.live.i0.d100.result │ │ │ │ ├── prov.live.i0.d100.test │ │ │ │ ├── prov.live.i0.i100.result │ │ │ │ ├── prov.live.i0.i100.test │ │ │ │ ├── prov.live200,201.d0.d200.d201.result │ │ │ │ ├── prov.live200,201.d0.d200.d201.test │ │ │ │ ├── prov.live200,201.d0.d200.i201.result │ │ │ │ ├── prov.live200,201.d0.d200.i201.test │ │ │ │ ├── prov.live200,201.d0.i200.d201.result │ │ │ │ ├── prov.live200,201.d0.i200.d201.test │ │ │ │ ├── prov.live200,201.d0.i200.i201.result │ │ │ │ ├── prov.live200,201.d0.i200.i201.test │ │ │ │ ├── prov.live200,201.d0.p200.d201.result │ │ │ │ ├── prov.live200,201.d0.p200.d201.test │ │ │ │ ├── prov.live200,201.d0.p200.i201.result │ │ │ │ ├── prov.live200,201.d0.p200.i201.test │ │ │ │ ├── prov.live200,201.i0.d200.d201.result │ │ │ │ ├── prov.live200,201.i0.d200.d201.test │ │ │ │ ├── prov.live200,201.i0.d200.i201.result │ │ │ │ ├── prov.live200,201.i0.d200.i201.test │ │ │ │ ├── prov.live200,201.i0.i200.d201.result │ │ │ │ ├── prov.live200,201.i0.i200.d201.test │ │ │ │ ├── prov.live200,201.i0.i200.i201.result │ │ │ │ ├── prov.live200,201.i0.i200.i201.test │ │ │ │ ├── prov.live200,201.i0.p200.d201.result │ │ │ │ ├── prov.live200,201.i0.p200.d201.test │ │ │ │ ├── prov.live200,201.i0.p200.i201.result │ │ │ │ ├── prov.live200,201.i0.p200.i201.test │ │ │ │ ├── prov.live200.abort201.commit202.i0.i200.i201.i202.result │ │ │ │ ├── prov.live200.abort201.commit202.i0.i200.i201.i202.test │ │ │ │ ├── prov.live200.abort201.i0.i200.i201.result │ │ │ │ ├── prov.live200.abort201.i0.i200.i201.test │ │ │ │ ├── prov.live200.committing201.i0.i200.i201.result │ │ │ │ ├── prov.live200.committing201.i0.i200.i201.test │ │ │ │ ├── prov.live200.d0.d200.d201.result │ │ │ │ ├── prov.live200.d0.d200.d201.test │ │ │ │ ├── prov.live200.d0.d200.i201.result │ │ │ │ ├── prov.live200.d0.d200.i201.test │ │ │ │ ├── prov.live200.d0.i200.d201.result │ │ │ │ ├── prov.live200.d0.i200.d201.test │ │ │ │ ├── prov.live200.d0.i200.i201.result │ │ │ │ ├── prov.live200.d0.i200.i201.test │ │ │ │ ├── prov.live200.d0.p200.d201.result │ │ │ │ ├── prov.live200.d0.p200.d201.test │ │ │ │ ├── prov.live200.d0.p200.i201.result │ │ │ │ ├── prov.live200.d0.p200.i201.test │ │ │ │ ├── prov.live200.i0.d200.d201.result │ │ │ │ ├── prov.live200.i0.d200.d201.test │ │ │ │ ├── prov.live200.i0.d200.i201.result │ │ │ │ ├── prov.live200.i0.d200.i201.test │ │ │ │ ├── prov.live200.i0.i200.d201.result │ │ │ │ ├── prov.live200.i0.i200.d201.test │ │ │ │ ├── prov.live200.i0.i200.i201.result │ │ │ │ ├── prov.live200.i0.i200.i201.test │ │ │ │ ├── prov.live200.i0.p200.d201.result │ │ │ │ ├── prov.live200.i0.p200.d201.test │ │ │ │ ├── prov.live200.i0.p200.i201.result │ │ │ │ ├── prov.live200.i0.p200.i201.test │ │ │ │ ├── prov.preparing.d0.i100.result │ │ │ │ ├── prov.preparing.d0.i100.test │ │ │ │ ├── prov.preparing.d0.i200.i201.result │ │ │ │ └── prov.preparing.d0.i200.i201.test │ │ │ ├── hotindexer-with-queries.cc │ │ │ ├── inflate.cc │ │ │ ├── inflate2.cc │ │ │ ├── insert-dup-prelock.cc │ │ │ ├── ipm.py │ │ │ ├── isolation-read-committed.cc │ │ │ ├── isolation.cc │ │ │ ├── key-val.h │ │ │ ├── keyrange-merge.cc │ │ │ ├── keyrange.cc │ │ │ ├── last-verify-time.cc │ │ │ ├── loader-cleanup-test.cc │ │ │ ├── loader-close-nproc-limit.cc │ │ │ ├── loader-create-abort.cc │ │ │ ├── loader-create-close.cc │ │ │ ├── loader-create-commit-nproc-limit.cc │ │ │ ├── loader-create-nproc-limit.cc │ │ │ ├── loader-dup-test.cc │ │ │ ├── loader-no-puts.cc │ │ │ ├── loader-reference-test.cc │ │ │ ├── loader-stress-del.cc │ │ │ ├── loader-stress-test.cc │ │ │ ├── loader-tpch-load.cc │ │ │ ├── locktree_escalation_stalls.cc │ │ │ ├── manyfiles.cc │ │ │ ├── maxsize-for-loader.cc │ │ │ ├── medium-nested-commit-commit.cc │ │ │ ├── multiprocess.cc │ │ │ ├── mvcc-create-table.cc │ │ │ ├── mvcc-many-committed.cc │ │ │ ├── mvcc-read-committed.cc │ │ │ ├── openlimit17-locktree.cc │ │ │ ├── openlimit17-metafiles.cc │ │ │ ├── openlimit17.cc │ │ │ ├── perf_checkpoint_var.cc │ │ │ ├── perf_child_txn.cc │ │ │ ├── perf_cursor_nop.cc │ │ │ ├── perf_iibench.cc │ │ │ ├── perf_insert.cc │ │ │ ├── perf_malloc_free.cc │ │ │ ├── perf_nop.cc │ │ │ ├── perf_partitioned_counter.cc │ │ │ ├── perf_ptquery.cc │ │ │ ├── perf_ptquery2.cc │ │ │ ├── perf_rangequery.cc │ │ │ ├── perf_read_txn.cc │ │ │ ├── perf_read_txn_single_thread.cc │ │ │ ├── perf_read_write.cc │ │ │ ├── perf_root_txn.cc │ │ │ ├── perf_simple_counter.cc │ │ │ ├── perf_thread_counter.cc │ │ │ ├── perf_txn_single_thread.cc │ │ │ ├── powerfail.cc │ │ │ ├── preload-db-nested.cc │ │ │ ├── preload-db.cc │ │ │ ├── prelock-read-read.cc │ │ │ ├── prelock-read-write.cc │ │ │ ├── prelock-write-read.cc │ │ │ ├── prelock-write-write.cc │ │ │ ├── print_engine_status.cc │ │ │ ├── progress.cc │ │ │ ├── put-del-multiple-array-indexing.cc │ │ │ ├── queries_with_deletes.cc │ │ │ ├── recover-2483.cc │ │ │ ├── recover-3113.cc │ │ │ ├── recover-5146.cc │ │ │ ├── recover-checkpoint-fcreate-fdelete-fcreate.cc │ │ │ ├── recover-checkpoint-fopen-abort.cc │ │ │ ├── recover-checkpoint-fopen-commit.cc │ │ │ ├── recover-child-rollback.cc │ │ │ ├── recover-compare-db-descriptor.cc │ │ │ ├── recover-compare-db.cc │ │ │ ├── recover-del-multiple-abort.cc │ │ │ ├── recover-del-multiple-srcdb-fdelete-all.cc │ │ │ ├── recover-del-multiple.cc │ │ │ ├── recover-delboth-after-checkpoint.cc │ │ │ ├── recover-delboth-checkpoint.cc │ │ │ ├── recover-descriptor.cc │ │ │ ├── recover-descriptor10.cc │ │ │ ├── recover-descriptor11.cc │ │ │ ├── recover-descriptor12.cc │ │ │ ├── recover-descriptor2.cc │ │ │ ├── recover-descriptor3.cc │ │ │ ├── recover-descriptor4.cc │ │ │ ├── recover-descriptor5.cc │ │ │ ├── recover-descriptor6.cc │ │ │ ├── recover-descriptor7.cc │ │ │ ├── recover-descriptor8.cc │ │ │ ├── recover-descriptor9.cc │ │ │ ├── recover-fassociate.cc │ │ │ ├── recover-fclose-in-checkpoint.cc │ │ │ ├── recover-fcreate-basementnodesize.cc │ │ │ ├── recover-fcreate-fclose.cc │ │ │ ├── recover-fcreate-fdelete.cc │ │ │ ├── recover-fcreate-nodesize.cc │ │ │ ├── recover-fcreate-xabort.cc │ │ │ ├── recover-flt1.cc │ │ │ ├── recover-flt10.cc │ │ │ ├── recover-flt2.cc │ │ │ ├── recover-flt3.cc │ │ │ ├── recover-flt4.cc │ │ │ ├── recover-flt5.cc │ │ │ ├── recover-flt6.cc │ │ │ ├── recover-flt7.cc │ │ │ ├── recover-flt8.cc │ │ │ ├── recover-flt9.cc │ │ │ ├── recover-fopen-checkpoint-fclose.cc │ │ │ ├── recover-fopen-fclose-checkpoint.cc │ │ │ ├── recover-fopen-fdelete-checkpoint-fcreate.cc │ │ │ ├── recover-hotindexer-simple-abort-put.cc │ │ │ ├── recover-loader-test.cc │ │ │ ├── recover-lsn-filter-multiple.cc │ │ │ ├── recover-lsn-filter.cc │ │ │ ├── recover-missing-dbfile-2.cc │ │ │ ├── recover-missing-dbfile.cc │ │ │ ├── recover-missing-logfile.cc │ │ │ ├── recover-put-multiple-abort.cc │ │ │ ├── recover-put-multiple-fdelete-all.cc │ │ │ ├── recover-put-multiple-fdelete-some.cc │ │ │ ├── recover-put-multiple-srcdb-fdelete-all.cc │ │ │ ├── recover-put-multiple.cc │ │ │ ├── recover-rollback.cc │ │ │ ├── recover-rollinclude.cc │ │ │ ├── recover-split-checkpoint.cc │ │ │ ├── recover-straddle-txn-nested.cc │ │ │ ├── recover-straddle-txn.cc │ │ │ ├── recover-tablelock.cc │ │ │ ├── recover-test-logsuppress-put.cc │ │ │ ├── recover-test-logsuppress.cc │ │ │ ├── recover-test1.cc │ │ │ ├── recover-test2.cc │ │ │ ├── recover-test3.cc │ │ │ ├── recover-test_crash_in_flusher_thread.h │ │ │ ├── recover-test_stress1.cc │ │ │ ├── recover-test_stress2.cc │ │ │ ├── recover-test_stress3.cc │ │ │ ├── recover-test_stress_openclose.cc │ │ │ ├── recover-update-multiple-abort.cc │ │ │ ├── recover-update-multiple.cc │ │ │ ├── recover-update_aborts.cc │ │ │ ├── recover-update_aborts_before_checkpoint.cc │ │ │ ├── recover-update_aborts_before_close.cc │ │ │ ├── recover-update_broadcast_aborts.cc │ │ │ ├── recover-update_broadcast_aborts2.cc │ │ │ ├── recover-update_broadcast_aborts3.cc │ │ │ ├── recover-update_broadcast_aborts_before_checkpoint.cc │ │ │ ├── recover-update_broadcast_aborts_before_close.cc │ │ │ ├── recover-update_broadcast_changes_values.cc │ │ │ ├── recover-update_broadcast_changes_values2.cc │ │ │ ├── recover-update_broadcast_changes_values3.cc │ │ │ ├── recover-update_broadcast_changes_values_before_checkpoint.cc │ │ │ ├── recover-update_broadcast_changes_values_before_close.cc │ │ │ ├── recover-update_changes_values.cc │ │ │ ├── recover-update_changes_values_before_checkpoint.cc │ │ │ ├── recover-update_changes_values_before_close.cc │ │ │ ├── recover-upgrade-db-descriptor-multihandle.cc │ │ │ ├── recover-upgrade-db-descriptor.cc │ │ │ ├── recover-x1-abort.cc │ │ │ ├── recover-x1-commit.cc │ │ │ ├── recover-x1-nested-abort.cc │ │ │ ├── recover-x1-nested-commit.cc │ │ │ ├── recover-x2-abort.cc │ │ │ ├── recover-x2-commit.cc │ │ │ ├── recovery_fileops_stress.cc │ │ │ ├── recovery_fileops_unit.cc │ │ │ ├── recovery_stress.cc │ │ │ ├── redirect.cc │ │ │ ├── replace-into-write-lock.cc │ │ │ ├── rollback-inconsistency.cc │ │ │ ├── root_fifo_1.cc │ │ │ ├── root_fifo_2.cc │ │ │ ├── root_fifo_31.cc │ │ │ ├── root_fifo_32.cc │ │ │ ├── root_fifo_41.cc │ │ │ ├── rowsize.cc │ │ │ ├── run-hotindexer-undo-do-tests.bash │ │ │ ├── run_abortrecover_test.sh │ │ │ ├── run_checkpoint_stress_test.sh │ │ │ ├── run_diskfull_test.sh │ │ │ ├── run_powerfail_test.py │ │ │ ├── run_recover_stress_test.sh │ │ │ ├── run_recover_test.sh │ │ │ ├── run_recovery_fileops_unit.sh │ │ │ ├── run_stress_test.py │ │ │ ├── run_test_thread_stack.sh │ │ │ ├── seqinsert.cc │ │ │ ├── shutdown-3344.cc │ │ │ ├── simple.cc │ │ │ ├── stat64-create-modify-times.cc │ │ │ ├── stat64-null-txn.cc │ │ │ ├── stat64-root-changes.cc │ │ │ ├── stat64.cc │ │ │ ├── stress-gc.cc │ │ │ ├── stress-gc2.cc │ │ │ ├── stress-test.cc │ │ │ ├── stress_openclose.h │ │ │ ├── test-5138.cc │ │ │ ├── test-nested-xopen-eclose.cc │ │ │ ├── test-prepare.cc │ │ │ ├── test-prepare2.cc │ │ │ ├── test-prepare3.cc │ │ │ ├── test-rollinclude.cc │ │ │ ├── test-xa-prepare.cc │ │ │ ├── test-xopen-eclose.cc │ │ │ ├── test.h │ │ │ ├── test1572.cc │ │ │ ├── test1753.cc │ │ │ ├── test1842.cc │ │ │ ├── test3039.cc │ │ │ ├── test3219.cc │ │ │ ├── test3522.cc │ │ │ ├── test3522b.cc │ │ │ ├── test3529.cc │ │ │ ├── test4573-logtrim.cc │ │ │ ├── test5092.cc │ │ │ ├── test938.cc │ │ │ ├── test938b.cc │ │ │ ├── test938c.cc │ │ │ ├── test_1672532.cc │ │ │ ├── test_3529_insert_2.cc │ │ │ ├── test_3529_table_lock.cc │ │ │ ├── test_3645.cc │ │ │ ├── test_3755.cc │ │ │ ├── test_4015.cc │ │ │ ├── test_4368.cc │ │ │ ├── test_4657.cc │ │ │ ├── test_5015.cc │ │ │ ├── test_5469.cc │ │ │ ├── test_789.cc │ │ │ ├── test_935.cc │ │ │ ├── test_abort1.cc │ │ │ ├── test_abort2.cc │ │ │ ├── test_abort3.cc │ │ │ ├── test_abort4.cc │ │ │ ├── test_abort5.cc │ │ │ ├── test_abort_delete_first.cc │ │ │ ├── test_archive0.cc │ │ │ ├── test_archive1.cc │ │ │ ├── test_archive2.cc │ │ │ ├── test_bad_implicit_promotion.cc │ │ │ ├── test_blobs_leaf_split.cc │ │ │ ├── test_bulk_fetch.cc │ │ │ ├── test_cachesize.cc │ │ │ ├── test_cmp_descriptor.cc │ │ │ ├── test_compression_methods.cc │ │ │ ├── test_cursor_2.cc │ │ │ ├── test_cursor_3.cc │ │ │ ├── test_cursor_DB_NEXT_no_dup.cc │ │ │ ├── test_cursor_db_current.cc │ │ │ ├── test_cursor_delete2.cc │ │ │ ├── test_cursor_flags.cc │ │ │ ├── test_cursor_interrupt.cc │ │ │ ├── test_cursor_nonleaf_expand.cc │ │ │ ├── test_cursor_null.cc │ │ │ ├── test_cursor_stickyness.cc │ │ │ ├── test_cursor_with_read_txn.cc │ │ │ ├── test_db_already_exists.cc │ │ │ ├── test_db_change_pagesize.cc │ │ │ ├── test_db_change_xxx.cc │ │ │ ├── test_db_close_no_open.cc │ │ │ ├── test_db_current_clobbers_db.cc │ │ │ ├── test_db_dbt_mem_behavior.cc │ │ │ ├── test_db_delete.cc │ │ │ ├── test_db_descriptor.cc │ │ │ ├── test_db_env_open_close.cc │ │ │ ├── test_db_env_open_nocreate.cc │ │ │ ├── test_db_env_open_open_close.cc │ │ │ ├── test_db_env_set_errpfx.cc │ │ │ ├── test_db_env_set_lg_dir.cc │ │ │ ├── test_db_env_set_tmp_dir.cc │ │ │ ├── test_db_env_strdup_null.cc │ │ │ ├── test_db_get_put_flags.cc │ │ │ ├── test_db_named_delete_last.cc │ │ │ ├── test_db_no_env.cc │ │ │ ├── test_db_open_notexist_reopen.cc │ │ │ ├── test_db_remove.cc │ │ │ ├── test_db_remove_subdb.cc │ │ │ ├── test_db_rowcount.cc │ │ │ ├── test_db_set_flags.cc │ │ │ ├── test_db_subdb.cc │ │ │ ├── test_db_subdb_different_flags.cc │ │ │ ├── test_db_txn_locks_nonheaviside.cc │ │ │ ├── test_db_txn_locks_read_uncommitted.cc │ │ │ ├── test_db_version.cc │ │ │ ├── test_env_close_flags.cc │ │ │ ├── test_env_create_db_create.cc │ │ │ ├── test_env_open_flags.cc │ │ │ ├── test_equal_keys_with_different_bytes.cc │ │ │ ├── test_error.cc │ │ │ ├── test_forkjoin.cc │ │ │ ├── test_get_max_row_size.cc │ │ │ ├── test_get_zeroed_dbt.cc │ │ │ ├── test_groupcommit_count.cc │ │ │ ├── test_groupcommit_perf.cc │ │ │ ├── test_hsoc.cc │ │ │ ├── test_insert_cursor_delete_insert.cc │ │ │ ├── test_insert_many_gc.cc │ │ │ ├── test_insert_memleak.cc │ │ │ ├── test_insert_unique.cc │ │ │ ├── test_iterate_live_transactions.cc │ │ │ ├── test_iterate_pending_lock_requests.cc │ │ │ ├── test_keylen_diff.cc │ │ │ ├── test_kv_gen.h │ │ │ ├── test_kv_limits.cc │ │ │ ├── test_large_update_broadcast_small_cachetable.cc │ │ │ ├── test_lock_timeout_callback.cc │ │ │ ├── test_locking_with_read_txn.cc │ │ │ ├── test_locktree_close.cc │ │ │ ├── test_log0.cc │ │ │ ├── test_log1.cc │ │ │ ├── test_log10.cc │ │ │ ├── test_log1_abort.cc │ │ │ ├── test_log2.cc │ │ │ ├── test_log2_abort.cc │ │ │ ├── test_log3.cc │ │ │ ├── test_log3_abort.cc │ │ │ ├── test_log4.cc │ │ │ ├── test_log4_abort.cc │ │ │ ├── test_log5.cc │ │ │ ├── test_log5_abort.cc │ │ │ ├── test_log6.cc │ │ │ ├── test_log6_abort.cc │ │ │ ├── test_log6a_abort.cc │ │ │ ├── test_log7.cc │ │ │ ├── test_log8.cc │ │ │ ├── test_log9.cc │ │ │ ├── test_logflush.cc │ │ │ ├── test_logmax.cc │ │ │ ├── test_memcmp_magic.cc │ │ │ ├── test_mostly_seq.cc │ │ │ ├── test_multiple_checkpoints_block_commit.cc │ │ │ ├── test_nested.cc │ │ │ ├── test_nodup_set.cc │ │ │ ├── test_query.cc │ │ │ ├── test_rand_insert.cc │ │ │ ├── test_read_txn_invalid_ops.cc │ │ │ ├── test_redirect_func.cc │ │ │ ├── test_restrict.cc │ │ │ ├── test_reverse_compare_fun.cc │ │ │ ├── test_set_func_malloc.cc │ │ │ ├── test_simple_read_txn.cc │ │ │ ├── test_stress0.cc │ │ │ ├── test_stress1.cc │ │ │ ├── test_stress2.cc │ │ │ ├── test_stress3.cc │ │ │ ├── test_stress4.cc │ │ │ ├── test_stress5.cc │ │ │ ├── test_stress6.cc │ │ │ ├── test_stress7.cc │ │ │ ├── test_stress_hot_indexing.cc │ │ │ ├── test_stress_openclose.cc │ │ │ ├── test_stress_with_verify.cc │ │ │ ├── test_thread_flags.cc │ │ │ ├── test_thread_insert.cc │ │ │ ├── test_trans_desc_during_chkpt.cc │ │ │ ├── test_trans_desc_during_chkpt2.cc │ │ │ ├── test_trans_desc_during_chkpt3.cc │ │ │ ├── test_trans_desc_during_chkpt4.cc │ │ │ ├── test_transactional_descriptor.cc │ │ │ ├── test_txn_abort5.cc │ │ │ ├── test_txn_abort5a.cc │ │ │ ├── test_txn_abort6.cc │ │ │ ├── test_txn_abort7.cc │ │ │ ├── test_txn_begin_commit.cc │ │ │ ├── test_txn_close_before_commit.cc │ │ │ ├── test_txn_close_before_prepare_commit.cc │ │ │ ├── test_txn_cursor_last.cc │ │ │ ├── test_txn_nested1.cc │ │ │ ├── test_txn_nested2.cc │ │ │ ├── test_txn_nested3.cc │ │ │ ├── test_txn_nested4.cc │ │ │ ├── test_txn_nested5.cc │ │ │ ├── test_txn_nested_abort.cc │ │ │ ├── test_txn_nested_abort2.cc │ │ │ ├── test_txn_nested_abort3.cc │ │ │ ├── test_txn_nested_abort4.cc │ │ │ ├── test_txn_read_committed_always.cc │ │ │ ├── test_txn_recover3.cc │ │ │ ├── test_unused_memory_crash.cc │ │ │ ├── test_update_abort_works.cc │ │ │ ├── test_update_broadcast_abort_works.cc │ │ │ ├── test_update_broadcast_calls_back.cc │ │ │ ├── test_update_broadcast_can_delete_elements.cc │ │ │ ├── test_update_broadcast_changes_values.cc │ │ │ ├── test_update_broadcast_indexer.cc │ │ │ ├── test_update_broadcast_loader.cc │ │ │ ├── test_update_broadcast_nested_updates.cc │ │ │ ├── test_update_broadcast_previously_deleted.cc │ │ │ ├── test_update_broadcast_stress.cc │ │ │ ├── test_update_broadcast_update_fun_has_choices.cc │ │ │ ├── test_update_broadcast_with_empty_table.cc │ │ │ ├── test_update_calls_back.cc │ │ │ ├── test_update_can_delete_elements.cc │ │ │ ├── test_update_changes_values.cc │ │ │ ├── test_update_nested_updates.cc │ │ │ ├── test_update_nonexistent_keys.cc │ │ │ ├── test_update_previously_deleted.cc │ │ │ ├── test_update_stress.cc │ │ │ ├── test_update_txn_snapshot_works_concurrently.cc │ │ │ ├── test_update_txn_snapshot_works_correctly_with_deletes.cc │ │ │ ├── test_update_with_empty_table.cc │ │ │ ├── test_updates_single_key.cc │ │ │ ├── test_weakxaction.cc │ │ │ ├── test_zero_length_keys.cc │ │ │ ├── threaded_stress_test_helpers.h │ │ │ ├── time_create_db.cc │ │ │ ├── transactional_fileops.cc │ │ │ ├── txn_manager_handle_snapshot_atomicity.cc │ │ │ ├── update-multiple-data-diagonal.cc │ │ │ ├── update-multiple-key0.cc │ │ │ ├── update-multiple-nochange.cc │ │ │ ├── update-multiple-with-indexer-array.cc │ │ │ ├── update-multiple-with-indexer.cc │ │ │ ├── update.cc │ │ │ ├── upgrade-test-1.cc │ │ │ ├── upgrade-test-2.cc │ │ │ ├── upgrade-test-3.cc │ │ │ ├── upgrade-test-4.cc │ │ │ ├── upgrade-test-5.cc │ │ │ ├── upgrade-test-6.cc │ │ │ ├── upgrade-test-7.cc │ │ │ ├── upgrade_simple.cc │ │ │ ├── xa-bigtxn-discard-abort.cc │ │ │ ├── xa-bigtxn-discard-commit.cc │ │ │ ├── xa-dirty-commit.cc │ │ │ ├── xa-dirty-rollback.cc │ │ │ ├── xa-txn-discard-abort.cc │ │ │ ├── xa-txn-discard-commit.cc │ │ │ └── zombie_db.cc │ │ ├── toku_patent.cc │ │ ├── ydb-internal.h │ │ ├── ydb.cc │ │ ├── ydb.h │ │ ├── ydb_cursor.cc │ │ ├── ydb_cursor.h │ │ ├── ydb_db.cc │ │ ├── ydb_db.h │ │ ├── ydb_env_func.cc │ │ ├── ydb_env_func.h │ │ ├── ydb_lib.cc │ │ ├── ydb_load.h │ │ ├── ydb_row_lock.cc │ │ ├── ydb_row_lock.h │ │ ├── ydb_txn.cc │ │ ├── ydb_txn.h │ │ ├── ydb_write.cc │ │ └── ydb_write.h │ ├── third_party │ │ ├── snappy-1.1.2 │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── format_description.txt │ │ │ ├── framing_format.txt │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ └── gtest.m4 │ │ │ ├── missing │ │ │ ├── snappy-c.cc │ │ │ ├── snappy-c.h │ │ │ ├── snappy-internal.h │ │ │ ├── snappy-sinksource.cc │ │ │ ├── snappy-sinksource.h │ │ │ ├── snappy-stubs-internal.cc │ │ │ ├── snappy-stubs-internal.h │ │ │ ├── snappy-stubs-public.h │ │ │ ├── snappy-stubs-public.h.in │ │ │ ├── snappy-test.cc │ │ │ ├── snappy-test.h │ │ │ ├── snappy.cc │ │ │ ├── snappy.h │ │ │ └── snappy_unittest.cc │ │ └── xz-4.999.9beta │ │ │ ├── ABOUT-NLS │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── COPYING.GPLv2 │ │ │ ├── COPYING.GPLv3 │ │ │ ├── COPYING.LGPLv2.1 │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── INSTALL │ │ │ ├── INSTALL.generic │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── PACKAGERS │ │ │ ├── README │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── build-aux │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.rpath │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── debug │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── crc32.c │ │ │ ├── full_flush.c │ │ │ ├── hex2bin.c │ │ │ ├── known_sizes.c │ │ │ ├── memusage.c │ │ │ ├── repeat.c │ │ │ └── sync_flush.c │ │ │ ├── doc │ │ │ ├── faq.txt │ │ │ ├── history.txt │ │ │ ├── lzma-file-format.txt │ │ │ ├── man │ │ │ │ ├── pdf-a4 │ │ │ │ │ ├── xz-a4.pdf │ │ │ │ │ ├── xzdec-a4.pdf │ │ │ │ │ ├── xzdiff-a4.pdf │ │ │ │ │ ├── xzgrep-a4.pdf │ │ │ │ │ ├── xzless-a4.pdf │ │ │ │ │ └── xzmore-a4.pdf │ │ │ │ ├── pdf-letter │ │ │ │ │ ├── xz-letter.pdf │ │ │ │ │ ├── xzdec-letter.pdf │ │ │ │ │ ├── xzdiff-letter.pdf │ │ │ │ │ ├── xzgrep-letter.pdf │ │ │ │ │ ├── xzless-letter.pdf │ │ │ │ │ └── xzmore-letter.pdf │ │ │ │ └── txt │ │ │ │ │ ├── xz.txt │ │ │ │ │ ├── xzdec.txt │ │ │ │ │ ├── xzdiff.txt │ │ │ │ │ ├── xzgrep.txt │ │ │ │ │ ├── xzless.txt │ │ │ │ │ └── xzmore.txt │ │ │ └── xz-file-format.txt │ │ │ ├── dos │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── config.h │ │ │ ├── extra │ │ │ ├── 7z2lzma │ │ │ │ └── 7z2lzma.bash │ │ │ └── scanlzma │ │ │ │ └── scanlzma.c │ │ │ ├── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── getopt.c │ │ │ ├── getopt.in.h │ │ │ ├── getopt1.c │ │ │ └── getopt_int.h │ │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ ├── getopt.m4 │ │ │ ├── gettext.m4 │ │ │ ├── iconv.m4 │ │ │ ├── lc_cpucores.m4 │ │ │ ├── lc_physmem.m4 │ │ │ ├── lib-ld.m4 │ │ │ ├── lib-link.m4 │ │ │ ├── lib-prefix.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── nls.m4 │ │ │ ├── po.m4 │ │ │ ├── posix-shell.m4 │ │ │ ├── progtest.m4 │ │ │ └── visibility.m4 │ │ │ ├── po │ │ │ ├── LINGUAS │ │ │ ├── Makefile.in.in │ │ │ ├── Makevars │ │ │ ├── POTFILES.in │ │ │ ├── Rules-quot │ │ │ ├── boldquot.sed │ │ │ ├── en@boldquot.header │ │ │ ├── en@quot.header │ │ │ ├── insert-header.sin │ │ │ ├── quot.sed │ │ │ ├── remove-potcdate.sin │ │ │ ├── stamp-po │ │ │ └── xz.pot │ │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── common │ │ │ │ ├── bswap.h │ │ │ │ ├── common_w32res.rc │ │ │ │ ├── cpucores.h │ │ │ │ ├── integer.h │ │ │ │ ├── mythread.h │ │ │ │ ├── open_stdxxx.h │ │ │ │ ├── physmem.h │ │ │ │ └── sysdefs.h │ │ │ ├── liblzma │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── api │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── lzma.h │ │ │ │ │ └── lzma │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── bcj.h │ │ │ │ │ │ ├── block.h │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── container.h │ │ │ │ │ │ ├── delta.h │ │ │ │ │ │ ├── filter.h │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ ├── index_hash.h │ │ │ │ │ │ ├── lzma.h │ │ │ │ │ │ ├── stream_flags.h │ │ │ │ │ │ ├── subblock.h │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ └── vli.h │ │ │ │ ├── check │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── check.c │ │ │ │ │ ├── check.h │ │ │ │ │ ├── crc32_fast.c │ │ │ │ │ ├── crc32_small.c │ │ │ │ │ ├── crc32_table.c │ │ │ │ │ ├── crc32_table_be.h │ │ │ │ │ ├── crc32_table_le.h │ │ │ │ │ ├── crc32_tablegen.c │ │ │ │ │ ├── crc32_x86.S │ │ │ │ │ ├── crc64_fast.c │ │ │ │ │ ├── crc64_small.c │ │ │ │ │ ├── crc64_table.c │ │ │ │ │ ├── crc64_table_be.h │ │ │ │ │ ├── crc64_table_le.h │ │ │ │ │ ├── crc64_tablegen.c │ │ │ │ │ ├── crc64_x86.S │ │ │ │ │ ├── crc_macros.h │ │ │ │ │ └── sha256.c │ │ │ │ ├── common │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── alone_decoder.c │ │ │ │ │ ├── alone_decoder.h │ │ │ │ │ ├── alone_encoder.c │ │ │ │ │ ├── auto_decoder.c │ │ │ │ │ ├── block_buffer_decoder.c │ │ │ │ │ ├── block_buffer_encoder.c │ │ │ │ │ ├── block_decoder.c │ │ │ │ │ ├── block_decoder.h │ │ │ │ │ ├── block_encoder.c │ │ │ │ │ ├── block_encoder.h │ │ │ │ │ ├── block_header_decoder.c │ │ │ │ │ ├── block_header_encoder.c │ │ │ │ │ ├── block_util.c │ │ │ │ │ ├── bsr.h │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── easy_buffer_encoder.c │ │ │ │ │ ├── easy_decoder_memusage.c │ │ │ │ │ ├── easy_encoder.c │ │ │ │ │ ├── easy_encoder_memusage.c │ │ │ │ │ ├── easy_preset.c │ │ │ │ │ ├── easy_preset.h │ │ │ │ │ ├── filter_buffer_decoder.c │ │ │ │ │ ├── filter_buffer_encoder.c │ │ │ │ │ ├── filter_common.c │ │ │ │ │ ├── filter_common.h │ │ │ │ │ ├── filter_decoder.c │ │ │ │ │ ├── filter_decoder.h │ │ │ │ │ ├── filter_encoder.c │ │ │ │ │ ├── filter_encoder.h │ │ │ │ │ ├── filter_flags_decoder.c │ │ │ │ │ ├── filter_flags_encoder.c │ │ │ │ │ ├── index.c │ │ │ │ │ ├── index.h │ │ │ │ │ ├── index_decoder.c │ │ │ │ │ ├── index_encoder.c │ │ │ │ │ ├── index_encoder.h │ │ │ │ │ ├── index_hash.c │ │ │ │ │ ├── stream_buffer_decoder.c │ │ │ │ │ ├── stream_buffer_encoder.c │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ ├── stream_flags_common.c │ │ │ │ │ ├── stream_flags_common.h │ │ │ │ │ ├── stream_flags_decoder.c │ │ │ │ │ ├── stream_flags_encoder.c │ │ │ │ │ ├── vli_decoder.c │ │ │ │ │ ├── vli_encoder.c │ │ │ │ │ └── vli_size.c │ │ │ │ ├── delta │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── delta_common.c │ │ │ │ │ ├── delta_common.h │ │ │ │ │ ├── delta_decoder.c │ │ │ │ │ ├── delta_decoder.h │ │ │ │ │ ├── delta_encoder.c │ │ │ │ │ ├── delta_encoder.h │ │ │ │ │ └── delta_private.h │ │ │ │ ├── liblzma.pc.in │ │ │ │ ├── liblzma_w32res.rc │ │ │ │ ├── lz │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── lz_decoder.c │ │ │ │ │ ├── lz_decoder.h │ │ │ │ │ ├── lz_encoder.c │ │ │ │ │ ├── lz_encoder.h │ │ │ │ │ ├── lz_encoder_hash.h │ │ │ │ │ └── lz_encoder_mf.c │ │ │ │ ├── lzma │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── fastpos.h │ │ │ │ │ ├── fastpos_table.c │ │ │ │ │ ├── fastpos_tablegen.c │ │ │ │ │ ├── lzma2_decoder.c │ │ │ │ │ ├── lzma2_decoder.h │ │ │ │ │ ├── lzma2_encoder.c │ │ │ │ │ ├── lzma2_encoder.h │ │ │ │ │ ├── lzma_common.h │ │ │ │ │ ├── lzma_decoder.c │ │ │ │ │ ├── lzma_decoder.h │ │ │ │ │ ├── lzma_encoder.c │ │ │ │ │ ├── lzma_encoder.h │ │ │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ │ │ ├── lzma_encoder_presets.c │ │ │ │ │ └── lzma_encoder_private.h │ │ │ │ ├── rangecoder │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── price.h │ │ │ │ │ ├── price_table.c │ │ │ │ │ ├── price_tablegen.c │ │ │ │ │ ├── range_common.h │ │ │ │ │ ├── range_decoder.h │ │ │ │ │ └── range_encoder.h │ │ │ │ ├── simple │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── arm.c │ │ │ │ │ ├── armthumb.c │ │ │ │ │ ├── ia64.c │ │ │ │ │ ├── powerpc.c │ │ │ │ │ ├── simple_coder.c │ │ │ │ │ ├── simple_coder.h │ │ │ │ │ ├── simple_decoder.c │ │ │ │ │ ├── simple_decoder.h │ │ │ │ │ ├── simple_encoder.c │ │ │ │ │ ├── simple_encoder.h │ │ │ │ │ ├── simple_private.h │ │ │ │ │ ├── sparc.c │ │ │ │ │ └── x86.c │ │ │ │ └── subblock │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── subblock_decoder.c │ │ │ │ │ ├── subblock_decoder.h │ │ │ │ │ ├── subblock_decoder_helper.c │ │ │ │ │ ├── subblock_decoder_helper.h │ │ │ │ │ ├── subblock_encoder.c │ │ │ │ │ └── subblock_encoder.h │ │ │ ├── lzmainfo │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── lzmainfo.1 │ │ │ │ └── lzmainfo.c │ │ │ ├── scripts │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── xzdiff.1 │ │ │ │ ├── xzdiff.in │ │ │ │ ├── xzgrep.1 │ │ │ │ ├── xzgrep.in │ │ │ │ ├── xzless.1 │ │ │ │ ├── xzless.in │ │ │ │ ├── xzmore.1 │ │ │ │ └── xzmore.in │ │ │ ├── xz │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── args.c │ │ │ │ ├── args.h │ │ │ │ ├── coder.c │ │ │ │ ├── coder.h │ │ │ │ ├── file_io.c │ │ │ │ ├── file_io.h │ │ │ │ ├── hardware.c │ │ │ │ ├── hardware.h │ │ │ │ ├── main.c │ │ │ │ ├── main.h │ │ │ │ ├── message.c │ │ │ │ ├── message.h │ │ │ │ ├── options.c │ │ │ │ ├── options.h │ │ │ │ ├── private.h │ │ │ │ ├── signals.c │ │ │ │ ├── signals.h │ │ │ │ ├── suffix.c │ │ │ │ ├── suffix.h │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ ├── xz.1 │ │ │ │ └── xz_w32res.rc │ │ │ └── xzdec │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── lzmadec_w32res.rc │ │ │ │ ├── xzdec.1 │ │ │ │ ├── xzdec.c │ │ │ │ └── xzdec_w32res.rc │ │ │ ├── tests │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bcj_test.c │ │ │ ├── compress_prepared_bcj_sparc │ │ │ ├── compress_prepared_bcj_x86 │ │ │ ├── create_compress_files.c │ │ │ ├── files │ │ │ │ ├── README │ │ │ │ ├── bad-0-backward_size.xz │ │ │ │ ├── bad-0-empty-truncated.xz │ │ │ │ ├── bad-0-footer_magic.xz │ │ │ │ ├── bad-0-header_magic.xz │ │ │ │ ├── bad-0-nonempty_index.xz │ │ │ │ ├── bad-0cat-alone.xz │ │ │ │ ├── bad-0cat-header_magic.xz │ │ │ │ ├── bad-0catpad-empty.xz │ │ │ │ ├── bad-0pad-empty.xz │ │ │ │ ├── bad-1-block_header-1.xz │ │ │ │ ├── bad-1-block_header-2.xz │ │ │ │ ├── bad-1-block_header-3.xz │ │ │ │ ├── bad-1-block_header-4.xz │ │ │ │ ├── bad-1-block_header-5.xz │ │ │ │ ├── bad-1-check-crc32.xz │ │ │ │ ├── bad-1-check-crc64.xz │ │ │ │ ├── bad-1-check-sha256.xz │ │ │ │ ├── bad-1-lzma2-1.xz │ │ │ │ ├── bad-1-lzma2-2.xz │ │ │ │ ├── bad-1-lzma2-3.xz │ │ │ │ ├── bad-1-lzma2-4.xz │ │ │ │ ├── bad-1-lzma2-5.xz │ │ │ │ ├── bad-1-lzma2-6.xz │ │ │ │ ├── bad-1-lzma2-7.xz │ │ │ │ ├── bad-1-lzma2-8.xz │ │ │ │ ├── bad-1-stream_flags-1.xz │ │ │ │ ├── bad-1-stream_flags-2.xz │ │ │ │ ├── bad-1-stream_flags-3.xz │ │ │ │ ├── bad-1-vli-1.xz │ │ │ │ ├── bad-1-vli-2.xz │ │ │ │ ├── bad-2-compressed_data_padding.xz │ │ │ │ ├── bad-2-index-1.xz │ │ │ │ ├── bad-2-index-2.xz │ │ │ │ ├── bad-2-index-3.xz │ │ │ │ ├── bad-2-index-4.xz │ │ │ │ ├── bad-2-index-5.xz │ │ │ │ ├── good-0-empty.xz │ │ │ │ ├── good-0cat-empty.xz │ │ │ │ ├── good-0catpad-empty.xz │ │ │ │ ├── good-0pad-empty.xz │ │ │ │ ├── good-1-3delta-lzma2.xz │ │ │ │ ├── good-1-block_header-1.xz │ │ │ │ ├── good-1-block_header-2.xz │ │ │ │ ├── good-1-block_header-3.xz │ │ │ │ ├── good-1-check-crc32.xz │ │ │ │ ├── good-1-check-crc64.xz │ │ │ │ ├── good-1-check-none.xz │ │ │ │ ├── good-1-check-sha256.xz │ │ │ │ ├── good-1-delta-lzma2.tiff.xz │ │ │ │ ├── good-1-lzma2-1.xz │ │ │ │ ├── good-1-lzma2-2.xz │ │ │ │ ├── good-1-lzma2-3.xz │ │ │ │ ├── good-1-lzma2-4.xz │ │ │ │ ├── good-1-sparc-lzma2.xz │ │ │ │ ├── good-1-x86-lzma2.xz │ │ │ │ ├── good-2-lzma2.xz │ │ │ │ ├── unsupported-block_header.xz │ │ │ │ ├── unsupported-check.xz │ │ │ │ ├── unsupported-filter_flags-1.xz │ │ │ │ ├── unsupported-filter_flags-2.xz │ │ │ │ └── unsupported-filter_flags-3.xz │ │ │ ├── test_block_header.c │ │ │ ├── test_check.c │ │ │ ├── test_compress.sh │ │ │ ├── test_files.sh │ │ │ ├── test_filter_flags.c │ │ │ ├── test_index.c │ │ │ ├── test_stream_flags.c │ │ │ └── tests.h │ │ │ ├── version.sh │ │ │ └── windows │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── config.h │ ├── tools │ │ ├── CMakeLists.txt │ │ ├── ftverify.cc │ │ ├── pmprof │ │ ├── tdb-recover.cc │ │ ├── tokudb_dump.cc │ │ ├── tokuft_logprint.cc │ │ └── tokuftdump.cc │ └── util │ │ ├── CMakeLists.txt │ │ ├── bytestring.h │ │ ├── constexpr.h │ │ ├── context.cc │ │ ├── context.h │ │ ├── dbt.cc │ │ ├── dbt.h │ │ ├── dmt.cc │ │ ├── dmt.h │ │ ├── doubly_linked_list.h │ │ ├── fmutex.h │ │ ├── frwlock.cc │ │ ├── frwlock.h │ │ ├── growable_array.h │ │ ├── kibbutz.cc │ │ ├── kibbutz.h │ │ ├── memarena.cc │ │ ├── memarena.h │ │ ├── mempool.cc │ │ ├── mempool.h │ │ ├── minicron.cc │ │ ├── minicron.h │ │ ├── nb_mutex.h │ │ ├── omt.cc │ │ ├── omt.h │ │ ├── partitioned_counter.cc │ │ ├── partitioned_counter.h │ │ ├── queue.cc │ │ ├── queue.h │ │ ├── rwlock.h │ │ ├── scoped_malloc.cc │ │ ├── scoped_malloc.h │ │ ├── sort.h │ │ ├── status.h │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── marked-omt-test.cc │ │ ├── memarena-test.cc │ │ ├── minicron-change-period-data-race.cc │ │ ├── minicron-test.cc │ │ ├── omt-test.cc │ │ ├── omt-tmpl-test.cc │ │ ├── queue-test.cc │ │ ├── rwlock_condvar.h │ │ ├── sm-basic.cc │ │ ├── sm-crash-double-free.cc │ │ ├── sort-tmpl-test.cc │ │ ├── test-frwlock-fair-writers.cc │ │ ├── test-kibbutz.cc │ │ ├── test-kibbutz2.cc │ │ ├── test-rwlock-cheapness.cc │ │ ├── test-rwlock-unfair-writers.cc │ │ ├── test-rwlock.cc │ │ ├── test.h │ │ ├── test_doubly_linked_list.cc │ │ ├── test_partitioned_counter.cc │ │ ├── test_partitioned_counter_5833.cc │ │ ├── threadpool-nproc-limit.cc │ │ ├── threadpool-test.cc │ │ ├── threadpool-testrunf.cc │ │ └── x1764-test.cc │ │ ├── threadpool.cc │ │ ├── threadpool.h │ │ ├── x1764.cc │ │ └── x1764.h │ ├── doc │ └── handlerton-lock │ ├── ha_tokudb.cc │ ├── ha_tokudb.h │ ├── ha_tokudb_admin.cc │ ├── ha_tokudb_alter_55.cc │ ├── ha_tokudb_alter_56.cc │ ├── ha_tokudb_alter_common.cc │ ├── ha_tokudb_mrr_maria.cc │ ├── ha_tokudb_mrr_mysql.cc │ ├── ha_tokudb_update.cc │ ├── hatoku_cmp.cc │ ├── hatoku_cmp.h │ ├── hatoku_defines.h │ ├── hatoku_hton.cc │ ├── hatoku_hton.h │ ├── mysql-test │ ├── README.tokudb │ ├── rpl │ │ ├── disabled.def │ │ ├── extra │ │ │ └── rpl_tests │ │ │ │ ├── rpl_parallel_load_tokudb.test │ │ │ │ └── rpl_tokudb.test │ │ ├── include │ │ │ ├── have_tokudb.inc │ │ │ ├── have_tokudb.opt │ │ │ └── rpl_tokudb_row_img_general_loop.inc │ │ ├── r │ │ │ ├── rpl_deadlock_tokudb.result │ │ │ ├── rpl_extra_col_master_tokudb.result │ │ │ ├── rpl_extra_col_slave_tokudb.result │ │ │ ├── rpl_mixed_replace_into.result │ │ │ ├── rpl_mixed_row_tokudb.result │ │ │ ├── rpl_not_null_tokudb.result │ │ │ ├── rpl_parallel_tokudb.result │ │ │ ├── rpl_parallel_tokudb_delete_pk.result │ │ │ ├── rpl_parallel_tokudb_update_pk_uc0_lookup0.result │ │ │ ├── rpl_parallel_tokudb_write_pk.result │ │ │ ├── rpl_partition_tokudb.result │ │ │ ├── rpl_relay_space_tokudb.result │ │ │ ├── rpl_rfr_disable_on_expl_pk_absence.result │ │ │ ├── rpl_row_basic_3tokudb.result │ │ │ ├── rpl_row_blob_tokudb.result │ │ │ ├── rpl_row_rec_comp_tokudb.result │ │ │ ├── rpl_row_replace_into.result │ │ │ ├── rpl_row_sp002_tokudb.result │ │ │ ├── rpl_row_sp007_tokudb.result │ │ │ ├── rpl_row_tabledefs_3tokudb.result │ │ │ ├── rpl_set_null_tokudb.result │ │ │ ├── rpl_stm_tokudb.result │ │ │ ├── rpl_stmt_replace_into.result │ │ │ ├── rpl_tokudb_bug28430.result │ │ │ ├── rpl_tokudb_bug30888.result │ │ │ ├── rpl_tokudb_commit_after_flush.result │ │ │ ├── rpl_tokudb_delete_pk.result │ │ │ ├── rpl_tokudb_delete_pk_lookup1.result │ │ │ ├── rpl_tokudb_insert_id.result │ │ │ ├── rpl_tokudb_insert_id_pk.result │ │ │ ├── rpl_tokudb_mixed_ddl.result │ │ │ ├── rpl_tokudb_mixed_dml.result │ │ │ ├── rpl_tokudb_multi_update.result │ │ │ ├── rpl_tokudb_multi_update2.result │ │ │ ├── rpl_tokudb_multi_update3.result │ │ │ ├── rpl_tokudb_read_only_ff.result │ │ │ ├── rpl_tokudb_read_only_ft.result │ │ │ ├── rpl_tokudb_read_only_tf.result │ │ │ ├── rpl_tokudb_read_only_tt.result │ │ │ ├── rpl_tokudb_rfr_partition_table.result │ │ │ ├── rpl_tokudb_row_img_blobs.result │ │ │ ├── rpl_tokudb_row_img_eng_full.result │ │ │ ├── rpl_tokudb_row_img_eng_min.result │ │ │ ├── rpl_tokudb_row_img_eng_noblob.result │ │ │ ├── rpl_tokudb_row_img_idx_full.result │ │ │ ├── rpl_tokudb_row_img_idx_min.result │ │ │ ├── rpl_tokudb_row_img_idx_noblob.result │ │ │ ├── rpl_tokudb_row_log.result │ │ │ ├── rpl_tokudb_row_lower_case_table_names.result │ │ │ ├── rpl_tokudb_row_sp003.result │ │ │ ├── rpl_tokudb_row_sp006.result │ │ │ ├── rpl_tokudb_row_trig004.result │ │ │ ├── rpl_tokudb_stm_log.result │ │ │ ├── rpl_tokudb_stm_mixed_lower_case_table_names.result │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup0.result │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup1.result │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup0.result │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup1.result │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup0.result │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup1.result │ │ │ ├── rpl_tokudb_write_pk.result │ │ │ ├── rpl_tokudb_write_pk_uc1.result │ │ │ ├── rpl_tokudb_write_unique.result │ │ │ ├── rpl_tokudb_write_unique_uc1.result │ │ │ ├── rpl_truncate_3tokudb.result │ │ │ ├── rpl_typeconv_tokudb.result │ │ │ ├── rpl_xa_interleave.result │ │ │ └── tokudb_innodb_xa_crash.result │ │ ├── suite.pm │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── rpl_deadlock_tokudb-slave.opt │ │ │ ├── rpl_deadlock_tokudb.test │ │ │ ├── rpl_extra_col_master_tokudb.test │ │ │ ├── rpl_extra_col_slave_tokudb.test │ │ │ ├── rpl_mixed_replace_into.test │ │ │ ├── rpl_mixed_row_tokudb-master.opt │ │ │ ├── rpl_not_null_tokudb.test │ │ │ ├── rpl_parallel_tokudb-master.opt │ │ │ ├── rpl_parallel_tokudb-slave.opt │ │ │ ├── rpl_parallel_tokudb.test │ │ │ ├── rpl_parallel_tokudb_delete_pk-slave.opt │ │ │ ├── rpl_parallel_tokudb_delete_pk.test │ │ │ ├── rpl_parallel_tokudb_update_pk_uc0_lookup0-slave.opt │ │ │ ├── rpl_parallel_tokudb_update_pk_uc0_lookup0.test │ │ │ ├── rpl_parallel_tokudb_write_pk-slave.opt │ │ │ ├── rpl_parallel_tokudb_write_pk.test │ │ │ ├── rpl_partition_tokudb-master.opt │ │ │ ├── rpl_partition_tokudb.test │ │ │ ├── rpl_relay_space_tokudb.test │ │ │ ├── rpl_rfr_disable_on_expl_pk_absence-slave.opt │ │ │ ├── rpl_rfr_disable_on_expl_pk_absence.test │ │ │ ├── rpl_row_basic_3tokudb.test │ │ │ ├── rpl_row_blob_tokudb.test │ │ │ ├── rpl_row_rec_comp_tokudb.test │ │ │ ├── rpl_row_replace_into.test │ │ │ ├── rpl_row_sp002_tokudb.test │ │ │ ├── rpl_row_sp007_tokudb.test │ │ │ ├── rpl_row_tabledefs_3tokudb.test │ │ │ ├── rpl_set_null_tokudb.test │ │ │ ├── rpl_stm_tokudb.test │ │ │ ├── rpl_stmt_replace_into.test │ │ │ ├── rpl_tokudb-master.opt │ │ │ ├── rpl_tokudb_bug28430-master.opt │ │ │ ├── rpl_tokudb_bug28430-slave.opt │ │ │ ├── rpl_tokudb_bug28430.test │ │ │ ├── rpl_tokudb_bug30888.test │ │ │ ├── rpl_tokudb_commit_after_flush.test │ │ │ ├── rpl_tokudb_delete_pk-slave.opt │ │ │ ├── rpl_tokudb_delete_pk.test │ │ │ ├── rpl_tokudb_delete_pk_lookup1-slave.opt │ │ │ ├── rpl_tokudb_delete_pk_lookup1.test │ │ │ ├── rpl_tokudb_insert_id-master.opt │ │ │ ├── rpl_tokudb_insert_id-slave.opt │ │ │ ├── rpl_tokudb_insert_id.test │ │ │ ├── rpl_tokudb_insert_id_pk.test │ │ │ ├── rpl_tokudb_mixed_ddl.test │ │ │ ├── rpl_tokudb_mixed_dml.test │ │ │ ├── rpl_tokudb_multi_update.test │ │ │ ├── rpl_tokudb_multi_update2-slave.opt │ │ │ ├── rpl_tokudb_multi_update2.test │ │ │ ├── rpl_tokudb_multi_update3.test │ │ │ ├── rpl_tokudb_read_only_ff-slave.opt │ │ │ ├── rpl_tokudb_read_only_ff.test │ │ │ ├── rpl_tokudb_read_only_ft-slave.opt │ │ │ ├── rpl_tokudb_read_only_ft.test │ │ │ ├── rpl_tokudb_read_only_tf-slave.opt │ │ │ ├── rpl_tokudb_read_only_tf.test │ │ │ ├── rpl_tokudb_read_only_tt-slave.opt │ │ │ ├── rpl_tokudb_read_only_tt.test │ │ │ ├── rpl_tokudb_rfr_partition_table-slave.opt │ │ │ ├── rpl_tokudb_rfr_partition_table.test │ │ │ ├── rpl_tokudb_row_crash_safe-master.opt │ │ │ ├── rpl_tokudb_row_crash_safe-slave.opt │ │ │ ├── rpl_tokudb_row_img_blobs.test │ │ │ ├── rpl_tokudb_row_img_eng_full.test │ │ │ ├── rpl_tokudb_row_img_eng_min.test │ │ │ ├── rpl_tokudb_row_img_eng_noblob.test │ │ │ ├── rpl_tokudb_row_img_idx_full.test │ │ │ ├── rpl_tokudb_row_img_idx_min.test │ │ │ ├── rpl_tokudb_row_img_idx_noblob.test │ │ │ ├── rpl_tokudb_row_log-master.opt │ │ │ ├── rpl_tokudb_row_log.test │ │ │ ├── rpl_tokudb_row_lower_case_table_names-slave.opt │ │ │ ├── rpl_tokudb_row_lower_case_table_names.test │ │ │ ├── rpl_tokudb_row_sp003.test │ │ │ ├── rpl_tokudb_row_sp006.test │ │ │ ├── rpl_tokudb_row_trig004.test │ │ │ ├── rpl_tokudb_stm_log-master.opt │ │ │ ├── rpl_tokudb_stm_log.test │ │ │ ├── rpl_tokudb_stm_mixed_crash_safe-master.opt │ │ │ ├── rpl_tokudb_stm_mixed_crash_safe-slave.opt │ │ │ ├── rpl_tokudb_stm_mixed_lower_case_table_names-slave.opt │ │ │ ├── rpl_tokudb_stm_mixed_lower_case_table_names.test │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup0-slave.opt │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup0.test │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup1-slave.opt │ │ │ ├── rpl_tokudb_update_pk_uc0_lookup1.test │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup0-slave.opt │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup0.test │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup1-slave.opt │ │ │ ├── rpl_tokudb_update_pk_uc1_lookup1.test │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup0-slave.opt │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup0.test │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup1-slave.opt │ │ │ ├── rpl_tokudb_update_unique_uc0_lookup1.test │ │ │ ├── rpl_tokudb_write_pk-slave.opt │ │ │ ├── rpl_tokudb_write_pk.test │ │ │ ├── rpl_tokudb_write_pk_uc1-slave.opt │ │ │ ├── rpl_tokudb_write_pk_uc1.test │ │ │ ├── rpl_tokudb_write_unique-slave.opt │ │ │ ├── rpl_tokudb_write_unique.test │ │ │ ├── rpl_tokudb_write_unique_uc1-slave.opt │ │ │ ├── rpl_tokudb_write_unique_uc1.test │ │ │ ├── rpl_truncate_3tokudb.test │ │ │ ├── rpl_typeconv_tokudb.test │ │ │ ├── rpl_xa_interleave.test │ │ │ ├── suite.opt │ │ │ ├── tokudb_innodb_xa_crash-slave.opt │ │ │ └── tokudb_innodb_xa_crash.test │ ├── tokudb │ │ ├── bulk-fetch-gen.py │ │ ├── disabled.def │ │ ├── include │ │ │ ├── cluster_key.inc │ │ │ ├── fast_update_gen_footer.inc │ │ │ ├── fast_update_gen_footer_silent.inc │ │ │ ├── fast_update_gen_header.inc │ │ │ ├── fast_update_int.inc │ │ │ ├── fast_upsert_gen_header.inc │ │ │ ├── fast_upsert_int.inc │ │ │ ├── have_mrr.inc │ │ │ ├── have_tokudb.inc │ │ │ ├── setup_fast_update_upsert.inc │ │ │ └── table_files_replace_pattern.inc │ │ ├── locks-blocking-row-locks-testgen.py │ │ ├── r │ │ │ ├── auto_increment.result │ │ │ ├── auto_increment_boundary.result │ │ │ ├── auto_increment_boundary_traditional.result │ │ │ ├── background_job_manager.result │ │ │ ├── bf_create_select.result │ │ │ ├── bf_create_select_hash_part.result │ │ │ ├── bf_create_select_range_part.result │ │ │ ├── bf_create_temp_select.result │ │ │ ├── bf_delete.result │ │ │ ├── bf_delete_trigger.result │ │ │ ├── bf_insert_select.result │ │ │ ├── bf_insert_select_dup_key.result │ │ │ ├── bf_insert_select_trigger.result │ │ │ ├── bf_insert_select_update_trigger.result │ │ │ ├── bf_replace_select.result │ │ │ ├── bf_replace_select_trigger.result │ │ │ ├── bf_select_hash_part.result │ │ │ ├── bf_select_range_part.result │ │ │ ├── bug-1657908.result │ │ │ ├── bulk-fetch.result │ │ │ ├── bulk-fetch2.result │ │ │ ├── card_add_drop.result │ │ │ ├── card_add_index.result │ │ │ ├── card_auto_analyze_lots.result │ │ │ ├── card_drop_index.result │ │ │ ├── card_drop_index_2.result │ │ │ ├── card_drop_pk.result │ │ │ ├── card_no_keys.result │ │ │ ├── card_pk.result │ │ │ ├── card_pk_2.result │ │ │ ├── card_pk_sk.result │ │ │ ├── card_scale_percent.result │ │ │ ├── card_sk.result │ │ │ ├── card_sk_2.result │ │ │ ├── card_unique_sk.result │ │ │ ├── change_column_all_1000_1.result │ │ │ ├── change_column_all_1000_10.result │ │ │ ├── change_column_auto_inc.result │ │ │ ├── change_column_bin.result │ │ │ ├── change_column_bin_descriptor.result │ │ │ ├── change_column_bin_key.result │ │ │ ├── change_column_bin_pad.result │ │ │ ├── change_column_bin_rename.result │ │ │ ├── change_column_blob.result │ │ │ ├── change_column_blob_data.result │ │ │ ├── change_column_carchar_sum_cross256.result │ │ │ ├── change_column_char.result │ │ │ ├── change_column_char_binary.result │ │ │ ├── change_column_char_charbinary.result │ │ │ ├── change_column_char_charset.result │ │ │ ├── change_column_char_default.result │ │ │ ├── change_column_char_descriptor.result │ │ │ ├── change_column_char_key.result │ │ │ ├── change_column_char_null.result │ │ │ ├── change_column_char_rename.result │ │ │ ├── change_column_delete_change_char_5674.result │ │ │ ├── change_column_delete_change_int_5674.result │ │ │ ├── change_column_delete_change_varchar_5674.result │ │ │ ├── change_column_int.result │ │ │ ├── change_column_int_default.result │ │ │ ├── change_column_int_descriptor.result │ │ │ ├── change_column_int_key.result │ │ │ ├── change_column_int_not_supported.result │ │ │ ├── change_column_int_rename.result │ │ │ ├── change_column_multiple_columns.result │ │ │ ├── change_column_multiple_int.result │ │ │ ├── change_column_text.result │ │ │ ├── change_column_text_data.result │ │ │ ├── change_column_varbin.result │ │ │ ├── change_column_varbin_cross256.result │ │ │ ├── change_column_varbin_default.result │ │ │ ├── change_column_varbin_descriptor.result │ │ │ ├── change_column_varbin_key.result │ │ │ ├── change_column_varbin_multiple.result │ │ │ ├── change_column_varbin_null.result │ │ │ ├── change_column_varbin_rename.result │ │ │ ├── change_column_varbin_varchar.result │ │ │ ├── change_column_varchar.result │ │ │ ├── change_column_varchar_charset.result │ │ │ ├── change_column_varchar_cross256.result │ │ │ ├── change_column_varchar_default.result │ │ │ ├── change_column_varchar_descriptor.result │ │ │ ├── change_column_varchar_key.result │ │ │ ├── change_column_varchar_null.result │ │ │ ├── change_column_varchar_prefix_a.result │ │ │ ├── change_column_varchar_prefix_b.result │ │ │ ├── change_column_varchar_rename.result │ │ │ ├── change_column_varchar_sum_cross256.result │ │ │ ├── change_column_varchar_varbin.result │ │ │ ├── cluster_1829.result │ │ │ ├── cluster_2968-0.result │ │ │ ├── cluster_2968-1.result │ │ │ ├── cluster_2968-2.result │ │ │ ├── cluster_2968-3.result │ │ │ ├── cluster_create_table.result │ │ │ ├── cluster_delete.result │ │ │ ├── cluster_delete2.result │ │ │ ├── cluster_filter.result │ │ │ ├── cluster_filter_hidden.result │ │ │ ├── cluster_filter_key.result │ │ │ ├── cluster_filter_unpack_varchar.result │ │ │ ├── cluster_filter_unpack_varchar_and_int_hidden.result │ │ │ ├── cluster_filter_unpack_varchar_hidden.result │ │ │ ├── cluster_filter_varchar_prefix.result │ │ │ ├── cluster_key.result │ │ │ ├── cluster_key_part.result │ │ │ ├── cluster_query_plan.result │ │ │ ├── cluster_tokudb_bug_993.result │ │ │ ├── cluster_tokudb_bug_993_2.result │ │ │ ├── cluster_update.result │ │ │ ├── cluster_update2.result │ │ │ ├── compressions.result │ │ │ ├── ctype_ascii.result │ │ │ ├── ctype_collate.result │ │ │ ├── ctype_cp1250_ch.result │ │ │ ├── ctype_cp1251.result │ │ │ ├── dir-per-db-with-custom-data-dir.result │ │ │ ├── dir_cmd.result │ │ │ ├── dir_per_db.result │ │ │ ├── dir_per_db_rename_to_nonexisting_schema.result │ │ │ ├── ext_key_1_innodb.result │ │ │ ├── ext_key_1_tokudb.result │ │ │ ├── ext_key_2_innodb.result │ │ │ ├── ext_key_2_tokudb.result │ │ │ ├── fast_update_binlog_mixed.result │ │ │ ├── fast_update_binlog_row.result │ │ │ ├── fast_update_binlog_statement.result │ │ │ ├── fast_update_blobs.result │ │ │ ├── fast_update_blobs_with_varchar.result │ │ │ ├── fast_update_char.result │ │ │ ├── fast_update_deadlock.result │ │ │ ├── fast_update_decr_floor.result │ │ │ ├── fast_update_error.result │ │ │ ├── fast_update_int.result │ │ │ ├── fast_update_int_bounds.result │ │ │ ├── fast_update_key.result │ │ │ ├── fast_update_sqlmode.result │ │ │ ├── fast_update_uint_bounds.result │ │ │ ├── fast_update_varchar.result │ │ │ ├── fast_upsert_bin_pad.result │ │ │ ├── fast_upsert_char.result │ │ │ ├── fast_upsert_deadlock.result │ │ │ ├── fast_upsert_int.result │ │ │ ├── fast_upsert_key.result │ │ │ ├── fast_upsert_sqlmode.result │ │ │ ├── fast_upsert_values.result │ │ │ ├── gap_lock_error.result │ │ │ ├── hotindex-del-0.result │ │ │ ├── hotindex-del-1.result │ │ │ ├── hotindex-del-fast.result │ │ │ ├── hotindex-del-slow.result │ │ │ ├── hotindex-insert-0.result │ │ │ ├── hotindex-insert-1.result │ │ │ ├── hotindex-insert-2.result │ │ │ ├── hotindex-insert-bigchar.result │ │ │ ├── hotindex-update-0.result │ │ │ ├── hotindex-update-1.result │ │ │ ├── i_s_tokudb_lock_waits_released.result │ │ │ ├── i_s_tokudb_lock_waits_timeout.result │ │ │ ├── i_s_tokudb_locks.result │ │ │ ├── i_s_tokudb_locks_released.result │ │ │ ├── i_s_tokudb_trx.result │ │ │ ├── information-schema-global-status.result │ │ │ ├── kill_query_blocked_in_lt.result │ │ │ ├── locking-read-repeatable-read-1.result │ │ │ ├── locking-read-repeatable-read-2.result │ │ │ ├── lockretry-insert.writelocktable.result │ │ │ ├── lockretry-writelocktable.insert.result │ │ │ ├── lockretry-writelocktable.insert2.result │ │ │ ├── locks-blocking-row-locks-getset.result │ │ │ ├── locks-blocking-row-locks-race.result │ │ │ ├── locks-blocking-row-locks.result │ │ │ ├── locks-delete-deadlock-1.result │ │ │ ├── locks-no-read-lock-serializable-autocommit.result │ │ │ ├── locks-select-update-1.result │ │ │ ├── locks-select-update-2.result │ │ │ ├── locks-select-update-3.result │ │ │ ├── locks-update-deadlock-1.result │ │ │ ├── mvcc-1.result │ │ │ ├── mvcc-10.result │ │ │ ├── mvcc-11.result │ │ │ ├── mvcc-12.result │ │ │ ├── mvcc-13.result │ │ │ ├── mvcc-14.result │ │ │ ├── mvcc-15.result │ │ │ ├── mvcc-16.result │ │ │ ├── mvcc-17.result │ │ │ ├── mvcc-18.result │ │ │ ├── mvcc-19.result │ │ │ ├── mvcc-2.result │ │ │ ├── mvcc-20.result │ │ │ ├── mvcc-21.result │ │ │ ├── mvcc-22.result │ │ │ ├── mvcc-23.result │ │ │ ├── mvcc-24.result │ │ │ ├── mvcc-25.result │ │ │ ├── mvcc-26.result │ │ │ ├── mvcc-27.result │ │ │ ├── mvcc-28.result │ │ │ ├── mvcc-2808-read-committed.result │ │ │ ├── mvcc-2808-read-uncommitted.result │ │ │ ├── mvcc-29.result │ │ │ ├── mvcc-3.result │ │ │ ├── mvcc-30.result │ │ │ ├── mvcc-31.result │ │ │ ├── mvcc-33.result │ │ │ ├── mvcc-34.result │ │ │ ├── mvcc-35.result │ │ │ ├── mvcc-36.result │ │ │ ├── mvcc-37.result │ │ │ ├── mvcc-38.result │ │ │ ├── mvcc-39.result │ │ │ ├── mvcc-4.result │ │ │ ├── mvcc-40.result │ │ │ ├── mvcc-5.result │ │ │ ├── mvcc-6.result │ │ │ ├── mvcc-7.result │ │ │ ├── mvcc-8.result │ │ │ ├── mvcc-9.result │ │ │ ├── mvcc-checksum-locks.result │ │ │ ├── nested_txn_autocommit.result │ │ │ ├── nested_txn_begin.result │ │ │ ├── nested_txn_implicit_commit.result │ │ │ ├── nonflushing_analyze_debug.result │ │ │ ├── percona_kill_idle_trx_tokudb.result │ │ │ ├── prim_key_1.result │ │ │ ├── prim_key_2.result │ │ │ ├── prim_key_3.result │ │ │ ├── prim_key_4.result │ │ │ ├── prim_key_5.result │ │ │ ├── prim_key_6.result │ │ │ ├── replace-ignore.result │ │ │ ├── row_format.result │ │ │ ├── rows-32m-0.result │ │ │ ├── rows-32m-1.result │ │ │ ├── rows-32m-rand-insert.result │ │ │ ├── rows-32m-seq-insert.result │ │ │ ├── savepoint-1078-2.result │ │ │ ├── savepoint-1078-3.result │ │ │ ├── savepoint-1078-4.result │ │ │ ├── savepoint-1078.result │ │ │ ├── savepoint-2.result │ │ │ ├── savepoint-3.result │ │ │ ├── savepoint-4.result │ │ │ ├── savepoint-5.result │ │ │ ├── simple_delete_all.result │ │ │ ├── simple_join_tokudb_innodb.result │ │ │ ├── simple_join_tokudb_myisam.result │ │ │ ├── simple_truncate.result │ │ │ ├── sql_mode_default.result │ │ │ ├── storage_engine_default.result │ │ │ ├── table_index_statistics.result │ │ │ ├── tokudb_mrr.result │ │ │ ├── tokudb_support_xa.result │ │ │ ├── truncate_row_count.result │ │ │ ├── truncate_txn_commit.result │ │ │ ├── truncate_txn_rollback.result │ │ │ ├── truncate_txn_rollback_innodb.result │ │ │ ├── type_binary.result │ │ │ ├── type_bit.result │ │ │ ├── type_bit_innodb.result │ │ │ ├── type_blob.result │ │ │ ├── type_date.result │ │ │ ├── type_datetime.result │ │ │ ├── type_decimal.result │ │ │ ├── type_enum.result │ │ │ ├── type_float.result │ │ │ ├── type_nchar.result │ │ │ ├── type_newdecimal-big.result │ │ │ ├── type_newdecimal.result │ │ │ ├── type_ranges.result │ │ │ ├── type_set.result │ │ │ ├── type_temporal_fractional.result │ │ │ ├── type_temporal_upgrade.result │ │ │ ├── type_time.result │ │ │ ├── type_timestamp.result │ │ │ ├── type_timestamp_explicit.result │ │ │ ├── type_uint.result │ │ │ ├── type_varchar.result │ │ │ └── type_year.result │ │ ├── replace-ignore-gen.py │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── auto_increment.test │ │ │ ├── auto_increment_boundary.test │ │ │ ├── auto_increment_boundary_traditional.test │ │ │ ├── background_job_manager.test │ │ │ ├── bf_create_select.test │ │ │ ├── bf_create_select_hash_part.test │ │ │ ├── bf_create_select_range_part.test │ │ │ ├── bf_create_temp_select.test │ │ │ ├── bf_delete.test │ │ │ ├── bf_delete_trigger.test │ │ │ ├── bf_insert_select.test │ │ │ ├── bf_insert_select_dup_key.test │ │ │ ├── bf_insert_select_trigger.test │ │ │ ├── bf_insert_select_update_trigger.test │ │ │ ├── bf_replace_select.test │ │ │ ├── bf_replace_select_trigger.test │ │ │ ├── bf_select_hash_part.test │ │ │ ├── bf_select_range_part.test │ │ │ ├── bug-1657908.test │ │ │ ├── bulk-fetch.test │ │ │ ├── bulk-fetch2.test │ │ │ ├── card_add_drop.test │ │ │ ├── card_add_index.test │ │ │ ├── card_auto_analyze_lots.test │ │ │ ├── card_drop_index.test │ │ │ ├── card_drop_index_2.test │ │ │ ├── card_drop_pk.test │ │ │ ├── card_no_keys.test │ │ │ ├── card_pk.test │ │ │ ├── card_pk_2.test │ │ │ ├── card_pk_sk.test │ │ │ ├── card_scale_percent.test │ │ │ ├── card_sk.test │ │ │ ├── card_sk_2.test │ │ │ ├── card_unique_sk.test │ │ │ ├── change_column_Makefile │ │ │ ├── change_column_all.py │ │ │ ├── change_column_all_1000_1.test │ │ │ ├── change_column_all_1000_10.test │ │ │ ├── change_column_auto_inc.test │ │ │ ├── change_column_bin.py │ │ │ ├── change_column_bin.test │ │ │ ├── change_column_bin_descriptor.test │ │ │ ├── change_column_bin_key.test │ │ │ ├── change_column_bin_pad.test │ │ │ ├── change_column_bin_rename.py │ │ │ ├── change_column_bin_rename.test │ │ │ ├── change_column_blob.py │ │ │ ├── change_column_blob.test │ │ │ ├── change_column_blob_data.py │ │ │ ├── change_column_blob_data.test │ │ │ ├── change_column_char.py │ │ │ ├── change_column_char.test │ │ │ ├── change_column_char_binary.py │ │ │ ├── change_column_char_binary.test │ │ │ ├── change_column_char_charbinary.py │ │ │ ├── change_column_char_charbinary.test │ │ │ ├── change_column_char_charset.test │ │ │ ├── change_column_char_default.test │ │ │ ├── change_column_char_descriptor.test │ │ │ ├── change_column_char_key.test │ │ │ ├── change_column_char_null.test │ │ │ ├── change_column_char_rename.py │ │ │ ├── change_column_char_rename.test │ │ │ ├── change_column_delete_change_char_5674.test │ │ │ ├── change_column_delete_change_int_5674.test │ │ │ ├── change_column_delete_change_varchar_5674.test │ │ │ ├── change_column_int.py │ │ │ ├── change_column_int.test │ │ │ ├── change_column_int_default.test │ │ │ ├── change_column_int_descriptor.test │ │ │ ├── change_column_int_key.py │ │ │ ├── change_column_int_key.test │ │ │ ├── change_column_int_not_supported.py │ │ │ ├── change_column_int_not_supported.test │ │ │ ├── change_column_int_rename.py │ │ │ ├── change_column_int_rename.test │ │ │ ├── change_column_multiple_columns.py │ │ │ ├── change_column_multiple_columns.test │ │ │ ├── change_column_text.py │ │ │ ├── change_column_text.test │ │ │ ├── change_column_text_data.test │ │ │ ├── change_column_varbin.test │ │ │ ├── change_column_varbin_cross256.test │ │ │ ├── change_column_varbin_default.test │ │ │ ├── change_column_varbin_descriptor.test │ │ │ ├── change_column_varbin_key.test │ │ │ ├── change_column_varbin_multiple.test │ │ │ ├── change_column_varbin_null.test │ │ │ ├── change_column_varbin_rename.test │ │ │ ├── change_column_varbin_varchar.test │ │ │ ├── change_column_varchar.test │ │ │ ├── change_column_varchar_charset.test │ │ │ ├── change_column_varchar_cross256.test │ │ │ ├── change_column_varchar_default.test │ │ │ ├── change_column_varchar_descriptor.test │ │ │ ├── change_column_varchar_key.test │ │ │ ├── change_column_varchar_null.test │ │ │ ├── change_column_varchar_prefix_a.test │ │ │ ├── change_column_varchar_prefix_b.test │ │ │ ├── change_column_varchar_rename.test │ │ │ ├── change_column_varchar_sum_cross256.test │ │ │ ├── change_column_varchar_varbin.test │ │ │ ├── cluster_1829.test │ │ │ ├── cluster_2968-0.test │ │ │ ├── cluster_2968-1.test │ │ │ ├── cluster_2968-2.test │ │ │ ├── cluster_2968-3.test │ │ │ ├── cluster_create_table.test │ │ │ ├── cluster_delete.test │ │ │ ├── cluster_delete2.test │ │ │ ├── cluster_filter.test │ │ │ ├── cluster_filter_hidden.test │ │ │ ├── cluster_filter_key.test │ │ │ ├── cluster_filter_unpack_varchar.test │ │ │ ├── cluster_filter_unpack_varchar_and_int_hidden.test │ │ │ ├── cluster_filter_unpack_varchar_hidden.test │ │ │ ├── cluster_filter_varchar_prefix.test │ │ │ ├── cluster_key.test │ │ │ ├── cluster_key_part.test │ │ │ ├── cluster_query_plan.test │ │ │ ├── cluster_tokudb_bug_993.test │ │ │ ├── cluster_tokudb_bug_993_2.test │ │ │ ├── cluster_update.test │ │ │ ├── cluster_update2.test │ │ │ ├── compressions.test │ │ │ ├── ctype_ascii.test │ │ │ ├── ctype_collate.test │ │ │ ├── ctype_cp1250_ch.test │ │ │ ├── ctype_cp1251.test │ │ │ ├── dir-per-db-with-custom-data-dir-master.opt │ │ │ ├── dir-per-db-with-custom-data-dir.test │ │ │ ├── dir_cmd.test │ │ │ ├── dir_per_db.test │ │ │ ├── dir_per_db_rename_to_nonexisting_schema.test │ │ │ ├── dir_per_db_show_table_files.inc │ │ │ ├── disabled.def │ │ │ ├── ext_key_1_innodb.test │ │ │ ├── ext_key_1_tokudb.test │ │ │ ├── ext_key_2_innodb.test │ │ │ ├── ext_key_2_tokudb.test │ │ │ ├── fast_update_Makefile │ │ │ ├── fast_update_binlog_mixed-master.opt │ │ │ ├── fast_update_binlog_mixed.test │ │ │ ├── fast_update_binlog_row-master.opt │ │ │ ├── fast_update_binlog_row.test │ │ │ ├── fast_update_binlog_statement-master.opt │ │ │ ├── fast_update_binlog_statement.test │ │ │ ├── fast_update_blobs.test │ │ │ ├── fast_update_blobs_with_varchar.test │ │ │ ├── fast_update_char.test │ │ │ ├── fast_update_deadlock.test │ │ │ ├── fast_update_decr_floor.test │ │ │ ├── fast_update_error.test │ │ │ ├── fast_update_int.test │ │ │ ├── fast_update_int_bounds.test │ │ │ ├── fast_update_key.test │ │ │ ├── fast_update_sqlmode.test │ │ │ ├── fast_update_uint_bounds.test │ │ │ ├── fast_update_varchar.test │ │ │ ├── fast_upsert_bin_pad.test │ │ │ ├── fast_upsert_char.test │ │ │ ├── fast_upsert_deadlock.test │ │ │ ├── fast_upsert_int.test │ │ │ ├── fast_upsert_key.test │ │ │ ├── fast_upsert_sqlmode.test │ │ │ ├── fast_upsert_values.test │ │ │ ├── gap_lock_error.test │ │ │ ├── hotindex-del-0.test │ │ │ ├── hotindex-del-1.test │ │ │ ├── hotindex-del-fast.test │ │ │ ├── hotindex-del-slow.test │ │ │ ├── hotindex-insert-0.test │ │ │ ├── hotindex-insert-1.test │ │ │ ├── hotindex-insert-2.test │ │ │ ├── hotindex-insert-bigchar.test │ │ │ ├── hotindex-update-0.test │ │ │ ├── hotindex-update-1.test │ │ │ ├── i_s_tokudb_lock_waits_released.test │ │ │ ├── i_s_tokudb_lock_waits_timeout.test │ │ │ ├── i_s_tokudb_locks.test │ │ │ ├── i_s_tokudb_locks_released.test │ │ │ ├── i_s_tokudb_trx.test │ │ │ ├── information-schema-global-status.test │ │ │ ├── kill_query_blocked_in_lt.test │ │ │ ├── locking-read-repeatable-read-1.test │ │ │ ├── locking-read-repeatable-read-2.test │ │ │ ├── lockretry-insert.writelocktable.test │ │ │ ├── lockretry-writelocktable.insert.test │ │ │ ├── lockretry-writelocktable.insert2.test │ │ │ ├── locks-blocking-row-locks-getset.test │ │ │ ├── locks-blocking-row-locks.test │ │ │ ├── locks-border-locks.notyet.3981 │ │ │ ├── locks-delete-deadlock-1.test │ │ │ ├── locks-no-read-lock-serializable-autocommit.test │ │ │ ├── locks-select-update-1.test │ │ │ ├── locks-select-update-2.test │ │ │ ├── locks-select-update-3.test │ │ │ ├── locks-update-deadlock-1.test │ │ │ ├── mvcc-1.test │ │ │ ├── mvcc-10.test │ │ │ ├── mvcc-11.test │ │ │ ├── mvcc-12.test │ │ │ ├── mvcc-13.test │ │ │ ├── mvcc-14.test │ │ │ ├── mvcc-15.test │ │ │ ├── mvcc-16.test │ │ │ ├── mvcc-17.test │ │ │ ├── mvcc-18.test │ │ │ ├── mvcc-19.test │ │ │ ├── mvcc-2.test │ │ │ ├── mvcc-20.test │ │ │ ├── mvcc-21.test │ │ │ ├── mvcc-22.test │ │ │ ├── mvcc-23.test │ │ │ ├── mvcc-24.test │ │ │ ├── mvcc-25.test │ │ │ ├── mvcc-26.test │ │ │ ├── mvcc-27.test │ │ │ ├── mvcc-28.test │ │ │ ├── mvcc-2808-read-committed.test │ │ │ ├── mvcc-2808-read-uncommitted.test │ │ │ ├── mvcc-29.test │ │ │ ├── mvcc-3.test │ │ │ ├── mvcc-30.test │ │ │ ├── mvcc-31.test │ │ │ ├── mvcc-33.test │ │ │ ├── mvcc-34.test │ │ │ ├── mvcc-35.test │ │ │ ├── mvcc-36.test │ │ │ ├── mvcc-37.test │ │ │ ├── mvcc-38.test │ │ │ ├── mvcc-39.test │ │ │ ├── mvcc-4.test │ │ │ ├── mvcc-40.test │ │ │ ├── mvcc-5.test │ │ │ ├── mvcc-6.test │ │ │ ├── mvcc-7.test │ │ │ ├── mvcc-8.test │ │ │ ├── mvcc-9.test │ │ │ ├── mvcc-checksum-locks.test │ │ │ ├── nested_txn_autocommit.test │ │ │ ├── nested_txn_begin.test │ │ │ ├── nested_txn_implicit_commit.test │ │ │ ├── nonflushing_analyze_debug.test │ │ │ ├── percona_kill_idle_trx_tokudb.test │ │ │ ├── prim_key_1.test │ │ │ ├── prim_key_2.test │ │ │ ├── prim_key_3.test │ │ │ ├── prim_key_4.test │ │ │ ├── prim_key_5.test │ │ │ ├── prim_key_6.test │ │ │ ├── replace-ignore.test │ │ │ ├── row_format.test │ │ │ ├── rows-32m-0.test │ │ │ ├── rows-32m-1.test │ │ │ ├── rows-32m-rand-insert.test │ │ │ ├── rows-32m-seq-insert.test │ │ │ ├── savepoint-1078-2.test │ │ │ ├── savepoint-1078-3.test │ │ │ ├── savepoint-1078-4.test │ │ │ ├── savepoint-1078.test │ │ │ ├── savepoint-2.test │ │ │ ├── savepoint-3.test │ │ │ ├── savepoint-4.test │ │ │ ├── savepoint-5.test │ │ │ ├── simple_delete_all.test │ │ │ ├── simple_join_tokudb_innodb.test │ │ │ ├── simple_join_tokudb_myisam.test │ │ │ ├── simple_truncate.test │ │ │ ├── sql_mode_default.test │ │ │ ├── storage_engine_default.test │ │ │ ├── suite.opt │ │ │ ├── table_index_statistics.test │ │ │ ├── tokudb_mrr.test │ │ │ ├── tokudb_support_xa.test │ │ │ ├── truncate_row_count.test │ │ │ ├── truncate_txn_commit.test │ │ │ ├── truncate_txn_rollback.test │ │ │ ├── truncate_txn_rollback_innodb.test │ │ │ ├── type_binary.test │ │ │ ├── type_bit.test │ │ │ ├── type_bit_innodb.test │ │ │ ├── type_blob.test │ │ │ ├── type_date.test │ │ │ ├── type_datetime.test │ │ │ ├── type_decimal.test │ │ │ ├── type_enum.test │ │ │ ├── type_float.test │ │ │ ├── type_nchar.test │ │ │ ├── type_newdecimal-big.test │ │ │ ├── type_newdecimal.test │ │ │ ├── type_ranges.test │ │ │ ├── type_set.test │ │ │ ├── type_temporal_fractional.test │ │ │ ├── type_temporal_upgrade.test │ │ │ ├── type_time.test │ │ │ ├── type_timestamp.test │ │ │ ├── type_timestamp_explicit-master.opt │ │ │ ├── type_timestamp_explicit.test │ │ │ ├── type_uint.test │ │ │ ├── type_varchar.test │ │ │ └── type_year.test │ ├── tokudb_add_index │ │ ├── include │ │ │ └── have_tokudb.inc │ │ ├── r │ │ │ ├── 1522.result │ │ │ ├── add_index_1.result │ │ │ ├── add_index_10.result │ │ │ ├── add_index_11.result │ │ │ ├── add_index_12.result │ │ │ ├── add_index_13.result │ │ │ ├── add_index_14.result │ │ │ ├── add_index_15.result │ │ │ ├── add_index_16.result │ │ │ ├── add_index_17.result │ │ │ ├── add_index_18.result │ │ │ ├── add_index_2.result │ │ │ ├── add_index_3.result │ │ │ ├── add_index_4.result │ │ │ ├── add_index_5.result │ │ │ ├── add_index_6.result │ │ │ ├── add_index_7.result │ │ │ ├── add_index_8.result │ │ │ ├── add_index_9.result │ │ │ ├── falcon_bug_22516.result │ │ │ ├── falcon_bug_23691.result │ │ │ ├── falcon_bug_23692.result │ │ │ ├── falcon_bug_23818_1.result │ │ │ ├── falcon_bug_23818_2.result │ │ │ ├── falcon_bug_23818_A.result │ │ │ ├── falcon_bug_23818_B.result │ │ │ ├── falcon_bug_23818_C.result │ │ │ ├── hot_create_unique_index.result │ │ │ └── tokudb_bug_1152.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── 1522.test │ │ │ ├── add_index_1.test │ │ │ ├── add_index_10.test │ │ │ ├── add_index_11.test │ │ │ ├── add_index_12.test │ │ │ ├── add_index_13.test │ │ │ ├── add_index_14.test │ │ │ ├── add_index_15.test │ │ │ ├── add_index_16.test │ │ │ ├── add_index_17.test │ │ │ ├── add_index_18.test │ │ │ ├── add_index_2.test │ │ │ ├── add_index_3.test │ │ │ ├── add_index_4.test │ │ │ ├── add_index_5.test │ │ │ ├── add_index_6.test │ │ │ ├── add_index_7.test │ │ │ ├── add_index_8.test │ │ │ ├── add_index_9.test │ │ │ ├── falcon_bug_22516.test │ │ │ ├── falcon_bug_23691.test │ │ │ ├── falcon_bug_23692.test │ │ │ ├── falcon_bug_23818_1.test │ │ │ ├── falcon_bug_23818_2.test │ │ │ ├── falcon_bug_23818_A.test │ │ │ ├── falcon_bug_23818_B.test │ │ │ ├── falcon_bug_23818_C.test │ │ │ ├── hot_create_unique_index.test │ │ │ ├── suite.opt │ │ │ └── tokudb_bug_1152.test │ ├── tokudb_alter_table │ │ ├── include │ │ │ └── have_tokudb.inc │ │ ├── r │ │ │ ├── 4630.result │ │ │ ├── 5260.result │ │ │ ├── ai_aui.result │ │ │ ├── ai_di.result │ │ │ ├── ai_part.result │ │ │ ├── alter_column_default.result │ │ │ ├── auto_inc.result │ │ │ ├── di_dui.result │ │ │ ├── drop_add_pk_104.result │ │ │ ├── drop_add_pk_part_104.result │ │ │ ├── drop_pk_with_prefix.result │ │ │ ├── frm_discover.result │ │ │ ├── frm_discover_partition.result │ │ │ ├── hcad_all_add.result │ │ │ ├── hcad_all_add2.result │ │ │ ├── hcad_all_add3.result │ │ │ ├── hcad_all_blob_add.result │ │ │ ├── hcad_all_blob_drop.result │ │ │ ├── hcad_all_drop.result │ │ │ ├── hcad_all_fixed_add.result │ │ │ ├── hcad_all_fixed_drop.result │ │ │ ├── hcad_all_var_add.result │ │ │ ├── hcad_all_var_drop.result │ │ │ ├── hcad_and_rename_table.result │ │ │ ├── hcad_clustering.result │ │ │ ├── hcad_clustering2.result │ │ │ ├── hcad_diff_num_offset_bytes.result │ │ │ ├── hcad_drop_char0_t6.result │ │ │ ├── hcad_fixedblob_add.result │ │ │ ├── hcad_fixedblob_add2.result │ │ │ ├── hcad_fixedblob_drop.result │ │ │ ├── hcad_fixedvar_add.result │ │ │ ├── hcad_fixedvar_add2.result │ │ │ ├── hcad_fixedvar_drop.result │ │ │ ├── hcad_indexing_mix.result │ │ │ ├── hcad_null_bits.result │ │ │ ├── hcad_part.result │ │ │ ├── hcad_pk.result │ │ │ ├── hcad_pk2.result │ │ │ ├── hcad_template.result │ │ │ ├── hcad_tmp_tables.result │ │ │ ├── hcad_tmp_tables_56.result │ │ │ ├── hcad_varblob_add.result │ │ │ ├── hcad_varblob_add2.result │ │ │ ├── hcad_varblob_drop.result │ │ │ ├── hcad_with_dels.result │ │ │ ├── hcad_with_lock_sps.result │ │ │ ├── hcad_with_locks.result │ │ │ ├── hcr.result │ │ │ ├── hcr2.result │ │ │ ├── hcr3.result │ │ │ ├── hcr_binary1.result │ │ │ ├── hcr_blob.result │ │ │ ├── hcr_char1.result │ │ │ ├── hcr_enum.result │ │ │ ├── hcr_text.result │ │ │ ├── hcr_time.result │ │ │ ├── hot_row_format_alter.result │ │ │ ├── mod_enum.result │ │ │ ├── null_bytes_add_key.result │ │ │ ├── null_bytes_col_rename.result │ │ │ ├── null_bytes_drop_default.result │ │ │ ├── null_bytes_drop_key.result │ │ │ ├── other_alter.result │ │ │ ├── other_alter2.result │ │ │ ├── rename_column_cold_104.result │ │ │ ├── rename_column_cold_part_104.result │ │ │ ├── row_format_alter.result │ │ │ ├── test_field_same_detection.result │ │ │ └── virtual_columns.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── 4630.test │ │ │ ├── 5260.test │ │ │ ├── ai_aui.test │ │ │ ├── ai_di.test │ │ │ ├── ai_part.test │ │ │ ├── alter_column_default.test │ │ │ ├── auto_inc.test │ │ │ ├── di_dui.test │ │ │ ├── disabled.def │ │ │ ├── drop_add_pk_104.test │ │ │ ├── drop_add_pk_part_104.test │ │ │ ├── drop_pk_with_prefix.test │ │ │ ├── frm_discover.test │ │ │ ├── frm_discover_partition.test │ │ │ ├── hcad_all_add.test │ │ │ ├── hcad_all_add2.test │ │ │ ├── hcad_all_add3.test │ │ │ ├── hcad_all_blob_add.test │ │ │ ├── hcad_all_blob_drop.test │ │ │ ├── hcad_all_drop.test │ │ │ ├── hcad_all_fixed_add.test │ │ │ ├── hcad_all_fixed_drop.test │ │ │ ├── hcad_all_var_add.test │ │ │ ├── hcad_all_var_drop.test │ │ │ ├── hcad_and_rename_table.test │ │ │ ├── hcad_clustering.test │ │ │ ├── hcad_clustering2.test │ │ │ ├── hcad_diff_num_offset_bytes.test │ │ │ ├── hcad_drop_char0_t6.test │ │ │ ├── hcad_fixedblob_add.test │ │ │ ├── hcad_fixedblob_add2.test │ │ │ ├── hcad_fixedblob_drop.test │ │ │ ├── hcad_fixedvar_add.test │ │ │ ├── hcad_fixedvar_add2.test │ │ │ ├── hcad_fixedvar_drop.test │ │ │ ├── hcad_indexing_mix.test │ │ │ ├── hcad_null_bits.test │ │ │ ├── hcad_part.test │ │ │ ├── hcad_pk.test │ │ │ ├── hcad_pk2.test │ │ │ ├── hcad_template.test │ │ │ ├── hcad_tmp_tables.test │ │ │ ├── hcad_tmp_tables_56.test │ │ │ ├── hcad_varblob_add.test │ │ │ ├── hcad_varblob_add2.test │ │ │ ├── hcad_varblob_drop.test │ │ │ ├── hcad_with_dels.test │ │ │ ├── hcad_with_lock_sps.test │ │ │ ├── hcad_with_locks.test │ │ │ ├── hcr.test │ │ │ ├── hcr2.test │ │ │ ├── hcr3.test │ │ │ ├── hcr_binary1.test │ │ │ ├── hcr_blob.test │ │ │ ├── hcr_char1.test │ │ │ ├── hcr_enum.test │ │ │ ├── hcr_text.test │ │ │ ├── hcr_time.test │ │ │ ├── hot_row_format_alter.test │ │ │ ├── mod_enum.test │ │ │ ├── null_bytes_add_key.test │ │ │ ├── null_bytes_col_rename.test │ │ │ ├── null_bytes_drop_default.test │ │ │ ├── null_bytes_drop_key.test │ │ │ ├── other_alter.test │ │ │ ├── other_alter2.test │ │ │ ├── rename_column_cold_104.test │ │ │ ├── rename_column_cold_part_104.test │ │ │ ├── row_format_alter.test │ │ │ ├── suite.opt │ │ │ ├── test_field_same_detection.test │ │ │ └── virtual_columns.test │ ├── tokudb_backup │ │ ├── r │ │ │ ├── backup_master_info.result │ │ │ ├── backup_master_state.result │ │ │ ├── empty_slave_info_file.result │ │ │ ├── innodb_use_native_aio_enabled.result │ │ │ ├── rpl_safe_slave.result │ │ │ ├── rpl_tokudb_commit_sync.result │ │ │ ├── tokudb_backup_exclude.result │ │ │ └── tokudb_backup_set_last_error.result │ │ └── t │ │ │ ├── backup_master_info.test │ │ │ ├── backup_master_state.test │ │ │ ├── empty_slave_info_file.test │ │ │ ├── innodb_use_native_aio_enabled-master.opt │ │ │ ├── innodb_use_native_aio_enabled.test │ │ │ ├── rpl_safe_slave-master.opt │ │ │ ├── rpl_safe_slave-slave.opt │ │ │ ├── rpl_safe_slave.cnf │ │ │ ├── rpl_safe_slave.inc │ │ │ ├── rpl_safe_slave.test │ │ │ ├── rpl_tokudb_commit_sync-slave.opt │ │ │ ├── rpl_tokudb_commit_sync.test │ │ │ ├── suite.opt │ │ │ ├── tokudb_backup_exclude.test │ │ │ └── tokudb_backup_set_last_error.test │ ├── tokudb_bugs │ │ ├── disabled.def │ │ ├── include │ │ │ ├── have_tokudb.inc │ │ │ └── not_5_5.inc │ │ ├── r │ │ │ ├── 1648.result │ │ │ ├── 1684.result │ │ │ ├── 1711.result │ │ │ ├── 1795.result │ │ │ ├── 1833.result │ │ │ ├── 1853.result │ │ │ ├── 1872.result │ │ │ ├── 1883.result │ │ │ ├── 1913.result │ │ │ ├── 1938.result │ │ │ ├── 1949.result │ │ │ ├── 2043.result │ │ │ ├── 2219.result │ │ │ ├── 2262.result │ │ │ ├── 2383.result │ │ │ ├── 2458.result │ │ │ ├── 2494-read-committed.result │ │ │ ├── 2548.result │ │ │ ├── 2641.result │ │ │ ├── 2952.result │ │ │ ├── 2970.result │ │ │ ├── 2970i.result │ │ │ ├── 3014.result │ │ │ ├── 3015.result │ │ │ ├── 3083.result │ │ │ ├── 3441.result │ │ │ ├── 3478.result │ │ │ ├── 3486.result │ │ │ ├── 3518.result │ │ │ ├── 4175.result │ │ │ ├── 4260.result │ │ │ ├── 4472.result │ │ │ ├── 4618.result │ │ │ ├── 4633.result │ │ │ ├── 4648.result │ │ │ ├── 4656.result │ │ │ ├── 4656_2.result │ │ │ ├── 4675.result │ │ │ ├── 5003.result │ │ │ ├── 5089.result │ │ │ ├── 5469.result │ │ │ ├── 5554.result │ │ │ ├── 5585.result │ │ │ ├── 5695.result │ │ │ ├── 5733_innodb.result │ │ │ ├── 5733_tokudb.result │ │ │ ├── 5951.result │ │ │ ├── 5974-2.result │ │ │ ├── 5974.result │ │ │ ├── 6053.result │ │ │ ├── 6684.result │ │ │ ├── 889.result │ │ │ ├── 895.result │ │ │ ├── 94.result │ │ │ ├── PS-3773.result │ │ │ ├── alter_external_lock_assert.result │ │ │ ├── alter_part_tokudb_bug_155.result │ │ │ ├── alter_table_comment_rebuild_data.result │ │ │ ├── alter_table_copy_table.result │ │ │ ├── bulk_fetch.result │ │ │ ├── checkpoint_lock.result │ │ │ ├── checkpoint_lock_2.result │ │ │ ├── checkpoint_lock_3.result │ │ │ ├── commit_index_end_1.result │ │ │ ├── commit_index_end_2.result │ │ │ ├── db233.result │ │ │ ├── db397_delete_trigger.result │ │ │ ├── db397_insert_trigger.result │ │ │ ├── db397_update_trigger.result │ │ │ ├── db739_insert.result │ │ │ ├── db739_replace.result │ │ │ ├── db739_upsert.result │ │ │ ├── db743.result │ │ │ ├── db756_card_part_hash.result │ │ │ ├── db756_card_part_hash_1.result │ │ │ ├── db756_card_part_hash_1_pick.result │ │ │ ├── db756_card_part_hash_2.result │ │ │ ├── db756_card_part_hash_2_pick.result │ │ │ ├── db757_part_alter_analyze.result │ │ │ ├── db762.result │ │ │ ├── db766.result │ │ │ ├── db768.result │ │ │ ├── db771.result │ │ │ ├── db788-optimize-index-name.result │ │ │ ├── db801.result │ │ │ ├── db805.result │ │ │ ├── db806.result │ │ │ ├── db811.result │ │ │ ├── db811s.result │ │ │ ├── db817.result │ │ │ ├── db823.result │ │ │ ├── db917.result │ │ │ ├── db938.result │ │ │ ├── db945.result │ │ │ ├── dict_leak_3518.result │ │ │ ├── expand_tinytext_text.result │ │ │ ├── fileops-2.result │ │ │ ├── fileops-3.result │ │ │ ├── fileops-4.result │ │ │ ├── fileops.result │ │ │ ├── frm_store.result │ │ │ ├── frm_store2.result │ │ │ ├── frm_store3.result │ │ │ ├── ft-index-40.result │ │ │ ├── index_read.result │ │ │ ├── leak172.result │ │ │ ├── lock_uniq_key_empty.result │ │ │ ├── lock_uniq_key_left.result │ │ │ ├── lock_uniq_key_middle.result │ │ │ ├── lock_uniq_key_right.result │ │ │ ├── mdev4533.result │ │ │ ├── mdev5932.result │ │ │ ├── optimize_temp_table_tokudb.result │ │ │ ├── simple_icp.result │ │ │ ├── subselect_index_next_same_bug_157.result │ │ │ ├── tokudb718.result │ │ │ ├── tokudb_drop_part_table_668.result │ │ │ ├── tokudb_drop_simple_table_668.result │ │ │ ├── xa-1.result │ │ │ ├── xa-2.result │ │ │ ├── xa-3.result │ │ │ ├── xa-4.result │ │ │ ├── xa-5.result │ │ │ ├── xa-6.result │ │ │ └── xa.result │ │ ├── std_data │ │ │ ├── leak172_t1.data │ │ │ └── leak172_t2.data │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── 1648.test │ │ │ ├── 1684.test │ │ │ ├── 1711.test │ │ │ ├── 1795.test │ │ │ ├── 1833.test │ │ │ ├── 1853.test │ │ │ ├── 1872.test │ │ │ ├── 1883.test │ │ │ ├── 1913.test │ │ │ ├── 1938.test │ │ │ ├── 1949.test │ │ │ ├── 2043.test │ │ │ ├── 2219.test │ │ │ ├── 2262.test │ │ │ ├── 2383.test │ │ │ ├── 2458.test │ │ │ ├── 2494-read-committed.test │ │ │ ├── 2548.test │ │ │ ├── 2641.test │ │ │ ├── 2952.test │ │ │ ├── 2970.test │ │ │ ├── 2970i.test │ │ │ ├── 3014.test │ │ │ ├── 3015.test │ │ │ ├── 3083.test │ │ │ ├── 3441.test │ │ │ ├── 3478.test │ │ │ ├── 3486.test │ │ │ ├── 3518.test │ │ │ ├── 4175.test │ │ │ ├── 4260.test │ │ │ ├── 4472.test │ │ │ ├── 4618.test │ │ │ ├── 4633.test │ │ │ ├── 4648.test │ │ │ ├── 4656.test │ │ │ ├── 4656_2.test │ │ │ ├── 4675.test │ │ │ ├── 5003.test │ │ │ ├── 5089.test │ │ │ ├── 5469.test │ │ │ ├── 5554.test │ │ │ ├── 5585-master.opt │ │ │ ├── 5585.test │ │ │ ├── 5695.test │ │ │ ├── 5733_innodb.test │ │ │ ├── 5733_tokudb.test │ │ │ ├── 5951.test │ │ │ ├── 5974-2.test │ │ │ ├── 5974.test │ │ │ ├── 6053.test │ │ │ ├── 6684.test │ │ │ ├── 889.test │ │ │ ├── 895.test │ │ │ ├── 94.test │ │ │ ├── PS-3773.test │ │ │ ├── alter_external_lock_assert.test │ │ │ ├── alter_part_tokudb_bug_155.test │ │ │ ├── alter_table_comment_rebuild_data.test │ │ │ ├── alter_table_copy_table.test │ │ │ ├── bulk_fetch.test │ │ │ ├── checkpoint_lock.test │ │ │ ├── checkpoint_lock_2.test │ │ │ ├── checkpoint_lock_3.test │ │ │ ├── commit_index_end_1.test │ │ │ ├── commit_index_end_2.test │ │ │ ├── db233.test │ │ │ ├── db397_delete_trigger.test │ │ │ ├── db397_insert_trigger.test │ │ │ ├── db397_update_trigger.test │ │ │ ├── db739_insert.test │ │ │ ├── db739_replace.test │ │ │ ├── db739_upsert.test │ │ │ ├── db743.test │ │ │ ├── db756_card_part_hash.test │ │ │ ├── db756_card_part_hash_1.test │ │ │ ├── db756_card_part_hash_1_pick.test │ │ │ ├── db756_card_part_hash_2.test │ │ │ ├── db756_card_part_hash_2_pick.test │ │ │ ├── db757_part_alter_analyze.test │ │ │ ├── db762.test │ │ │ ├── db766.test │ │ │ ├── db768.test │ │ │ ├── db771.test │ │ │ ├── db788-optimize-index-name.test │ │ │ ├── db801.test │ │ │ ├── db805.test │ │ │ ├── db806.test │ │ │ ├── db811.test │ │ │ ├── db811s.test │ │ │ ├── db817.test │ │ │ ├── db823.test │ │ │ ├── db917.test │ │ │ ├── db938.test │ │ │ ├── db945.test │ │ │ ├── dict_leak_3518.test │ │ │ ├── disabled.def │ │ │ ├── expand_tinytext_text.test │ │ │ ├── fileops-2.test │ │ │ ├── fileops-3.test │ │ │ ├── fileops-4.test │ │ │ ├── fileops.test │ │ │ ├── frm_store.test │ │ │ ├── frm_store2.test │ │ │ ├── frm_store3.test │ │ │ ├── ft-index-40.test │ │ │ ├── index_read.test │ │ │ ├── leak172.test │ │ │ ├── lock_uniq_key_empty.test │ │ │ ├── lock_uniq_key_left.test │ │ │ ├── lock_uniq_key_middle.test │ │ │ ├── lock_uniq_key_right.test │ │ │ ├── mdev4533.test │ │ │ ├── mdev5932.test │ │ │ ├── optimize_temp_table_tokudb.test │ │ │ ├── simple_icp.test │ │ │ ├── subselect_index_next_same_bug_157.test │ │ │ ├── suite.opt │ │ │ ├── tokudb718.test │ │ │ ├── tokudb_drop_part_table_668.test │ │ │ ├── tokudb_drop_simple_table_668.test │ │ │ ├── xa-1.test │ │ │ ├── xa-2.test │ │ │ ├── xa-3.test │ │ │ ├── xa-4.test │ │ │ ├── xa-5.test │ │ │ ├── xa-6.test │ │ │ └── xa.test │ ├── tokudb_mariadb │ │ ├── r │ │ │ ├── 229cols.result │ │ │ ├── alter.result │ │ │ ├── autoinc.result │ │ │ ├── clustering.result │ │ │ ├── commit_5396.result │ │ │ ├── compression.result │ │ │ ├── create_or_replace.result │ │ │ ├── discover_names.result │ │ │ ├── mdev12972.result │ │ │ ├── mdev5426.result │ │ │ ├── mdev6519.result │ │ │ ├── mdev6657.result │ │ │ ├── mrr.result │ │ │ ├── optimize.result │ │ │ ├── savepoint.result │ │ │ ├── xa-recovery-9214.result │ │ │ └── xa.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── 229cols.test │ │ │ ├── alter.test │ │ │ ├── autoinc.test │ │ │ ├── clustering.test │ │ │ ├── commit_5396.test │ │ │ ├── compression.test │ │ │ ├── create_or_replace.test │ │ │ ├── discover_names.test │ │ │ ├── mdev12972.test │ │ │ ├── mdev5426.test │ │ │ ├── mdev6519.test │ │ │ ├── mdev6657.test │ │ │ ├── mrr.test │ │ │ ├── optimize.test │ │ │ ├── savepoint.test │ │ │ ├── xa-recovery-9214.opt │ │ │ ├── xa-recovery-9214.test │ │ │ └── xa.test │ ├── tokudb_parts │ │ ├── disabled.def │ │ ├── include │ │ │ ├── have_tokudb.inc │ │ │ └── table_files_replace_pattern.inc │ │ ├── r │ │ │ ├── nonflushing_analyze_debug.result │ │ │ ├── part_blocked_sql_func_tokudb.result │ │ │ ├── part_supported_sql_func_tokudb.result │ │ │ ├── partition_alter1_1_2_tokudb.result │ │ │ ├── partition_alter1_1_tokudb.result │ │ │ ├── partition_alter1_2_tokudb.result │ │ │ ├── partition_alter2_1_1_tokudb.result │ │ │ ├── partition_alter2_1_2_tokudb.result │ │ │ ├── partition_alter2_2_1_tokudb.result │ │ │ ├── partition_alter2_2_2_tokudb.result │ │ │ ├── partition_alter3_tokudb.result │ │ │ ├── partition_alter4_tokudb.result │ │ │ ├── partition_auto_increment_tokudb.result │ │ │ ├── partition_basic_symlink_tokudb.result │ │ │ ├── partition_basic_tokudb.result │ │ │ ├── partition_bit_tokudb.result │ │ │ ├── partition_char_tokudb.result │ │ │ ├── partition_datetime_tokudb.result │ │ │ ├── partition_debug_sync_tokudb.result │ │ │ ├── partition_debug_tokudb.result │ │ │ ├── partition_decimal_tokudb.result │ │ │ ├── partition_engine_tokudb.result │ │ │ ├── partition_exch_myisam_tokudb.result │ │ │ ├── partition_exch_qa_1_tokudb.result │ │ │ ├── partition_exch_qa_4_tokudb.result │ │ │ ├── partition_exch_qa_5_tokudb.result │ │ │ ├── partition_exch_qa_7_tokudb.result │ │ │ ├── partition_exch_qa_8_tokudb.result │ │ │ ├── partition_exch_tokudb.result │ │ │ ├── partition_exchange_tokudb.result │ │ │ ├── partition_float_tokudb.result │ │ │ ├── partition_int_tokudb.result │ │ │ ├── partition_max_parts_hash_tokudb.result │ │ │ ├── partition_max_parts_inv_tokudb.result │ │ │ ├── partition_max_parts_key_tokudb.result │ │ │ ├── partition_max_parts_list_tokudb.result │ │ │ ├── partition_max_parts_range_tokudb.result │ │ │ ├── partition_max_sub_parts_key_list_tokudb.result │ │ │ ├── partition_max_sub_parts_key_range_tokudb.result │ │ │ ├── partition_max_sub_parts_list_tokudb.result │ │ │ ├── partition_max_sub_parts_range_tokudb.result │ │ │ ├── partition_mgm_lc0_tokudb.result │ │ │ ├── partition_mgm_lc10_tokudb.result │ │ │ ├── partition_mgm_lc1_tokudb.result │ │ │ ├── partition_mgm_lc2_tokudb.result │ │ │ ├── partition_reorganize_tokudb.result │ │ │ ├── partition_special_tokudb.result │ │ │ ├── partition_syntax_tokudb.result │ │ │ └── partition_value_tokudb.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── nonflushing_analyze_debug.test │ │ │ ├── part_blocked_sql_func_tokudb.test │ │ │ ├── part_supported_sql_func_tokudb.test │ │ │ ├── partition_alter1_1_2_tokudb.test │ │ │ ├── partition_alter1_1_tokudb.test │ │ │ ├── partition_alter1_2_tokudb.test │ │ │ ├── partition_alter2_1_1_tokudb.test │ │ │ ├── partition_alter2_1_2_tokudb.test │ │ │ ├── partition_alter2_2_1_tokudb.test │ │ │ ├── partition_alter2_2_2_tokudb.test │ │ │ ├── partition_alter3_tokudb.test │ │ │ ├── partition_alter4_tokudb.test │ │ │ ├── partition_auto_increment_tokudb.test │ │ │ ├── partition_basic_symlink_tokudb.test │ │ │ ├── partition_basic_tokudb.test │ │ │ ├── partition_bit_tokudb.test │ │ │ ├── partition_char_tokudb.test │ │ │ ├── partition_datetime_tokudb.test │ │ │ ├── partition_debug_sync_tokudb-master.opt │ │ │ ├── partition_debug_sync_tokudb.test │ │ │ ├── partition_debug_tokudb-master.opt │ │ │ ├── partition_debug_tokudb.test │ │ │ ├── partition_decimal_tokudb.test │ │ │ ├── partition_engine_tokudb.test │ │ │ ├── partition_exch_myisam_tokudb.test │ │ │ ├── partition_exch_qa_1_tokudb.test │ │ │ ├── partition_exch_qa_4_tokudb.test │ │ │ ├── partition_exch_qa_5_tokudb.test │ │ │ ├── partition_exch_qa_7_tokudb.test │ │ │ ├── partition_exch_qa_8_tokudb.test │ │ │ ├── partition_exch_tokudb.test │ │ │ ├── partition_exchange_tokudb.test │ │ │ ├── partition_float_tokudb.test │ │ │ ├── partition_int_tokudb.test │ │ │ ├── partition_max_parts_hash_tokudb-master.opt │ │ │ ├── partition_max_parts_hash_tokudb.test │ │ │ ├── partition_max_parts_inv_tokudb-master.opt │ │ │ ├── partition_max_parts_inv_tokudb.test │ │ │ ├── partition_max_parts_key_tokudb-master.opt │ │ │ ├── partition_max_parts_key_tokudb.test │ │ │ ├── partition_max_parts_list_tokudb-master.opt │ │ │ ├── partition_max_parts_list_tokudb.test │ │ │ ├── partition_max_parts_range_tokudb-master.opt │ │ │ ├── partition_max_parts_range_tokudb.test │ │ │ ├── partition_max_sub_parts_key_list_tokudb-master.opt │ │ │ ├── partition_max_sub_parts_key_list_tokudb.test │ │ │ ├── partition_max_sub_parts_key_range_tokudb-master.opt │ │ │ ├── partition_max_sub_parts_key_range_tokudb.test │ │ │ ├── partition_max_sub_parts_list_tokudb-master.opt │ │ │ ├── partition_max_sub_parts_list_tokudb.test │ │ │ ├── partition_max_sub_parts_range_tokudb-master.opt │ │ │ ├── partition_max_sub_parts_range_tokudb.test │ │ │ ├── partition_mgm_lc0_tokudb.test │ │ │ ├── partition_mgm_lc10_tokudb.test │ │ │ ├── partition_mgm_lc1_tokudb-master.opt │ │ │ ├── partition_mgm_lc1_tokudb.test │ │ │ ├── partition_mgm_lc2_tokudb-master.opt │ │ │ ├── partition_mgm_lc2_tokudb.test │ │ │ ├── partition_reorganize_tokudb.test │ │ │ ├── partition_special_tokudb-master.opt │ │ │ ├── partition_special_tokudb.test │ │ │ ├── partition_syntax_tokudb.test │ │ │ ├── partition_tokudb_status_file-master.opt │ │ │ ├── partition_value_tokudb.test │ │ │ └── suite.opt │ ├── tokudb_perfschema │ │ ├── r │ │ │ ├── crash_tokudb.result │ │ │ └── start_server_tokudb.result │ │ └── t │ │ │ ├── crash_tokudb.test │ │ │ ├── start_server_tokudb.test │ │ │ └── suite.opt │ ├── tokudb_rpl │ │ ├── disabled.def │ │ ├── include │ │ │ └── have_tokudb.inc │ │ ├── r │ │ │ ├── mdev12179.result │ │ │ └── rpl_parallel_optimistic.result │ │ ├── suite.opt │ │ └── t │ │ │ ├── mdev12179.test │ │ │ └── rpl_parallel_optimistic.test │ └── tokudb_sys_vars │ │ ├── include │ │ └── have_tokudb.inc │ │ ├── r │ │ ├── tokudb_analyze_delete_fraction.result │ │ ├── tokudb_analyze_in_background_basic.result │ │ ├── tokudb_analyze_mode_basic.result │ │ ├── tokudb_analyze_throttle_basic.result │ │ ├── tokudb_analyze_time_basic.result │ │ ├── tokudb_auto_analyze.result │ │ ├── tokudb_cardinality_scale_percent_basic.result │ │ └── tokudb_pk_insert_mode_basic.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ ├── suite.opt │ │ ├── tokudb_analyze_delete_fraction.test │ │ ├── tokudb_analyze_in_background_basic.test │ │ ├── tokudb_analyze_mode_basic.test │ │ ├── tokudb_analyze_throttle_basic.test │ │ ├── tokudb_analyze_time_basic.test │ │ ├── tokudb_auto_analyze.test │ │ ├── tokudb_cardinality_scale_percent_basic.test │ │ └── tokudb_pk_insert_mode_basic.test │ ├── tests │ ├── Makefile │ ├── card_1.cc │ ├── card_etime.cc │ ├── card_inf.cc │ ├── card_inf_1.cc │ ├── card_random_1.cc │ ├── card_test.cc │ ├── card_test_alter.cc │ ├── card_test_key_info.cc │ ├── fake_mysql.h │ ├── math_test_int.cc │ ├── math_test_uint.cc │ ├── max_test.cc │ ├── sint_test.cc │ ├── tokudb_buffer_test.cc │ ├── uint_test.cc │ ├── vlq_test.cc │ ├── vlq_test_uint32.cc │ └── vlq_test_uint64.cc │ ├── tokudb.cnf.in │ ├── tokudb.conf.in │ ├── tokudb_background.cc │ ├── tokudb_background.h │ ├── tokudb_buffer.h │ ├── tokudb_card.h │ ├── tokudb_debug.h │ ├── tokudb_dir_cmd.cc │ ├── tokudb_dir_cmd.h │ ├── tokudb_information_schema.cc │ ├── tokudb_information_schema.h │ ├── tokudb_math.h │ ├── tokudb_memory.h │ ├── tokudb_status.h │ ├── tokudb_sysvars.cc │ ├── tokudb_sysvars.h │ ├── tokudb_thread.cc │ ├── tokudb_thread.h │ ├── tokudb_time.h │ ├── tokudb_txn.h │ ├── tokudb_update_fun.cc │ ├── tokudb_vlq.h │ └── tools │ ├── tokudb_change_inames.cc │ └── tokudb_delete_frm_from_status.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.ic ├── ctype-simple.c ├── ctype-sjis.c ├── ctype-tis620.c ├── ctype-uca.c ├── ctype-ucs2.c ├── ctype-ujis.c ├── ctype-utf8.c ├── 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.ic ├── 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.pc.in ├── mariadb.service.in ├── mariadb@.service.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.res ├── 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.res ├── function.tst ├── grant.pl ├── grant.res ├── index_corrupt.pl ├── insert_and_repair.pl ├── insert_test.c ├── list_test.c ├── lock_test.pl ├── lock_test.res ├── 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 ├── 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 │ ├── 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 │ ├── thr_template.c │ └── waiting_threads-t.c ├── mytap │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── t │ │ └── basic-t.c │ ├── tap.c │ └── tap.h ├── sql │ ├── CMakeLists.txt │ ├── explain_filename-t.cc │ ├── mf_iocache-t.cc │ └── my_apc-t.cc ├── strings │ ├── CMakeLists.txt │ └── strings-t.c └── unit.pl ├── vio ├── CMakeLists.txt ├── docs │ ├── COPYING.openssl │ ├── INSTALL │ └── TODO ├── test-ssl.c ├── test-sslclient.c ├── test-sslserver.c ├── vio.c ├── vio_priv.h ├── viopipe.c ├── vioshm.c ├── viosocket.c ├── viossl.c ├── viosslfactories.c ├── viotest-ssl.c ├── viotest-sslconnect.cc └── viotest.cc ├── win ├── create_def_file.js ├── packaging │ ├── CMakeLists.txt │ ├── COPYING.rtf │ ├── CPackWixConfig.cmake │ ├── CPackZIPConfig.cmake │ ├── CPackZIPDebugInfoConfig.cmake │ ├── WixUIBannerBmp.jpg │ ├── WixUIDialogBmp.jpg │ ├── ca │ │ ├── CMakeLists.txt │ │ ├── CustomAction.cpp │ │ ├── CustomAction.def │ │ └── CustomAction.rc │ ├── create_msi.cmake │ ├── custom_ui.wxs │ ├── extra.wxs.in │ ├── heidisql.cmake │ ├── heidisql.wxi.in │ ├── heidisql_feature.wxi.in │ └── mysql_server.wxs.in └── upgrade_wizard │ ├── CMakeLists.txt │ ├── res │ ├── upgrade.ico │ └── upgrade.rc2 │ ├── resource.h │ ├── stdafx.h │ ├── targetver.h │ ├── upgrade.cpp │ ├── upgrade.h │ ├── upgrade.rc │ ├── upgradeDlg.cpp │ ├── upgradeDlg.h │ └── upgrade_wizard.exe.manifest ├── wsrep ├── CMakeLists.txt ├── wsrep_api.h ├── wsrep_dummy.c ├── wsrep_gtid.c ├── wsrep_loader.c └── wsrep_uuid.c └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── 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 ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── os400 ├── README400 ├── bndsrc ├── make.sh └── zlib.inc ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD-CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/BUILD-CMAKE -------------------------------------------------------------------------------- /BUILD/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/BUILD/cleanup -------------------------------------------------------------------------------- /BUILD/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/BUILD/util.sh -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/CREDITS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/VERSION -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/appveyor.yml -------------------------------------------------------------------------------- /client/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/client/echo.c -------------------------------------------------------------------------------- /dbug/dbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/dbug/dbug.c -------------------------------------------------------------------------------- /dbug/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/dbug/main.c -------------------------------------------------------------------------------- /dbug/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/dbug/tests.c -------------------------------------------------------------------------------- /dbug/user.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/dbug/user.r -------------------------------------------------------------------------------- /debian/additions/echo_stderr: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "$*" 1>&2 3 | -------------------------------------------------------------------------------- /debian/additions/mysqld_safe_syslog.cnf: -------------------------------------------------------------------------------- 1 | [mysqld_safe] 2 | skip_log_error 3 | syslog 4 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/libmariadb-dev.examples: -------------------------------------------------------------------------------- 1 | sql/udf_example.c 2 | -------------------------------------------------------------------------------- /debian/mariadb-common.dirs: -------------------------------------------------------------------------------- 1 | etc/mysql/mariadb.conf.d/ 2 | -------------------------------------------------------------------------------- /debian/mariadb-common.install: -------------------------------------------------------------------------------- 1 | debian/additions/mariadb.cnf etc/mysql/ 2 | -------------------------------------------------------------------------------- /debian/mariadb-plugin-gssapi-client.install: -------------------------------------------------------------------------------- 1 | usr/lib/mysql/plugin/auth_gssapi_client.so 2 | -------------------------------------------------------------------------------- /debian/mariadb-server-10.3.dirs: -------------------------------------------------------------------------------- 1 | var/lib/mysql-upgrade 2 | -------------------------------------------------------------------------------- /debian/mysql-common.dirs: -------------------------------------------------------------------------------- 1 | etc/mysql/conf.d/ 2 | -------------------------------------------------------------------------------- /debian/mysql-common.install: -------------------------------------------------------------------------------- 1 | debian/additions/my.cnf etc/mysql 2 | -------------------------------------------------------------------------------- /debian/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | [type: gettext/rfc822deb] mariadb-server-10.3.templates 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /extra/yassl/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/examples/echoclient/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /extra/yassl/lib/dummy: -------------------------------------------------------------------------------- 1 | // this is a dummy file 2 | -------------------------------------------------------------------------------- /extra/yassl/testsuite/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /include/lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/include/lf.h -------------------------------------------------------------------------------- /man/mysql.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/man/mysql.1 -------------------------------------------------------------------------------- /man/mysql_client_test_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql_client_test.1 2 | -------------------------------------------------------------------------------- /man/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /man/mysqld.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/man/mysqld.8 -------------------------------------------------------------------------------- /man/mysqltest_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysqltest.1 2 | -------------------------------------------------------------------------------- /man/perror.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/man/perror.1 -------------------------------------------------------------------------------- /man/replace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/man/replace.1 -------------------------------------------------------------------------------- /mysql-test/include/analyze-timeout.test: -------------------------------------------------------------------------------- 1 | SHOW PROCESSLIST; 2 | 3 | exit; 4 | -------------------------------------------------------------------------------- /mysql-test/include/big_test.require: -------------------------------------------------------------------------------- 1 | using_big_test 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/include/case_insensitive_fs.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | lower_case_file_system ON 3 | -------------------------------------------------------------------------------- /mysql-test/include/case_sensitive_file_system.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | lower_case_file_system OFF 3 | -------------------------------------------------------------------------------- /mysql-test/include/check_var_limit.require: -------------------------------------------------------------------------------- 1 | limit 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/include/galera_clear_sync_point.inc: -------------------------------------------------------------------------------- 1 | SET GLOBAL wsrep_provider_options = 'dbug='; 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_archive.opt: -------------------------------------------------------------------------------- 1 | --loose-archive 2 | --plugin-load-add=$HA_ARCHIVE_SO 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_binlog_format_mixed.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=mixed 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_binlog_format_row.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_binlog_format_statement.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=statement 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_blackhole.opt: -------------------------------------------------------------------------------- 1 | --loose-blackhole 2 | --plugin-load-add=$HA_BLACKHOLE_SO 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_compress.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_compress YES 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_geometry.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_geometry YES 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_local_infile.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | local_infile ON 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_log_bin.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | log_bin ON 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_met_timezone.require: -------------------------------------------------------------------------------- 1 | FROM_UNIXTIME(24*3600) 2 | 1970-01-02 01:00:00 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_partition.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-partition 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_perror.require: -------------------------------------------------------------------------------- 1 | have_perror 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_plugin_auth.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$AUTH_TEST_PLUGIN_SO 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_profiling.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_profiling YES 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_query_cache.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_query_cache YES 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_sequence.opt: -------------------------------------------------------------------------------- 1 | --loose-sequence 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_stat_tables.opt: -------------------------------------------------------------------------------- 1 | --use-stat-tables='complementary' 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_symlink.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_symlink YES 3 | -------------------------------------------------------------------------------- /mysql-test/include/have_working_dns.require: -------------------------------------------------------------------------------- 1 | have_working_dns 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/include/mysqltest-x.inc: -------------------------------------------------------------------------------- 1 | echo Output from mysqltest-x.inc; 2 | exit; 3 | 4 | -------------------------------------------------------------------------------- /mysql-test/include/not_as_root.inc: -------------------------------------------------------------------------------- 1 | if ($MYSQL_TEST_ROOT){ 2 | skip Not as root; 3 | } 4 | -------------------------------------------------------------------------------- /mysql-test/include/not_ssl.inc: -------------------------------------------------------------------------------- 1 | if (`select @@have_ssl = 'YES'`) 2 | { 3 | skip only without SSL; 4 | } 5 | -------------------------------------------------------------------------------- /mysql-test/include/not_true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL 3 | -------------------------------------------------------------------------------- /mysql-test/include/not_valgrind.require: -------------------------------------------------------------------------------- 1 | using_valgrind 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-test/include/platform.combinations: -------------------------------------------------------------------------------- 1 | [win] 2 | 3 | [unix] 4 | 5 | -------------------------------------------------------------------------------- /mysql-test/include/true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/main/auth_named_pipe-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-named-pipe 2 | -------------------------------------------------------------------------------- /mysql-test/main/auth_rpl-slave.opt: -------------------------------------------------------------------------------- 1 | --master-retry-count=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/bootstrap-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/bug58669-master.opt: -------------------------------------------------------------------------------- 1 | --read-only 2 | -------------------------------------------------------------------------------- /mysql-test/main/concurrent_innodb_safelog-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/contributors.test: -------------------------------------------------------------------------------- 1 | SHOW CONTRIBUTORS; 2 | -------------------------------------------------------------------------------- /mysql-test/main/count_distinct2-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-test/main/create_delayed.result: -------------------------------------------------------------------------------- 1 | drop table if exists t1; 2 | Starting test 3 | # All done 4 | -------------------------------------------------------------------------------- /mysql-test/main/ctype_utf16_def-master.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16,latin1 2 | -------------------------------------------------------------------------------- /mysql-test/main/ctype_utf8-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/ctype_utf8mb4-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/ctype_utf8mb4_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/default_storage_engine.result: -------------------------------------------------------------------------------- 1 | "all ok" 2 | -------------------------------------------------------------------------------- /mysql-test/main/delimiter_command_case_sensitivity.result: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/main/enforce_storage_engine_opt.opt: -------------------------------------------------------------------------------- 1 | --enforce-storage-engine=myisam 2 | -------------------------------------------------------------------------------- /mysql-test/main/error_simulation-master.opt: -------------------------------------------------------------------------------- 1 | --tmpdir=$MYSQLTEST_VARDIR/tmp 2 | -------------------------------------------------------------------------------- /mysql-test/main/events_bugs-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/main/events_restart-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/main/flush2-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/main/grant3-master.opt: -------------------------------------------------------------------------------- 1 | --safe-user-create 2 | -------------------------------------------------------------------------------- /mysql-test/main/grant_lowercase.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/huge_frm-6224.result: -------------------------------------------------------------------------------- 1 | ERROR HY000: The definition for table `t1` is too big 2 | -------------------------------------------------------------------------------- /mysql-test/main/implicit_commit-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/init_connect-master.opt: -------------------------------------------------------------------------------- 1 | --init_connect="set @a='a\\0c'" 2 | -------------------------------------------------------------------------------- /mysql-test/main/init_connection_query_cache-master.opt: -------------------------------------------------------------------------------- 1 | --init_connect="select * from test.t1 where 0" 2 | -------------------------------------------------------------------------------- /mysql-test/main/innodb_ignore_builtin-master.opt: -------------------------------------------------------------------------------- 1 | --ignore_builtin_innodb 2 | -------------------------------------------------------------------------------- /mysql-test/main/ipv4_and_ipv6.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve --bind-address=* 2 | -------------------------------------------------------------------------------- /mysql-test/main/ipv6-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/main/kill-2-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/main/lock_tables_lost_commit-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=test 2 | -------------------------------------------------------------------------------- /mysql-test/main/lowercase_table-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/main/lowercase_table4-master.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=2 2 | -------------------------------------------------------------------------------- /mysql-test/main/lowercase_table_grant-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/main/lowercase_table_qcache-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/main/lowercase_view-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/mdl_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/merge_mmap-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-use-mmap 2 | -------------------------------------------------------------------------------- /mysql-test/main/multi_update-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-test/main/multi_update2-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-test/main/multi_update_tiny_hash-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-test/main/myisam-blob-master.opt: -------------------------------------------------------------------------------- 1 | --max-allowed-packet=24M --loose-skip-innodb --key-buffer-size=1M 2 | -------------------------------------------------------------------------------- /mysql-test/main/myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=off 2 | -------------------------------------------------------------------------------- /mysql-test/main/myisam_recover-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=force 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysql_delimiter_19799.sql: -------------------------------------------------------------------------------- 1 | delimiter // 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysql_upgrade-6984.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables --group-concat-max-len=1023 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqlbinlog-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=4096 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqlbinlog_row_minimal.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-image=minimal 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqldump-compat.opt: -------------------------------------------------------------------------------- 1 | --loose-debug-dbug=d,4x_server_emul 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqldump-max-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqldump-no-binlog-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqldump-no-binlog.result: -------------------------------------------------------------------------------- 1 | mysqldump: Error: Binlogging on server not active 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqlslap.opt: -------------------------------------------------------------------------------- 1 | --sql_mode='NO_ENGINE_SUBSTITUTION' 2 | -------------------------------------------------------------------------------- /mysql-test/main/mysqltest_256.result: -------------------------------------------------------------------------------- 1 | # Done 2 | -------------------------------------------------------------------------------- /mysql-test/main/named_pipe-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-named-pipe 2 | -------------------------------------------------------------------------------- /mysql-test/main/no_binlog.result: -------------------------------------------------------------------------------- 1 | SHOW BINARY LOGS; 2 | ERROR HY000: You are not using binary logging 3 | -------------------------------------------------------------------------------- /mysql-test/main/old-mode-master.opt: -------------------------------------------------------------------------------- 1 | --old=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/partition-master.opt: -------------------------------------------------------------------------------- 1 | --symbolic-links=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/partition_disabled-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-partition 2 | -------------------------------------------------------------------------------- /mysql-test/main/partition_exchange-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_default_row_format=COMPACT 2 | -------------------------------------------------------------------------------- /mysql-test/main/partition_mgm_err2.result: -------------------------------------------------------------------------------- 1 | INSERT INTO t1 VALUES (15); 2 | DROP TABLE t1; 3 | -------------------------------------------------------------------------------- /mysql-test/main/partition_not_blackhole-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-blackhole 2 | -------------------------------------------------------------------------------- /mysql-test/main/partition_not_windows-master.opt: -------------------------------------------------------------------------------- 1 | --symbolic-links=1 2 | -------------------------------------------------------------------------------- /mysql-test/main/plugin_auth_qa_2-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$QA_AUTH_INTERFACE_SO 2 | -------------------------------------------------------------------------------- /mysql-test/main/plugin_auth_qa_3-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$QA_AUTH_SERVER_SO 2 | -------------------------------------------------------------------------------- /mysql-test/main/plugin_maturity-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-maturity=stable 2 | -------------------------------------------------------------------------------- /mysql-test/main/ps_3innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/query_cache_notembedded-master.opt: -------------------------------------------------------------------------------- 1 | --query-cache-size=1355776 2 | -------------------------------------------------------------------------------- /mysql-test/main/row-checksum-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-strict-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/main/row-checksum-old-master.opt: -------------------------------------------------------------------------------- 1 | --old 2 | --loose-innodb-strict-mode=0 3 | -------------------------------------------------------------------------------- /mysql-test/main/row-checksum.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-strict-mode=off 2 | -------------------------------------------------------------------------------- /mysql-test/main/secure_file_priv_win-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-test/main/select_pkeycache-master.opt: -------------------------------------------------------------------------------- 1 | --key_cache_segments=7 2 | -------------------------------------------------------------------------------- /mysql-test/main/skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-test/main/skip_log_bin-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/main/skip_name_resolve-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/main/sql_safe_updates.opt: -------------------------------------------------------------------------------- 1 | --enable-sql-safe-updates 2 | -------------------------------------------------------------------------------- /mysql-test/main/ssl_8k_key.result: -------------------------------------------------------------------------------- 1 | have_ssl 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/main/ssl_cipher-master.opt: -------------------------------------------------------------------------------- 1 | --loose-ssl-cipher=AES128-SHA 2 | -------------------------------------------------------------------------------- /mysql-test/main/ssl_connect.result: -------------------------------------------------------------------------------- 1 | completed 2 | -------------------------------------------------------------------------------- /mysql-test/main/status-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=table,file 2 | -------------------------------------------------------------------------------- /mysql-test/main/strict-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/main/sysdate_is_now-master.opt: -------------------------------------------------------------------------------- 1 | --sysdate-is-now 2 | -------------------------------------------------------------------------------- /mysql-test/main/temp_table-master.opt: -------------------------------------------------------------------------------- 1 | --tmpdir=$MYSQLTEST_VARDIR//tmp 2 | -------------------------------------------------------------------------------- /mysql-test/main/timezone-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=MET 2 | -------------------------------------------------------------------------------- /mysql-test/main/timezone3-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=:$MYSQL_TEST_DIR/std_data/Moscow_leap 2 | -------------------------------------------------------------------------------- /mysql-test/main/timezone4-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT+10 2 | -------------------------------------------------------------------------------- /mysql-test/main/trans_read_only-master.opt: -------------------------------------------------------------------------------- 1 | --transaction-read-only=true 2 | -------------------------------------------------------------------------------- /mysql-test/main/udf_skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-test/main/user_limits-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=1000 2 | -------------------------------------------------------------------------------- /mysql-test/main/variables-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=1 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/bad_gis_data.dat: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/bad_row_type.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/bug15328.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | fields-optionally-enclosed-by=" 3 | -------------------------------------------------------------------------------- /mysql-test/std_data/bug37631.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/cluster_7022_table.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/funcs_1/load_file.txt: -------------------------------------------------------------------------------- 1 | Here is content from load_file 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/host_old.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/loaddata/mdev-11631.txt: -------------------------------------------------------------------------------- 1 | \ä 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/loaddata/mdev-15497.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/loaddata/nl.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-test/std_data/loaddata7.dat: -------------------------------------------------------------------------------- 1 | 2,2 2 | 3,3 3 | 4,4 4 | 5,5 5 | 6,6 -------------------------------------------------------------------------------- /mysql-test/std_data/loaddata_utf8.dat: -------------------------------------------------------------------------------- 1 | 一二三 2 | 四五六 3 | 七八九 4 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/README: -------------------------------------------------------------------------------- 1 | 2 | Tables created by mysql_install_db from MySQL-5.6.13 3 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/columns_priv.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/event.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/func.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/plugin.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/proc.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/procs_priv.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/servers.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/tables_priv.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/time_zone.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/time_zone_leap_second.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/time_zone_name.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/time_zone_transition.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql5613mysql/time_zone_transition_type.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql57_virtual.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/mysql_upgrade/event.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/numbers.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 5 4 | 7 5 | 11 6 | 13 7 | 17 8 | 23 9 | 29 10 | -------------------------------------------------------------------------------- /mysql-test/std_data/parts/part_supported_sql_funcs_int_ch1.inc: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 9 3 | 3 3 4 | 4 8 -------------------------------------------------------------------------------- /mysql-test/std_data/rpl_loaddata.dat: -------------------------------------------------------------------------------- 1 | \N 10 2 | \N 15 3 | -------------------------------------------------------------------------------- /mysql-test/std_data/temporal_upgrade/mysql050614_temporal1.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/std_data/vcol_autoinc.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/archive/archive_no_symlink-master.opt: -------------------------------------------------------------------------------- 1 | --skip-symbolic-links 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_bug36391-master.opt: -------------------------------------------------------------------------------- 1 | --sql_mode=NO_BACKSLASH_ESCAPES 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_index.test: -------------------------------------------------------------------------------- 1 | --source include/binlog_index.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_ioerr.test: -------------------------------------------------------------------------------- 1 | --source include/binlog_ioerr.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_killed_simulate-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=d,simulate_kill_bug27571 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog-cp932-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=8192 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog2-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog_row-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog_row_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog_row_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_mysqlbinlog_row_trans-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_query_filter_rules-master.opt: -------------------------------------------------------------------------------- 1 | --replicate-do-db='impossible_database' 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_row_annotate.test: -------------------------------------------------------------------------------- 1 | --source include/binlog_row_annotate.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_row_innodb_stat-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_cache_size=32768 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_row_mysqlbinlog_options-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_spurious_ddl_errors-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_stm_do_db-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-do-db=b42829 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_stm_innodb_stat-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_cache_size=32768 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_truncate_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_unsafe-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=file,table 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_variables_log_bin-master.opt: -------------------------------------------------------------------------------- 1 | --log-bin=other 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_write_error.test: -------------------------------------------------------------------------------- 1 | --source include/binlog_write_error.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_xa_recover.test: -------------------------------------------------------------------------------- 1 | --source include/binlog_xa_recover.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/flashback-master.opt: -------------------------------------------------------------------------------- 1 | --flashback 2 | --timezone=GMT-8 3 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog_encryption/binlog_mysqlbinlog-cp932-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=8192 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog_encryption/rpl_special_charset.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/create_or_replace.opt: -------------------------------------------------------------------------------- 1 | --innodb-tablespaces-encryption 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/filekeys-data.key: -------------------------------------------------------------------------------- 1 | secret 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/filekeys-tooshort.enc: -------------------------------------------------------------------------------- 1 | Salted__ -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/filekeys_encfile.test: -------------------------------------------------------------------------------- 1 | source filekeys_goodtest.inc; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/filekeys_encfile_file.test: -------------------------------------------------------------------------------- 1 | source filekeys_goodtest.inc; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/filekeys_plugin.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$FILE_KEY_MANAGEMENT_SO 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/innodb-scrub-log.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-scrub-log=on 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/innodb_encryption_filekeys.opt: -------------------------------------------------------------------------------- 1 | --innodb-tablespaces-encryption 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/innodb_encryption_is.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-tablespaces-encryption 2 | -------------------------------------------------------------------------------- /mysql-test/suite/encryption/t/tempfiles.opt: -------------------------------------------------------------------------------- 1 | --encrypt-tmp-files 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_less_columns.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3 4 | 4,ghi 5 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_more_columns.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,aa,aa 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_quote.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,'def,ghi' 3 | 3,"aa,bb" 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_unique_error1.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,ghi 4 | 3,jkl 5 | 4,opq 6 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_unique_error2.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,ghi 4 | 4,jkl 5 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/load_unique_error3.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,aa 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl000010-slave.opt: -------------------------------------------------------------------------------- 1 | --disconnect-slave-event-count=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl000017-slave.opt: -------------------------------------------------------------------------------- 1 | --skip-slave-start 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_free_items-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_ignore_grant-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_ignore_revoke-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_init_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --init-slave="set global max_connections=500" 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_loaddata_m-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_multi_delete-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_multi_update4-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=d1.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_relayspace-slave.opt: -------------------------------------------------------------------------------- 1 | --relay_log_space_limit=10 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_replicate_ignore_db-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate_ignore_db=mysqltest1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_row_inexist_tbl-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.t2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_skip_error-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=1053,1062,1582 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_sp-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_sp-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_sp_effects-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_sp_effects-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_variables-master.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=3,100,137,643,1752 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/rpl_view-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.foo 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/funcs/t/tc_partition_list_directory.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-strict-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/iuds/suite.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT-3 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/rr_trx/init_innodb.txt: -------------------------------------------------------------------------------- 1 | init_innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/rr_trx/r/rr_c_stats.result: -------------------------------------------------------------------------------- 1 | SELECT * FROM statistics; 2 | tx_errors 3 | 0 4 | -------------------------------------------------------------------------------- /mysql-test/suite/federated/federated_partition-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/federated/have_federatedx.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_FEDERATEDX_SO --loose-federated 2 | -------------------------------------------------------------------------------- /mysql-test/suite/funcs_1/t/row_count_func-master.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-test/suite/funcs_2/disabled.def: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-test/suite/funcs_2/suite.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv=$MYSQL_TEST_DIR 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/my.cnf: -------------------------------------------------------------------------------- 1 | !include galera_2nodes.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/r/galera_sst_xtrabackup-v2-options.result: -------------------------------------------------------------------------------- 1 | SELECT 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/r/galera_sst_xtrabackup-v2_encrypt_with_key.result: -------------------------------------------------------------------------------- 1 | SELECT 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/MW-284.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_2nodes_as_master.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/MW-329-master.opt: -------------------------------------------------------------------------------- 1 | --wsrep-retry-autocommit=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/MW-44-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=TABLE 2 | --general-log=OFF 3 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/enforce_storage_engine2.opt: -------------------------------------------------------------------------------- 1 | --enforce_storage_engine=innodb --sql_mode='' 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_as_master.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_2nodes_as_master.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_as_slave.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_2nodes_as_slave.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_as_slave_autoinc.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_2nodes_as_slave.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_as_slave_nonprim.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_3nodes_as_slave.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_bf_background_statistics.opt: -------------------------------------------------------------------------------- 1 | --innodb_stats_persistent=ON 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_binlog_event_max_size_min-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=256 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_mdev_13787.opt: -------------------------------------------------------------------------------- 1 | --innodb-stats-persistent=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_sbr_binlog-master.opt: -------------------------------------------------------------------------------- 1 | --log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_udf-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | --query_cache_type=1 3 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_v1_row_events-master.opt: -------------------------------------------------------------------------------- 1 | --log-bin-use-v1-row-events=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_var_auto_inc_control_on.opt: -------------------------------------------------------------------------------- 1 | --wsrep-auto-increment-control=ON 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_var_sst_auth.opt: -------------------------------------------------------------------------------- 1 | --wsrep_sst_auth=root: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_wsrep_log_conficts-master.opt: -------------------------------------------------------------------------------- 1 | --wsrep_log_conflicts=ON 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/galera_wsrep_new_cluster-master.opt: -------------------------------------------------------------------------------- 1 | --wsrep-new-cluster 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/mysql-wsrep#201-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/query_cache.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera/t/versioning_trx_id.cnf: -------------------------------------------------------------------------------- 1 | !include ../galera_4nodes.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/galera_3nodes/my.cnf: -------------------------------------------------------------------------------- 1 | !include galera_3nodes.cnf 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/include/have_undo_tablespaces.combinations: -------------------------------------------------------------------------------- 1 | [2] 2 | innodb-undo-tablespaces=2 3 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb-analyze.result: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | innodb_stats_sample_pages 1 3 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb-mdev7046.result: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug34053.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug35220.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug38231.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | connection default; 3 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug39438.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_trx_weight.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/alter_crash.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-sys-tables 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/alter_kill-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-doublewrite=false 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/create_isl_with_direct.opt: -------------------------------------------------------------------------------- 1 | --innodb_flush_method=O_DIRECT 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/data_types.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-sys-columns 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/index_merge_threshold.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_sys_tablespaces 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/index_tree_operation.opt: -------------------------------------------------------------------------------- 1 | --innodb-sys-tablespaces 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-16k-master.opt: -------------------------------------------------------------------------------- 1 | --default_storage_engine=InnoDB 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-autoinc-56228-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-consistent-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-index-debug.opt: -------------------------------------------------------------------------------- 1 | --innodb-sort-buffer-size=64k 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-index-online-norebuild.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-sys-tables 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-mdev-7408.opt: -------------------------------------------------------------------------------- 1 | --innodb_ft_default_stopword 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-mdev-7513-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-strict-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-semi-consistent-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb-stats-modified-counter.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-sys-tablestats 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb.opt: -------------------------------------------------------------------------------- 1 | --innodb-defragment=0 -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_autoinc_lock_mode_zero-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug14676111.opt: -------------------------------------------------------------------------------- 1 | --innodb-sys-tablestats=1 -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug39438-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-file-per-table=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug42101-nonzero-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-commit-concurrency=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug60049-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_fast_shutdown=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug60196-master.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_corrupt_bit.opt: -------------------------------------------------------------------------------- 1 | --innodb-encryption-threads=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_defrag_stats.opt: -------------------------------------------------------------------------------- 1 | --innodb-defragment=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_defrag_stats_many_tables.opt: -------------------------------------------------------------------------------- 1 | --innodb-defragment=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_force_pk.opt: -------------------------------------------------------------------------------- 1 | --innodb_force_primary_key=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_lock_wait_timeout_1-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_mutexes-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-mutexes -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_simulate_comp_failures_small-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-file-per-table 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_trx_weight.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-lock-schedule-algorithm=FCFS 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_zip_innochecksum3.opt: -------------------------------------------------------------------------------- 1 | --innodb-file-per-table 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/instant_alter.opt: -------------------------------------------------------------------------------- 1 | --innodb-sys-tablestats 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/table_definition_cache_debug.opt: -------------------------------------------------------------------------------- 1 | --innodb-open-files=30 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/undo_truncate.opt: -------------------------------------------------------------------------------- 1 | --innodb-log-buffer-size=2m 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/update_time-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-size=10M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_fts/t/create.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-sys-columns 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_fts/t/innodb-fts-stopword.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-ft-default-stopword 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_zip/disabled.def: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_zip/r/bug36169.result: -------------------------------------------------------------------------------- 1 | SET GLOBAL innodb_file_per_table=ON; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_zip/t/cmp_drop_table-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-size=8M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_zip/t/innochecksum.opt: -------------------------------------------------------------------------------- 1 | --skip-innodb-doublewrite 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb_zip/t/innochecksum_2.opt: -------------------------------------------------------------------------------- 1 | --skip-innodb-doublewrite 2 | -------------------------------------------------------------------------------- /mysql-test/suite/large_tests/r/lock_tables_big.result: -------------------------------------------------------------------------------- 1 | all done 2 | -------------------------------------------------------------------------------- /mysql-test/suite/large_tests/t/rpl_slave_net_timeout-slave.opt: -------------------------------------------------------------------------------- 1 | --net_read_timeout=5 2 | -------------------------------------------------------------------------------- /mysql-test/suite/maria/small_blocksize-master.opt: -------------------------------------------------------------------------------- 1 | --aria-block-size=1024 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/auth_plugin_win.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-named-pipe 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/filekeys-data.key: -------------------------------------------------------------------------------- 1 | secret 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/lock_ddl_per_table.opt: -------------------------------------------------------------------------------- 1 | --loose-partition 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/skip_innodb.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-innodb -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/small_ibd.result: -------------------------------------------------------------------------------- 1 | #backup 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mariabackup/xb_rocksdb.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$HA_ROCKSDB_SO -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/combs.inc: -------------------------------------------------------------------------------- 1 | select @@local_infile; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/inc.inc: -------------------------------------------------------------------------------- 1 | let $a=1; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/newcomb.result: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/proxy.inc: -------------------------------------------------------------------------------- 1 | select "proxy"; 2 | source combs.inc; 3 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/simple.combinations: -------------------------------------------------------------------------------- 1 | [s1] 2 | verbose 3 | 4 | [s2] 5 | old 6 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/single.result: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/source.result: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr/t/testsh.result: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/suite/mtr2/overlay.inc: -------------------------------------------------------------------------------- 1 | select 2; 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/disabled.def: -------------------------------------------------------------------------------- 1 | # Disabling all subquery problems 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/r/bug41996-extra1-innodb-innodb.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/r/bug41996-extra2-innodb-innodb.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/r/bug41996-extra3-innodb-innodb.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/r/bug41996-extra4-innodb-innodb.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/optimizer_unfixed_bugs/t/bug41029-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_debug_sync_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_file_per_table 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_innodb_status_file-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-status-file=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc1_archive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc1_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc1_memory-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc1_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc2_archive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc2_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc2_memory-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_mgm_lc2_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_recover_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_repair_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=off 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/connection_3a-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_accounts_size=3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/connection_3u-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_users_size=3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/digest_table_full-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance-schema-digests-size=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/event_aggregate-master.opt: -------------------------------------------------------------------------------- 1 | --general_log 2 | --log-output=FILE 3 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv4_max_con-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=1024 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_again_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_good_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_auth_plugin-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_blocked-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_passwd-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/hostcache_ipv6_ssl-master.opt: -------------------------------------------------------------------------------- 1 | --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/pool_of_threads-master.opt: -------------------------------------------------------------------------------- 1 | --loose-pool-of-threads 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/query_cache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/selects-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/short_option_1-master.opt: -------------------------------------------------------------------------------- 1 | -a -Cutf8 --collation-server=utf8_bin -T12 -W3 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/short_option_2-master.opt: -------------------------------------------------------------------------------- 1 | -aW5 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/socket_instances_func-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve --bind-address=* 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/socket_instances_func_win-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/stage_mdl_global-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/start_server_1_digest-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance-schema-digests-size=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/start_server_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/start_server_low_digest-master.opt: -------------------------------------------------------------------------------- 1 | --max_digest_length=10 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/start_server_off-master.opt: -------------------------------------------------------------------------------- 1 | --loose-disable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/start_server_on-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/statement_digest_long_query-master.opt: -------------------------------------------------------------------------------- 1 | --thread_stack=655360 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/thread_cache-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_max_thread_class=200 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/threads_mysql-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler --thread-cache-size=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema_stress/stress_init.txt: -------------------------------------------------------------------------------- 1 | setup 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/cassandra.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_CASSANDRA_SO --loose-cassandra=on 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/cassandra_qcache.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_CASSANDRA_SO --loose-cassandra=on 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/feedback_plugin_install.opt: -------------------------------------------------------------------------------- 1 | --loose-feedback 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/feedback_plugin_load.opt: -------------------------------------------------------------------------------- 1 | --loose-feedback 2 | --plugin-load-add=$FEEDBACK_SO 3 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/pam_cleartext.opt: -------------------------------------------------------------------------------- 1 | --loose-pam-use-cleartext-plugin 2 | -------------------------------------------------------------------------------- /mysql-test/suite/roles/ps.result: -------------------------------------------------------------------------------- 1 | PREPARE stmt FROM 'SET ROLE NONE'; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/r/rpl000001.a.result: -------------------------------------------------------------------------------- 1 | n 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/r/rpl000001.b.result: -------------------------------------------------------------------------------- 1 | sum(length(word)) 2 | 71 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/r/rpl_critical_errors.result: -------------------------------------------------------------------------------- 1 | Turn on parsing to run this test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/r/rpl_set_statement.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_000010-slave.opt: -------------------------------------------------------------------------------- 1 | --debug-disconnect-slave-event-count=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_000011-slave.opt: -------------------------------------------------------------------------------- 1 | --verbose=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_15919-slave.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_EE_err.test: -------------------------------------------------------------------------------- 1 | let $engine_type=myisam; 2 | -- source include/rpl_EE_err.test 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_begin_commit_rollback-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb --binlog-ignore-db=db2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_begin_commit_rollback-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb --replicate-do-db=db1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_binlog_errors-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_binlog_errors.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_binlog_errors.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_bug41902-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=-d,simulate_find_log_pos_error 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_charset.test: -------------------------------------------------------------------------------- 1 | let $engine_type=myisam; 2 | source include/rpl_charset.test; 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_checksum-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-checksum=CRC32 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_checksum.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_checksum.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_concurrency_error-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-lock-wait-timeout=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_corruption.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_corruption.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_ddl-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_drop_temp-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=mysqltest.t2 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_flush_logs-master.opt: -------------------------------------------------------------------------------- 1 | --log-error=$MYSQLTEST_VARDIR/tmp/master_log.err 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_flushlog_loop-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=1M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_flushlog_loop-slave.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=1M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_free_items-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_get_master_version_and_clock-slave.opt: -------------------------------------------------------------------------------- 1 | --master-retry-count=60 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_gtid_crash-slave.opt: -------------------------------------------------------------------------------- 1 | --master-retry-count=100 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_ignore_grant-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_ignore_revoke-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_init_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --init-slave="set global max_connections=500" 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_init_slave_errors.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_init_slave_errors.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_innodb_bug28430-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_innodb_bug28430-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_innodb_bug30888.opt: -------------------------------------------------------------------------------- 1 | --innodb-flush-log-at-trx-commit=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_invoked_features-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_fatal-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,LOAD_DATA_INFILE_has_fatal_error 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_m-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_map-slave.opt: -------------------------------------------------------------------------------- 1 | --max_allowed_packet=8K --net-buffer-length=8K 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loadfile.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_loadfile.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_mdev6386-slave.opt: -------------------------------------------------------------------------------- 1 | --disable-log-slave-updates 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_mixed_row_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_multi_delete-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_multi_update2-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=nothing.sensible 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_multi_update4-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=d1.% 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_packet.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_packet.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_parallel.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_parallel.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_parallel_no_log_slave_updates-slave.opt: -------------------------------------------------------------------------------- 1 | --log-slave-updates=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_partition_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_relayrotate-slave.opt: -------------------------------------------------------------------------------- 1 | --max_relay_log_size=16384 2 | --log-warnings 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_relayrotate.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_relayrotate.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_relayspace-slave.opt: -------------------------------------------------------------------------------- 1 | --relay_log_space_limit=10 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_replicate_do-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-do-table=test.t1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate_ignore_db=mysqltest1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_rotate_purge_deadlock-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=4k --expire-logs-days=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_corruption-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.t2_11753004_ign 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_end_of_statement_loss-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=8192 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_err_daisychain-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_log-master.opt: -------------------------------------------------------------------------------- 1 | --skip-external-locking 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_log-slave.opt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_mysqlbinlog-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=1040384 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_to_stmt-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_row_to_stmt-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=statement 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semi_sync.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_semi_sync.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semi_sync_event-master.opt: -------------------------------------------------------------------------------- 1 | --max-connections=40 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semi_sync_event_after_sync-master.opt: -------------------------------------------------------------------------------- 1 | --max-connections=40 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semi_sync_wait_point.opt: -------------------------------------------------------------------------------- 1 | --log_bin 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semisync_ali_issues-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_format=row 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_semisync_ali_issues-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_format=row 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_skip_error-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=1062 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_skip_incident-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,incident_database_resync_on_replace 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_skip_incident-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=1590 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_skip_replication.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_skip_replication.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sp-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sp-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sp_effects-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sp_effects-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_spec_variables-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_special_charset.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_special_charset.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_special_charset.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sporadic_master.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_sporadic_master.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_ssl.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_ssl.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_start_stop_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-lock-wait-timeout=60 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_stm_binlog_direct-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-direct-non-transactional-updates 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_stm_log-slave.opt: -------------------------------------------------------------------------------- 1 | --log-slave-updates 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_stm_relay_ign_space.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_stm_relay_ign_space.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_stop_slave_error-slave.opt: -------------------------------------------------------------------------------- 1 | --log-error=$MYSQLTEST_VARDIR/tmp/slave_log.err 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_switch_stm_row_mixed.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_sync.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_sync_test.inc 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_timezone-master.opt: -------------------------------------------------------------------------------- 1 | --default-time-zone=Europe/Moscow 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_timezone-slave.opt: -------------------------------------------------------------------------------- 1 | --default-time-zone=Japan 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_typeconv-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_typeconv.test: -------------------------------------------------------------------------------- 1 | --source include/rpl_typeconv.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/temporal_row-9560-master.opt: -------------------------------------------------------------------------------- 1 | --disable-mysql56-temporal-format 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sql_sequence/debug_sync.opt: -------------------------------------------------------------------------------- 1 | --loose-debug-sync-timeout=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sql_sequence/disabled.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/sql_sequence/replication-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_format=row --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/storage_engine/parts/repair_table.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=DEFAULT 2 | -------------------------------------------------------------------------------- /mysql-test/suite/storage_engine/se-innodb.out: -------------------------------------------------------------------------------- 1 | Can't open perl script "./mtr": No such file or directory 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/oqgraph_allow_create_integer_latch_basic.result: -------------------------------------------------------------------------------- 1 | Oqgraph extention 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func2-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func2.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func3-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func3.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func4-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=on 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func4.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func5-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=off 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func5.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/back_log_basic.opt: -------------------------------------------------------------------------------- 1 | --back-log=1000 --max-connections=300 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/delay_key_write_func-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=BACKUP,FORCE 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/external_user_basic.test: -------------------------------------------------------------------------------- 1 | SELECT @@SESSION.EXTERNAL_USER FROM DUAL; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/host_cache_size_auto.test: -------------------------------------------------------------------------------- 1 | select @@global.host_cache_size; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/host_cache_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --host-cache-size=123 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/identity_func-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_autoinc_lock_mode_func-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-autoinc-lock-mode=1 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_buffer_pool_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-chunk-size=2M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_compression_algorithm_basic-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-compression-algorithm=1 -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_file_per_table_basic-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_file_per_table=On 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_numa_interleave_basic-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_numa_interleave=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/last_insert_id_func-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/log_error_func2.opt: -------------------------------------------------------------------------------- 1 | --log-error 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/log_error_func3.opt: -------------------------------------------------------------------------------- 1 | --disable-log-error 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/max_user_connections_basic-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=10 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/max_user_connections_func-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=10 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/metadata_locks_cache_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --metadata-locks-cache-size=256 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/myisam_data_pointer_size_func-master.opt: -------------------------------------------------------------------------------- 1 | --log-error='dummy.log' 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/oqgraph_allow_create_integer_latch_basic.test: -------------------------------------------------------------------------------- 1 | --echo Oqgraph extention 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/performance_schema_basic-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/plugin_dir_basic-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/proxy_user_basic.test: -------------------------------------------------------------------------------- 1 | SELECT @@SESSION.PROXY_USER FROM DUAL; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_auth_func-master.opt: -------------------------------------------------------------------------------- 1 | --secure-auth 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_file_priv-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv='' 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_file_priv2-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$SECURE_LOAD_PATH 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_timestamp_no-slave.opt: -------------------------------------------------------------------------------- 1 | --secure-timestamp=no 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_timestamp_rpl-slave.opt: -------------------------------------------------------------------------------- 1 | --secure-timestamp=replication 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_timestamp_super-slave.opt: -------------------------------------------------------------------------------- 1 | --secure-timestamp=super 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/secure_timestamp_yes-slave.opt: -------------------------------------------------------------------------------- 1 | --secure-timestamp=yes 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/skip_name_resolve_basic-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/slow_launch_time_func-master.opt: -------------------------------------------------------------------------------- 1 | --thread_cache_size=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/storage_engine_basic-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/sysvars_aria.opt: -------------------------------------------------------------------------------- 1 | --loose-aria-log-file-size=100M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/sysvars_debug.opt: -------------------------------------------------------------------------------- 1 | --loose-debug-binlog-fsync-sleep=314 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/sysvars_server_embedded.opt: -------------------------------------------------------------------------------- 1 | --table_open_cache=100 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/sysvars_server_notembedded.opt: -------------------------------------------------------------------------------- 1 | --table_open_cache=100 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/thread_cache_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --max-connections=1024 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/thread_cache_size_func-master.opt: -------------------------------------------------------------------------------- 1 | --thread-cache-size=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/timestamp_sysdate_is_now_func-master.opt: -------------------------------------------------------------------------------- 1 | --sysdate-is-now 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/wsrep_on_basic.opt: -------------------------------------------------------------------------------- 1 | --innodb-lock-schedule-algorithm=FCFS 2 | -------------------------------------------------------------------------------- /mysql-test/suite/vcol/disabled.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/versioning/common.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=test_versioning 2 | -------------------------------------------------------------------------------- /mysql-test/suite/versioning/engines.inc: -------------------------------------------------------------------------------- 1 | --source include/have_innodb.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/versioning/innodb.inc: -------------------------------------------------------------------------------- 1 | --source include/have_innodb.inc 2 | -------------------------------------------------------------------------------- /mysql-test/suite/versioning/t/trx_id.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=test_versioning 2 | -------------------------------------------------------------------------------- /mysql-test/suite/wsrep/t/alter_table_innodb.opt: -------------------------------------------------------------------------------- 1 | --wsrep-on=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/wsrep/t/wsrep_rpl.cnf: -------------------------------------------------------------------------------- 1 | !include ../../rpl/my.cnf 2 | -------------------------------------------------------------------------------- /mysys/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/mysys/array.c -------------------------------------------------------------------------------- /mysys/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/mysys/hash.c -------------------------------------------------------------------------------- /mysys/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/mysys/list.c -------------------------------------------------------------------------------- /mysys/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/mysys/tree.c -------------------------------------------------------------------------------- /pcre/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/AUTHORS -------------------------------------------------------------------------------- /pcre/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/HACKING -------------------------------------------------------------------------------- /pcre/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/INSTALL -------------------------------------------------------------------------------- /pcre/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/LICENCE -------------------------------------------------------------------------------- /pcre/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/NEWS -------------------------------------------------------------------------------- /pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/README -------------------------------------------------------------------------------- /pcre/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/RunTest -------------------------------------------------------------------------------- /pcre/testdata/grepbinary: -------------------------------------------------------------------------------- 1 | The quick brown fx jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /pcre/testdata/greppatN4: -------------------------------------------------------------------------------- 1 | xxx 2 | jkl 3 | -------------------------------------------------------------------------------- /pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/pcre/ucp.h -------------------------------------------------------------------------------- /plugin/daemon_example/ChangeLog: -------------------------------------------------------------------------------- 1 | 0.1 2 | - Added 3 | -------------------------------------------------------------------------------- /plugin/daemon_example/NEWS: -------------------------------------------------------------------------------- 1 | 0.1 - Tue Nov 7 12:08:03 PST 2006 2 | * Added Example to test interface 3 | -------------------------------------------------------------------------------- /plugin/disks/mysql-test/disks/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$DISKS_SO 2 | -------------------------------------------------------------------------------- /plugin/fulltext/AUTHORS: -------------------------------------------------------------------------------- 1 | AUTHORS file example for a plugin 2 | -------------------------------------------------------------------------------- /plugin/fulltext/ChangeLog: -------------------------------------------------------------------------------- 1 | ChangeLog file example for a plugin 2 | -------------------------------------------------------------------------------- /plugin/fulltext/NEWS: -------------------------------------------------------------------------------- 1 | NEWS file example for a plugin 2 | -------------------------------------------------------------------------------- /plugin/fulltext/README: -------------------------------------------------------------------------------- 1 | README file example for a plugin 2 | -------------------------------------------------------------------------------- /plugin/handler_socket/regtest/test_01_lib/test08.expected: -------------------------------------------------------------------------------- 1 | [0][k5][v5375] 2 | [0] 3 | -------------------------------------------------------------------------------- /plugin/handler_socket/regtest/test_01_lib/test24.expected: -------------------------------------------------------------------------------- 1 | HS 2 | 0 0 3 | -------------------------------------------------------------------------------- /plugin/wsrep_info/mysql-test/wsrep_info/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$WSREP_INFO_SO 2 | -------------------------------------------------------------------------------- /sql-bench/pwd.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @cd 3 | -------------------------------------------------------------------------------- /sql-bench/uname.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @ver 3 | -------------------------------------------------------------------------------- /sql/authors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/authors.h -------------------------------------------------------------------------------- /sql/derror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/derror.cc -------------------------------------------------------------------------------- /sql/derror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/derror.h -------------------------------------------------------------------------------- /sql/events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/events.cc -------------------------------------------------------------------------------- /sql/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/events.h -------------------------------------------------------------------------------- /sql/field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/field.cc -------------------------------------------------------------------------------- /sql/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/field.h -------------------------------------------------------------------------------- /sql/gstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/gstream.h -------------------------------------------------------------------------------- /sql/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/handler.h -------------------------------------------------------------------------------- /sql/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/init.cc -------------------------------------------------------------------------------- /sql/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/init.h -------------------------------------------------------------------------------- /sql/item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/item.cc -------------------------------------------------------------------------------- /sql/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/item.h -------------------------------------------------------------------------------- /sql/key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/key.cc -------------------------------------------------------------------------------- /sql/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/key.h -------------------------------------------------------------------------------- /sql/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/lex.h -------------------------------------------------------------------------------- /sql/lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/lock.cc -------------------------------------------------------------------------------- /sql/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/lock.h -------------------------------------------------------------------------------- /sql/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/log.cc -------------------------------------------------------------------------------- /sql/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/log.h -------------------------------------------------------------------------------- /sql/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/main.cc -------------------------------------------------------------------------------- /sql/mariadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/mariadb.h -------------------------------------------------------------------------------- /sql/mdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/mdl.cc -------------------------------------------------------------------------------- /sql/mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/mdl.h -------------------------------------------------------------------------------- /sql/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/message.h -------------------------------------------------------------------------------- /sql/message.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 MSG00001.bin 3 | -------------------------------------------------------------------------------- /sql/my_apc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/my_apc.cc -------------------------------------------------------------------------------- /sql/my_apc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/my_apc.h -------------------------------------------------------------------------------- /sql/mysqld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/mysqld.cc -------------------------------------------------------------------------------- /sql/mysqld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/mysqld.h -------------------------------------------------------------------------------- /sql/records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/records.h -------------------------------------------------------------------------------- /sql/rpl_mi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/rpl_mi.cc -------------------------------------------------------------------------------- /sql/rpl_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/rpl_mi.h -------------------------------------------------------------------------------- /sql/rpl_rli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/rpl_rli.h -------------------------------------------------------------------------------- /sql/set_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/set_var.h -------------------------------------------------------------------------------- /sql/slave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/slave.cc -------------------------------------------------------------------------------- /sql/slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/slave.h -------------------------------------------------------------------------------- /sql/sp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sp.cc -------------------------------------------------------------------------------- /sql/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sp.h -------------------------------------------------------------------------------- /sql/sp_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sp_head.h -------------------------------------------------------------------------------- /sql/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/spatial.h -------------------------------------------------------------------------------- /sql/sql_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_acl.h -------------------------------------------------------------------------------- /sql/sql_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_cmd.h -------------------------------------------------------------------------------- /sql/sql_cte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_cte.h -------------------------------------------------------------------------------- /sql/sql_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_db.cc -------------------------------------------------------------------------------- /sql/sql_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_db.h -------------------------------------------------------------------------------- /sql/sql_do.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_do.cc -------------------------------------------------------------------------------- /sql/sql_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_do.h -------------------------------------------------------------------------------- /sql/sql_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_lex.h -------------------------------------------------------------------------------- /sql/sql_tvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_tvc.h -------------------------------------------------------------------------------- /sql/sql_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/sql_udf.h -------------------------------------------------------------------------------- /sql/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/strfunc.h -------------------------------------------------------------------------------- /sql/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/structs.h -------------------------------------------------------------------------------- /sql/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/table.cc -------------------------------------------------------------------------------- /sql/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/table.h -------------------------------------------------------------------------------- /sql/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/tzfile.h -------------------------------------------------------------------------------- /sql/tztime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/tztime.cc -------------------------------------------------------------------------------- /sql/tztime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/tztime.h -------------------------------------------------------------------------------- /sql/uniques.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/uniques.h -------------------------------------------------------------------------------- /sql/unireg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/unireg.cc -------------------------------------------------------------------------------- /sql/unireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/sql/unireg.h -------------------------------------------------------------------------------- /storage/connect/mysql-test/connect/std_data/sexe.csv: -------------------------------------------------------------------------------- 1 | 0;Inconnu 2 | 1;Masculin 3 | 2;Feminin 4 | -------------------------------------------------------------------------------- /storage/connect/mysql-test/connect/t/drop-open-error.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv="" 2 | -------------------------------------------------------------------------------- /storage/connect/mysql-test/connect/t/secure_file_priv-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/combs.combinations: -------------------------------------------------------------------------------- 1 | [c3o] 2 | table-cache=32 3 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/inc.inc: -------------------------------------------------------------------------------- 1 | let $a=2; 2 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/newcomb.combinations: -------------------------------------------------------------------------------- 1 | [new] 2 | --ansi 3 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/source.result: -------------------------------------------------------------------------------- 1 | select 2; 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/test2.opt: -------------------------------------------------------------------------------- 1 | --max-error-count=32 2 | -------------------------------------------------------------------------------- /storage/example/mysql-test/mtr/t/testsh-master.sh: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/alter_tablespace.opt: -------------------------------------------------------------------------------- 1 | --innodb-file-per-table=1 2 | 3 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/col_opt_not_null.opt: -------------------------------------------------------------------------------- 1 | --innodb_log_file_size=100M 2 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/col_opt_null.opt: -------------------------------------------------------------------------------- 1 | --innodb_log_file_size=100M 2 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/parts/suite.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | 3 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/suite.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/type_blob.opt: -------------------------------------------------------------------------------- 1 | --innodb_log_file_size=100M 2 | -------------------------------------------------------------------------------- /storage/innobase/mysql-test/storage_engine/type_text.opt: -------------------------------------------------------------------------------- 1 | --innodb_log_file_size=100M 2 | -------------------------------------------------------------------------------- /storage/mroonga/gpg_uid: -------------------------------------------------------------------------------- 1 | 45499429 2 | -------------------------------------------------------------------------------- /storage/mroonga/mysql-test/mroonga/storage/r/flush_logs.result: -------------------------------------------------------------------------------- 1 | flush logs; 2 | -------------------------------------------------------------------------------- /storage/mroonga/mysql-test/mroonga/wrapper/t/performance_schema-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance-schema 2 | -------------------------------------------------------------------------------- /storage/mroonga/packages/rpm/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = \ 2 | centos 3 | -------------------------------------------------------------------------------- /storage/mroonga/plugin_version: -------------------------------------------------------------------------------- 1 | 7.7 -------------------------------------------------------------------------------- /storage/mroonga/required_groonga_normalizer_mysql_version: -------------------------------------------------------------------------------- 1 | 1.0.9 2 | -------------------------------------------------------------------------------- /storage/mroonga/required_groonga_version: -------------------------------------------------------------------------------- 1 | 7.0.6 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/base_version: -------------------------------------------------------------------------------- 1 | 7.0.7 -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/bundled_lz4_version: -------------------------------------------------------------------------------- 1 | 1.7.5 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/bundled_mecab_naist_jdic_version: -------------------------------------------------------------------------------- 1 | 0.6.3b-20111013 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/bundled_mecab_version: -------------------------------------------------------------------------------- 1 | 0.996 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/bundled_message_pack_version: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = dictionary 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/gpg_uid: -------------------------------------------------------------------------------- 1 | 45499429 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/lib/mrb/scripts/logger/sources.am: -------------------------------------------------------------------------------- 1 | RUBY_SCRIPT_FILES = \ 2 | level.rb 3 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/lib/nfkc-custom-rules.txt: -------------------------------------------------------------------------------- 1 | 〜 ~ 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/nginx_version: -------------------------------------------------------------------------------- 1 | 1.13.5 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/plugins/query_expanders/tsv_sources.am: -------------------------------------------------------------------------------- 1 | tsv_la_SOURCES = \ 2 | tsv.c 3 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/plugins/ruby_scripts.am: -------------------------------------------------------------------------------- 1 | ruby_scripts = \ 2 | sharding.rb 3 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/src/.gitignore: -------------------------------------------------------------------------------- 1 | /grntest 2 | /*.exe 3 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/mecab/config.h.cmake: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/mruby/version: -------------------------------------------------------------------------------- 1 | 1.0.0-3861-ge5b61d34 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/onigmo/config.h.cmake: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/gpg_uid: -------------------------------------------------------------------------------- 1 | 45499429 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/packages/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/packages/debian/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/required_groonga_version: -------------------------------------------------------------------------------- 1 | 3.0.3 2 | -------------------------------------------------------------------------------- /storage/mroonga/vendor/groonga/vendor/plugins/groonga-normalizer-mysql/version: -------------------------------------------------------------------------------- 1 | 1.1.1 -------------------------------------------------------------------------------- /storage/mroonga/version: -------------------------------------------------------------------------------- 1 | 7.07 -------------------------------------------------------------------------------- /storage/mroonga/version_in_hex: -------------------------------------------------------------------------------- 1 | 0x0707 -------------------------------------------------------------------------------- /storage/mroonga/version_major: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /storage/mroonga/version_micro: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /storage/mroonga/version_minor: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /storage/myisam/mysql-test/mtr2/overlay.inc: -------------------------------------------------------------------------------- 1 | select 3; 2 | 3 | -------------------------------------------------------------------------------- /storage/myisam/mysql-test/mtr2/suite.opt: -------------------------------------------------------------------------------- 1 | --old 2 | -------------------------------------------------------------------------------- /storage/myisam/mysql-test/storage_engine/parts/disabled.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/oqgraph/mysql-test/oqgraph/regression_mdev5744.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=ON 2 | -------------------------------------------------------------------------------- /storage/oqgraph/mysql-test/oqgraph/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_OQGRAPH_SO --enable-oqgraph 2 | -------------------------------------------------------------------------------- /storage/rocksdb/.gitignore: -------------------------------------------------------------------------------- 1 | build_version.cc 2 | .* 3 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/2pc_group_commit-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/bloomfilter.test: -------------------------------------------------------------------------------- 1 | --source bloomfilter.inc 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/bloomfilter_skip.test: -------------------------------------------------------------------------------- 1 | --source bloomfilter.inc 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/collation-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_strict_collation_check=ON 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/index_file_map-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_table_stats_sampling_pct=100 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/issue100_delete-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_table_stats_sampling_pct=100 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/mariadb_misc_binlog-master.opt: -------------------------------------------------------------------------------- 1 | --log-bin 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/mysqldump-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_format=row 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/mysqldump2-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_format=row 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/native_procedure-master.opt: -------------------------------------------------------------------------------- 1 | $NP_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rocksdb_cf_reverse-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rocksdb_parts-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rocksdb_qcache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rpl_row_rocksdb.cnf: -------------------------------------------------------------------------------- 1 | !include suite/rpl/my.cnf 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rpl_row_stats-slave.opt: -------------------------------------------------------------------------------- 1 | --userstat=ON 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rpl_row_stats.cnf: -------------------------------------------------------------------------------- 1 | !include suite/rpl/my.cnf 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rpl_savepoint.cnf: -------------------------------------------------------------------------------- 1 | !include suite/rpl/my.cnf 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rqg_examples-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_strict_collation_check=0 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/rqg_transactions-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_strict_collation_check=0 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/table_stats-master.opt: -------------------------------------------------------------------------------- 1 | --userstat 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_bit_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_char_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_decimal-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=10 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_enum_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_fixed_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_float_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_int_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_set_indexes-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/type_varchar-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=10 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb/t/update_ignore-master.opt: -------------------------------------------------------------------------------- 1 | --rocksdb_debug_optimizer_n_rows=1000 2 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb_hotbackup/include/cleanup.inc: -------------------------------------------------------------------------------- 1 | 2 | --source include/rpl_end.inc 3 | 4 | -------------------------------------------------------------------------------- /storage/rocksdb/mysql-test/rocksdb_rpl/t/combinations: -------------------------------------------------------------------------------- 1 | [row] 2 | binlog-format=row 3 | -------------------------------------------------------------------------------- /storage/sequence/mysql-test/sequence/inc.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_SEQUENCE_SO 2 | --loose-sequence 3 | -------------------------------------------------------------------------------- /storage/sphinx/mysql-test/sphinx/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load-add=$HA_SPHINX_SO --sphinx 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child3_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child3_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_child3_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/deinit_slave1_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/ha_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/ha_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/ha_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/ha_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/hs_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/hs_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/hs_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/hs_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/hs_init_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/init_child3_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/init_child3_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/bg/include/init_child3_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child3_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child3_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_child3_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/deinit_slave1_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/ha_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/ha_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/ha_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/ha_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/hs_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/hs_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/hs_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/hs_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/hs_init_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/init_child3_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/init_child3_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/include/init_child3_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/handler/suite.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/deinit_handlersocket.inc: -------------------------------------------------------------------------------- 1 | UNINSTALL PLUGIN handlersocket; 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/deinit_innodb_plugin.inc: -------------------------------------------------------------------------------- 1 | UNINSTALL PLUGIN InnoDB; 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | --source ../include/deinit_spider.inc 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/deinit_slave1_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child3_1.inc: -------------------------------------------------------------------------------- 1 | --source ../include/deinit_spider.inc 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child3_2.inc: -------------------------------------------------------------------------------- 1 | --source ../include/deinit_spider.inc 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_child3_3.inc: -------------------------------------------------------------------------------- 1 | --source ../include/deinit_spider.inc 2 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/ha_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/hs_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/hs_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/hs_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/hs_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/include/hs_init_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/deinit_slave1_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/ha_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/ha_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/ha_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/ha_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/hs_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/hs_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/hs_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/hs_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle/include/hs_init_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/deinit_slave1_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/ha_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/ha_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/ha_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/ha_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/hs_deinit_child2_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/hs_deinit_child2_2.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/hs_deinit_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/hs_deinit_master_1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/spider/mysql-test/spider/oracle2/include/hs_init_child2_3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/scripts/tokuvalgrind: -------------------------------------------------------------------------------- 1 | tokugrind -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/commit.d0.d100.d200.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/commit.d0.d100.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/commit.d0.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/commit.i0.d100.d200.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/commit.i0.d100.d200.test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.aborting.d0.i100.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.d0.d100.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.d0.d200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.d0.p200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.live.d0.d100.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.live200,201.d0.d200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.live200,201.d0.p200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.live200.d0.d200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/src/tests/hotindexer-undo-do-tests/prov.live200.d0.p200.d201.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/snappy-1.1.2/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xz-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xzdec-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xzdiff-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xzgrep-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xzless-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-a4/xzmore-a4.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xz-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xzdec-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xzdiff-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xzgrep-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xzless-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/doc/man/pdf-letter/xzmore-letter.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/po/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/compress_prepared_bcj_sparc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/compress_prepared_bcj_x86: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0-backward_size.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0-empty-truncated.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0-footer_magic.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0-header_magic.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0-nonempty_index.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0cat-alone.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0cat-header_magic.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0catpad-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-0pad-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-block_header-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-block_header-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-block_header-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-block_header-4.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-block_header-5.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-check-crc32.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-check-crc64.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-check-sha256.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-4.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-5.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-6.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-7.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-lzma2-8.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-stream_flags-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-stream_flags-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-stream_flags-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-vli-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-1-vli-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-compressed_data_padding.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-index-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-index-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-index-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-index-4.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/bad-2-index-5.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-0-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-0cat-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-0catpad-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-0pad-empty.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-3delta-lzma2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-block_header-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-block_header-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-block_header-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-check-crc32.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-check-crc64.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-check-none.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-check-sha256.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-delta-lzma2.tiff.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-lzma2-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-lzma2-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-lzma2-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-lzma2-4.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-sparc-lzma2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-1-x86-lzma2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/good-2-lzma2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/unsupported-block_header.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/unsupported-check.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/unsupported-filter_flags-1.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/unsupported-filter_flags-2.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/PerconaFT/third_party/xz-4.999.9beta/tests/files/unsupported-filter_flags-3.xz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_mixed_row_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_parallel_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_partition_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_tokudb_bug28430-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_tokudb_bug28430-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_tokudb_insert_id-master.opt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/rpl_tokudb_insert_id-slave.opt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/rpl/t/tokudb_innodb_xa_crash-slave.opt: -------------------------------------------------------------------------------- 1 | --log-slave-updates=0 -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb/include/have_mrr.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_mixed-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=mixed 2 | 3 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb/t/fast_update_binlog_row-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | 3 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb/t/type_timestamp_explicit-master.opt: -------------------------------------------------------------------------------- 1 | --explicit_defaults_for_timestamp 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_add_index/include/have_tokudb.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_alter_table/include/have_tokudb.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_backup/r/empty_slave_info_file.result: -------------------------------------------------------------------------------- 1 | Backup 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_backup/t/rpl_safe_slave-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=statement 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_bugs/include/have_tokudb.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_bugs/include/not_5_5.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_mariadb/t/xa-recovery-9214.opt: -------------------------------------------------------------------------------- 1 | --disable-tokudb 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_parts/include/have_tokudb.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_parts/t/partition_debug_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-file-per-table=1 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_parts/t/partition_mgm_lc1_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_parts/t/partition_mgm_lc2_tokudb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /storage/tokudb/mysql-test/tokudb_parts/t/partition_tokudb_status_file-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-status-file=1 2 | -------------------------------------------------------------------------------- /storage/tokudb/tokudb.conf.in: -------------------------------------------------------------------------------- 1 | [Service] 2 | @systemd_env@ 3 | -------------------------------------------------------------------------------- /strings/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/strings/xml.c -------------------------------------------------------------------------------- /support-files/rpm/shared-post.sh: -------------------------------------------------------------------------------- 1 | /sbin/ldconfig 2 | -------------------------------------------------------------------------------- /vio/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/vio/docs/TODO -------------------------------------------------------------------------------- /vio/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/vio/vio.c -------------------------------------------------------------------------------- /vio/viopipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/vio/viopipe.c -------------------------------------------------------------------------------- /vio/vioshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/vio/vioshm.c -------------------------------------------------------------------------------- /vio/viossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/vio/viossl.c -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/gzlib.c -------------------------------------------------------------------------------- /zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/gzread.c -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariadb-corporation/mariadb-columnstore-server/HEAD/zlib/zlib.h --------------------------------------------------------------------------------