├── .bzrignore ├── BUILD-CMAKE ├── BUILD ├── FINISH.sh ├── SETUP.sh ├── autorun.sh ├── build_mccge.sh ├── check-cpu ├── cleanup ├── cmake_configure.sh ├── compile-alpha ├── compile-alpha-debug ├── compile-amd64-debug-all ├── compile-amd64-debug-max ├── compile-amd64-debug-max-no-ndb ├── compile-amd64-gcov ├── compile-amd64-gprof ├── compile-amd64-gprof-no-ndb ├── compile-amd64-max ├── compile-amd64-max-sci ├── compile-amd64-valgrind-max ├── compile-bintar ├── compile-darwin-mwcc ├── compile-dist ├── compile-hpux11-parisc2-aCC ├── compile-ia64-debug-max ├── compile-innodb ├── compile-irix-mips64-mipspro ├── compile-ndb-autotest ├── compile-pentium ├── compile-pentium-cybozu ├── compile-pentium-debug ├── compile-pentium-debug-all ├── compile-pentium-debug-max ├── compile-pentium-debug-max-no-embedded ├── compile-pentium-debug-max-no-ndb ├── compile-pentium-debug-max-no-qc ├── compile-pentium-debug-openssl ├── compile-pentium-debug-yassl ├── compile-pentium-gcov ├── compile-pentium-gprof ├── compile-pentium-icc ├── compile-pentium-icc-valgrind-max ├── compile-pentium-icc-yassl ├── compile-pentium-max ├── compile-pentium-myodbc ├── compile-pentium-pgcc ├── compile-pentium-valgrind-max ├── compile-pentium-valgrind-max-no-ndb ├── compile-pentium64 ├── compile-pentium64-debug ├── compile-pentium64-debug-all ├── compile-pentium64-debug-max ├── compile-pentium64-gcov ├── compile-pentium64-gprof ├── compile-pentium64-max ├── compile-pentium64-max-sci ├── compile-pentium64-valgrind-max ├── compile-ppc ├── compile-ppc-debug ├── compile-ppc-debug-max ├── compile-ppc-debug-max-no-ndb ├── 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 ├── compile-solaris-x86-32 ├── compile-solaris-x86-32-debug ├── compile-solaris-x86-32-debug-forte ├── compile-solaris-x86-forte-32 └── util.sh ├── CMakeLists.txt ├── COPYING ├── COPYING.LESSER ├── Docs ├── INSTALL-BINARY ├── glibc-2.2.5.patch ├── linuxthreads.txt ├── myisam.txt ├── mysql.info └── sp-imp-spec.txt ├── INSTALL-SOURCE ├── INSTALL-WIN-SOURCE ├── KNOWN_BUGS.txt ├── README ├── VERSION ├── client ├── CMakeLists.txt ├── async_example.c ├── client_priv.h ├── completion_hash.cc ├── completion_hash.h ├── echo.c ├── get_password.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 ├── abi_check.cmake ├── bison.cmake ├── build_configurations │ └── mysql_release.cmake ├── cat.cmake ├── character_sets.cmake ├── check_minimal_version.cmake ├── cmake_parse_arguments.cmake ├── configurable_file_content.in ├── configure.pl ├── cpack_rpm.cmake ├── cpack_source_ignore_files.cmake ├── create_initial_db.cmake.in ├── ctest.cmake ├── do_abi_check.cmake ├── dtrace.cmake ├── dtrace_prelink.cmake ├── info_bin.cmake ├── info_macros.cmake.in ├── info_src.cmake ├── install_layout.cmake ├── install_macros.cmake ├── libutils.cmake ├── maintainer.cmake ├── make_dist.cmake.in ├── merge_archives_unix.cmake.in ├── mysql_add_executable.cmake ├── mysql_version.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 ├── plugin.cmake ├── readline.cmake ├── ssl.cmake ├── stack_direction.c ├── tags.cmake ├── versioninfo.rc.in └── zlib.cmake ├── cmd-line-utils ├── libedit │ ├── CMakeLists.txt │ ├── README │ ├── chared.c │ ├── chared.h │ ├── chartype.c │ ├── chartype.h │ ├── common.c │ ├── config.h │ ├── el.c │ ├── el.h │ ├── el_terminal.h │ ├── eln.c │ ├── emacs.c │ ├── filecomplete.c │ ├── filecomplete.h │ ├── hist.c │ ├── hist.h │ ├── histedit.h │ ├── history.c │ ├── historyn.c │ ├── keymacro.c │ ├── keymacro.h │ ├── makelist.sh │ ├── map.c │ ├── map.h │ ├── np │ │ ├── fgetln.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── unvis.c │ │ ├── vis.c │ │ ├── vis.h │ │ └── wcsdup.c │ ├── parse.c │ ├── parse.h │ ├── prompt.c │ ├── prompt.h │ ├── read.c │ ├── read.h │ ├── readline.c │ ├── readline │ │ └── readline.h │ ├── refresh.c │ ├── refresh.h │ ├── search.c │ ├── search.h │ ├── sig.c │ ├── sig.h │ ├── sys.h │ ├── terminal.c │ ├── tokenizer.c │ ├── tokenizern.c │ ├── tty.c │ ├── tty.h │ └── vi.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 ├── 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 ├── README.Maintainer ├── additions │ ├── Docs__Images__Makefile.in │ ├── Docs__Makefile.in │ ├── debian-start │ ├── debian-start.inc.sh │ ├── echo_stderr │ ├── innotop │ │ ├── changelog.innotop │ │ ├── innotop │ │ └── innotop.1 │ ├── mariadb.cnf │ ├── msql2mysql.1 │ ├── my.cnf │ ├── my_print_defaults.1 │ ├── myisam_ftdump.1 │ ├── myisamchk.1 │ ├── myisamlog.1 │ ├── myisampack.1 │ ├── mysql-server.lintian-overrides │ ├── mysql_config.1 │ ├── mysql_convert_table_format.1 │ ├── mysql_find_rows.1 │ ├── mysql_fix_extensions.1 │ ├── mysql_install_db.1 │ ├── mysql_secure_installation.1 │ ├── mysql_setpermission.1 │ ├── mysql_tableinfo.1 │ ├── mysql_waitpid.1 │ ├── mysqlbinlog.1 │ ├── mysqlbug.1 │ ├── mysqlcheck.1 │ ├── mysqld_safe_syslog.cnf │ ├── mysqldumpslow.1 │ ├── mysqlimport.1 │ ├── mysqlreport │ ├── mysqlreport.1 │ ├── mysqltest.1 │ ├── pack_isam.1 │ ├── resolve_stack_dump.1 │ └── resolveip.1 ├── autobake-deb.sh ├── changelog ├── compat ├── copyright ├── dist │ ├── Debian │ │ ├── control │ │ ├── mariadb-server-5.5.README.Debian │ │ ├── mariadb-server-5.5.dirs │ │ ├── mariadb-server-5.5.files │ │ ├── mariadb-server-5.5.postinst │ │ ├── mariadb-server-5.5.postrm │ │ └── rules │ └── Ubuntu │ │ ├── apparmor-profile │ │ ├── control │ │ ├── mariadb-server-5.5.README.Debian │ │ ├── mariadb-server-5.5.dirs │ │ ├── mariadb-server-5.5.files │ │ ├── mariadb-server-5.5.postinst │ │ ├── mariadb-server-5.5.postrm │ │ ├── mariadb-server-5.5.py │ │ └── rules ├── libmariadbclient-dev.README.Maintainer ├── libmariadbclient-dev.dirs ├── libmariadbclient-dev.examples ├── libmariadbclient-dev.files ├── libmariadbclient-dev.links ├── libmariadbclient18.dirs ├── libmariadbclient18.files ├── libmariadbclient18.postinst ├── libmariadbd-dev.files ├── mariadb-client-5.5.README.Debian ├── mariadb-client-5.5.dirs ├── mariadb-client-5.5.docs ├── mariadb-client-5.5.files ├── mariadb-client-5.5.links ├── mariadb-client-5.5.lintian-overrides ├── mariadb-client-5.5.menu ├── mariadb-client-core-5.5.files ├── mariadb-common.files ├── mariadb-common.postrm ├── mariadb-server-5.5.NEWS ├── mariadb-server-5.5.config ├── mariadb-server-5.5.lintian-overrides ├── mariadb-server-5.5.logcheck.ignore.paranoid ├── mariadb-server-5.5.logcheck.ignore.server ├── mariadb-server-5.5.logcheck.ignore.workstation ├── mariadb-server-5.5.mysql-server.logrotate ├── mariadb-server-5.5.mysql.init ├── mariadb-server-5.5.preinst ├── mariadb-server-5.5.prerm ├── mariadb-server-5.5.templates ├── mariadb-server-core-5.5.files ├── mariadb-test-5.5.dirs ├── mariadb-test-5.5.files ├── mariadb-test-5.5.links ├── mysql-common.dirs ├── mysql-common.files ├── mysql-common.lintian-overrides ├── mysql-common.postrm ├── patches │ ├── 00list │ ├── 01_MAKEFILES__Docs_Images_Makefile.in.dpatch │ ├── 01_MAKEFILES__Docs_Makefile.in.dpatch │ ├── 02_no_builtin_ndbcluster_plugin.dpatch │ ├── 21_init__openquery_configtest.dpatch │ ├── 33_scripts__mysql_create_system_tables__no_test.dpatch │ ├── 38_scripts__mysqld_safe.sh__signals.dpatch │ ├── 41_scripts__mysql_install_db.sh__no_test.dpatch │ ├── 44_scripts__mysql_config__libs.dpatch │ ├── 50_mysql-test__db_test.dpatch │ ├── 60_zlib_innodb_workaround.dpatch │ └── 61_replace_dash_with_bash_mbug675185.dpatch ├── 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 ├── source.lintian-overrides └── watch ├── extra ├── CMakeLists.txt ├── charset2html.c ├── comp_err.c ├── innochecksum.c ├── my_print_defaults.c ├── mysql_waitpid.c ├── perror.c ├── 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 │ ├── dsa512.der │ ├── dsa512.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 │ │ ├── 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 │ ├── template_instnt.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 │ │ ├── template_instnt.cpp │ │ ├── tftables.cpp │ │ └── twofish.cpp │ ├── taocrypt.dsp │ ├── taocrypt.dsw │ ├── test.dsw │ └── test │ │ ├── make.bat │ │ ├── memory.cpp │ │ ├── test.cpp │ │ └── test.dsp │ ├── testsuite │ ├── input │ ├── make.bat │ ├── quit │ ├── test.hpp │ ├── testsuite.cpp │ └── testsuite.dsp │ ├── yassl.dsp │ └── yassl.dsw ├── include ├── CMakeLists.txt ├── atomic │ ├── gcc_builtins.h │ ├── generic-msvc.h │ ├── nolock.h │ ├── rwlock.h │ ├── solaris.h │ └── x86-gcc.h ├── base64.h ├── decimal.h ├── errmsg.h ├── ft_global.h ├── handler_state.h ├── hash.h ├── heap.h ├── keycache.h ├── lf.h ├── m_ctype.h ├── m_string.h ├── ma_dyncol.h ├── maria.h ├── my_aes.h ├── my_alarm.h ├── my_alloc.h ├── my_atomic.h ├── my_attribute.h ├── my_base.h ├── my_bit.h ├── my_bitmap.h ├── my_compare.h ├── my_compiler.h ├── my_context.h ├── my_dbug.h ├── my_decimal_limits.h ├── my_dir.h ├── my_getopt.h ├── my_global.h ├── my_libwrap.h ├── my_list.h ├── my_md5.h ├── my_net.h ├── my_nosys.h ├── my_pthread.h ├── my_rdtsc.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_ftparser.h │ ├── plugin_ftparser.h.pp │ ├── psi │ │ ├── mysql_file.h │ │ ├── mysql_thread.h │ │ ├── psi.h │ │ ├── psi_abi_v1.h │ │ ├── psi_abi_v1.h.pp │ │ ├── psi_abi_v2.h │ │ └── psi_abi_v2.h.pp │ ├── service_debug_sync.h │ ├── service_kill_statement.h │ ├── service_my_snprintf.h │ ├── service_progress_report.h │ ├── service_thd_alloc.h │ ├── service_thd_wait.h │ ├── service_thread_scheduler.h │ └── services.h ├── mysql_async.h ├── mysql_com.h ├── mysql_embed.h ├── mysql_time.h ├── mysql_version.h.in ├── mysqld_default_groups.h ├── mysys_err.h ├── password.h ├── probes_mysql.d.base ├── probes_mysql.h ├── probes_mysql_nodtrace.h ├── queues.h ├── rijndael.h ├── service_versions.h ├── sha1.h ├── sha2.h ├── sql_common.h ├── sslopt-case.h ├── sslopt-longopts.h ├── sslopt-vars.h ├── t_ctype.h ├── thr_alarm.h ├── thr_lock.h ├── thread_pool_priv.h ├── typelib.h ├── violite.h ├── waiting_threads.h ├── welcome_copyright_notice.h └── wqueue.h ├── libmysql ├── CMakeLists.txt ├── client_settings.h ├── conf_to_src.c ├── errmsg.c ├── get_password.c ├── libmysql.c ├── libmysql.def ├── libmysql.ver.in ├── libmysql_rpm_version.in └── rpm_support.cc ├── libmysqld ├── CMakeLists.txt ├── 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 ├── libmysqld.c ├── libmysqld.def ├── libmysqld.rc └── resource.h ├── libservices ├── CMakeLists.txt ├── HOWTO ├── debug_sync_service.c ├── kill_statement_service.c ├── my_snprintf_service.c ├── my_thread_scheduler_service.c ├── progress_report_service.c ├── thd_alloc_service.c └── thd_wait_service.c ├── man ├── CMakeLists.txt ├── comp_err.1 ├── innochecksum.1 ├── make_win_bin_dist.1 ├── msql2mysql.1 ├── my_print_defaults.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_find_rows.1 ├── mysql_fix_extensions.1 ├── mysql_fix_privilege_tables.1 ├── mysql_install_db.1 ├── mysql_plugin.1 ├── mysql_secure_installation.1 ├── mysql_setpermission.1 ├── mysql_tzinfo_to_sql.1 ├── mysql_upgrade.1 ├── mysql_waitpid.1 ├── mysql_zap.1 ├── mysqlaccess.1 ├── mysqladmin.1 ├── mysqlbinlog.1 ├── mysqlbug.1 ├── mysqlcheck.1 ├── mysqld.8 ├── mysqld_multi.1 ├── mysqld_safe.1 ├── mysqldump.1 ├── mysqldumpslow.1 ├── mysqlhotcopy.1 ├── mysqlimport.1 ├── mysqlman.1 ├── mysqlmanager.8 ├── mysqlshow.1 ├── mysqlslap.1 ├── mysqltest.1 ├── mysqltest_embedded.1 ├── ndbd.8 ├── ndbd_redo_log_reader.1 ├── ndbmtd.8 ├── perror.1 ├── replace.1 ├── resolve_stack_dump.1 └── resolveip.1 ├── mysql-test ├── CMakeLists.txt ├── README ├── README.gcov ├── README.stress ├── collections │ ├── README │ ├── README.experimental │ ├── 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 ├── disabled.def ├── extra │ ├── binlog_tests │ │ ├── binlog.test │ │ ├── binlog_cache_stat.test │ │ ├── binlog_insert_delayed.test │ │ ├── binlog_truncate.test │ │ ├── blackhole.test │ │ ├── ctype_cp932.test │ │ ├── ctype_cp932_binlog.test │ │ ├── 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 │ └── rpl_tests │ │ ├── check_type.inc │ │ ├── create_recursive_construct.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_max_cache_size.test │ │ ├── rpl_blackhole.test │ │ ├── rpl_charset.test │ │ ├── rpl_commit_after_flush.test │ │ ├── rpl_conflicts.test │ │ ├── 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_foreign_key.test │ │ ├── rpl_get_master_version_and_clock.test │ │ ├── rpl_implicit_commit_binlog.test │ │ ├── rpl_innodb.test │ │ ├── rpl_insert_delayed.test │ │ ├── rpl_insert_id.test │ │ ├── rpl_insert_id_pk.test │ │ ├── rpl_insert_ignore.test │ │ ├── rpl_loaddata.test │ │ ├── rpl_loadfile.test │ │ ├── rpl_log.test │ │ ├── rpl_max_relay_size.test │ │ ├── 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_ndb_2multi_basic.test │ │ ├── rpl_ndb_2multi_eng.test │ │ ├── rpl_ndb_apply_status.test │ │ ├── rpl_not_null.test │ │ ├── rpl_partition.test │ │ ├── rpl_record_compare.test │ │ ├── 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_sp002.test │ │ ├── rpl_row_sp003.test │ │ ├── rpl_row_sp006.test │ │ ├── rpl_row_sp007.test │ │ ├── rpl_row_tabledefs.test │ │ ├── rpl_set_null.test │ │ ├── rpl_show_binlog_events.inc │ │ ├── rpl_show_log_events_with_varying_options.inc │ │ ├── rpl_show_relaylog_events.inc │ │ ├── rpl_start_stop_slave.test │ │ ├── rpl_stm_EE_err2.test │ │ ├── rpl_stm_create_if_not_exists.test │ │ ├── rpl_stop_middle_group.test │ │ ├── rpl_stop_slave.test │ │ ├── rpl_sv_relay_space.test │ │ ├── rpl_test_framework.inc │ │ ├── rpl_tmp_table_and_DDL.test │ │ ├── rpl_trig004.test │ │ ├── rpl_truncate.test │ │ ├── rpl_truncate_helper.test │ │ └── type_conversions.test ├── include │ ├── add_anonymous_users.inc │ ├── analyze-sync_with_master.test │ ├── analyze-timeout.test │ ├── assert.inc │ ├── begin_include_file.inc │ ├── big_test.inc │ ├── binlog_inject_error.inc │ ├── binlog_start_pos.inc │ ├── bug38347.inc │ ├── 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 │ ├── cleanup_fake_relay_log.inc │ ├── commit.inc │ ├── common-tests.inc │ ├── concurrent.inc │ ├── connect2.inc │ ├── count_sessions.inc │ ├── ctype_8bit.inc │ ├── ctype_common.inc │ ├── ctype_czech.inc │ ├── ctype_datetime.inc │ ├── ctype_filesort.inc │ ├── ctype_filesort2.inc │ ├── ctype_german.inc │ ├── ctype_innodb_like.inc │ ├── ctype_like.inc │ ├── ctype_like_escape.inc │ ├── ctype_like_ignorable.inc │ ├── ctype_like_range_f1f2.inc │ ├── ctype_numconv.inc │ ├── ctype_regex.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 │ ├── default_ndbd.cnf │ ├── delete_anonymous_users.inc │ ├── diff_tables.inc │ ├── end_include_file.inc │ ├── endspace.inc │ ├── file_does_not_exist.inc │ ├── get_relay_log_pos.inc │ ├── gis_generic.inc │ ├── gis_keys.inc │ ├── grant_cache.inc │ ├── have_archive.inc │ ├── have_archive.opt │ ├── 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_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_eucjpms.inc │ ├── have_euckr.inc │ ├── have_example_plugin.inc │ ├── have_gb2312.inc │ ├── have_gbk.inc │ ├── have_geometry.inc │ ├── have_innodb.combinations │ ├── have_innodb.inc │ ├── have_ipv4_mapped.inc │ ├── have_koi8r.inc │ ├── have_latin2_ch.inc │ ├── have_local_infile.inc │ ├── have_log_bin-master.opt │ ├── have_log_bin-slave.opt │ ├── have_log_bin.inc │ ├── have_lowercase0.inc │ ├── have_lowercase1.inc │ ├── have_lowercase2.inc │ ├── have_maria.inc │ ├── have_multi_ndb.inc │ ├── have_mutex_deadlock_detector.inc │ ├── have_mysql_upgrade.inc │ ├── have_ndb.inc │ ├── have_ndb_extra.inc │ ├── have_ndbapi_examples.inc │ ├── have_not_innodb_plugin.inc │ ├── have_outfile.inc │ ├── have_partition.inc │ ├── have_partition.opt │ ├── have_pbxt.opt │ ├── have_perfschema.inc │ ├── have_plugin_auth.inc │ ├── have_plugin_auth.opt │ ├── have_plugin_interface.inc │ ├── have_plugin_server.inc │ ├── have_pool_of_threads.inc │ ├── have_profiling.inc │ ├── have_query_cache.inc │ ├── have_semisync_plugin.inc │ ├── have_simple_parser.inc │ ├── have_sjis.inc │ ├── have_ssl.inc │ ├── have_ssl_communication.inc │ ├── have_ssl_crypto_functs.inc │ ├── have_symlink.inc │ ├── have_tis620.inc │ ├── have_ucs2.inc │ ├── have_udf.inc │ ├── have_ujis.inc │ ├── have_utf16.inc │ ├── have_utf32.inc │ ├── have_utf8.inc │ ├── have_utf8mb4.inc │ ├── have_working_dns.inc │ ├── have_xtradb.combinations │ ├── have_xtradb.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_rollback_on_timeout.inc │ ├── innodb_trx_weight.inc │ ├── install_semisync.inc │ ├── io_thd_fault_injection.inc │ ├── ipv6.inc │ ├── ipv6_clients.inc │ ├── is_embedded.inc │ ├── kill_query.inc │ ├── kill_query_and_diff_master_slave.inc │ ├── libdaemon_example.ini │ ├── linux_sys_vars.inc │ ├── load_sysvars.inc │ ├── loaddata_autocom.inc │ ├── long_test.inc │ ├── 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 │ ├── 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 │ ├── ndb_backup.inc │ ├── ndb_backup_print.inc │ ├── ndb_default_cluster.inc │ ├── ndb_master-slave.inc │ ├── ndb_master-slave_2ch.inc │ ├── ndb_not_readonly.inc │ ├── ndb_restore_master.inc │ ├── ndb_restore_slave_eoption.inc │ ├── ndb_setup_slave.inc │ ├── ndb_wait_connected.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_ndb.inc │ ├── not_ndb_default.inc │ ├── not_openssl.inc │ ├── not_parallel.inc │ ├── not_staging.inc │ ├── not_threadpool.inc │ ├── not_valgrind.inc │ ├── not_var_link.inc │ ├── not_windows.inc │ ├── not_windows_embedded.inc │ ├── one_thread_per_connection.inc │ ├── 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 │ ├── report-features.test │ ├── restart_mysqld.inc │ ├── restart_slave_sql.inc │ ├── rowid_order.inc │ ├── rpl_change_topology.inc │ ├── rpl_connect.inc │ ├── rpl_connection.inc │ ├── rpl_connection_master.inc │ ├── rpl_connection_slave.inc │ ├── rpl_connection_slave1.inc │ ├── rpl_diff.inc │ ├── rpl_end.inc │ ├── rpl_events.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_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 │ ├── safe_set_to_maybe_ro_var.inc │ ├── save_master_pos.inc │ ├── select_ndb_apply_status.inc │ ├── set_binlog_format_mixed.sql │ ├── set_binlog_format_row.sql │ ├── set_binlog_format_statement.sql │ ├── setup_fake_relay_log.inc │ ├── show_binary_logs.inc │ ├── show_binlog_events.inc │ ├── show_binlog_events2.inc │ ├── show_binlog_using_logname.inc │ ├── show_events.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 │ ├── sp-vars.inc │ ├── start_slave.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 │ ├── system_db_struct.inc │ ├── test_fieldsize.inc │ ├── test_outfile.inc │ ├── testdb_only.inc │ ├── tpcb.inc │ ├── tpcb_disk_data.inc │ ├── truncate_file.inc │ ├── type_hrtime.inc │ ├── uninstall_semisync.inc │ ├── unsafe_binlog.inc │ ├── uses_vardir.inc │ ├── varchar.inc │ ├── view_alias.inc │ ├── wait_condition.inc │ ├── wait_condition_sp.inc │ ├── wait_for_binlog_event.inc │ ├── wait_for_ndb_to_binlog.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_status_var.inc │ ├── wait_show_condition.inc │ ├── wait_until_connected_again.inc │ ├── wait_until_count_sessions.inc │ ├── wait_until_disconnected.inc │ ├── wait_until_rows_count.inc │ ├── windows.inc │ ├── windows_sys_vars.inc │ ├── world.inc │ ├── world_schema.inc │ ├── world_schema1.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 │ │ └── Test.pm │ ├── mtr_cases.pm │ ├── mtr_gcov.pl │ ├── 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 │ │ ├── ndb_config_1_node.ini │ │ └── ndb_config_2_node.ini ├── mtr.out-of-source ├── mysql-stress-test.pl ├── mysql-test-run.pl ├── purify.supp ├── r │ ├── 1st.result │ ├── aborted_clients.result │ ├── adddate_454.result │ ├── alias.result │ ├── almost_full.result │ ├── alter_table-big.result │ ├── alter_table.result │ ├── alter_table_online.result │ ├── alter_table_trans.result │ ├── analyze.result │ ├── ansi.result │ ├── auth_rpl.result │ ├── auto_increment.result │ ├── auto_increment_ranges_innodb.result │ ├── auto_increment_ranges_myisam.result │ ├── backup.result │ ├── bench_count_distinct.result │ ├── big_test.require │ ├── bigint.result │ ├── binary.result │ ├── binlog_tx_isolation.result │ ├── blackhole.result │ ├── blackhole_plugin.result │ ├── bool.result │ ├── bootstrap.result │ ├── bug12427262.result │ ├── bug13633383.result │ ├── bug39022.result │ ├── bug46261.result │ ├── bug46760.result │ ├── bug47671.result │ ├── bug58669.result │ ├── bulk_replace.result │ ├── cache_innodb.result │ ├── cache_temporal_4265.result │ ├── case.result │ ├── case_insensitive_file_system.require │ ├── case_insensitive_fs.require │ ├── case_sensitive_file_system.require │ ├── cast.result │ ├── change_user.result │ ├── change_user_notembedded.result │ ├── check.result │ ├── check_var_limit.require │ ├── client_xml.result │ ├── comment_column.result │ ├── comment_column2.result │ ├── comment_index.result │ ├── comment_table.result │ ├── comments.result │ ├── commit.result │ ├── commit_1innodb.result │ ├── compare.result │ ├── compress.result │ ├── concurrent_innodb_safelog.result │ ├── concurrent_innodb_unsafelog.result │ ├── connect.result │ ├── consistent_snapshot.result │ ├── constraints.result │ ├── contributors.result │ ├── count_distinct.result │ ├── count_distinct2.result │ ├── count_distinct3.result │ ├── crash_commit_before.result │ ├── create-big.result │ ├── create-uca.result │ ├── create.result │ ├── create_delayed.result │ ├── create_not_windows.result │ ├── create_select_tmp.result │ ├── ctype_ascii.result │ ├── ctype_big5.result │ ├── ctype_binary.result │ ├── ctype_collate.result │ ├── ctype_cp1250_ch.result │ ├── ctype_cp1251.result │ ├── ctype_cp932_binlog_row.result │ ├── ctype_cp932_binlog_stm.result │ ├── ctype_create.result │ ├── ctype_errors.result │ ├── ctype_eucjpms.result │ ├── ctype_euckr.result │ ├── ctype_filename.result │ ├── ctype_filesystem.result │ ├── ctype_gb2312.result │ ├── ctype_gbk.result │ ├── ctype_gbk_binlog.result │ ├── ctype_hebrew.result │ ├── ctype_latin1.result │ ├── ctype_latin1_de.result │ ├── ctype_latin2.result │ ├── ctype_latin2_ch.result │ ├── ctype_ldml.result │ ├── ctype_like_range.result │ ├── ctype_many.result │ ├── ctype_mb.result │ ├── ctype_recoding.result │ ├── ctype_sjis.result │ ├── ctype_tis620.result │ ├── ctype_uca.result │ ├── ctype_ucs.result │ ├── ctype_ucs2_def.result │ ├── ctype_ucs2_query_cache.result │ ├── ctype_ujis.result │ ├── ctype_ujis_ucs2.result │ ├── ctype_utf16.result │ ├── ctype_utf16_def.result │ ├── ctype_utf16_uca.result │ ├── ctype_utf32.result │ ├── ctype_utf32_uca.result │ ├── ctype_utf8.result │ ├── ctype_utf8mb4.result │ ├── ctype_utf8mb4_heap.result │ ├── ctype_utf8mb4_innodb.result │ ├── ctype_utf8mb4_myisam.result │ ├── date_formats.result │ ├── datetime_456.result │ ├── ddl_i18n_koi8r.result │ ├── ddl_i18n_utf8.result │ ├── deadlock_innodb.result │ ├── debug_sync.result │ ├── default.result │ ├── default_storage_engine.result │ ├── delayed.result │ ├── delete.result │ ├── deprecated_features.result │ ├── derived.result │ ├── derived_opt.result │ ├── derived_view.result │ ├── dirty_close.result │ ├── disabled_partition.require │ ├── distinct.result │ ├── drop-no_root.result │ ├── drop.result │ ├── drop_debug.result │ ├── dyncol.result │ ├── empty_table.result │ ├── empty_user_table.result │ ├── endspace.result │ ├── error_simulation.result │ ├── errors.result │ ├── events_1.result │ ├── events_2.result │ ├── events_bugs.result │ ├── events_embedded.result │ ├── events_grant.result │ ├── events_logs_tests.result │ ├── events_microsec.result │ ├── events_restart.result │ ├── events_scheduling.result │ ├── events_stress.result │ ├── events_time_zone.result │ ├── events_trans.result │ ├── events_trans_notembedded.result │ ├── execution_constants.result │ ├── explain.result │ ├── failed_auth_3909.result │ ├── features.result │ ├── file_contents.result │ ├── filesort_debug.result │ ├── fix_priv_tables.result │ ├── flush-innodb.result │ ├── flush.result │ ├── flush2.result │ ├── flush_block_commit.result │ ├── flush_block_commit_notembedded.result │ ├── flush_read_lock.result │ ├── flush_read_lock_kill.result │ ├── flush_table.result │ ├── foreign_key.result │ ├── fulltext.result │ ├── fulltext2.result │ ├── fulltext3.result │ ├── fulltext_cache.result │ ├── fulltext_derived_4257.result │ ├── fulltext_derived_4316.result │ ├── fulltext_distinct.result │ ├── fulltext_left_join.result │ ├── fulltext_multi.result │ ├── fulltext_order_by.result │ ├── fulltext_update.result │ ├── fulltext_var.result │ ├── func_analyse.result │ ├── func_compress.result │ ├── func_concat.result │ ├── func_crypt.result │ ├── func_date_add.result │ ├── func_default.result │ ├── func_des_encrypt.result │ ├── func_digest.result │ ├── func_encrypt.result │ ├── func_encrypt_nossl.result │ ├── func_encrypt_ucs2.result │ ├── func_equal.result │ ├── func_gconcat.result │ ├── func_group.result │ ├── func_group_innodb.result │ ├── func_if.result │ ├── func_in.result │ ├── func_isnull.result │ ├── func_like.result │ ├── func_math.result │ ├── func_misc.result │ ├── func_op.result │ ├── func_regexp.result │ ├── func_rollback.result │ ├── func_sapdb.result │ ├── func_set.result │ ├── func_str.result │ ├── func_system.result │ ├── func_test.result │ ├── func_time.result │ ├── func_time_hires.result │ ├── func_timestamp.result │ ├── gcc296.result │ ├── gis-precise.result │ ├── gis-rt-precise.result │ ├── gis-rtree.result │ ├── gis.result │ ├── gis2.result │ ├── grant.result │ ├── grant2.result │ ├── grant3.result │ ├── grant4.result │ ├── grant_4332.result │ ├── grant_cache_no_prot.result │ ├── grant_cache_ps_prot.result │ ├── grant_lowercase.result │ ├── grant_lowercase_fs.result │ ├── greedy_optimizer.result │ ├── group_by.result │ ├── group_by_innodb.result │ ├── group_min_max.result │ ├── group_min_max_innodb.result │ ├── handler_read_last.result │ ├── handlersocket.result │ ├── have_compress.require │ ├── have_crypt.require │ ├── have_geometry.require │ ├── have_local_infile.require │ ├── have_log_bin.require │ ├── have_met_timezone.require │ ├── have_moscow_leap_timezone.require │ ├── have_mutex_deadlock_detector.require │ ├── have_mysql_upgrade.result │ ├── have_ndb_extra.require │ ├── have_ndbapi_examples.require │ ├── have_outfile.require │ ├── have_partition.require │ ├── have_perror.require │ ├── have_pool_of_threads.require │ ├── have_profiling.require │ ├── have_query_cache.require │ ├── have_ssl.require │ ├── have_ssl_is_yes_or_disabled_only.require │ ├── have_symlink.require │ ├── have_utf16.require │ ├── have_utf32.require │ ├── have_utf8mb4.require │ ├── have_working_dns.require │ ├── having.result │ ├── help.result │ ├── implicit_char_to_num_conversion.result │ ├── implicit_commit.result │ ├── in_datetime_241.result │ ├── index_intersect.result │ ├── index_intersect_innodb.result │ ├── index_merge_innodb.result │ ├── index_merge_myisam.result │ ├── information_schema-big.result │ ├── information_schema.result │ ├── information_schema2.result │ ├── information_schema_all_engines.result │ ├── information_schema_chmod.result │ ├── information_schema_db.result │ ├── information_schema_inno.result │ ├── information_schema_parameters.result │ ├── information_schema_part.result │ ├── information_schema_routines.result │ ├── init_connect.result │ ├── init_connection_query_cache.result │ ├── init_file.result │ ├── innodb_bug878769,innodb_plugin.rdiff │ ├── innodb_bug878769.result │ ├── innodb_ext_key.result │ ├── innodb_icp,innodb_plugin.rdiff │ ├── innodb_icp.result │ ├── innodb_ignore_builtin.result │ ├── innodb_mrr_cpk,innodb_plugin.rdiff │ ├── innodb_mrr_cpk.result │ ├── innodb_mysql_lock.result │ ├── innodb_mysql_lock2.result │ ├── innodb_mysql_sync.result │ ├── innodb_utf8.result │ ├── insert.result │ ├── insert_notembedded.result │ ├── insert_select.result │ ├── insert_update.result │ ├── ipv4_as_ipv6.result │ ├── ipv6.result │ ├── is_debug_build.require │ ├── is_embedded.require │ ├── isam.result │ ├── join.result │ ├── join_cache.result │ ├── join_crash.result │ ├── join_nested.result │ ├── join_nested_jcl6.result │ ├── join_optimizer.result │ ├── join_outer.result │ ├── join_outer_innodb.result │ ├── join_outer_jcl6.result │ ├── key.result │ ├── key_cache.result │ ├── key_diff.result │ ├── key_primary.result │ ├── keywords.result │ ├── kill.result │ ├── last_value.result │ ├── limit.result │ ├── limit_rows_examined.result │ ├── loaddata.result │ ├── loaddata_autocom_innodb.result │ ├── loadxml.result │ ├── locale.result │ ├── lock.result │ ├── lock_multi.result │ ├── lock_multi_bug38499.result │ ├── lock_multi_bug38691.result │ ├── lock_sync.result │ ├── lock_tables_lost_commit.result │ ├── log_slow.result │ ├── log_state.result │ ├── log_state_bug33693.result │ ├── log_tables-big.result │ ├── log_tables.result │ ├── log_tables_debug.result │ ├── log_tables_upgrade.result │ ├── long_tmpdir.result │ ├── lowercase0.require │ ├── lowercase1.require │ ├── lowercase2.require │ ├── lowercase_fs_off.result │ ├── lowercase_mixed_tmpdir.result │ ├── lowercase_mixed_tmpdir_innodb.result │ ├── lowercase_table.result │ ├── lowercase_table2.result │ ├── lowercase_table3.result │ ├── lowercase_table4.result │ ├── lowercase_table_grant.result │ ├── lowercase_table_qcache.result │ ├── lowercase_utf8.result │ ├── lowercase_view.result │ ├── mdev316.result │ ├── mdev375.result │ ├── mdl_sync.result │ ├── merge-big.result │ ├── merge.result │ ├── merge_debug.result │ ├── merge_innodb.result │ ├── merge_mmap.result │ ├── merge_recover.result │ ├── metadata.result │ ├── mix2_myisam.result │ ├── mix2_myisam_ucs2.result │ ├── mrr_derived_crash_4610.result │ ├── mrr_icp_extra.result │ ├── multi_statement.result │ ├── multi_update.result │ ├── multi_update2.result │ ├── multi_update_innodb.result │ ├── multi_update_tiny_hash.result │ ├── myisam-big.result │ ├── myisam-blob.result │ ├── myisam-metadata.result │ ├── myisam-system.result │ ├── myisam.result │ ├── myisam_crash_before_flush_keys.result │ ├── myisam_debug.result │ ├── myisam_icp.result │ ├── myisam_icp_notembedded.result │ ├── myisam_mrr.result │ ├── myisampack.result │ ├── mysql-bug41486.result │ ├── mysql-bug45236.result │ ├── mysql.result │ ├── mysql_binary_mode.result │ ├── mysql_client_test.result │ ├── mysql_client_test_nonblock.result │ ├── mysql_comments.result │ ├── mysql_cp932.result │ ├── mysql_embedded.result │ ├── mysql_locale_posix.result │ ├── mysql_not_windows.result │ ├── mysql_plugin.result │ ├── mysql_protocols.result │ ├── mysql_upgrade.result │ ├── mysql_upgrade_ssl.result │ ├── mysqladmin.result │ ├── mysqlbinlog-innodb.result │ ├── mysqlbinlog.result │ ├── mysqlbinlog_row_big.result │ ├── mysqlcheck.result │ ├── mysqld--defaults-file.result │ ├── mysqld--help,win.rdiff │ ├── mysqld--help.result │ ├── mysqld_option_err.result │ ├── mysqldump-compat.result │ ├── mysqldump-max.result │ ├── mysqldump-no-binlog.result │ ├── mysqldump.result │ ├── mysqldump_restore.result │ ├── mysqlhotcopy_myisam.result │ ├── mysqlshow.result │ ├── mysqlslap.result │ ├── mysqltest.result │ ├── mysqltest_256.result │ ├── mysqltest_cont_on_error.result │ ├── mysqltest_ps.result │ ├── named_pipe.result │ ├── ndb_default_cluster.require │ ├── negation_elimination.result │ ├── no-threads.result │ ├── no_binlog.result │ ├── non_blocking_api.result │ ├── not_embedded.require │ ├── not_embedded_server.result │ ├── not_ndb.require │ ├── not_ndb_default.require │ ├── not_openssl.require │ ├── not_partition.require │ ├── not_partition.result │ ├── not_staging.require │ ├── not_true.require │ ├── not_valgrind.require │ ├── not_windows.require │ ├── null.result │ ├── null_key.result │ ├── odbc.result │ ├── olap.result │ ├── old-mode.result │ ├── one_thread_per_connection.require │ ├── openssl_1.result │ ├── order_by.result │ ├── order_fill_sortbuf.result │ ├── outfile.result │ ├── outfile_loaddata.result │ ├── overflow.result │ ├── packet.result │ ├── parser.result │ ├── parser_bug21114_innodb.result │ ├── parser_not_embedded.result │ ├── parser_precedence.result │ ├── parser_stack.result │ ├── partition.result │ ├── partition_binlog.result │ ├── partition_binlog_stmt.result │ ├── partition_blackhole.result │ ├── partition_bug18198.result │ ├── partition_cache.result │ ├── partition_cache_innodb.result │ ├── partition_cache_myisam.result │ ├── partition_charset.result │ ├── partition_column.result │ ├── partition_column_prune.result │ ├── partition_csv.result │ ├── partition_datatype.result │ ├── partition_debug_sync.result │ ├── partition_disabled.result │ ├── partition_error.result │ ├── partition_example.result │ ├── partition_grant.result │ ├── partition_hash.result │ ├── partition_innodb.result │ ├── partition_innodb_plugin.result │ ├── partition_innodb_semi_consistent.result │ ├── partition_innodb_stmt.result │ ├── partition_key_cache.result │ ├── partition_list.result │ ├── partition_mgm.result │ ├── partition_mgm_err.result │ ├── partition_mgm_err2.result │ ├── partition_myisam.result │ ├── partition_not_blackhole.result │ ├── partition_not_windows.result │ ├── partition_open_files_limit.result │ ├── partition_order.result │ ├── partition_pruning.result │ ├── partition_range.result │ ├── partition_rename_longfilename.result │ ├── partition_symlink.result │ ├── partition_sync.result │ ├── partition_truncate.result │ ├── partition_utf8.result │ ├── partition_windows.result │ ├── perror-win.result │ ├── perror.result │ ├── plugin.result │ ├── plugin_auth.result │ ├── plugin_auth_qa.result │ ├── plugin_auth_qa_1.result │ ├── plugin_auth_qa_2.result │ ├── plugin_auth_qa_3.result │ ├── plugin_innodb.result │ ├── plugin_load.result │ ├── plugin_load_option.result │ ├── plugin_loaderr.result │ ├── plugin_maturity.result │ ├── plugin_not_embedded.result │ ├── pool_of_threads.result │ ├── preload.result │ ├── processlist.result │ ├── profiling.result │ ├── progress_976225.result │ ├── ps.result │ ├── ps_10nestset.result │ ├── ps_11bugs.result │ ├── ps_1general.result │ ├── ps_2myisam.result │ ├── ps_3innodb.result │ ├── ps_4heap.result │ ├── ps_5merge.result │ ├── ps_ddl.result │ ├── ps_ddl1.result │ ├── ps_grant.result │ ├── ps_not_windows.result │ ├── query_cache.result │ ├── query_cache_28249.result │ ├── query_cache_debug.result │ ├── query_cache_merge.result │ ├── query_cache_notembedded.result │ ├── query_cache_ps_no_prot.result │ ├── query_cache_ps_ps_prot.result │ ├── query_cache_with_views.result │ ├── quick_select_4161.result │ ├── range.result │ ├── range_mrr_icp.result │ ├── range_vs_index_merge.result │ ├── range_vs_index_merge_innodb,innodb_plugin.rdiff │ ├── range_vs_index_merge_innodb.result │ ├── read_many_rows_innodb.result │ ├── read_only.result │ ├── read_only_innodb.result │ ├── rename.result │ ├── renamedb.result │ ├── repair.result │ ├── replace.result │ ├── rollback.result │ ├── round.result │ ├── row-checksum-old.result │ ├── row-checksum.result │ ├── row.result │ ├── rowid_order_innodb.result │ ├── rpl_colSize.result │ ├── rpl_extraColmaster_innodb.result │ ├── rpl_extraColmaster_myisam.result │ ├── rpl_mysqldump_slave.result │ ├── schema.result │ ├── secure_file_priv_win.result │ ├── select.result │ ├── select_debug.result │ ├── select_found.result │ ├── select_jcl6.result │ ├── select_pkeycache.result │ ├── select_safe.result │ ├── server_id.require │ ├── server_id1.require │ ├── shm.result │ ├── show_check.result │ ├── show_profile.result │ ├── signal.result │ ├── signal_code.result │ ├── signal_demo1.result │ ├── signal_demo2.result │ ├── signal_demo3.result │ ├── signal_sqlmode.result │ ├── single_delete_update.result │ ├── skip_grants.result │ ├── skip_log_bin.result │ ├── skip_name_resolve.result │ ├── slave-running.result │ ├── slave-stopped.result │ ├── sp-big.result │ ├── sp-bugs.result │ ├── sp-code.result │ ├── sp-destruct.result │ ├── sp-dynamic.result │ ├── sp-error.result │ ├── sp-fib.result │ ├── sp-lock.result │ ├── sp-no-code.result │ ├── sp-prelocking.result │ ├── sp-security.result │ ├── sp-threads.result │ ├── sp-ucs2.result │ ├── sp-vars.result │ ├── sp.result │ ├── sp_gis.result │ ├── sp_missing_4665.result │ ├── sp_notembedded.result │ ├── sp_stress_case.result │ ├── sp_sync.result │ ├── sp_trans.result │ ├── sp_trans_log.result │ ├── sql_mode.result │ ├── ssl-big.result │ ├── ssl.result │ ├── ssl_8k_key.result │ ├── ssl_and_innodb.result │ ├── ssl_cipher.result │ ├── ssl_compress.result │ ├── ssl_connect.result │ ├── status.result │ ├── status2.result │ ├── status_bug17954.result │ ├── status_user.result │ ├── strict.result │ ├── strict_autoinc_1myisam.result │ ├── strict_autoinc_2innodb.result │ ├── strict_autoinc_3heap.result │ ├── subselect.result │ ├── subselect2.result │ ├── subselect3.result │ ├── subselect3_jcl6.result │ ├── subselect4.result │ ├── subselect_cache.result │ ├── subselect_debug.result │ ├── subselect_extra.result │ ├── subselect_extra_no_semijoin.result │ ├── subselect_gis.result │ ├── subselect_innodb.result │ ├── subselect_mat.result │ ├── subselect_mat_cost.result │ ├── subselect_mat_cost_bugs.result │ ├── subselect_no_mat.result │ ├── subselect_no_opts.result │ ├── subselect_no_scache.result │ ├── subselect_no_semijoin.result │ ├── subselect_notembedded.result │ ├── subselect_nulls.result │ ├── subselect_partial_match.result │ ├── subselect_sj.result │ ├── subselect_sj2.result │ ├── subselect_sj2_jcl6,innodb_plugin.rdiff │ ├── subselect_sj2_jcl6.result │ ├── subselect_sj2_mat.result │ ├── subselect_sj_aria.result │ ├── subselect_sj_jcl6.result │ ├── subselect_sj_mat.result │ ├── subselect_sj_nonmerged.result │ ├── sum_distinct-big.result │ ├── sum_distinct.result │ ├── symlink.result │ ├── synchronization.result │ ├── sysdate_is_now.result │ ├── system_mysql_db.result │ ├── system_mysql_db_fix30020.result │ ├── system_mysql_db_fix40123.result │ ├── system_mysql_db_fix50030.result │ ├── system_mysql_db_fix50117.result │ ├── system_mysql_db_refs.result │ ├── table_elim.result │ ├── table_elim_debug.result │ ├── table_options.result │ ├── tablelock.result │ ├── tablespace.result │ ├── temp_table.result │ ├── temporal_scale_4283.result │ ├── testdb_only.require │ ├── timezone.result │ ├── timezone2.result │ ├── timezone3.result │ ├── timezone4.result │ ├── timezone_grant.result │ ├── trigger-compat.result │ ├── trigger-trans.result │ ├── trigger.result │ ├── trigger_notembedded.result │ ├── true.require │ ├── truncate.result │ ├── truncate_coverage.result │ ├── type_binary.result │ ├── type_bit.result │ ├── type_bit_innodb.result │ ├── type_blob.result │ ├── type_date.result │ ├── type_datetime.result │ ├── type_datetime_hires.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_time.result │ ├── type_time_hires.result │ ├── type_timestamp.result │ ├── type_timestamp_hires.result │ ├── type_uint.result │ ├── type_varchar.result │ ├── type_year.result │ ├── udf.result │ ├── udf_query_cache.result │ ├── udf_skip_grants.result │ ├── union.result │ ├── unsafe_binlog_innodb.result │ ├── update.result │ ├── update_ignore_216.result │ ├── upgrade.result │ ├── user_limits.result │ ├── user_var-binlog.result │ ├── user_var.result │ ├── varbinary.result │ ├── variables-notembedded.result │ ├── variables.result │ ├── variables_community.result │ ├── view.result │ ├── view_alias.result │ ├── view_grant.result │ ├── wait_timeout.result │ ├── warnings.result │ ├── warnings_debug.result │ ├── warnings_engine_disabled.result │ ├── windows.require │ ├── windows.result │ ├── xa.result │ ├── xa_binlog.result │ ├── xml.result │ └── xtradb_mrr.result ├── std_data │ ├── 14897.frm │ ├── Index.xml │ ├── Moscow_leap │ ├── bad_gis_data.dat │ ├── binlog_savepoint.000001 │ ├── binlog_transaction.000001 │ ├── bug11747416_32228_binlog.000001 │ ├── bug15328.cnf │ ├── bug16266.000001 │ ├── bug19371.MYD │ ├── bug19371.MYI │ ├── bug19371.frm │ ├── bug30435_10k_items.txt │ ├── bug30435_5k.txt │ ├── bug33029-slave-relay-bin.000001 │ ├── 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 │ ├── bug49823.CSM │ ├── bug49823.CSV │ ├── bug49823.frm │ ├── bug887051.txt │ ├── cacert.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 │ ├── des_key_file │ ├── 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 │ │ ├── ndb_tb1.txt │ │ ├── ndb_tb2.txt │ │ ├── ndb_tb3.txt │ │ ├── ndb_tb4.txt │ │ ├── t3.txt │ │ ├── t4.txt │ │ ├── t7.txt │ │ └── t9.txt │ ├── init_file.dat │ ├── intersect-bug50389.tsv │ ├── latin1.xml │ ├── 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 │ ├── long_table_name.MYD │ ├── long_table_name.MYI │ ├── long_table_name.frm │ ├── master-bin.000001 │ ├── ndb_backup50 │ │ ├── BACKUP-1-0.1.Data │ │ ├── BACKUP-1-0.2.Data │ │ ├── BACKUP-1.1.ctl │ │ ├── BACKUP-1.1.log │ │ ├── BACKUP-1.2.ctl │ │ ├── BACKUP-1.2.log │ │ ├── BACKUP-2-0.1.Data │ │ ├── BACKUP-2-0.2.Data │ │ ├── BACKUP-2.1.ctl │ │ ├── BACKUP-2.1.log │ │ ├── BACKUP-2.2.ctl │ │ └── BACKUP-2.2.log │ ├── ndb_backup51 │ │ ├── BACKUP-1-0.1.Data │ │ ├── BACKUP-1-0.2.Data │ │ ├── BACKUP-1.1.ctl │ │ ├── BACKUP-1.1.log │ │ ├── BACKUP-1.2.ctl │ │ └── BACKUP-1.2.log │ ├── ndb_backup51_data_be │ │ ├── BACKUP-1-0.1.Data │ │ ├── BACKUP-1-0.2.Data │ │ ├── BACKUP-1.1.ctl │ │ ├── BACKUP-1.1.log │ │ ├── BACKUP-1.2.ctl │ │ └── BACKUP-1.2.log │ ├── ndb_backup51_data_le │ │ ├── BACKUP-1-0.1.Data │ │ ├── BACKUP-1-0.2.Data │ │ ├── BACKUP-1.1.ctl │ │ ├── BACKUP-1.1.log │ │ ├── BACKUP-1.2.ctl │ │ └── BACKUP-1.2.log │ ├── ndb_config_config.ini │ ├── ndb_config_mycnf1.cnf │ ├── ndb_config_mycnf2.cnf │ ├── numbers.txt │ ├── old_table-323.frm │ ├── 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 │ ├── pbxt_load_unique_error1.inc │ ├── rpl_bug28618.dat │ ├── rpl_loaddata.dat │ ├── rpl_loaddata2.dat │ ├── rpl_mixed.dat │ ├── rpl_timezone.dat │ ├── rpl_timezone2.dat │ ├── server-cert.pem │ ├── server-key.pem │ ├── server8k-cert.pem │ ├── server8k-key.pem │ ├── t917689.ARZ │ ├── trunc_binlog.000001 │ ├── untrusted-cacert.pem │ ├── vchar.frm │ ├── warnings_loaddata.dat │ ├── words.dat │ ├── words2.dat │ └── words3.dat ├── 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_plugin.result │ │ ├── archive_plugin.test │ │ ├── mysqlhotcopy_archive.result │ │ ├── mysqlhotcopy_archive.test │ │ ├── partition_archive.result │ │ ├── partition_archive.test │ │ ├── repair.result │ │ ├── repair.test │ │ └── suite.pm │ ├── binlog │ │ ├── combinations │ │ ├── disabled.def │ │ ├── r │ │ │ ├── binlog_base64_flag.result │ │ │ ├── binlog_bug23533.result │ │ │ ├── binlog_bug36391.result │ │ │ ├── binlog_checksum.result │ │ │ ├── binlog_database.result │ │ │ ├── binlog_delete_and_flush_index.result │ │ │ ├── binlog_drop_if_exists.result │ │ │ ├── binlog_format_switch_in_tmp_table.result │ │ │ ├── binlog_grant.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_extension.result │ │ │ ├── binlog_mdev342.result │ │ │ ├── binlog_mixed_cache_stat.result │ │ │ ├── binlog_mixed_load_data.result │ │ │ ├── binlog_multi_engine.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_query_filter_rules.result │ │ │ ├── binlog_reset_master.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_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_unsafe_warning.result │ │ │ ├── binlog_stm_user_variables.result │ │ │ ├── binlog_switch_inside_trans.result │ │ │ ├── binlog_tmp_table.result │ │ │ ├── binlog_truncate_innodb.result │ │ │ ├── binlog_truncate_myisam.result │ │ │ ├── binlog_unsafe.result │ │ │ └── binlog_write_error.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-wl2325_r.001 │ │ │ ├── ver_5_1-wl2325_s.001 │ │ │ ├── ver_5_1_17.001 │ │ │ ├── ver_5_1_23.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_checksum.test │ │ │ ├── binlog_database.test │ │ │ ├── binlog_delete_and_flush_index-master.opt │ │ │ ├── binlog_delete_and_flush_index.test │ │ │ ├── binlog_drop_if_exists.test │ │ │ ├── binlog_format_switch_in_tmp_table.test │ │ │ ├── binlog_grant.test │ │ │ ├── binlog_implicit_commit.test │ │ │ ├── binlog_incident-master.opt │ │ │ ├── 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_extension.test │ │ │ ├── binlog_mdev342-master.opt │ │ │ ├── binlog_mdev342.test │ │ │ ├── binlog_mixed_cache_stat.test │ │ │ ├── binlog_mixed_load_data.test │ │ │ ├── binlog_multi_engine.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_query_filter_rules-master.opt │ │ │ ├── binlog_query_filter_rules.test │ │ │ ├── binlog_reset_master.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_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_unsafe_warning-master.opt │ │ │ ├── binlog_stm_unsafe_warning.test │ │ │ ├── binlog_stm_user_variables.test │ │ │ ├── binlog_switch_inside_trans.test │ │ │ ├── binlog_tmp_table.test │ │ │ ├── binlog_truncate_innodb-master.opt │ │ │ ├── binlog_truncate_innodb.test │ │ │ ├── binlog_truncate_myisam.test │ │ │ ├── binlog_unsafe-master.opt │ │ │ ├── binlog_unsafe.test │ │ │ └── binlog_write_error.test │ ├── csv │ │ ├── csv.result │ │ ├── csv.test │ │ ├── csv_alter_table.result │ │ ├── csv_alter_table.test │ │ ├── csv_not_null.result │ │ └── csv_not_null.test │ ├── engines │ │ ├── README │ │ ├── funcs │ │ │ ├── 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.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 │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── combinations │ │ ├── disabled.def │ │ ├── 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_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 │ │ ├── have_federatedx.inc │ │ ├── have_federatedx.opt │ │ ├── include │ │ │ ├── federated.inc │ │ │ └── federated_cleanup.inc │ │ ├── my.cnf │ │ └── suite.pm │ ├── 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 │ │ │ ├── ndb_tb1.inc │ │ │ ├── ndb_tb2.inc │ │ │ ├── ndb_tb3.inc │ │ │ ├── ndb_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_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,innodb_plugin.rdiff │ │ │ ├── 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_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.opt │ │ │ ├── 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 │ ├── 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 │ ├── heap │ │ ├── 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 │ │ │ └── restart_and_reinit.inc │ │ ├── r │ │ │ ├── auto_increment_dup.result │ │ │ ├── binlog_consistent.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 │ │ │ ├── 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-blob.result │ │ │ ├── innodb-consistent.result │ │ │ ├── innodb-create-options.result │ │ │ ├── innodb-index.result │ │ │ ├── innodb-index_ucs2.result │ │ │ ├── innodb-lock.result │ │ │ ├── innodb-replace.result │ │ │ ├── innodb-semi-consistent.result │ │ │ ├── innodb-timeout.result │ │ │ ├── innodb-truncate.result │ │ │ ├── innodb-ucs2.result │ │ │ ├── innodb-zip.result │ │ │ ├── innodb.result │ │ │ ├── innodb_autoinc_lock_mode_zero.result │ │ │ ├── innodb_bug11754376.result │ │ │ ├── innodb_bug11766634.result │ │ │ ├── innodb_bug12400341.result │ │ │ ├── innodb_bug12661768.result │ │ │ ├── innodb_bug12902967.result │ │ │ ├── innodb_bug13510739.result │ │ │ ├── innodb_bug13635833.result │ │ │ ├── innodb_bug14007649.result │ │ │ ├── innodb_bug14147491.result │ │ │ ├── innodb_bug14676111.result │ │ │ ├── innodb_bug14704286.result │ │ │ ├── innodb_bug21704.result │ │ │ ├── innodb_bug30423.result │ │ │ ├── innodb_bug30919.result │ │ │ ├── innodb_bug34053.result │ │ │ ├── innodb_bug34300.result │ │ │ ├── innodb_bug35220.result │ │ │ ├── innodb_bug36169.result │ │ │ ├── innodb_bug36172.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_bug47167.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_bug52745.result │ │ │ ├── innodb_bug53046.result │ │ │ ├── innodb_bug53290.result │ │ │ ├── innodb_bug53591.result │ │ │ ├── innodb_bug53592.result │ │ │ ├── innodb_bug53674.result │ │ │ ├── innodb_bug53756.result │ │ │ ├── innodb_bug54044.result │ │ │ ├── innodb_bug56143.result │ │ │ ├── innodb_bug56680.result │ │ │ ├── innodb_bug56716.result │ │ │ ├── innodb_bug56947.result │ │ │ ├── innodb_bug57252.result │ │ │ ├── innodb_bug57255.result │ │ │ ├── innodb_bug57904.result │ │ │ ├── innodb_bug59410.result │ │ │ ├── innodb_bug59641.result │ │ │ ├── innodb_bug59733.result │ │ │ ├── innodb_bug60049.result │ │ │ ├── innodb_bug60196.result │ │ │ ├── innodb_bug60229.result │ │ │ ├── innodb_cmp_drop_table.result │ │ │ ├── innodb_corrupt_bit.result │ │ │ ├── innodb_file_format.result │ │ │ ├── innodb_gis.result │ │ │ ├── innodb_index_large_prefix.result │ │ │ ├── innodb_information_schema.result │ │ │ ├── innodb_information_schema_buffer.result │ │ │ ├── innodb_lock_wait_timeout_1.result │ │ │ ├── innodb_multi_update.result │ │ │ ├── innodb_mysql.result │ │ │ ├── innodb_mysql_rbk.result │ │ │ ├── innodb_notembedded.result │ │ │ ├── innodb_prefix_index_liftedlimit.result │ │ │ ├── innodb_prefix_index_restart_server.result │ │ │ ├── innodb_timeout_rollback.result │ │ │ ├── innodb_trx_weight.result │ │ │ └── mdev-117.result │ │ └── t │ │ │ ├── auto_increment_dup.test │ │ │ ├── binlog_consistent.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 │ │ │ ├── innodb-analyze.test │ │ │ ├── innodb-autoinc-18274.test │ │ │ ├── innodb-autoinc-44030-master.opt │ │ │ ├── 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-blob.test │ │ │ ├── innodb-consistent-master.opt │ │ │ ├── innodb-consistent.test │ │ │ ├── innodb-create-options.test │ │ │ ├── innodb-index.test │ │ │ ├── innodb-index_ucs2.test │ │ │ ├── innodb-lock.test │ │ │ ├── innodb-master.opt │ │ │ ├── innodb-replace.test │ │ │ ├── innodb-semi-consistent-master.opt │ │ │ ├── innodb-semi-consistent.test │ │ │ ├── innodb-timeout.test │ │ │ ├── innodb-truncate.test │ │ │ ├── innodb-ucs2.test │ │ │ ├── innodb-zip.test │ │ │ ├── innodb.test │ │ │ ├── innodb_autoinc_lock_mode_zero-master.opt │ │ │ ├── innodb_autoinc_lock_mode_zero.test │ │ │ ├── innodb_bug11754376.test │ │ │ ├── innodb_bug11766634.test │ │ │ ├── innodb_bug12400341-master.opt │ │ │ ├── innodb_bug12400341.test │ │ │ ├── innodb_bug12661768.test │ │ │ ├── innodb_bug12902967.test │ │ │ ├── innodb_bug13510739.test │ │ │ ├── innodb_bug13635833.test │ │ │ ├── innodb_bug14007649.test │ │ │ ├── innodb_bug14147491-master.opt │ │ │ ├── innodb_bug14147491.test │ │ │ ├── innodb_bug14676111-master.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_bug36169.test │ │ │ ├── innodb_bug36172.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_bug47167.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_bug52745.test │ │ │ ├── innodb_bug53046.test │ │ │ ├── innodb_bug53290.test │ │ │ ├── innodb_bug53591.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_bug56680.test │ │ │ ├── innodb_bug56716.test │ │ │ ├── innodb_bug56947.test │ │ │ ├── innodb_bug57252.test │ │ │ ├── innodb_bug57255.test │ │ │ ├── innodb_bug57904.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-master.opt │ │ │ ├── innodb_bug60229.test │ │ │ ├── innodb_cmp_drop_table-master.opt │ │ │ ├── innodb_cmp_drop_table.test │ │ │ ├── innodb_corrupt_bit.test │ │ │ ├── innodb_file_format.test │ │ │ ├── innodb_gis.test │ │ │ ├── innodb_index_large_prefix.test │ │ │ ├── innodb_information_schema.test │ │ │ ├── innodb_information_schema_buffer.test │ │ │ ├── innodb_lock_wait_timeout_1-master.opt │ │ │ ├── innodb_lock_wait_timeout_1.test │ │ │ ├── innodb_multi_update.test │ │ │ ├── innodb_mysql-master.opt │ │ │ ├── innodb_mysql.test │ │ │ ├── innodb_mysql_rbk-master.opt │ │ │ ├── innodb_mysql_rbk.test │ │ │ ├── innodb_notembedded.test │ │ │ ├── innodb_prefix_index_liftedlimit.test │ │ │ ├── innodb_prefix_index_restart_server.test │ │ │ ├── innodb_timeout_rollback-master.opt │ │ │ ├── innodb_timeout_rollback.test │ │ │ ├── innodb_trx_weight.test │ │ │ └── mdev-117.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-master.opt │ │ │ ├── jp_enum_sjis.test │ │ │ ├── jp_enum_ucs2-master.opt │ │ │ ├── jp_enum_ucs2.test │ │ │ ├── jp_enum_ujis-master.opt │ │ │ ├── jp_enum_ujis.test │ │ │ ├── jp_enum_utf8-master.opt │ │ │ ├── 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 │ ├── 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 │ ├── manual │ │ ├── r │ │ │ └── rpl_replication_delay.result │ │ └── t │ │ │ ├── rpl_replication_delay-slave.opt │ │ │ └── rpl_replication_delay.test │ ├── maria │ │ ├── compat_aliases-master.opt │ │ ├── distinct.result │ │ ├── distinct.test │ │ ├── group_commit.result │ │ ├── group_commit.test │ │ ├── icp.result │ │ ├── icp.test │ │ ├── lock.result │ │ ├── lock.test │ │ ├── locking.result │ │ ├── locking.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 │ │ ├── small_blocksize-master.opt │ │ ├── small_blocksize.result │ │ ├── small_blocksize.test │ │ ├── suite.pm │ │ ├── truncate.result │ │ └── truncate.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 │ │ ├── single.result │ │ └── single.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 │ ├── oqgraph │ │ ├── r │ │ │ ├── basic.result │ │ │ └── binlog.result │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── t │ │ │ ├── basic.test │ │ │ └── binlog.test │ ├── parts │ │ ├── disabled.def │ │ ├── inc │ │ │ ├── methods1.inc │ │ │ ├── part_blocked_sql_funcs_main.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_date.inc │ │ │ ├── partition_datetime.inc │ │ │ ├── partition_decimal.inc │ │ │ ├── partition_directory.inc │ │ │ ├── partition_double.inc │ │ │ ├── partition_engine.inc │ │ │ ├── partition_enum.inc │ │ │ ├── partition_fail.inc │ │ │ ├── partition_fail_add.inc │ │ │ ├── partition_fail_change.inc │ │ │ ├── partition_fail_drop.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 │ │ │ ├── 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_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_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_innodb.result │ │ │ ├── partition_debug_myisam.result │ │ │ ├── partition_debug_sync_innodb.result │ │ │ ├── partition_decimal_innodb.result │ │ │ ├── partition_decimal_myisam.result │ │ │ ├── partition_engine_innodb.result │ │ │ ├── partition_engine_myisam.result │ │ │ ├── partition_float_innodb.result │ │ │ ├── partition_float_myisam.result │ │ │ ├── partition_innodb_status_file.result │ │ │ ├── partition_int_innodb.result │ │ │ ├── partition_int_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_recover_myisam.result │ │ │ ├── partition_repair_myisam.result │ │ │ ├── partition_special_innodb.result │ │ │ ├── partition_special_myisam.result │ │ │ ├── partition_syntax_innodb.result │ │ │ ├── partition_syntax_myisam.result │ │ │ ├── partition_t55.out │ │ │ ├── partition_value_innodb.result │ │ │ ├── partition_value_myisam.result │ │ │ └── rpl_partition.result │ │ └── t │ │ │ ├── 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_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_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_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_engine_innodb.test │ │ │ ├── partition_engine_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_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_recover_myisam-master.opt │ │ │ ├── partition_recover_myisam.test │ │ │ ├── partition_repair_myisam-master.opt │ │ │ ├── partition_repair_myisam.test │ │ │ ├── partition_special_innodb-master.opt │ │ │ ├── partition_special_innodb.test │ │ │ ├── partition_special_myisam.test │ │ │ ├── partition_syntax_innodb.test │ │ │ ├── partition_syntax_myisam.test │ │ │ ├── partition_value_innodb.test │ │ │ ├── partition_value_myisam.test │ │ │ └── rpl_partition.test │ ├── percona │ │ ├── disabled.def │ │ ├── have_response_time_distribution.inc │ │ ├── have_response_time_distribution.require │ │ ├── innodb_fix_misc_bug51325.result │ │ ├── innodb_fix_misc_bug51325.test │ │ ├── innodb_sys_index.result │ │ ├── innodb_sys_index.test │ │ ├── log_connection_error.patch │ │ │ ├── percona_log_connection_error-master.opt │ │ │ ├── percona_log_connection_error.result │ │ │ └── percona_log_connection_error.test │ │ ├── percona_flush_contiguous_neighbors-master.opt │ │ ├── percona_flush_contiguous_neighbors.result │ │ ├── percona_flush_contiguous_neighbors.test │ │ ├── percona_innodb_buffer_pool_shm-master.opt │ │ ├── percona_innodb_buffer_pool_shm.result │ │ ├── percona_innodb_buffer_pool_shm.test │ │ ├── percona_innodb_deadlock_count.result │ │ ├── percona_innodb_deadlock_count.test │ │ ├── percona_innodb_doublewrite_file-master.opt │ │ ├── percona_innodb_doublewrite_file.result │ │ ├── percona_innodb_doublewrite_file.test │ │ ├── percona_innodb_expand_fast_index_creation.result │ │ ├── percona_innodb_expand_fast_index_creation.test │ │ ├── percona_innodb_fake_changes.result │ │ ├── percona_innodb_fake_changes.test │ │ ├── percona_innodb_fake_changes_locks.result │ │ ├── percona_innodb_fake_changes_locks.test │ │ ├── percona_innodb_kill_idle_trx.result │ │ ├── percona_innodb_kill_idle_trx.test │ │ ├── percona_innodb_kill_idle_trx_locks.result │ │ ├── percona_innodb_kill_idle_trx_locks.test │ │ ├── percona_innodb_kill_idle_trx_show.inc │ │ ├── percona_innodb_use_sys_stats_table-master.opt │ │ ├── percona_innodb_use_sys_stats_table.result │ │ ├── percona_innodb_use_sys_stats_table.test │ │ ├── percona_log_warnings_suppress-master.opt │ │ ├── percona_log_warnings_suppress.result │ │ ├── percona_log_warnings_suppress.test │ │ ├── percona_processlist_row_stats.result │ │ ├── percona_processlist_row_stats.test │ │ ├── percona_query_cache_with_comments.inc.backup │ │ ├── percona_query_response_time-replication.result │ │ ├── percona_query_response_time-replication.test │ │ ├── percona_query_response_time-stored.result │ │ ├── percona_query_response_time-stored.test │ │ ├── percona_query_response_time.result │ │ ├── percona_query_response_time.test │ │ ├── percona_query_response_time_flush.inc │ │ ├── percona_query_response_time_show.inc │ │ ├── percona_query_response_time_sleep.inc │ │ ├── percona_server_variables.inc │ │ ├── percona_server_variables_debug.result │ │ ├── percona_server_variables_debug.test │ │ ├── percona_server_variables_release.result │ │ ├── percona_server_variables_release.test │ │ ├── percona_show_temp_tables.result │ │ ├── percona_show_temp_tables.test │ │ ├── percona_slow_extended-slow_query_log_timestamp_always-cl-master.opt │ │ ├── percona_slow_extended-slow_query_log_timestamp_always-cl.result │ │ ├── percona_slow_extended-slow_query_log_timestamp_always-cl.test │ │ ├── percona_slow_extended-use_global_control-master.opt │ │ ├── percona_slow_extended-use_global_control.result │ │ ├── percona_slow_extended-use_global_control.test │ │ ├── percona_sync_flush.result │ │ ├── percona_sync_flush.test │ │ ├── percona_xtradb_admin_command.result │ │ ├── percona_xtradb_admin_command.test │ │ ├── percona_xtradb_bug317074.result │ │ ├── percona_xtradb_bug317074.test │ │ ├── profiling_slow.patch │ │ │ ├── percona_bug643149.result │ │ │ └── percona_bug643149.test │ │ ├── query_cache_enhance.patch │ │ │ ├── percona_query_cache_with_comments.inc │ │ │ ├── percona_query_cache_with_comments.inc.backup │ │ │ ├── percona_query_cache_with_comments.result │ │ │ ├── percona_query_cache_with_comments.test │ │ │ ├── percona_query_cache_with_comments_begin.inc │ │ │ ├── percona_query_cache_with_comments_clear.inc │ │ │ ├── percona_query_cache_with_comments_crash.result │ │ │ ├── percona_query_cache_with_comments_crash.test │ │ │ ├── percona_query_cache_with_comments_disable.result │ │ │ ├── percona_query_cache_with_comments_disable.test │ │ │ ├── percona_query_cache_with_comments_end.inc │ │ │ ├── percona_query_cache_with_comments_eval.inc │ │ │ ├── percona_query_cache_with_comments_prepared_statements.result │ │ │ ├── percona_query_cache_with_comments_prepared_statements.test │ │ │ ├── percona_query_cache_with_comments_show.inc │ │ │ ├── percona_status_wait_query_cache_mutex.result │ │ │ └── percona_status_wait_query_cache_mutex.test │ │ ├── query_response_time-replication.inc │ │ ├── query_response_time-stored.inc │ │ ├── query_response_time.inc │ │ ├── response-time-distribution.patch │ │ │ ├── percona_query_response_time-replication.result │ │ │ ├── percona_query_response_time-replication.test │ │ │ ├── percona_query_response_time-stored.result │ │ │ ├── percona_query_response_time-stored.test │ │ │ ├── percona_query_response_time.result │ │ │ ├── percona_query_response_time.test │ │ │ ├── percona_query_response_time_flush.inc │ │ │ ├── percona_query_response_time_show.inc │ │ │ └── percona_query_response_time_sleep.inc │ │ ├── show_slave_status_nolock.patch │ │ │ ├── percona_show_slave_status_nolock.result │ │ │ └── percona_show_slave_status_nolock.test │ │ ├── slow_extended.patch │ │ │ ├── grep.inc │ │ │ ├── percona_slow_extended-combined-master.opt │ │ │ ├── percona_slow_extended-combined.result │ │ │ ├── percona_slow_extended-combined.test │ │ │ ├── percona_slow_extended-combined2-master.opt │ │ │ ├── percona_slow_extended-combined2.result │ │ │ ├── percona_slow_extended-combined2.test │ │ │ ├── percona_slow_extended-control_global_slow-master.opt │ │ │ ├── percona_slow_extended-control_global_slow.result │ │ │ ├── percona_slow_extended-control_global_slow.test │ │ │ ├── percona_slow_extended-log_slow_filter-master.opt │ │ │ ├── percona_slow_extended-log_slow_filter.result │ │ │ ├── percona_slow_extended-log_slow_filter.test │ │ │ ├── percona_slow_extended-log_slow_sp_statements-cl-master.opt │ │ │ ├── percona_slow_extended-log_slow_sp_statements-cl.result │ │ │ ├── percona_slow_extended-log_slow_sp_statements-cl.test │ │ │ ├── percona_slow_extended-log_slow_timestamp_every-cl-master.opt │ │ │ ├── percona_slow_extended-log_slow_timestamp_every-cl.result │ │ │ ├── percona_slow_extended-log_slow_timestamp_every-cl.test │ │ │ ├── percona_slow_extended-log_slow_verbosity-cl-master.opt │ │ │ ├── percona_slow_extended-log_slow_verbosity-cl.result │ │ │ ├── percona_slow_extended-log_slow_verbosity-cl.test │ │ │ ├── percona_slow_extended-log_slow_verbosity-master.opt │ │ │ ├── percona_slow_extended-log_slow_verbosity.result │ │ │ ├── percona_slow_extended-log_slow_verbosity.test │ │ │ ├── percona_slow_extended-long_query_time-master.opt │ │ │ ├── percona_slow_extended-long_query_time.result │ │ │ ├── percona_slow_extended-long_query_time.test │ │ │ ├── percona_slow_extended-microseconds_in_slow_extended-master.opt │ │ │ ├── percona_slow_extended-microseconds_in_slow_extended.result │ │ │ ├── percona_slow_extended-microseconds_in_slow_extended.test │ │ │ ├── percona_slow_extended-min_examined_row_limit-master.opt │ │ │ ├── percona_slow_extended-min_examined_row_limit.result │ │ │ ├── percona_slow_extended-min_examined_row_limit.test │ │ │ ├── percona_slow_extended-slave_innodb_stats-master.opt │ │ │ ├── percona_slow_extended-slave_innodb_stats-slave.opt │ │ │ ├── percona_slow_extended-slave_innodb_stats.result │ │ │ ├── percona_slow_extended-slave_innodb_stats.test │ │ │ ├── percona_slow_extended-slave_statements-and-use_global_long_query_time-master.opt │ │ │ ├── percona_slow_extended-slave_statements-and-use_global_long_query_time-slave.opt │ │ │ ├── percona_slow_extended-slave_statements-and-use_global_long_query_time.result │ │ │ ├── percona_slow_extended-slave_statements-and-use_global_long_query_time.test │ │ │ ├── percona_slow_extended-slave_statements-master.opt │ │ │ ├── percona_slow_extended-slave_statements-slave.opt │ │ │ ├── percona_slow_extended-slave_statements.result │ │ │ ├── percona_slow_extended-slave_statements.test │ │ │ ├── percona_slow_extended-slow_query_log_microseconds_timestamp-cl-master.opt │ │ │ ├── percona_slow_extended-slow_query_log_microseconds_timestamp-cl.result │ │ │ ├── percona_slow_extended-slow_query_log_microseconds_timestamp-cl.test │ │ │ ├── percona_slow_extended-use_global_long_query_time-cl-master.opt │ │ │ ├── percona_slow_extended-use_global_long_query_time-cl.result │ │ │ ├── percona_slow_extended-use_global_long_query_time-cl.test │ │ │ ├── percona_slow_extended-use_global_long_query_time-master.opt │ │ │ ├── percona_slow_extended-use_global_long_query_time.result │ │ │ └── percona_slow_extended-use_global_long_query_time.test │ │ ├── sql_no_fcache.patch │ │ │ ├── percona_sql_no_fcache.result │ │ │ └── percona_sql_no_fcache.test │ │ ├── userstat_bug602047.result │ │ └── userstat_bug602047.test │ ├── perfschema │ │ ├── disabled.def │ │ ├── include │ │ │ ├── binlog_common.inc │ │ │ ├── cleanup_helper.inc │ │ │ ├── privilege.inc │ │ │ ├── setup_helper.inc │ │ │ ├── start_server_common.inc │ │ │ └── upgrade_check.inc │ │ ├── r │ │ │ ├── aggregate.result │ │ │ ├── all_instances.result │ │ │ ├── bad_option_1.result │ │ │ ├── bad_option_2.result │ │ │ ├── bad_option_3.result │ │ │ ├── bad_option_4.result │ │ │ ├── bad_option_5.result │ │ │ ├── binlog_mix.result │ │ │ ├── binlog_row.result │ │ │ ├── binlog_stmt.result │ │ │ ├── checksum.result │ │ │ ├── cnf_option.result │ │ │ ├── column_privilege.result │ │ │ ├── ddl_cond_instances.result │ │ │ ├── ddl_events_waits_current.result │ │ │ ├── ddl_events_waits_history.result │ │ │ ├── ddl_events_waits_history_long.result │ │ │ ├── ddl_ews_by_instance.result │ │ │ ├── ddl_ews_by_thread_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_mutex_instances.result │ │ │ ├── ddl_performance_timers.result │ │ │ ├── ddl_rwlock_instances.result │ │ │ ├── ddl_setup_consumers.result │ │ │ ├── ddl_setup_instruments.result │ │ │ ├── ddl_setup_timers.result │ │ │ ├── ddl_threads.result │ │ │ ├── dml_cond_instances.result │ │ │ ├── dml_events_waits_current.result │ │ │ ├── dml_events_waits_history.result │ │ │ ├── dml_events_waits_history_long.result │ │ │ ├── dml_ews_by_instance.result │ │ │ ├── dml_ews_by_thread_by_event_name.result │ │ │ ├── dml_ews_global_by_event_name.result │ │ │ ├── dml_file_instances.result │ │ │ ├── dml_file_summary_by_event_name.result │ │ │ ├── dml_file_summary_by_instance.result │ │ │ ├── dml_mutex_instances.result │ │ │ ├── dml_performance_timers.result │ │ │ ├── dml_rwlock_instances.result │ │ │ ├── dml_setup_consumers.result │ │ │ ├── dml_setup_instruments.result │ │ │ ├── dml_setup_timers.result │ │ │ ├── dml_threads.result │ │ │ ├── func_file_io.result │ │ │ ├── func_mutex.result │ │ │ ├── global_read_lock.result │ │ │ ├── information_schema.result │ │ │ ├── misc.result │ │ │ ├── myisam_file_io.result │ │ │ ├── no_threads.result │ │ │ ├── one_thread_per_con.result │ │ │ ├── pfs_upgrade.result │ │ │ ├── privilege.result │ │ │ ├── query_cache.result │ │ │ ├── read_only.result │ │ │ ├── relaylog.result │ │ │ ├── schema.result │ │ │ ├── selects.result │ │ │ ├── server_init.result │ │ │ ├── short_option_1.result │ │ │ ├── short_option_2.result │ │ │ ├── start_server_no_cond_class.result │ │ │ ├── start_server_no_cond_inst.result │ │ │ ├── start_server_no_file_class.result │ │ │ ├── start_server_no_file_inst.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_thread_class.result │ │ │ ├── start_server_no_thread_inst.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 │ │ │ ├── tampered_perfschema_table1.result │ │ │ └── thread_cache.result │ │ └── t │ │ │ ├── aggregate.test │ │ │ ├── all_instances.test │ │ │ ├── bad_option_1.test │ │ │ ├── bad_option_2.test │ │ │ ├── bad_option_3.test │ │ │ ├── bad_option_4.test │ │ │ ├── bad_option_5.test │ │ │ ├── binlog_mix.test │ │ │ ├── binlog_row.test │ │ │ ├── binlog_stmt.test │ │ │ ├── checksum.test │ │ │ ├── cnf_option.cnf │ │ │ ├── cnf_option.test │ │ │ ├── column_privilege.test │ │ │ ├── ddl_cond_instances.test │ │ │ ├── ddl_events_waits_current.test │ │ │ ├── ddl_events_waits_history.test │ │ │ ├── ddl_events_waits_history_long.test │ │ │ ├── ddl_ews_by_instance.test │ │ │ ├── ddl_ews_by_thread_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_mutex_instances.test │ │ │ ├── ddl_performance_timers.test │ │ │ ├── ddl_rwlock_instances.test │ │ │ ├── ddl_setup_consumers.test │ │ │ ├── ddl_setup_instruments.test │ │ │ ├── ddl_setup_timers.test │ │ │ ├── ddl_threads.test │ │ │ ├── dml_cond_instances.test │ │ │ ├── dml_events_waits_current.test │ │ │ ├── dml_events_waits_history.test │ │ │ ├── dml_events_waits_history_long.test │ │ │ ├── dml_ews_by_instance.test │ │ │ ├── dml_ews_by_thread_by_event_name.test │ │ │ ├── dml_ews_global_by_event_name.test │ │ │ ├── dml_file_instances.test │ │ │ ├── dml_file_summary_by_event_name.test │ │ │ ├── dml_file_summary_by_instance.test │ │ │ ├── dml_mutex_instances.test │ │ │ ├── dml_performance_timers.test │ │ │ ├── dml_rwlock_instances.test │ │ │ ├── dml_setup_consumers.test │ │ │ ├── dml_setup_instruments.test │ │ │ ├── dml_setup_timers.test │ │ │ ├── dml_threads.test │ │ │ ├── func_file_io.test │ │ │ ├── func_mutex.test │ │ │ ├── global_read_lock.test │ │ │ ├── information_schema.test │ │ │ ├── misc.test │ │ │ ├── myisam_file_io.opt │ │ │ ├── myisam_file_io.test │ │ │ ├── no_threads-master.opt │ │ │ ├── no_threads.test │ │ │ ├── one_thread_per_con-master.opt │ │ │ ├── one_thread_per_con.test │ │ │ ├── pfs_upgrade.test │ │ │ ├── pool_of_threads-master.opt │ │ │ ├── privilege.test │ │ │ ├── query_cache.test │ │ │ ├── read_only.test │ │ │ ├── relaylog.test │ │ │ ├── schema.test │ │ │ ├── selects-master.opt │ │ │ ├── selects.test │ │ │ ├── server_init.test │ │ │ ├── short_option_1-master.opt │ │ │ ├── short_option_1.test │ │ │ ├── short_option_2-master.opt │ │ │ ├── short_option_2.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_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_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_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_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 │ │ │ ├── tampered_perfschema_table1-master.opt │ │ │ ├── tampered_perfschema_table1.test │ │ │ └── thread_cache.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_v0100.result │ │ │ ├── dialog.result │ │ │ ├── feedback_plugin_install.result │ │ │ ├── feedback_plugin_load.result │ │ │ ├── feedback_plugin_send.result │ │ │ ├── fulltext_plugin.result │ │ │ ├── pam.result │ │ │ ├── pam_cleartext.result │ │ │ ├── qc_info.result │ │ │ ├── qc_info_priv.result │ │ │ └── unix_socket.result │ │ ├── suite.pm │ │ └── t │ │ │ ├── audit_null.test │ │ │ ├── audit_null_debug.test │ │ │ ├── auth_v0100.test │ │ │ ├── dialog.test │ │ │ ├── feedback_plugin_install.opt │ │ │ ├── feedback_plugin_install.test │ │ │ ├── feedback_plugin_load.opt │ │ │ ├── feedback_plugin_load.test │ │ │ ├── feedback_plugin_send.test │ │ │ ├── fulltext_plugin.test │ │ │ ├── pam.test │ │ │ ├── pam_cleartext.opt │ │ │ ├── pam_cleartext.test │ │ │ ├── pam_init.inc │ │ │ ├── qc_info.test │ │ │ ├── qc_info_init.inc │ │ │ ├── qc_info_init.opt │ │ │ ├── qc_info_priv.test │ │ │ └── unix_socket.test │ ├── rpl │ │ ├── README │ │ ├── disabled.def │ │ ├── extension │ │ │ ├── README.checksum │ │ │ └── checksum.pl │ │ ├── include │ │ │ ├── hrtime.inc │ │ │ ├── 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 │ │ ├── my.cnf │ │ ├── r │ │ │ ├── replace.result │ │ │ ├── rpl000001.a.result │ │ │ ├── rpl000001.b.result │ │ │ ├── rpl_000010.result │ │ │ ├── rpl_000011.result │ │ │ ├── rpl_000013.result │ │ │ ├── rpl_000017.result │ │ │ ├── rpl_EE_err.result │ │ │ ├── rpl_LD_INFILE.result │ │ │ ├── rpl_alter.result │ │ │ ├── rpl_alter_db.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_begin_commit_rollback.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_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_current_user.result │ │ │ ├── rpl_ddl.result │ │ │ ├── rpl_deadlock_innodb.result │ │ │ ├── rpl_delete_no_where.result │ │ │ ├── rpl_do_grant.result │ │ │ ├── rpl_drop.result │ │ │ ├── rpl_drop_db.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_geometry.result │ │ │ ├── rpl_get_lock.result │ │ │ ├── rpl_get_master_version_and_clock.result │ │ │ ├── rpl_grant.result │ │ │ ├── rpl_heartbeat.result │ │ │ ├── rpl_heartbeat_2slaves.result │ │ │ ├── rpl_heartbeat_basic.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_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_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_manual_change_index_file.result │ │ │ ├── rpl_many_optimize.result │ │ │ ├── rpl_master_pos_wait.result │ │ │ ├── rpl_mdev359.result │ │ │ ├── rpl_mdev382.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_optimize.result │ │ │ ├── rpl_packet.result │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.result │ │ │ ├── rpl_password_boundaries.result │ │ │ ├── rpl_performance_schema.result │ │ │ ├── rpl_plugin_load.result │ │ │ ├── rpl_ps.result │ │ │ ├── rpl_rbr_to_sbr.result │ │ │ ├── rpl_read_only.result │ │ │ ├── rpl_relay_space_innodb.result │ │ │ ├── rpl_relay_space_myisam.result │ │ │ ├── rpl_relayrotate.result │ │ │ ├── rpl_relayspace.result │ │ │ ├── rpl_replicate_do.result │ │ │ ├── rpl_replicate_ignore_db.result │ │ │ ├── rpl_report.result │ │ │ ├── rpl_report_port.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_table.result │ │ │ ├── rpl_row_delayed_ins.result │ │ │ ├── rpl_row_drop.result │ │ │ ├── rpl_row_drop_create_temp_table.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_implicit_commit_binlog.result │ │ │ ├── rpl_row_index_choice.result │ │ │ ├── rpl_row_inexist_tbl.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_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_tabledefs_2myisam.result │ │ │ ├── rpl_row_tabledefs_3innodb.result │ │ │ ├── rpl_row_tbl_metadata.result │ │ │ ├── rpl_row_trig001.result │ │ │ ├── rpl_row_trig002.result │ │ │ ├── rpl_row_trig003.result │ │ │ ├── rpl_row_trig004.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_event.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_show_slave_hosts.result │ │ │ ├── rpl_show_slave_running.result │ │ │ ├── rpl_skip_error.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_spec_variables.result │ │ │ ├── rpl_sporadic_master.result │ │ │ ├── rpl_ssl.result │ │ │ ├── rpl_ssl1.result │ │ │ ├── rpl_start_slave_deadlock_sys_vars.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_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_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_switch_stm_row_mixed.result │ │ │ ├── rpl_sync.result │ │ │ ├── rpl_table_options.result │ │ │ ├── rpl_temp_table.result │ │ │ ├── rpl_temp_table_mix_row.result │ │ │ ├── rpl_temporary.result │ │ │ ├── rpl_temporary_errors.result │ │ │ ├── rpl_test_framework.result │ │ │ ├── rpl_timezone.result │ │ │ ├── rpl_tmp_table_and_DDL.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_user.result │ │ │ ├── rpl_user_variables.result │ │ │ ├── rpl_variables.result │ │ │ ├── rpl_variables_stm.result │ │ │ ├── rpl_view.result │ │ │ ├── rpl_view_multi.result │ │ │ └── semisync_memleak_4066.result │ │ ├── rpl_1slave_base.cnf │ │ └── t │ │ │ ├── replace.test │ │ │ ├── rpl_000010-slave.opt │ │ │ ├── rpl_000010.test │ │ │ ├── rpl_000011.test │ │ │ ├── rpl_000013.test │ │ │ ├── rpl_000017.test │ │ │ ├── rpl_EE_err.test │ │ │ ├── rpl_LD_INFILE.test │ │ │ ├── rpl_alter.test │ │ │ ├── rpl_alter_db.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_begin_commit_rollback-master.opt │ │ │ ├── rpl_begin_commit_rollback-slave.opt │ │ │ ├── rpl_begin_commit_rollback.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_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_current_user.cnf │ │ │ ├── rpl_current_user.test │ │ │ ├── rpl_ddl-slave.opt │ │ │ ├── rpl_ddl.test │ │ │ ├── rpl_deadlock_innodb-slave.opt │ │ │ ├── rpl_deadlock_innodb.test │ │ │ ├── rpl_delete_no_where.test │ │ │ ├── rpl_do_grant.test │ │ │ ├── rpl_drop.test │ │ │ ├── rpl_drop_db.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_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_heartbeat.test │ │ │ ├── rpl_heartbeat_2slaves.cnf │ │ │ ├── rpl_heartbeat_2slaves.test │ │ │ ├── rpl_heartbeat_basic.cnf │ │ │ ├── rpl_heartbeat_basic.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-master.opt │ │ │ ├── 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.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_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_manual_change_index_file.test │ │ │ ├── rpl_many_optimize.test │ │ │ ├── rpl_master_pos_wait.test │ │ │ ├── rpl_mdev359.test │ │ │ ├── rpl_mdev382.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_optimize.test │ │ │ ├── rpl_packet-master.opt │ │ │ ├── rpl_packet-slave.opt │ │ │ ├── rpl_packet.test │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.test │ │ │ ├── rpl_password_boundaries.test │ │ │ ├── rpl_performance_schema.test │ │ │ ├── rpl_plugin_load.test │ │ │ ├── rpl_ps.test │ │ │ ├── rpl_rbr_to_sbr.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_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_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_table.test │ │ │ ├── rpl_row_delayed_ins.test │ │ │ ├── rpl_row_drop.test │ │ │ ├── rpl_row_drop_create_temp_table.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_implicit_commit_binlog.test │ │ │ ├── rpl_row_index_choice.test │ │ │ ├── rpl_row_inexist_tbl.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_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_tabledefs_2myisam.test │ │ │ ├── rpl_row_tabledefs_3innodb.test │ │ │ ├── rpl_row_tbl_metadata.test │ │ │ ├── rpl_row_trig001.test │ │ │ ├── rpl_row_trig002.test │ │ │ ├── rpl_row_trig003.test │ │ │ ├── rpl_row_trig004.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_event-master.opt │ │ │ ├── rpl_semi_sync_event.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_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_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_spec_variables-slave.opt │ │ │ ├── rpl_spec_variables.test │ │ │ ├── rpl_sporadic_master-master.opt │ │ │ ├── rpl_sporadic_master.test │ │ │ ├── rpl_ssl.test │ │ │ ├── rpl_ssl1.test │ │ │ ├── rpl_start_slave_deadlock_sys_vars.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_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_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_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_temporary.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_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_user.test │ │ │ ├── rpl_user_variables.test │ │ │ ├── rpl_variables.test │ │ │ ├── rpl_variables_stm.test │ │ │ ├── rpl_view.test │ │ │ ├── rpl_view_multi.test │ │ │ └── semisync_memleak_4066.test │ ├── sphinx │ │ ├── my.cnf │ │ ├── sphinx.result │ │ ├── sphinx.test │ │ ├── suite.opt │ │ ├── suite.pm │ │ └── testdata.xml │ ├── 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.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_index_dir.result │ │ ├── tbl_opt_data_index_dir.test │ │ ├── tbl_opt_delay_key_write.result │ │ ├── tbl_opt_delay_key_write.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 │ │ │ ├── charset_basic.inc │ │ │ └── collation_basic.inc │ │ ├── r │ │ │ ├── all_vars.result │ │ │ ├── aria_block_size_basic.result │ │ │ ├── aria_checkpoint_interval_basic.result │ │ │ ├── aria_checkpoint_log_activity_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_recover_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 │ │ │ ├── binlog_annotate_row_events_basic.result │ │ │ ├── binlog_cache_size_basic.result │ │ │ ├── binlog_checksum_basic.result │ │ │ ├── binlog_direct_non_transactional_updates_basic.result │ │ │ ├── binlog_format_basic.result │ │ │ ├── binlog_optimize_thread_scheduling_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_crc_break_basic.result │ │ │ ├── debug_dbug_basic.result │ │ │ ├── debug_dbug_func.result │ │ │ ├── debug_dbug_func_notembedded.result │ │ │ ├── debug_no_thread_alarm_basic.result │ │ │ ├── debug_sync_basic.result │ │ │ ├── default_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 │ │ │ ├── engine_condition_pushdown_basic.result │ │ │ ├── error_count_basic.result │ │ │ ├── event_scheduler_basic.result │ │ │ ├── expensive_subquery_limit_basic.result │ │ │ ├── expire_logs_days_basic.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 │ │ │ ├── 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_ndbcluster_basic.result │ │ │ ├── have_openssl_basic.result │ │ │ ├── have_partitioning_basic.result │ │ │ ├── have_profiling_basic.result │ │ │ ├── have_query_cache_basic.result │ │ │ ├── have_rtree_keys_basic.result │ │ │ ├── have_ssl_basic.result │ │ │ ├── have_symlink_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_method_basic.result │ │ │ ├── innodb_adaptive_hash_index_basic.result │ │ │ ├── innodb_adaptive_hash_index_partitions_basic.result │ │ │ ├── innodb_additional_mem_pool_size_basic.result │ │ │ ├── innodb_autoextend_increment_basic.result │ │ │ ├── innodb_autoinc_lock_mode_basic.result │ │ │ ├── innodb_autoinc_lock_mode_func.result │ │ │ ├── innodb_blocking_buffer_pool_restore_basic.result │ │ │ ├── innodb_buffer_pool_evict_basic.result │ │ │ ├── innodb_buffer_pool_instances_basic.result │ │ │ ├── innodb_buffer_pool_populate_basic.result │ │ │ ├── innodb_buffer_pool_restore_at_startup_basic.result │ │ │ ├── innodb_buffer_pool_shm_checksum_basic.result │ │ │ ├── innodb_buffer_pool_shm_key_basic.result │ │ │ ├── innodb_buffer_pool_size_basic.result │ │ │ ├── innodb_change_buffering_basic.result │ │ │ ├── innodb_change_buffering_debug_basic.result │ │ │ ├── innodb_checkpoint_age_target_basic.result │ │ │ ├── innodb_checksums_basic.result │ │ │ ├── innodb_commit_concurrency_basic.result │ │ │ ├── innodb_concurrency_tickets_basic.result │ │ │ ├── innodb_corrupt_table_action_basic.result │ │ │ ├── innodb_data_file_path_basic.result │ │ │ ├── innodb_data_home_dir_basic.result │ │ │ ├── innodb_dict_size_limit_basic.result │ │ │ ├── innodb_doublewrite_basic.result │ │ │ ├── innodb_doublewrite_file_basic.result │ │ │ ├── innodb_fake_changes_basic.result │ │ │ ├── innodb_fast_checksum_basic.result │ │ │ ├── innodb_fast_shutdown_basic.result │ │ │ ├── innodb_file_format_basic.result │ │ │ ├── innodb_file_format_check_basic.result │ │ │ ├── innodb_file_format_max_basic.result │ │ │ ├── innodb_file_io_threads_basic.result │ │ │ ├── innodb_file_per_table_basic.result │ │ │ ├── innodb_flush_checkpoint_debug_basic.result │ │ │ ├── innodb_flush_log_at_trx_commit_basic.result │ │ │ ├── innodb_flush_method_basic.result │ │ │ ├── innodb_flush_neighbor_pages_basic.result │ │ │ ├── innodb_force_load_corrupted_basic.result │ │ │ ├── innodb_force_recovery_basic.result │ │ │ ├── innodb_ibuf_accel_rate_basic.result │ │ │ ├── innodb_ibuf_active_contract_basic.result │ │ │ ├── innodb_ibuf_max_size_basic.result │ │ │ ├── innodb_import_table_from_xtrabackup_basic.result │ │ │ ├── innodb_io_capacity_basic.result │ │ │ ├── innodb_kill_idle_transaction_basic.result │ │ │ ├── innodb_large_prefix_basic.result │ │ │ ├── innodb_lazy_drop_table_basic.result │ │ │ ├── innodb_limit_optimistic_insert_debug_basic.result │ │ │ ├── innodb_lock_wait_timeout_basic.result │ │ │ ├── innodb_locking_fake_changes_basic.result │ │ │ ├── innodb_locks_unsafe_for_binlog_basic.result │ │ │ ├── innodb_log_block_size_basic.result │ │ │ ├── innodb_log_buffer_size_basic.result │ │ │ ├── innodb_log_file_size_basic.result │ │ │ ├── innodb_log_files_in_group_basic.result │ │ │ ├── innodb_log_group_home_dir_basic.result │ │ │ ├── innodb_max_bitmap_file_size_basic.result │ │ │ ├── innodb_max_changed_pages_basic.result │ │ │ ├── innodb_max_dirty_pages_pct_basic.result │ │ │ ├── innodb_max_dirty_pages_pct_func.result │ │ │ ├── innodb_max_purge_lag_basic.result │ │ │ ├── innodb_merge_sort_block_size_basic.result │ │ │ ├── innodb_mirrored_log_groups_basic.result │ │ │ ├── innodb_old_blocks_pct_basic.result │ │ │ ├── innodb_old_blocks_time_basic.result │ │ │ ├── innodb_open_files_basic.result │ │ │ ├── innodb_page_size_basic.result │ │ │ ├── innodb_persistent_stats_root_page_basic.result │ │ │ ├── innodb_print_all_deadlocks_basic.result │ │ │ ├── innodb_purge_batch_size_basic.result │ │ │ ├── innodb_purge_threads_basic.result │ │ │ ├── innodb_random_read_ahead_basic.result │ │ │ ├── innodb_read_ahead_basic.result │ │ │ ├── innodb_read_ahead_threshold_basic.result │ │ │ ├── innodb_read_io_threads_basic.result │ │ │ ├── innodb_recovery_stats_basic.result │ │ │ ├── innodb_recovery_update_relay_log_basic.result │ │ │ ├── innodb_replication_delay_basic.result │ │ │ ├── innodb_rollback_on_timeout_basic.result │ │ │ ├── innodb_rollback_segments_basic.result │ │ │ ├── innodb_show_locks_held_basic.result │ │ │ ├── innodb_show_verbose_locks_basic.result │ │ │ ├── innodb_spin_wait_delay_basic.result │ │ │ ├── innodb_stats_auto_update_basic.result │ │ │ ├── innodb_stats_method_basic.result │ │ │ ├── innodb_stats_on_metadata_basic.result │ │ │ ├── innodb_stats_sample_pages_basic.result │ │ │ ├── innodb_stats_update_need_lock_basic.result │ │ │ ├── innodb_strict_mode_basic.result │ │ │ ├── innodb_support_xa_basic.result │ │ │ ├── innodb_support_xa_func.result │ │ │ ├── innodb_sync_spin_loops_basic.result │ │ │ ├── innodb_table_locks_basic.result │ │ │ ├── innodb_table_locks_func.result │ │ │ ├── innodb_thread_concurrency_basic.result │ │ │ ├── innodb_thread_concurrency_timer_based_basic.result │ │ │ ├── innodb_thread_sleep_delay_basic.result │ │ │ ├── innodb_track_changed_pages_basic.result │ │ │ ├── innodb_trx_purge_view_update_only_debug_basic.result │ │ │ ├── innodb_trx_rseg_n_slots_debug_basic.result │ │ │ ├── innodb_use_atomic_writes_basic.result │ │ │ ├── innodb_use_fallocate_basic.result │ │ │ ├── innodb_use_global_flush_log_at_trx_commit_basic.result │ │ │ ├── innodb_use_native_aio_basic.result │ │ │ ├── innodb_use_sys_malloc_basic.result │ │ │ ├── innodb_use_sys_stats_table_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_segments_basic.result │ │ │ ├── large_files_support_basic.result │ │ │ ├── large_page_size_basic.result │ │ │ ├── large_pages_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_basic.result │ │ │ ├── log_bin_trust_function_creators_basic.result │ │ │ ├── log_bin_trust_function_creators_func.result │ │ │ ├── log_error_basic.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_slave_updates_basic.result │ │ │ ├── log_slow_filter_basic.result │ │ │ ├── log_slow_queries_basic.result │ │ │ ├── log_slow_rate_limit_basic.result │ │ │ ├── log_slow_verbosity_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_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_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 │ │ │ ├── min_examined_row_limit_basic.result │ │ │ ├── mrr_buffer_size_basic.result │ │ │ ├── multi_range_count_basic.result │ │ │ ├── mutex_deadlock_detector_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 │ │ │ ├── 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_passwords_basic.result │ │ │ ├── old_passwords_func.result │ │ │ ├── open_files_limit_basic.result │ │ │ ├── optimizer_prune_level_basic.result │ │ │ ├── optimizer_search_depth_basic.result │ │ │ ├── optimizer_switch_basic.result │ │ │ ├── optimizer_switch_eng_cond_pushdown1.result │ │ │ ├── optimizer_switch_eng_cond_pushdown2.result │ │ │ ├── performance_schema_basic.result │ │ │ ├── pfs_events_waits_history_long_size_basic.result │ │ │ ├── pfs_events_waits_history_size_basic.result │ │ │ ├── pfs_max_cond_classes_basic.result │ │ │ ├── pfs_max_cond_instances_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_table_handles_basic.result │ │ │ ├── pfs_max_table_instances_basic.result │ │ │ ├── pfs_max_thread_classes_basic.result │ │ │ ├── pfs_max_thread_instances_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_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_recovery_rank_basic.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_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 │ │ │ ├── server_id_basic.result │ │ │ ├── shared_memory_base_name_basic.result │ │ │ ├── shared_memory_basic.result │ │ │ ├── skip_external_locking_basic.result │ │ │ ├── skip_name_resolve_basic.result │ │ │ ├── skip_networking_basic.result │ │ │ ├── skip_replication_basic.result │ │ │ ├── skip_show_database_basic.result │ │ │ ├── slave_allow_batching_basic.result │ │ │ ├── slave_compressed_protocol_basic.result │ │ │ ├── slave_exec_mode_basic.result │ │ │ ├── slave_load_tmpdir_basic.result │ │ │ ├── slave_max_allowed_packet_basic.result │ │ │ ├── slave_net_timeout_basic.result │ │ │ ├── slave_skip_errors_basic.result │ │ │ ├── slave_sql_verify_checksum_basic.result │ │ │ ├── slave_transaction_retries_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_key_basic.result │ │ │ ├── storage_engine_basic.result │ │ │ ├── stored_program_cache_basic.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 │ │ │ ├── table_definition_cache_basic.result │ │ │ ├── table_open_cache_basic.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_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_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 │ │ │ ├── unique_checks_basic.result │ │ │ ├── updatable_views_with_limit_basic.result │ │ │ ├── updatable_views_with_limit_func.result │ │ │ ├── userstat_basic.result │ │ │ ├── version_basic.result │ │ │ ├── version_comment_basic.result │ │ │ ├── version_compile_machine_basic.result │ │ │ ├── version_compile_os_basic.result │ │ │ ├── wait_timeout_basic.result │ │ │ ├── wait_timeout_func.result │ │ │ └── warning_count_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_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_recover_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.test │ │ │ ├── basedir_basic.test │ │ │ ├── big_tables_basic.test │ │ │ ├── binlog_annotate_row_events_basic.test │ │ │ ├── binlog_cache_size_basic.test │ │ │ ├── binlog_checksum_basic.test │ │ │ ├── binlog_direct_non_transactional_updates_basic.test │ │ │ ├── binlog_format_basic.test │ │ │ ├── binlog_optimize_thread_scheduling_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_crc_break_basic.test │ │ │ ├── debug_dbug_basic.test │ │ │ ├── debug_dbug_func.test │ │ │ ├── debug_dbug_func_notembedded.test │ │ │ ├── debug_no_thread_alarm_basic.test │ │ │ ├── debug_sync_basic.test │ │ │ ├── default_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 │ │ │ ├── engine_condition_pushdown_basic.test │ │ │ ├── error_count_basic.test │ │ │ ├── event_scheduler_basic.test │ │ │ ├── expensive_subquery_limit_basic.test │ │ │ ├── expire_logs_days_basic.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 │ │ │ ├── have_compress_basic.test │ │ │ ├── have_crypt_basic.test │ │ │ ├── have_csv_basic.test │ │ │ ├── have_dynamic_loading_basic.test │ │ │ ├── have_geometry_basic.test │ │ │ ├── have_innodb_basic.test │ │ │ ├── have_ndbcluster_basic.test │ │ │ ├── have_openssl_basic.test │ │ │ ├── have_partitioning_basic.test │ │ │ ├── have_profiling_basic.test │ │ │ ├── have_query_cache_basic.test │ │ │ ├── have_rtree_keys_basic.test │ │ │ ├── have_ssl_basic.test │ │ │ ├── have_symlink_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_method_basic.test │ │ │ ├── innodb_adaptive_hash_index_basic.test │ │ │ ├── innodb_adaptive_hash_index_partitions_basic.test │ │ │ ├── innodb_additional_mem_pool_size_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_blocking_buffer_pool_restore_basic.test │ │ │ ├── innodb_buffer_pool_evict_basic.test │ │ │ ├── innodb_buffer_pool_instances_basic.test │ │ │ ├── innodb_buffer_pool_populate_basic.test │ │ │ ├── innodb_buffer_pool_restore_at_startup_basic.test │ │ │ ├── innodb_buffer_pool_shm_checksum_basic.test │ │ │ ├── innodb_buffer_pool_shm_key_basic.test │ │ │ ├── innodb_buffer_pool_size_basic.test │ │ │ ├── innodb_change_buffering_basic.test │ │ │ ├── innodb_change_buffering_debug_basic.test │ │ │ ├── innodb_checkpoint_age_target_basic.test │ │ │ ├── innodb_checksums_basic.test │ │ │ ├── innodb_commit_concurrency_basic.test │ │ │ ├── innodb_concurrency_tickets_basic.test │ │ │ ├── innodb_corrupt_table_action_basic.test │ │ │ ├── innodb_data_file_path_basic.test │ │ │ ├── innodb_data_home_dir_basic.test │ │ │ ├── innodb_dict_size_limit_basic.test │ │ │ ├── innodb_doublewrite_basic.test │ │ │ ├── innodb_doublewrite_file_basic.test │ │ │ ├── innodb_fake_changes_basic.test │ │ │ ├── innodb_fast_checksum_basic.test │ │ │ ├── innodb_fast_shutdown_basic.test │ │ │ ├── innodb_file_format_basic.test │ │ │ ├── innodb_file_format_check_basic.test │ │ │ ├── innodb_file_format_max_basic.test │ │ │ ├── innodb_file_io_threads_basic.test │ │ │ ├── innodb_file_per_table_basic.test │ │ │ ├── innodb_flush_checkpoint_debug_basic.test │ │ │ ├── innodb_flush_log_at_trx_commit_basic.test │ │ │ ├── innodb_flush_method_basic.test │ │ │ ├── innodb_flush_neighbor_pages_basic.test │ │ │ ├── innodb_force_load_corrupted_basic.test │ │ │ ├── innodb_force_recovery_basic.test │ │ │ ├── innodb_ibuf_accel_rate_basic.test │ │ │ ├── innodb_ibuf_active_contract_basic.test │ │ │ ├── innodb_ibuf_max_size_basic.test │ │ │ ├── innodb_import_table_from_xtrabackup_basic.test │ │ │ ├── innodb_io_capacity_basic.test │ │ │ ├── innodb_kill_idle_transaction_basic.test │ │ │ ├── innodb_large_prefix_basic.test │ │ │ ├── innodb_lazy_drop_table_basic.test │ │ │ ├── innodb_limit_optimistic_insert_debug_basic.test │ │ │ ├── innodb_lock_wait_timeout_basic.test │ │ │ ├── innodb_locking_fake_changes_basic.test │ │ │ ├── innodb_locks_unsafe_for_binlog_basic.test │ │ │ ├── innodb_log_block_size_basic.test │ │ │ ├── innodb_log_buffer_size_basic.test │ │ │ ├── innodb_log_file_size_basic.test │ │ │ ├── innodb_log_files_in_group_basic.test │ │ │ ├── innodb_log_group_home_dir_basic.test │ │ │ ├── innodb_max_bitmap_file_size_basic.test │ │ │ ├── innodb_max_changed_pages_basic.test │ │ │ ├── innodb_max_dirty_pages_pct_basic.test │ │ │ ├── innodb_max_dirty_pages_pct_func.test │ │ │ ├── innodb_max_purge_lag_basic.test │ │ │ ├── innodb_merge_sort_block_size_basic.test │ │ │ ├── innodb_mirrored_log_groups_basic.test │ │ │ ├── innodb_old_blocks_pct_basic.test │ │ │ ├── innodb_old_blocks_time_basic.test │ │ │ ├── innodb_open_files_basic.test │ │ │ ├── innodb_page_size_basic.test │ │ │ ├── innodb_persistent_stats_root_page_basic.test │ │ │ ├── innodb_print_all_deadlocks_basic.test │ │ │ ├── innodb_purge_batch_size_basic.test │ │ │ ├── innodb_purge_threads_basic.test │ │ │ ├── innodb_random_read_ahead_basic.test │ │ │ ├── innodb_read_ahead_basic.test │ │ │ ├── innodb_read_ahead_threshold_basic.test │ │ │ ├── innodb_read_io_threads_basic.test │ │ │ ├── innodb_recovery_stats_basic.test │ │ │ ├── innodb_recovery_update_relay_log_basic.test │ │ │ ├── innodb_replication_delay_basic.test │ │ │ ├── innodb_rollback_on_timeout_basic.test │ │ │ ├── innodb_rollback_segments_basic.test │ │ │ ├── innodb_show_locks_held_basic.test │ │ │ ├── innodb_show_verbose_locks_basic.test │ │ │ ├── innodb_spin_wait_delay_basic.test │ │ │ ├── innodb_stats_auto_update_basic.test │ │ │ ├── innodb_stats_method_basic.test │ │ │ ├── innodb_stats_on_metadata_basic.test │ │ │ ├── innodb_stats_sample_pages_basic.test │ │ │ ├── innodb_stats_update_need_lock_basic.test │ │ │ ├── innodb_strict_mode_basic.test │ │ │ ├── innodb_support_xa_basic.test │ │ │ ├── innodb_support_xa_func.test │ │ │ ├── innodb_sync_spin_loops_basic.test │ │ │ ├── innodb_table_locks_basic.test │ │ │ ├── innodb_table_locks_func.test │ │ │ ├── innodb_thread_concurrency_basic.test │ │ │ ├── innodb_thread_concurrency_timer_based_basic.test │ │ │ ├── innodb_thread_sleep_delay_basic.test │ │ │ ├── innodb_track_changed_pages_basic.test │ │ │ ├── innodb_trx_purge_view_update_only_debug_basic.test │ │ │ ├── innodb_trx_rseg_n_slots_debug_basic.test │ │ │ ├── innodb_use_atomic_writes_basic.test │ │ │ ├── innodb_use_fallocate_basic.test │ │ │ ├── innodb_use_global_flush_log_at_trx_commit_basic.test │ │ │ ├── innodb_use_native_aio_basic.test │ │ │ ├── innodb_use_sys_malloc_basic.test │ │ │ ├── innodb_use_sys_stats_table_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_segments_basic.test │ │ │ ├── large_files_support_basic.test │ │ │ ├── large_page_size_basic.test │ │ │ ├── large_pages_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_basic.test │ │ │ ├── log_bin_basic.test │ │ │ ├── log_bin_trust_function_creators_basic.test │ │ │ ├── log_bin_trust_function_creators_func.test │ │ │ ├── log_error_basic.test │ │ │ ├── log_error_func.cnf │ │ │ ├── log_error_func.test │ │ │ ├── log_error_func2.cnf │ │ │ ├── log_error_func2.test │ │ │ ├── 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_filter_basic.test │ │ │ ├── log_slow_queries_basic.test │ │ │ ├── log_slow_rate_limit_basic.test │ │ │ ├── log_slow_verbosity_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_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_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 │ │ │ ├── min_examined_row_limit_basic.test │ │ │ ├── mrr_buffer_size_basic.test │ │ │ ├── multi_range_count_basic.test │ │ │ ├── mutex_deadlock_detector_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 │ │ │ ├── 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_passwords_basic.test │ │ │ ├── old_passwords_func.test │ │ │ ├── open_files_limit_basic.test │ │ │ ├── optimizer_prune_level_basic.test │ │ │ ├── optimizer_search_depth_basic.test │ │ │ ├── optimizer_switch_basic.test │ │ │ ├── optimizer_switch_eng_cond_pushdown1-master.opt │ │ │ ├── optimizer_switch_eng_cond_pushdown1.test │ │ │ ├── optimizer_switch_eng_cond_pushdown2-master.opt │ │ │ ├── optimizer_switch_eng_cond_pushdown2.test │ │ │ ├── performance_schema_basic-master.opt │ │ │ ├── performance_schema_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_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_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_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 │ │ │ ├── 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_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_recovery_rank_basic.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_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 │ │ │ ├── server_id_basic.test │ │ │ ├── shared_memory_base_name_basic.test │ │ │ ├── shared_memory_basic.test │ │ │ ├── skip_external_locking_basic.test │ │ │ ├── skip_name_resolve_basic-master.opt │ │ │ ├── skip_name_resolve_basic.test │ │ │ ├── skip_networking_basic.test │ │ │ ├── skip_replication_basic.test │ │ │ ├── skip_show_database_basic.test │ │ │ ├── slave_allow_batching_basic.test │ │ │ ├── slave_compressed_protocol_basic.test │ │ │ ├── slave_exec_mode_basic.test │ │ │ ├── slave_load_tmpdir_basic.test │ │ │ ├── slave_max_allowed_packet_basic.test │ │ │ ├── slave_net_timeout_basic.test │ │ │ ├── slave_skip_errors_basic.test │ │ │ ├── slave_sql_verify_checksum_basic.test │ │ │ ├── slave_transaction_retries_basic.test │ │ │ ├── slave_type_conversions_basic.test │ │ │ ├── slow_launch_time_basic.test │ │ │ ├── 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_big_tables_basic.test │ │ │ ├── sql_big_tables_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_basic.test │ │ │ ├── sql_low_priority_updates_func.test │ │ │ ├── sql_max_join_size_basic.test │ │ │ ├── sql_max_join_size_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_key_basic.test │ │ │ ├── storage_engine_basic-master.opt │ │ │ ├── storage_engine_basic.test │ │ │ ├── stored_program_cache_basic.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 │ │ │ ├── table_definition_cache_basic.test │ │ │ ├── table_open_cache_basic.test │ │ │ ├── thread_cache_size_basic.test │ │ │ ├── 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.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_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 │ │ │ ├── unique_checks_basic.test │ │ │ ├── updatable_views_with_limit_basic.test │ │ │ ├── updatable_views_with_limit_func.test │ │ │ ├── userstat_basic.test │ │ │ ├── version_basic.test │ │ │ ├── version_comment_basic.test │ │ │ ├── version_compile_machine_basic.test │ │ │ ├── version_compile_os_basic.test │ │ │ ├── wait_timeout_basic.test │ │ │ ├── wait_timeout_func.test │ │ │ └── warning_count_basic.test │ ├── unit │ │ ├── my.cnf │ │ └── suite.pm │ └── vcol │ │ ├── inc │ │ ├── vcol_blocked_sql_funcs_main.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_supported_sql_funcs_main.inc │ │ ├── vcol_trigger_sp.inc │ │ ├── vcol_unsupported_storage_engines.inc │ │ └── vcol_view.inc │ │ ├── r │ │ ├── rpl_vcol.result │ │ ├── vcol_archive.result │ │ ├── vcol_blackhole.result │ │ ├── vcol_blocked_sql_funcs_innodb.result │ │ ├── vcol_blocked_sql_funcs_myisam.result │ │ ├── vcol_column_def_options_innodb.result │ │ ├── vcol_column_def_options_myisam.result │ │ ├── vcol_csv.result │ │ ├── vcol_handler_innodb.result │ │ ├── vcol_handler_maria.result │ │ ├── vcol_handler_myisam.result │ │ ├── vcol_ins_upd_innodb.result │ │ ├── vcol_ins_upd_myisam.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_innodb.result │ │ ├── vcol_supported_sql_funcs_myisam.result │ │ ├── vcol_syntax.result │ │ ├── vcol_trigger_sp_innodb.result │ │ ├── vcol_trigger_sp_myisam.result │ │ ├── vcol_view_innodb.result │ │ └── vcol_view_myisam.result │ │ └── t │ │ ├── rpl_vcol.test │ │ ├── vcol_archive.test │ │ ├── vcol_blackhole.test │ │ ├── vcol_blocked_sql_funcs_innodb.test │ │ ├── vcol_blocked_sql_funcs_myisam.test │ │ ├── vcol_column_def_options_innodb.test │ │ ├── vcol_column_def_options_myisam.test │ │ ├── vcol_csv.test │ │ ├── vcol_handler_innodb.test │ │ ├── vcol_handler_maria.test │ │ ├── vcol_handler_myisam.test │ │ ├── vcol_ins_upd_innodb.test │ │ ├── vcol_ins_upd_myisam.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_innodb.test │ │ ├── vcol_supported_sql_funcs_myisam.test │ │ ├── vcol_syntax.test │ │ ├── vcol_trigger_sp_innodb.test │ │ ├── vcol_trigger_sp_myisam.test │ │ ├── vcol_view_innodb.test │ │ └── vcol_view_myisam.test ├── t │ ├── 1st.test │ ├── aborted_clients.test │ ├── adddate_454.test │ ├── alias.test │ ├── almost_full.test │ ├── alter_table-big.test │ ├── alter_table.test │ ├── alter_table_online.test │ ├── alter_table_trans.test │ ├── analyze.test │ ├── ansi.test │ ├── auth_rpl-slave.opt │ ├── auth_rpl.test │ ├── auto_increment.test │ ├── auto_increment_ranges.inc │ ├── auto_increment_ranges_innodb.test │ ├── auto_increment_ranges_myisam.test │ ├── bench_count_distinct.test │ ├── bigint.test │ ├── binary.test │ ├── blackhole.test │ ├── blackhole_plugin.test │ ├── bool.test │ ├── bootstrap-master.opt │ ├── bootstrap.test │ ├── bug12427262.test │ ├── bug13633383.test │ ├── bug39022.test │ ├── bug46261-master.opt │ ├── bug46261.test │ ├── bug46760-master.opt │ ├── bug46760.test │ ├── bug47671-master.opt │ ├── bug47671.test │ ├── bug58669-master.opt │ ├── bug58669.test │ ├── bulk_replace.test │ ├── cache_innodb.test │ ├── cache_temporal_4265.test │ ├── case.test │ ├── cast.test │ ├── change_user.test │ ├── change_user_notembedded.test │ ├── check.test │ ├── client_xml.test │ ├── comment_column.test │ ├── comment_column2.test │ ├── comment_index.test │ ├── comment_table.test │ ├── comments.test │ ├── commit.test │ ├── commit_1innodb.test │ ├── compare.test │ ├── compress.test │ ├── concurrent_innodb_safelog-master.opt │ ├── concurrent_innodb_safelog.test │ ├── concurrent_innodb_unsafelog-master.opt │ ├── concurrent_innodb_unsafelog.test │ ├── connect.cnf │ ├── connect.test │ ├── consistent_snapshot.test │ ├── constraints.test │ ├── contributors.test │ ├── count_distinct.test │ ├── count_distinct2-master.opt │ ├── count_distinct2.test │ ├── count_distinct3.test │ ├── crash_commit_before-master.opt │ ├── crash_commit_before.test │ ├── create-big.test │ ├── create-uca.test │ ├── create.test │ ├── create_delayed.test │ ├── create_not_windows.test │ ├── create_select_tmp.test │ ├── ctype_ascii.test │ ├── ctype_big5.test │ ├── ctype_binary.test │ ├── ctype_collate.test │ ├── ctype_cp1250_ch.test │ ├── ctype_cp1251.test │ ├── ctype_cp932_binlog_row.test │ ├── ctype_cp932_binlog_stm.test │ ├── ctype_create.test │ ├── ctype_errors.test │ ├── ctype_eucjpms.test │ ├── ctype_euckr.test │ ├── ctype_filename.test │ ├── ctype_filesystem-master.opt │ ├── ctype_filesystem.test │ ├── ctype_gb2312.test │ ├── ctype_gbk.test │ ├── ctype_gbk_binlog.test │ ├── ctype_hebrew.test │ ├── ctype_latin1.test │ ├── ctype_latin1_de-master.opt │ ├── ctype_latin1_de.test │ ├── ctype_latin2.test │ ├── ctype_latin2_ch.test │ ├── ctype_ldml-master.opt │ ├── ctype_ldml.test │ ├── ctype_like_range.test │ ├── ctype_many.test │ ├── ctype_mb.test │ ├── ctype_recoding.test │ ├── ctype_sjis.test │ ├── ctype_tis620.test │ ├── ctype_uca.test │ ├── ctype_ucs.test │ ├── ctype_ucs2_def-master.opt │ ├── ctype_ucs2_def.test │ ├── ctype_ucs2_query_cache-master.opt │ ├── ctype_ucs2_query_cache.test │ ├── ctype_ujis.test │ ├── ctype_ujis_ucs2.test │ ├── ctype_utf16.test │ ├── ctype_utf16_def-master.opt │ ├── ctype_utf16_def.test │ ├── ctype_utf16_uca.test │ ├── ctype_utf32.test │ ├── ctype_utf32_uca.test │ ├── ctype_utf8-master.opt │ ├── ctype_utf8.test │ ├── ctype_utf8mb4-master.opt │ ├── ctype_utf8mb4.test │ ├── ctype_utf8mb4_heap.test │ ├── ctype_utf8mb4_innodb-master.opt │ ├── ctype_utf8mb4_innodb.test │ ├── ctype_utf8mb4_myisam.test │ ├── date_formats-master.opt │ ├── date_formats.test │ ├── datetime_456.test │ ├── ddl_i18n_koi8r.test │ ├── ddl_i18n_utf8.test │ ├── deadlock_innodb.test │ ├── debug_sync.test │ ├── default.test │ ├── default_storage_engine.test │ ├── delayed.test │ ├── delete.test │ ├── deprecated_features.test │ ├── derived.test │ ├── derived_opt.test │ ├── derived_view.test │ ├── dirty_close.test │ ├── distinct.test │ ├── drop-no_root.test │ ├── drop.test │ ├── drop_debug.test │ ├── dyncol.test │ ├── empty_table.test │ ├── empty_user_table.test │ ├── endspace.test │ ├── error_simulation.test │ ├── errors.test │ ├── events_1.test │ ├── events_2.test │ ├── events_bugs-master.opt │ ├── events_bugs.test │ ├── events_embedded.test │ ├── events_grant.test │ ├── events_logs_tests-master.opt │ ├── events_logs_tests.test │ ├── events_microsec.test │ ├── events_restart-master.opt │ ├── events_restart.test │ ├── events_scheduling.test │ ├── events_stress.test │ ├── events_time_zone.test │ ├── events_trans.test │ ├── events_trans_notembedded.test │ ├── execution_constants.test │ ├── explain.test │ ├── failed_auth_3909.test │ ├── features.test │ ├── file_contents.test │ ├── filesort_debug.test │ ├── fix_priv_tables.test │ ├── flush-innodb.test │ ├── flush.test │ ├── flush2-master.opt │ ├── flush2.test │ ├── flush_block_commit.test │ ├── flush_block_commit_notembedded.test │ ├── flush_read_lock.test │ ├── flush_read_lock_kill.test │ ├── flush_table.test │ ├── foreign_key.test │ ├── fulltext.test │ ├── fulltext2.test │ ├── fulltext3.test │ ├── fulltext_cache.test │ ├── fulltext_derived_4257.test │ ├── fulltext_derived_4316.test │ ├── fulltext_distinct.test │ ├── fulltext_left_join.test │ ├── fulltext_multi.test │ ├── fulltext_order_by.test │ ├── fulltext_update.test │ ├── fulltext_var.test │ ├── func_analyse.test │ ├── func_compress.test │ ├── func_concat.test │ ├── func_crypt.test │ ├── func_date_add.test │ ├── func_default.test │ ├── func_des_encrypt.test │ ├── func_digest.test │ ├── func_encrypt-master.opt │ ├── func_encrypt.test │ ├── func_encrypt_nossl.test │ ├── func_encrypt_ucs2.test │ ├── func_equal.test │ ├── func_gconcat.test │ ├── func_group.test │ ├── func_group_innodb.test │ ├── func_if.test │ ├── func_in.test │ ├── func_isnull.test │ ├── func_like.test │ ├── func_math.test │ ├── func_misc.test │ ├── func_op.test │ ├── func_regexp.test │ ├── func_rollback.test │ ├── func_sapdb.test │ ├── func_set.test │ ├── func_str.test │ ├── func_system.test │ ├── func_test.test │ ├── func_time.test │ ├── func_time_hires.test │ ├── func_timestamp.test │ ├── gcc296.test │ ├── gis-precise.test │ ├── gis-rt-precise.test │ ├── gis-rtree.test │ ├── gis.test │ ├── gis2.test │ ├── grant.test │ ├── grant2.test │ ├── grant3-master.opt │ ├── grant3.test │ ├── grant4.test │ ├── grant_4332.test │ ├── grant_cache_no_prot.test │ ├── grant_cache_ps_prot.test │ ├── grant_lowercase.opt │ ├── grant_lowercase.test │ ├── grant_lowercase_fs.test │ ├── greedy_optimizer.test │ ├── group_by.test │ ├── group_by_innodb.test │ ├── group_min_max.test │ ├── group_min_max_innodb.test │ ├── handler_read_last.test │ ├── handlersocket.test │ ├── having.test │ ├── help.test │ ├── implicit_char_to_num_conversion.test │ ├── implicit_commit-master.opt │ ├── implicit_commit.test │ ├── in_datetime_241.test │ ├── index_intersect.test │ ├── index_intersect_innodb.test │ ├── index_merge_innodb.test │ ├── index_merge_myisam.test │ ├── information_schema-big.test │ ├── information_schema.test │ ├── information_schema2.test │ ├── information_schema_all_engines-master.opt │ ├── information_schema_all_engines.test │ ├── information_schema_chmod.test │ ├── information_schema_db.test │ ├── information_schema_inno.test │ ├── information_schema_parameters.test │ ├── information_schema_part.test │ ├── information_schema_routines.test │ ├── init_connect-master.opt │ ├── init_connect.test │ ├── init_connection_query_cache-master.opt │ ├── init_connection_query_cache.test │ ├── init_file-master.opt │ ├── init_file.test │ ├── innodb_bug878769.test │ ├── innodb_ext_key.test │ ├── innodb_icp.test │ ├── innodb_ignore_builtin-master.opt │ ├── innodb_ignore_builtin.test │ ├── innodb_mrr_cpk.test │ ├── innodb_mysql_lock-master.opt │ ├── innodb_mysql_lock.test │ ├── innodb_mysql_lock2.test │ ├── innodb_mysql_sync.test │ ├── innodb_utf8.test │ ├── insert.test │ ├── insert_notembedded.test │ ├── insert_select.test │ ├── insert_update.test │ ├── ipv4_as_ipv6-master.opt │ ├── ipv4_as_ipv6.test │ ├── ipv6-master.opt │ ├── ipv6.test │ ├── join.test │ ├── join_cache.test │ ├── join_crash.test │ ├── join_nested.test │ ├── join_nested_jcl6.test │ ├── join_optimizer.test │ ├── join_outer.test │ ├── join_outer_innodb.test │ ├── join_outer_jcl6.test │ ├── key.test │ ├── key_cache-master.opt │ ├── key_cache.test │ ├── key_diff.test │ ├── key_primary.test │ ├── keywords.test │ ├── kill.test │ ├── last_value.test │ ├── limit.test │ ├── limit_rows_examined.test │ ├── loaddata.test │ ├── loaddata_autocom_innodb.test │ ├── loadxml.test │ ├── locale.test │ ├── lock.test │ ├── lock_multi.test │ ├── lock_multi_bug38499.test │ ├── lock_multi_bug38691.test │ ├── lock_sync-master.opt │ ├── lock_sync.test │ ├── lock_tables_lost_commit-master.opt │ ├── lock_tables_lost_commit.test │ ├── log_slow.test │ ├── log_state-master.opt │ ├── log_state.test │ ├── log_state_bug33693-master.opt │ ├── log_state_bug33693.test │ ├── log_tables-big-master.opt │ ├── log_tables-big.test │ ├── log_tables-master.opt │ ├── log_tables.test │ ├── log_tables_debug.test │ ├── log_tables_upgrade.test │ ├── long_tmpdir-master.opt │ ├── long_tmpdir-master.sh │ ├── long_tmpdir.test │ ├── lowercase_fs_off.test │ ├── lowercase_mixed_tmpdir-master.opt │ ├── lowercase_mixed_tmpdir-master.sh │ ├── lowercase_mixed_tmpdir.test │ ├── lowercase_mixed_tmpdir_innodb-master.opt │ ├── lowercase_mixed_tmpdir_innodb-master.sh │ ├── lowercase_mixed_tmpdir_innodb.test │ ├── lowercase_table-master.opt │ ├── lowercase_table.test │ ├── lowercase_table2.test │ ├── lowercase_table3-master.opt │ ├── lowercase_table3.test │ ├── lowercase_table4-master.opt │ ├── lowercase_table4.test │ ├── lowercase_table_grant-master.opt │ ├── lowercase_table_grant.test │ ├── lowercase_table_qcache-master.opt │ ├── lowercase_table_qcache.test │ ├── lowercase_utf8-master.opt │ ├── lowercase_utf8.test │ ├── lowercase_view-master.opt │ ├── lowercase_view.test │ ├── mdev316.test │ ├── mdev375.test │ ├── mdl_sync-master.opt │ ├── mdl_sync.test │ ├── merge-big.test │ ├── merge.test │ ├── merge_debug.test │ ├── merge_innodb.test │ ├── merge_mmap-master.opt │ ├── merge_mmap.test │ ├── merge_recover-master.opt │ ├── merge_recover.test │ ├── metadata.test │ ├── mix2_myisam.test │ ├── mix2_myisam_ucs2.test │ ├── mrr_derived_crash_4610.test │ ├── mrr_icp_extra.test │ ├── multi_statement-master.opt │ ├── multi_statement.test │ ├── multi_update-master.opt │ ├── multi_update.test │ ├── multi_update2-master.opt │ ├── multi_update2.test │ ├── multi_update_innodb.test │ ├── multi_update_tiny_hash-master.opt │ ├── multi_update_tiny_hash.test │ ├── myisam-big.test │ ├── myisam-blob-master.opt │ ├── myisam-blob.test │ ├── myisam-master.opt │ ├── myisam-metadata.test │ ├── myisam-system.test │ ├── myisam.test │ ├── myisam_crash_before_flush_keys-master.opt │ ├── myisam_crash_before_flush_keys.test │ ├── myisam_debug.test │ ├── myisam_icp.test │ ├── myisam_icp_notembedded.test │ ├── myisam_mrr.test │ ├── myisampack.test │ ├── mysql-bug41486.test │ ├── mysql-bug45236.test │ ├── mysql.test │ ├── mysql_binary_mode.test │ ├── mysql_client_test-master.opt │ ├── mysql_client_test.test │ ├── mysql_client_test_nonblock-master.opt │ ├── mysql_client_test_nonblock.test │ ├── mysql_comments.sql │ ├── mysql_comments.test │ ├── mysql_cp932.test │ ├── mysql_delimiter.sql │ ├── mysql_delimiter_19799.sql │ ├── mysql_delimiter_source.sql │ ├── mysql_embedded.test │ ├── mysql_locale_posix.test │ ├── mysql_not_windows.test │ ├── mysql_plugin-master.opt │ ├── mysql_plugin.test │ ├── mysql_protocols.test │ ├── mysql_upgrade.test │ ├── mysql_upgrade_ssl.test │ ├── mysqladmin.test │ ├── mysqlbinlog-innodb.test │ ├── mysqlbinlog-master.opt │ ├── mysqlbinlog.test │ ├── mysqlbinlog_row_big.test │ ├── mysqlcheck.test │ ├── mysqld--defaults-file.test │ ├── mysqld--help.test │ ├── mysqld_option_err.test │ ├── mysqldump-compat.opt │ ├── mysqldump-compat.test │ ├── mysqldump-max-master.opt │ ├── mysqldump-max.test │ ├── mysqldump-no-binlog-master.opt │ ├── mysqldump-no-binlog.test │ ├── mysqldump.test │ ├── mysqldump_restore.test │ ├── mysqlhotcopy_myisam.test │ ├── mysqlshow.test │ ├── mysqlslap.test │ ├── mysqltest.test │ ├── mysqltest_256.test │ ├── mysqltest_cont_on_error.test │ ├── mysqltest_ps.test │ ├── named_pipe-master.opt │ ├── named_pipe.test │ ├── negation_elimination.test │ ├── no-threads-master.opt │ ├── no-threads.test │ ├── no_binlog.test │ ├── non_blocking_api.test │ ├── not_embedded_server.test │ ├── not_partition.test │ ├── null.test │ ├── null_key.test │ ├── odbc.test │ ├── olap.test │ ├── old-mode-master.opt │ ├── old-mode.test │ ├── openssl_1.test │ ├── order_by.test │ ├── order_fill_sortbuf.test │ ├── outfile.test │ ├── outfile_loaddata.test │ ├── overflow.test │ ├── packet.test │ ├── parser.test │ ├── parser_bug21114_innodb.test │ ├── parser_not_embedded.test │ ├── parser_precedence.test │ ├── parser_stack.test │ ├── partition-master.opt │ ├── partition.test │ ├── partition_binlog.test │ ├── partition_binlog_stmt.test │ ├── partition_blackhole.test │ ├── partition_bug18198.test │ ├── partition_cache.test │ ├── partition_cache_innodb.test │ ├── partition_cache_myisam.test │ ├── partition_charset.test │ ├── partition_column.test │ ├── partition_column_prune.test │ ├── partition_csv.test │ ├── partition_datatype.test │ ├── partition_debug_sync.test │ ├── partition_disabled-master.opt │ ├── partition_disabled.test │ ├── partition_error.test │ ├── partition_example.test │ ├── partition_grant.test │ ├── partition_hash.test │ ├── partition_innodb.test │ ├── partition_innodb_plugin.test │ ├── partition_innodb_semi_consistent-master.opt │ ├── partition_innodb_semi_consistent.test │ ├── partition_innodb_stmt.test │ ├── partition_key_cache.test │ ├── partition_list.test │ ├── partition_mgm.test │ ├── partition_mgm_err.test │ ├── partition_mgm_err2.test │ ├── partition_myisam.test │ ├── partition_not_blackhole-master.opt │ ├── partition_not_blackhole.test │ ├── partition_not_windows-master.opt │ ├── partition_not_windows.test │ ├── partition_open_files_limit-master.opt │ ├── partition_open_files_limit.test │ ├── partition_order.test │ ├── partition_pruning.test │ ├── partition_range.test │ ├── partition_rename_longfilename.test │ ├── partition_symlink.test │ ├── partition_sync.test │ ├── partition_truncate.test │ ├── partition_utf8.test │ ├── partition_windows.test │ ├── perror-win.test │ ├── perror.test │ ├── plugin.test │ ├── plugin_auth.test │ ├── plugin_auth_qa.test │ ├── plugin_auth_qa_1.test │ ├── plugin_auth_qa_2-master.opt │ ├── plugin_auth_qa_2.test │ ├── plugin_auth_qa_3-master.opt │ ├── plugin_auth_qa_3.test │ ├── plugin_innodb.test │ ├── plugin_load-master.opt │ ├── plugin_load.test │ ├── plugin_load_option-master.opt │ ├── plugin_load_option.test │ ├── plugin_loaderr.opt │ ├── plugin_loaderr.test │ ├── plugin_maturity-master.opt │ ├── plugin_maturity.test │ ├── plugin_not_embedded.test │ ├── pool_of_threads.cnf │ ├── pool_of_threads.test │ ├── preload.test │ ├── processlist.test │ ├── profiling.test │ ├── progress_976225.test │ ├── ps-master.opt │ ├── ps.test │ ├── ps_10nestset.test │ ├── ps_11bugs.test │ ├── ps_1general.test │ ├── ps_2myisam.test │ ├── ps_3innodb-master.opt │ ├── ps_3innodb.test │ ├── ps_4heap.test │ ├── ps_5merge.test │ ├── ps_ddl.test │ ├── ps_ddl1.test │ ├── ps_grant.test │ ├── ps_not_windows.test │ ├── query_cache.test │ ├── query_cache_28249.test │ ├── query_cache_debug.test │ ├── query_cache_merge.test │ ├── query_cache_notembedded.test │ ├── query_cache_ps_no_prot.test │ ├── query_cache_ps_ps_prot.test │ ├── query_cache_with_views.test │ ├── quick_select_4161.test │ ├── range.test │ ├── range_mrr_icp.test │ ├── range_vs_index_merge.test │ ├── range_vs_index_merge_innodb.test │ ├── read_many_rows_innodb.test │ ├── read_only.test │ ├── read_only_innodb.test │ ├── rename.test │ ├── renamedb.test │ ├── repair.test │ ├── replace.test │ ├── rollback.test │ ├── round.test │ ├── row-checksum-old-master.opt │ ├── row-checksum-old.test │ ├── row-checksum.test │ ├── row.test │ ├── rowid_order_innodb.test │ ├── rpl_mysqldump_slave.test │ ├── schema.test │ ├── secure_file_priv_win-master.opt │ ├── secure_file_priv_win.test │ ├── select.test │ ├── select_debug.test │ ├── select_found.test │ ├── select_jcl6.test │ ├── select_pkeycache-master.opt │ ├── select_pkeycache.test │ ├── select_safe.test │ ├── shm-master.opt │ ├── shm.test │ ├── show_check-master.opt │ ├── show_check.test │ ├── show_profile.test │ ├── signal.test │ ├── signal_code.test │ ├── signal_demo1.test │ ├── signal_demo2.test │ ├── signal_demo3.test │ ├── signal_sqlmode.test │ ├── single_delete_update.test │ ├── skip_grants-master.opt │ ├── skip_grants.test │ ├── skip_log_bin-master.opt │ ├── skip_log_bin.test │ ├── skip_name_resolve-master.opt │ ├── skip_name_resolve.test │ ├── sp-big.test │ ├── sp-bugs.test │ ├── sp-code.test │ ├── sp-destruct.test │ ├── sp-dynamic.test │ ├── sp-error.test │ ├── sp-fib.test │ ├── sp-lock.test │ ├── sp-no-code.test │ ├── sp-prelocking.test │ ├── sp-security.test │ ├── sp-threads.test │ ├── sp-ucs2.test │ ├── sp-vars.test │ ├── sp.test │ ├── sp_gis.test │ ├── sp_missing_4665.test │ ├── sp_notembedded.test │ ├── sp_stress_case.test │ ├── sp_sync.test │ ├── sp_trans.test │ ├── sp_trans_log.test │ ├── sql_mode.test │ ├── ssl-big.test │ ├── ssl.test │ ├── ssl_8k_key-master.opt │ ├── ssl_8k_key.test │ ├── ssl_and_innodb.test │ ├── ssl_cipher-master.opt │ ├── ssl_cipher.test │ ├── ssl_compress.test │ ├── ssl_connect.test │ ├── status-master.opt │ ├── status.test │ ├── status2.test │ ├── status_bug17954.test │ ├── status_user.test │ ├── strict-master.opt │ ├── strict.test │ ├── strict_autoinc_1myisam.test │ ├── strict_autoinc_2innodb.test │ ├── strict_autoinc_3heap.test │ ├── subselect.test │ ├── subselect2.test │ ├── subselect3.test │ ├── subselect3_jcl6.test │ ├── subselect4.test │ ├── subselect_cache.test │ ├── subselect_debug.test │ ├── subselect_extra.test │ ├── subselect_extra_no_semijoin.test │ ├── subselect_gis.test │ ├── subselect_innodb.test │ ├── subselect_mat.test │ ├── subselect_mat_cost-master.opt │ ├── subselect_mat_cost.test │ ├── subselect_mat_cost_bugs.test │ ├── subselect_no_mat.test │ ├── subselect_no_opts.test │ ├── subselect_no_scache.test │ ├── subselect_no_semijoin.test │ ├── subselect_notembedded.test │ ├── subselect_nulls.test │ ├── subselect_partial_match.test │ ├── subselect_sj.test │ ├── subselect_sj2.test │ ├── subselect_sj2_jcl6.test │ ├── subselect_sj2_mat.test │ ├── subselect_sj_aria.test │ ├── subselect_sj_jcl6.test │ ├── subselect_sj_mat.test │ ├── subselect_sj_nonmerged.test │ ├── sum_distinct-big.test │ ├── sum_distinct.test │ ├── symlink.test │ ├── synchronization.test │ ├── sysdate_is_now-master.opt │ ├── sysdate_is_now.test │ ├── system_mysql_db.test │ ├── system_mysql_db_fix40123.test │ ├── system_mysql_db_fix50030.test │ ├── system_mysql_db_fix50117.test │ ├── system_mysql_db_refs.test │ ├── table_elim.test │ ├── table_elim_debug.test │ ├── table_options.test │ ├── tablelock.test │ ├── tablespace.test │ ├── temp_table-master.opt │ ├── temp_table.test │ ├── temporal_scale_4283.test │ ├── timezone-master.opt │ ├── timezone.test │ ├── timezone2.test │ ├── timezone3-master.opt │ ├── timezone3.test │ ├── timezone4-master.opt │ ├── timezone4.test │ ├── timezone_grant.test │ ├── trigger-compat.test │ ├── trigger-trans.test │ ├── trigger.test │ ├── trigger_notembedded.test │ ├── truncate.test │ ├── truncate_coverage.test │ ├── type_binary.test │ ├── type_bit.test │ ├── type_bit_innodb.test │ ├── type_blob.test │ ├── type_date.test │ ├── type_datetime.test │ ├── type_datetime_hires.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_time.test │ ├── type_time_hires.test │ ├── type_timestamp.test │ ├── type_timestamp_hires.test │ ├── type_uint.test │ ├── type_varchar.test │ ├── type_year.test │ ├── udf.test │ ├── udf_query_cache.test │ ├── udf_skip_grants-master.opt │ ├── udf_skip_grants.test │ ├── union-master.opt │ ├── union.test │ ├── unsafe_binlog_innodb-master.opt │ ├── unsafe_binlog_innodb.test │ ├── update.test │ ├── update_ignore_216.test │ ├── upgrade.test │ ├── user_limits-master.opt │ ├── user_limits.test │ ├── user_var-binlog.test │ ├── user_var.test │ ├── varbinary.test │ ├── variables-master.opt │ ├── variables-notembedded-master.opt │ ├── variables-notembedded.test │ ├── variables.test │ ├── variables_community.test │ ├── view.test │ ├── view_alias.test │ ├── view_grant.test │ ├── wait_timeout.test │ ├── warnings-master.opt │ ├── warnings.test │ ├── warnings_debug.test │ ├── warnings_engine_disabled.test │ ├── windows.test │ ├── wl4435_generated.inc │ ├── xa.test │ ├── xa_binlog.test │ ├── xml.test │ └── xtradb_mrr.test └── valgrind.supp ├── mysys ├── CMakeLists.txt ├── ChangeLog ├── array.c ├── base64.c ├── charset-def.c ├── charset.c ├── checksum.c ├── default.c ├── errors.c ├── hash.c ├── lf_alloc-pin.c ├── lf_dynarray.c ├── lf_hash.c ├── list.c ├── ma_dyncol.c ├── md5.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_aes.c ├── my_alarm.c ├── my_alloc.c ├── my_atomic.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_crc32.c ├── my_create.c ├── my_delete.c ├── my_div.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_handler_errors.h ├── my_init.c ├── my_largepage.c ├── my_lib.c ├── my_libwrap.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_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 ├── ptr_cmp.c ├── queues.c ├── rijndael.c ├── safemalloc.c ├── sha1.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 ├── tree.c ├── typelib.c ├── waiting_threads.c └── wqueue.c ├── packaging ├── WiX │ ├── AdminBackground.jpg │ ├── AdminHeader.jpg │ ├── CMakeLists.txt │ ├── CPackWixConfig.cmake │ ├── MySQLServer.ico │ ├── ca │ │ ├── CMakeLists.txt │ │ ├── CustomAction.cpp │ │ └── CustomAction.def │ ├── create_msi.cmake.in │ ├── custom_ui.wxs │ ├── extra.wxs.in │ └── mysql_server.wxs.in ├── rpm-uln │ ├── CMakeLists.txt │ ├── README-ULN │ ├── README.mysql-docs │ ├── filter-requires-mysql.sh │ ├── generate-tarball.sh │ ├── my.cnf │ ├── my_config.h │ ├── mysql-5.5-errno.patch │ ├── mysql-5.5-fix-tests.patch │ ├── mysql-5.5-libdir.patch │ ├── mysql-5.5-mtr1.patch │ ├── mysql-5.5-stack-guard.patch │ ├── mysql-5.5-testing.patch │ ├── mysql-chain-certs.patch │ ├── mysql-embedded-check.c │ ├── mysql-expired-certs.patch │ ├── mysql-install-test.patch │ ├── mysql-strmov.patch │ ├── mysql.init │ ├── mysql.spec.sh │ └── scriptstub.c └── solaris │ ├── CMakeLists.txt │ └── postinstall-solaris.sh ├── plugin ├── audit_null │ ├── CMakeLists.txt │ └── audit_null.c ├── auth_dialog │ ├── CMakeLists.txt │ └── dialog.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_pam │ ├── CMakeLists.txt │ ├── auth_pam.c │ ├── mapper │ │ └── pam_user_map.c │ └── testing │ │ └── pam_mariadb_mtr.c ├── auth_socket │ ├── CMakeLists.txt │ └── auth_socket.c ├── daemon_example │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NEWS │ ├── README │ ├── daemon_example.cc │ └── daemon_example.ini ├── feedback │ ├── CMakeLists.txt │ ├── feedback.cc │ ├── feedback.h │ ├── sender_thread.cc │ ├── url_base.cc │ ├── url_http.cc │ └── utils.cc ├── 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 │ ├── plug.in │ └── 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 ├── qc_info │ ├── CMakeLists.txt │ └── qc_info.cc ├── semisync │ ├── CMakeLists.txt │ ├── semisync.cc │ ├── semisync.h │ ├── semisync_master.cc │ ├── semisync_master.h │ ├── semisync_master_plugin.cc │ ├── semisync_slave.cc │ ├── semisync_slave.h │ └── semisync_slave_plugin.cc ├── sql_errlog │ ├── CMakeLists.txt │ ├── logger_service.c │ ├── service_logger.h │ ├── sql_errlog.c │ └── sql_logger.cc └── win_auth_client │ ├── CMakeLists.txt │ ├── common.cc │ ├── common.h │ ├── handshake.cc │ ├── handshake.h │ ├── handshake_client.cc │ ├── log_client.cc │ └── plugin_client.cc ├── randgen └── conf │ └── maria_group_commit.yy ├── regex ├── CHANGES ├── CMakeLists.txt ├── COPYRIGHT ├── README ├── WHATSNEW ├── cclass.h ├── cname.h ├── debug.c ├── debug.ih ├── engine.c ├── engine.ih ├── main.c ├── main.ih ├── my_regex.h ├── regcomp.c ├── regcomp.ih ├── regerror.c ├── regerror.ih ├── regex.3 ├── regex.7 ├── regex2.h ├── regexec.c ├── regexp.c ├── regfree.c ├── reginit.c ├── split.c ├── tests └── utils.h ├── scripts ├── CMakeLists.txt ├── comp_sql.c ├── convert-debug-for-diff.sh ├── dheadgen.pl ├── fill_help_tables.sql ├── make_binary_distribution.sh ├── make_win_bin_dist ├── 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.pl.in ├── 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_zap.sh ├── mysqlaccess.conf ├── mysqlaccess.sh ├── mysqlbug.sh ├── mysqld_multi.sh ├── mysqld_safe.sh ├── mysqldumpslow.sh ├── mysqlhotcopy.sh └── mytop.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 ├── my_time.c ├── my_user.c ├── mysql_async.c └── pack.c ├── sql ├── CMakeLists.txt ├── MSG00001.bin ├── add_errmsg ├── authors.h ├── client_settings.h ├── contributors.h ├── create_options.cc ├── create_options.h ├── custom_conf.h ├── datadict.cc ├── datadict.h ├── db.opt ├── debug_sync.cc ├── debug_sync.h ├── derror.cc ├── derror.h ├── des_key_file.cc ├── des_key_file.h ├── discover.cc ├── discover.h ├── 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 ├── examples │ └── CMakeLists.txt ├── field.cc ├── field.h ├── field_conv.cc ├── filesort.cc ├── filesort.h ├── frm_crypt.cc ├── frm_crypt.h ├── gcalc_slicescan.cc ├── gcalc_slicescan.h ├── gcalc_tools.cc ├── gcalc_tools.h ├── gen_lex_hash.cc ├── gstream.cc ├── gstream.h ├── ha_ndbcluster.cc ├── ha_ndbcluster.h ├── ha_ndbcluster_binlog.cc ├── ha_ndbcluster_binlog.h ├── ha_ndbcluster_cond.cc ├── ha_ndbcluster_cond.h ├── ha_ndbcluster_tables.h ├── ha_partition.cc ├── ha_partition.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_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_xmlfunc.cc ├── item_xmlfunc.h ├── key.cc ├── key.h ├── keycaches.cc ├── keycaches.h ├── lex.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 ├── mdl.cc ├── mdl.h ├── mem_root_array.h ├── message.h ├── message.mc ├── message.rc ├── mf_iocache.cc ├── multi_range_read.cc ├── multi_range_read.h ├── my_decimal.cc ├── my_decimal.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_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 ├── records.cc ├── records.h ├── repl_failsafe.cc ├── repl_failsafe.h ├── replication.h ├── rpl_constants.h ├── rpl_filter.cc ├── rpl_filter.h ├── rpl_handler.cc ├── rpl_handler.h ├── rpl_injector.cc ├── rpl_injector.h ├── rpl_mi.cc ├── rpl_mi.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 ├── set_var.cc ├── set_var.h ├── sha2.cc ├── 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_alter.cc ├── sql_alter.h ├── sql_analyse.cc ├── sql_analyse.h ├── sql_array.h ├── sql_audit.cc ├── sql_audit.h ├── sql_base.cc ├── sql_base.h ├── sql_binlog.cc ├── sql_binlog.h ├── sql_bitmap.h ├── sql_builtin.cc.in ├── sql_cache.cc ├── sql_cache.h ├── sql_callback.h ├── sql_class.cc ├── sql_class.h ├── sql_client.cc ├── sql_connect.cc ├── sql_connect.h ├── sql_const.h ├── sql_crypt.cc ├── sql_crypt.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_do.cc ├── sql_do.h ├── sql_error.cc ├── sql_error.h ├── sql_expression_cache.cc ├── sql_expression_cache.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.h ├── 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_servers.cc ├── sql_servers.h ├── sql_show.cc ├── sql_show.h ├── sql_signal.cc ├── sql_signal.h ├── sql_sort.h ├── sql_state.c ├── 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_udf.cc ├── sql_udf.h ├── sql_union.cc ├── sql_union.h ├── sql_update.cc ├── sql_update.h ├── sql_view.cc ├── sql_view.h ├── sql_yacc.yy ├── strfunc.cc ├── strfunc.h ├── structs.h ├── sys_vars.cc ├── sys_vars.h ├── sys_vars_shared.h ├── table.cc ├── table.h ├── thr_malloc.cc ├── thr_malloc.h ├── threadpool.h ├── threadpool_common.cc ├── threadpool_unix.cc ├── threadpool_win.cc ├── transaction.cc ├── transaction.h ├── tzfile.h ├── tztime.cc ├── tztime.h ├── udf_example.c ├── udf_example.def ├── uniques.cc ├── unireg.cc ├── unireg.h ├── winservice.c └── winservice.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 ├── 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 │ ├── Doxyfile │ ├── btr │ │ ├── btr0btr.c │ │ ├── btr0cur.c │ │ ├── btr0pcur.c │ │ └── btr0sea.c │ ├── buf │ │ ├── buf0buddy.c │ │ ├── buf0buf.c │ │ ├── buf0flu.c │ │ ├── buf0lru.c │ │ └── buf0rea.c │ ├── compile-innodb │ ├── data │ │ ├── data0data.c │ │ └── data0type.c │ ├── dict │ │ ├── dict0boot.c │ │ ├── dict0crea.c │ │ ├── dict0dict.c │ │ ├── dict0load.c │ │ └── dict0mem.c │ ├── dyn │ │ └── dyn0dyn.c │ ├── eval │ │ ├── eval0eval.c │ │ └── eval0proc.c │ ├── fil │ │ └── fil0fil.c │ ├── fsp │ │ └── fsp0fsp.c │ ├── fut │ │ ├── fut0fut.c │ │ └── fut0lst.c │ ├── ha │ │ ├── ha0ha.c │ │ ├── ha0storage.c │ │ └── hash0hash.c │ ├── ha_innodb.def │ ├── handler │ │ ├── ha_innodb.cc │ │ ├── ha_innodb.h │ │ ├── handler0alter.cc │ │ ├── i_s.cc │ │ └── i_s.h │ ├── ibuf │ │ └── ibuf0ibuf.c │ ├── include │ │ ├── btr0btr.h │ │ ├── btr0btr.ic │ │ ├── btr0cur.h │ │ ├── btr0cur.ic │ │ ├── btr0pcur.h │ │ ├── btr0pcur.ic │ │ ├── btr0sea.h │ │ ├── btr0sea.ic │ │ ├── btr0types.h │ │ ├── buf0buddy.h │ │ ├── buf0buddy.ic │ │ ├── buf0buf.h │ │ ├── buf0buf.ic │ │ ├── buf0flu.h │ │ ├── buf0flu.ic │ │ ├── buf0lru.h │ │ ├── buf0lru.ic │ │ ├── buf0rea.h │ │ ├── buf0types.h │ │ ├── data0data.h │ │ ├── data0data.ic │ │ ├── data0type.h │ │ ├── data0type.ic │ │ ├── data0types.h │ │ ├── db0err.h │ │ ├── dict0boot.h │ │ ├── dict0boot.ic │ │ ├── dict0crea.h │ │ ├── dict0crea.ic │ │ ├── dict0dict.h │ │ ├── dict0dict.ic │ │ ├── dict0load.h │ │ ├── dict0load.ic │ │ ├── dict0mem.h │ │ ├── dict0mem.ic │ │ ├── dict0types.h │ │ ├── dyn0dyn.h │ │ ├── dyn0dyn.ic │ │ ├── eval0eval.h │ │ ├── eval0eval.ic │ │ ├── eval0proc.h │ │ ├── eval0proc.ic │ │ ├── fil0fil.h │ │ ├── fsp0fsp.h │ │ ├── fsp0fsp.ic │ │ ├── fsp0types.h │ │ ├── fut0fut.h │ │ ├── fut0fut.ic │ │ ├── fut0lst.h │ │ ├── fut0lst.ic │ │ ├── ha0ha.h │ │ ├── ha0ha.ic │ │ ├── ha0storage.h │ │ ├── ha0storage.ic │ │ ├── ha_prototypes.h │ │ ├── handler0alter.h │ │ ├── hash0hash.h │ │ ├── hash0hash.ic │ │ ├── ibuf0ibuf.h │ │ ├── ibuf0ibuf.ic │ │ ├── ibuf0types.h │ │ ├── lock0iter.h │ │ ├── lock0lock.h │ │ ├── lock0lock.ic │ │ ├── lock0priv.h │ │ ├── lock0priv.ic │ │ ├── lock0types.h │ │ ├── log0log.h │ │ ├── log0log.ic │ │ ├── log0recv.h │ │ ├── log0recv.ic │ │ ├── mach0data.h │ │ ├── mach0data.ic │ │ ├── mem0dbg.h │ │ ├── mem0dbg.ic │ │ ├── mem0mem.h │ │ ├── mem0mem.ic │ │ ├── mem0pool.h │ │ ├── mem0pool.ic │ │ ├── mtr0log.h │ │ ├── mtr0log.ic │ │ ├── mtr0mtr.h │ │ ├── mtr0mtr.ic │ │ ├── mtr0types.h │ │ ├── os0file.h │ │ ├── os0file.ic │ │ ├── os0proc.h │ │ ├── os0proc.ic │ │ ├── os0sync.h │ │ ├── os0sync.ic │ │ ├── os0thread.h │ │ ├── os0thread.ic │ │ ├── page0cur.h │ │ ├── page0cur.ic │ │ ├── page0page.h │ │ ├── page0page.ic │ │ ├── page0types.h │ │ ├── page0zip.h │ │ ├── page0zip.ic │ │ ├── pars0grm.h │ │ ├── pars0opt.h │ │ ├── pars0opt.ic │ │ ├── pars0pars.h │ │ ├── pars0pars.ic │ │ ├── pars0sym.h │ │ ├── pars0sym.ic │ │ ├── pars0types.h │ │ ├── que0que.h │ │ ├── que0que.ic │ │ ├── que0types.h │ │ ├── read0read.h │ │ ├── read0read.ic │ │ ├── read0types.h │ │ ├── rem0cmp.h │ │ ├── rem0cmp.ic │ │ ├── rem0rec.h │ │ ├── rem0rec.ic │ │ ├── rem0types.h │ │ ├── row0ext.h │ │ ├── row0ext.ic │ │ ├── row0ins.h │ │ ├── row0ins.ic │ │ ├── row0merge.h │ │ ├── row0mysql.h │ │ ├── row0mysql.ic │ │ ├── row0purge.h │ │ ├── row0purge.ic │ │ ├── row0row.h │ │ ├── row0row.ic │ │ ├── row0sel.h │ │ ├── row0sel.ic │ │ ├── row0types.h │ │ ├── row0uins.h │ │ ├── row0uins.ic │ │ ├── row0umod.h │ │ ├── row0umod.ic │ │ ├── row0undo.h │ │ ├── row0undo.ic │ │ ├── row0upd.h │ │ ├── row0upd.ic │ │ ├── row0vers.h │ │ ├── row0vers.ic │ │ ├── srv0srv.h │ │ ├── srv0srv.ic │ │ ├── srv0start.h │ │ ├── sync0arr.h │ │ ├── sync0arr.ic │ │ ├── sync0rw.h │ │ ├── sync0rw.ic │ │ ├── sync0sync.h │ │ ├── sync0sync.ic │ │ ├── sync0types.h │ │ ├── trx0i_s.h │ │ ├── trx0purge.h │ │ ├── trx0purge.ic │ │ ├── trx0rec.h │ │ ├── trx0rec.ic │ │ ├── trx0roll.h │ │ ├── trx0roll.ic │ │ ├── trx0rseg.h │ │ ├── trx0rseg.ic │ │ ├── trx0sys.h │ │ ├── trx0sys.ic │ │ ├── trx0trx.h │ │ ├── trx0trx.ic │ │ ├── trx0types.h │ │ ├── trx0undo.h │ │ ├── trx0undo.ic │ │ ├── trx0xa.h │ │ ├── univ.i │ │ ├── usr0sess.h │ │ ├── usr0sess.ic │ │ ├── usr0types.h │ │ ├── ut0bh.h │ │ ├── ut0bh.ic │ │ ├── ut0byte.h │ │ ├── ut0byte.ic │ │ ├── ut0dbg.h │ │ ├── ut0list.h │ │ ├── ut0list.ic │ │ ├── ut0lst.h │ │ ├── ut0mem.h │ │ ├── ut0mem.ic │ │ ├── ut0rbt.h │ │ ├── ut0rnd.h │ │ ├── ut0rnd.ic │ │ ├── ut0sort.h │ │ ├── ut0ut.h │ │ ├── ut0ut.ic │ │ ├── ut0vec.h │ │ ├── ut0vec.ic │ │ └── ut0wqueue.h │ ├── lock │ │ ├── lock0iter.c │ │ └── lock0lock.c │ ├── log │ │ ├── log0log.c │ │ └── log0recv.c │ ├── mach │ │ └── mach0data.c │ ├── mem │ │ ├── mem0dbg.c │ │ ├── mem0mem.c │ │ └── mem0pool.c │ ├── mtr │ │ ├── mtr0log.c │ │ └── mtr0mtr.c │ ├── mysql-test │ │ └── storage_engine │ │ │ ├── alter_tablespace.opt │ │ │ ├── autoinc_secondary.rdiff │ │ │ ├── cache_index.rdiff │ │ │ ├── checksum_table_live.rdiff │ │ │ ├── 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 │ │ │ ├── optimize_table.rdiff │ │ │ ├── repair_table.rdiff │ │ │ └── suite.opt │ │ │ ├── repair_table.rdiff │ │ │ ├── suite.opt │ │ │ ├── tbl_opt_data_index_dir.rdiff │ │ │ ├── tbl_opt_insert_method.rdiff │ │ │ ├── tbl_opt_key_block_size.opt │ │ │ ├── tbl_opt_row_format.opt │ │ │ ├── tbl_opt_row_format.rdiff │ │ │ ├── tbl_opt_union.rdiff │ │ │ ├── trx │ │ │ ├── disabled.def │ │ │ └── suite.opt │ │ │ ├── type_char_indexes.rdiff │ │ │ ├── type_float_indexes.rdiff │ │ │ ├── type_spatial_indexes.rdiff │ │ │ └── vcol.rdiff │ ├── os │ │ ├── os0file.c │ │ ├── os0proc.c │ │ ├── os0sync.c │ │ └── os0thread.c │ ├── page │ │ ├── page0cur.c │ │ ├── page0page.c │ │ └── page0zip.c │ ├── pars │ │ ├── lexyy.c │ │ ├── make_bison.sh │ │ ├── make_flex.sh │ │ ├── pars0grm.c │ │ ├── pars0grm.y │ │ ├── pars0lex.l │ │ ├── pars0opt.c │ │ ├── pars0pars.c │ │ └── pars0sym.c │ ├── plugin_exports │ ├── que │ │ └── que0que.c │ ├── read │ │ └── read0read.c │ ├── rem │ │ ├── rem0cmp.c │ │ └── rem0rec.c │ ├── row │ │ ├── row0ext.c │ │ ├── row0ins.c │ │ ├── row0merge.c │ │ ├── row0mysql.c │ │ ├── row0purge.c │ │ ├── row0row.c │ │ ├── row0sel.c │ │ ├── row0uins.c │ │ ├── row0umod.c │ │ ├── row0undo.c │ │ ├── row0upd.c │ │ └── row0vers.c │ ├── srv │ │ ├── srv0srv.c │ │ └── srv0start.c │ ├── sync │ │ ├── sync0arr.c │ │ ├── sync0rw.c │ │ └── sync0sync.c │ ├── trx │ │ ├── trx0i_s.c │ │ ├── trx0purge.c │ │ ├── trx0rec.c │ │ ├── trx0roll.c │ │ ├── trx0rseg.c │ │ ├── trx0sys.c │ │ ├── trx0trx.c │ │ └── trx0undo.c │ ├── usr │ │ └── usr0sess.c │ └── ut │ │ ├── ut0bh.c │ │ ├── ut0byte.c │ │ ├── ut0dbg.c │ │ ├── ut0list.c │ │ ├── ut0mem.c │ │ ├── ut0rbt.c │ │ ├── ut0rnd.c │ │ ├── ut0ut.c │ │ ├── ut0vec.c │ │ └── ut0wqueue.c ├── 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_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_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 ├── 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 │ │ │ ├── suite.opt │ │ │ └── suite.pm │ │ └── storage_engine │ │ │ ├── alter_tablespace.rdiff │ │ │ ├── check_table.rdiff │ │ │ ├── define_engine.inc │ │ │ ├── foreign_keys.rdiff │ │ │ ├── index_type_hash.rdiff │ │ │ ├── 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_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 │ │ ├── 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_index_dir.rdiff │ │ ├── tbl_opt_delay_key_write.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 ├── ndb │ ├── MAINTAINERS │ ├── Makefile.am │ ├── bin │ │ ├── .empty │ │ ├── check-regression.sh │ │ └── makeTestPrograms_html.sh │ ├── config │ │ ├── common.mk.am │ │ ├── make-win-dsw.sh │ │ ├── type_kernel.mk.am │ │ ├── type_mgmapiclient.mk.am │ │ ├── type_ndbapi.mk.am │ │ ├── type_ndbapiclient.mk.am │ │ ├── type_ndbapitest.mk.am │ │ ├── type_ndbapitools.mk.am │ │ ├── type_util.mk.am │ │ ├── win-includes │ │ ├── win-lib.am │ │ ├── win-libraries │ │ ├── win-name │ │ ├── win-prg.am │ │ └── win-sources │ ├── demos │ │ ├── 1-node │ │ │ ├── 1-api-3 │ │ │ │ └── Ndb.cfg │ │ │ ├── 1-db-2 │ │ │ │ └── Ndb.cfg │ │ │ └── 1-mgm-1 │ │ │ │ ├── Ndb.cfg │ │ │ │ └── template_config.ini │ │ ├── 2-node │ │ │ ├── 2-api-4 │ │ │ │ └── Ndb.cfg │ │ │ ├── 2-api-5 │ │ │ │ └── Ndb.cfg │ │ │ ├── 2-api-6 │ │ │ │ └── Ndb.cfg │ │ │ ├── 2-api-7 │ │ │ │ └── Ndb.cfg │ │ │ ├── 2-db-2 │ │ │ │ └── Ndb.cfg │ │ │ ├── 2-db-3 │ │ │ │ └── Ndb.cfg │ │ │ └── 2-mgm-1 │ │ │ │ ├── Ndb.cfg │ │ │ │ └── template_config.ini │ │ ├── config-templates │ │ │ ├── config_template-1-REP.ini │ │ │ ├── config_template-4.ini │ │ │ └── config_template-install.ini │ │ ├── run_demo1-PS-SS_common.sh │ │ ├── run_demo1-PS.sh │ │ ├── run_demo1-SS.sh │ │ ├── run_demo1.sh │ │ └── run_demo2.sh │ ├── docs │ │ ├── Makefile.am │ │ ├── README │ │ ├── doxygen │ │ │ ├── Doxyfile.mgmapi │ │ │ ├── Doxyfile.ndb │ │ │ ├── Doxyfile.ndbapi │ │ │ ├── Doxyfile.odbc │ │ │ ├── Doxyfile.test │ │ │ ├── postdoxy.pl │ │ │ └── predoxy.pl │ │ └── wl2077.txt │ ├── include │ │ ├── Makefile.am │ │ ├── debugger │ │ │ ├── DebuggerNames.hpp │ │ │ ├── EventLogger.hpp │ │ │ ├── GrepError.hpp │ │ │ └── SignalLoggerManager.hpp │ │ ├── editline │ │ │ └── editline.h │ │ ├── kernel │ │ │ ├── AttributeDescriptor.hpp │ │ │ ├── AttributeHeader.hpp │ │ │ ├── AttributeList.hpp │ │ │ ├── BlockNumbers.h │ │ │ ├── GlobalSignalNumbers.h │ │ │ ├── GrepEvent.hpp │ │ │ ├── Interpreter.hpp │ │ │ ├── LogLevel.hpp │ │ │ ├── NodeBitmask.hpp │ │ │ ├── NodeInfo.hpp │ │ │ ├── NodeState.hpp │ │ │ ├── RefConvert.hpp │ │ │ ├── kernel_config_parameters.h │ │ │ ├── kernel_types.h │ │ │ ├── ndb_limits.h │ │ │ ├── signaldata │ │ │ │ ├── AbortAll.hpp │ │ │ │ ├── AccFrag.hpp │ │ │ │ ├── AccLock.hpp │ │ │ │ ├── AccScan.hpp │ │ │ │ ├── AccSizeAltReq.hpp │ │ │ │ ├── AllocNodeId.hpp │ │ │ │ ├── AlterIndx.hpp │ │ │ │ ├── AlterTab.hpp │ │ │ │ ├── AlterTable.hpp │ │ │ │ ├── AlterTrig.hpp │ │ │ │ ├── ApiBroadcast.hpp │ │ │ │ ├── ApiRegSignalData.hpp │ │ │ │ ├── ApiVersion.hpp │ │ │ │ ├── ArbitSignalData.hpp │ │ │ │ ├── AttrInfo.hpp │ │ │ │ ├── BackupContinueB.hpp │ │ │ │ ├── BackupImpl.hpp │ │ │ │ ├── BackupSignalData.hpp │ │ │ │ ├── BlockCommitOrd.hpp │ │ │ │ ├── BuildIndx.hpp │ │ │ │ ├── CheckNodeGroups.hpp │ │ │ │ ├── CloseComReqConf.hpp │ │ │ │ ├── CmInit.hpp │ │ │ │ ├── CmRegSignalData.hpp │ │ │ │ ├── CmvmiCfgConf.hpp │ │ │ │ ├── CntrMasterConf.hpp │ │ │ │ ├── CntrMasterReq.hpp │ │ │ │ ├── CntrStart.hpp │ │ │ │ ├── ConfigParamId.hpp │ │ │ │ ├── ContinueFragmented.hpp │ │ │ │ ├── CopyActive.hpp │ │ │ │ ├── CopyFrag.hpp │ │ │ │ ├── CopyGCIReq.hpp │ │ │ │ ├── CreateEvnt.hpp │ │ │ │ ├── CreateFilegroup.hpp │ │ │ │ ├── CreateFilegroupImpl.hpp │ │ │ │ ├── CreateFrag.hpp │ │ │ │ ├── CreateFragmentation.hpp │ │ │ │ ├── CreateIndx.hpp │ │ │ │ ├── CreateObj.hpp │ │ │ │ ├── CreateTab.hpp │ │ │ │ ├── CreateTable.hpp │ │ │ │ ├── CreateTrig.hpp │ │ │ │ ├── DiAddTab.hpp │ │ │ │ ├── DiGetNodes.hpp │ │ │ │ ├── DictLock.hpp │ │ │ │ ├── DictObjOp.hpp │ │ │ │ ├── DictSchemaInfo.hpp │ │ │ │ ├── DictSizeAltReq.hpp │ │ │ │ ├── DictStart.hpp │ │ │ │ ├── DictTabInfo.hpp │ │ │ │ ├── DihAddFrag.hpp │ │ │ │ ├── DihContinueB.hpp │ │ │ │ ├── DihFragCount.hpp │ │ │ │ ├── DihSizeAltReq.hpp │ │ │ │ ├── DihStartTab.hpp │ │ │ │ ├── DihSwitchReplica.hpp │ │ │ │ ├── DisconnectRep.hpp │ │ │ │ ├── DropFilegroup.hpp │ │ │ │ ├── DropFilegroupImpl.hpp │ │ │ │ ├── DropIndx.hpp │ │ │ │ ├── DropObj.hpp │ │ │ │ ├── DropTab.hpp │ │ │ │ ├── DropTabFile.hpp │ │ │ │ ├── DropTable.hpp │ │ │ │ ├── DropTrig.hpp │ │ │ │ ├── DumpStateOrd.hpp │ │ │ │ ├── EmptyLcp.hpp │ │ │ │ ├── EndTo.hpp │ │ │ │ ├── EventReport.hpp │ │ │ │ ├── EventSubscribeReq.hpp │ │ │ │ ├── ExecFragReq.hpp │ │ │ │ ├── Extent.hpp │ │ │ │ ├── FailRep.hpp │ │ │ │ ├── FireTrigOrd.hpp │ │ │ │ ├── FsAppendReq.hpp │ │ │ │ ├── FsCloseReq.hpp │ │ │ │ ├── FsConf.hpp │ │ │ │ ├── FsOpenReq.hpp │ │ │ │ ├── FsReadWriteReq.hpp │ │ │ │ ├── FsRef.hpp │ │ │ │ ├── FsRemoveReq.hpp │ │ │ │ ├── GCPSave.hpp │ │ │ │ ├── GetTabInfo.hpp │ │ │ │ ├── GetTableId.hpp │ │ │ │ ├── GrepImpl.hpp │ │ │ │ ├── HotSpareRep.hpp │ │ │ │ ├── IndxAttrInfo.hpp │ │ │ │ ├── IndxKeyInfo.hpp │ │ │ │ ├── InvalidateNodeLCPConf.hpp │ │ │ │ ├── InvalidateNodeLCPReq.hpp │ │ │ │ ├── KeyInfo.hpp │ │ │ │ ├── LCP.hpp │ │ │ │ ├── LgmanContinueB.hpp │ │ │ │ ├── ListTables.hpp │ │ │ │ ├── LqhFrag.hpp │ │ │ │ ├── LqhKey.hpp │ │ │ │ ├── LqhSizeAltReq.hpp │ │ │ │ ├── LqhTransConf.hpp │ │ │ │ ├── ManagementServer.hpp │ │ │ │ ├── MasterGCP.hpp │ │ │ │ ├── MasterLCP.hpp │ │ │ │ ├── NFCompleteRep.hpp │ │ │ │ ├── NdbSttor.hpp │ │ │ │ ├── NdbfsContinueB.hpp │ │ │ │ ├── NextScan.hpp │ │ │ │ ├── NodeFailRep.hpp │ │ │ │ ├── NodeStateSignalData.hpp │ │ │ │ ├── PackedSignal.hpp │ │ │ │ ├── PgmanContinueB.hpp │ │ │ │ ├── PrepDropTab.hpp │ │ │ │ ├── PrepFailReqRef.hpp │ │ │ │ ├── ReadConfig.hpp │ │ │ │ ├── ReadNodesConf.hpp │ │ │ │ ├── RelTabMem.hpp │ │ │ │ ├── RepImpl.hpp │ │ │ │ ├── RestoreContinueB.hpp │ │ │ │ ├── RestoreImpl.hpp │ │ │ │ ├── ResumeReq.hpp │ │ │ │ ├── RouteOrd.hpp │ │ │ │ ├── ScanFrag.hpp │ │ │ │ ├── ScanTab.hpp │ │ │ │ ├── SetLogLevelOrd.hpp │ │ │ │ ├── SetVarReq.hpp │ │ │ │ ├── SignalData.hpp │ │ │ │ ├── SignalDataPrint.hpp │ │ │ │ ├── SignalDroppedRep.hpp │ │ │ │ ├── SrFragidConf.hpp │ │ │ │ ├── StartFragReq.hpp │ │ │ │ ├── StartInfo.hpp │ │ │ │ ├── StartMe.hpp │ │ │ │ ├── StartOrd.hpp │ │ │ │ ├── StartPerm.hpp │ │ │ │ ├── StartRec.hpp │ │ │ │ ├── StartTo.hpp │ │ │ │ ├── StopMe.hpp │ │ │ │ ├── StopPerm.hpp │ │ │ │ ├── StopReq.hpp │ │ │ │ ├── SumaImpl.hpp │ │ │ │ ├── SystemError.hpp │ │ │ │ ├── TamperOrd.hpp │ │ │ │ ├── TcCommit.hpp │ │ │ │ ├── TcContinueB.hpp │ │ │ │ ├── TcHbRep.hpp │ │ │ │ ├── TcIndx.hpp │ │ │ │ ├── TcKeyConf.hpp │ │ │ │ ├── TcKeyFailConf.hpp │ │ │ │ ├── TcKeyRef.hpp │ │ │ │ ├── TcKeyReq.hpp │ │ │ │ ├── TcRollbackRep.hpp │ │ │ │ ├── TcSizeAltReq.hpp │ │ │ │ ├── TestOrd.hpp │ │ │ │ ├── TransIdAI.hpp │ │ │ │ ├── TrigAttrInfo.hpp │ │ │ │ ├── TsmanContinueB.hpp │ │ │ │ ├── TupCommit.hpp │ │ │ │ ├── TupFrag.hpp │ │ │ │ ├── TupKey.hpp │ │ │ │ ├── TupSizeAltReq.hpp │ │ │ │ ├── TuxBound.hpp │ │ │ │ ├── TuxContinueB.hpp │ │ │ │ ├── TuxMaint.hpp │ │ │ │ ├── TuxSizeAltReq.hpp │ │ │ │ ├── UpdateTo.hpp │ │ │ │ ├── UpgradeStartup.hpp │ │ │ │ ├── UtilDelete.hpp │ │ │ │ ├── UtilExecute.hpp │ │ │ │ ├── UtilLock.hpp │ │ │ │ ├── UtilPrepare.hpp │ │ │ │ ├── UtilRelease.hpp │ │ │ │ ├── UtilSequence.hpp │ │ │ │ └── WaitGCP.hpp │ │ │ └── trigger_definitions.h │ │ ├── logger │ │ │ ├── ConsoleLogHandler.hpp │ │ │ ├── FileLogHandler.hpp │ │ │ ├── LogHandler.hpp │ │ │ ├── Logger.hpp │ │ │ └── SysLogHandler.hpp │ │ ├── mgmapi │ │ │ ├── mgmapi.h │ │ │ ├── mgmapi_config_parameters.h │ │ │ ├── mgmapi_config_parameters_debug.h │ │ │ ├── mgmapi_debug.h │ │ │ ├── mgmapi_error.h │ │ │ ├── ndb_logevent.h │ │ │ ├── ndb_logevent.txt │ │ │ └── ndbd_exit_codes.h │ │ ├── mgmcommon │ │ │ ├── ConfigRetriever.hpp │ │ │ ├── IPCConfig.hpp │ │ │ └── MgmtErrorReporter.hpp │ │ ├── ndb_constants.h │ │ ├── ndb_global.h.in │ │ ├── ndb_init.h │ │ ├── ndb_net.h │ │ ├── ndb_types.h.in │ │ ├── ndb_version.h.in │ │ ├── ndbapi │ │ │ ├── Ndb.hpp │ │ │ ├── NdbApi.hpp │ │ │ ├── NdbBlob.hpp │ │ │ ├── NdbDictionary.hpp │ │ │ ├── NdbError.hpp │ │ │ ├── NdbEventOperation.hpp │ │ │ ├── NdbIndexOperation.hpp │ │ │ ├── NdbIndexScanOperation.hpp │ │ │ ├── NdbIndexStat.hpp │ │ │ ├── NdbOperation.hpp │ │ │ ├── NdbPool.hpp │ │ │ ├── NdbRecAttr.hpp │ │ │ ├── NdbReceiver.hpp │ │ │ ├── NdbScanFilter.hpp │ │ │ ├── NdbScanOperation.hpp │ │ │ ├── NdbTransaction.hpp │ │ │ ├── ndb_cluster_connection.hpp │ │ │ ├── ndb_opt_defaults.h │ │ │ ├── ndbapi_limits.h │ │ │ └── ndberror.h │ │ ├── newtonapi │ │ │ ├── dba.h │ │ │ └── defs │ │ │ │ └── pcn_types.h │ │ ├── portlib │ │ │ ├── NdbCondition.h │ │ │ ├── NdbConfig.h │ │ │ ├── NdbDaemon.h │ │ │ ├── NdbEnv.h │ │ │ ├── NdbHost.h │ │ │ ├── NdbMain.h │ │ │ ├── NdbMem.h │ │ │ ├── NdbMutex.h │ │ │ ├── NdbSleep.h │ │ │ ├── NdbTCP.h │ │ │ ├── NdbThread.h │ │ │ ├── NdbTick.h │ │ │ ├── PortDefs.h │ │ │ └── prefetch.h │ │ ├── transporter │ │ │ ├── TransporterCallback.hpp │ │ │ ├── TransporterDefinitions.hpp │ │ │ └── TransporterRegistry.hpp │ │ └── util │ │ │ ├── BaseString.hpp │ │ │ ├── Bitmask.hpp │ │ │ ├── ConfigValues.hpp │ │ │ ├── File.hpp │ │ │ ├── InputStream.hpp │ │ │ ├── NdbAutoPtr.hpp │ │ │ ├── NdbOut.hpp │ │ │ ├── NdbSqlUtil.hpp │ │ │ ├── OutputStream.hpp │ │ │ ├── Parser.hpp │ │ │ ├── Properties.hpp │ │ │ ├── SimpleProperties.hpp │ │ │ ├── SocketAuthenticator.hpp │ │ │ ├── SocketClient.hpp │ │ │ ├── SocketServer.hpp │ │ │ ├── UtilBuffer.hpp │ │ │ ├── Vector.hpp │ │ │ ├── basestring_vsnprintf.h │ │ │ ├── md5_hash.hpp │ │ │ ├── ndb_opts.h │ │ │ ├── ndb_rand.h │ │ │ ├── random.h │ │ │ ├── socket_io.h │ │ │ ├── uucode.h │ │ │ └── version.h │ ├── lib │ │ └── .empty │ ├── ndb_configure.m4 │ ├── ndbapi-examples │ │ ├── Makefile │ │ ├── mgmapi_logevent │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── mgmapi_logevent2 │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ ├── ndbapi_async │ │ │ ├── Makefile │ │ │ ├── ndbapi_async.cpp │ │ │ └── readme.txt │ │ ├── ndbapi_async1 │ │ │ ├── Makefile │ │ │ └── ndbapi_async1.cpp │ │ ├── ndbapi_event │ │ │ ├── Makefile │ │ │ └── ndbapi_event.cpp │ │ ├── ndbapi_retries │ │ │ ├── Makefile │ │ │ └── ndbapi_retries.cpp │ │ ├── ndbapi_scan │ │ │ ├── Makefile │ │ │ ├── ndbapi_scan.cpp │ │ │ └── readme.txt │ │ ├── ndbapi_simple │ │ │ ├── Makefile │ │ │ └── ndbapi_simple.cpp │ │ ├── ndbapi_simple_dual │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ └── ndbapi_simple_index │ │ │ ├── Makefile │ │ │ └── main.cpp │ ├── plug.in │ ├── src │ │ ├── Makefile.am │ │ ├── common │ │ │ ├── Makefile.am │ │ │ ├── debugger │ │ │ │ ├── BlockNames.cpp │ │ │ │ ├── DebuggerNames.cpp │ │ │ │ ├── EventLogger.cpp │ │ │ │ ├── GrepError.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── SignalLoggerManager.cpp │ │ │ │ └── signaldata │ │ │ │ │ ├── AccLock.cpp │ │ │ │ │ ├── AlterIndx.cpp │ │ │ │ │ ├── AlterTab.cpp │ │ │ │ │ ├── AlterTable.cpp │ │ │ │ │ ├── AlterTrig.cpp │ │ │ │ │ ├── BackupImpl.cpp │ │ │ │ │ ├── BackupSignalData.cpp │ │ │ │ │ ├── CloseComReqConf.cpp │ │ │ │ │ ├── CntrStart.cpp │ │ │ │ │ ├── ContinueB.cpp │ │ │ │ │ ├── CopyGCI.cpp │ │ │ │ │ ├── CreateEvnt.cpp │ │ │ │ │ ├── CreateFragmentation.cpp │ │ │ │ │ ├── CreateIndx.cpp │ │ │ │ │ ├── CreateTrig.cpp │ │ │ │ │ ├── DictTabInfo.cpp │ │ │ │ │ ├── DihContinueB.cpp │ │ │ │ │ ├── DihSwitchReplicaReq.cpp │ │ │ │ │ ├── DisconnectRep.cpp │ │ │ │ │ ├── DropIndx.cpp │ │ │ │ │ ├── DropTab.cpp │ │ │ │ │ ├── DropTrig.cpp │ │ │ │ │ ├── FailRep.cpp │ │ │ │ │ ├── FireTrigOrd.cpp │ │ │ │ │ ├── FsAppendReq.cpp │ │ │ │ │ ├── FsCloseReq.cpp │ │ │ │ │ ├── FsConf.cpp │ │ │ │ │ ├── FsOpenReq.cpp │ │ │ │ │ ├── FsReadWriteReq.cpp │ │ │ │ │ ├── FsRef.cpp │ │ │ │ │ ├── GCPSave.cpp │ │ │ │ │ ├── IndxAttrInfo.cpp │ │ │ │ │ ├── IndxKeyInfo.cpp │ │ │ │ │ ├── LCP.cpp │ │ │ │ │ ├── LqhFrag.cpp │ │ │ │ │ ├── LqhKey.cpp │ │ │ │ │ ├── LqhTrans.cpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MasterLCP.cpp │ │ │ │ │ ├── NFCompleteRep.cpp │ │ │ │ │ ├── NdbSttor.cpp │ │ │ │ │ ├── NdbfsContinueB.cpp │ │ │ │ │ ├── PackedSignal.cpp │ │ │ │ │ ├── PrepDropTab.cpp │ │ │ │ │ ├── PrepFailReqRef.cpp │ │ │ │ │ ├── ReadNodesConf.cpp │ │ │ │ │ ├── ScanFrag.cpp │ │ │ │ │ ├── ScanTab.cpp │ │ │ │ │ ├── SignalDataPrint.cpp │ │ │ │ │ ├── SignalDroppedRep.cpp │ │ │ │ │ ├── SignalNames.cpp │ │ │ │ │ ├── StartRec.cpp │ │ │ │ │ ├── SumaImpl.cpp │ │ │ │ │ ├── SystemError.cpp │ │ │ │ │ ├── TcIndx.cpp │ │ │ │ │ ├── TcKeyConf.cpp │ │ │ │ │ ├── TcKeyRef.cpp │ │ │ │ │ ├── TcKeyReq.cpp │ │ │ │ │ ├── TcRollbackRep.cpp │ │ │ │ │ ├── TrigAttrInfo.cpp │ │ │ │ │ ├── TupCommit.cpp │ │ │ │ │ ├── TupKey.cpp │ │ │ │ │ ├── TuxMaint.cpp │ │ │ │ │ ├── UtilDelete.cpp │ │ │ │ │ ├── UtilExecute.cpp │ │ │ │ │ ├── UtilLock.cpp │ │ │ │ │ ├── UtilPrepare.cpp │ │ │ │ │ ├── UtilSequence.cpp │ │ │ │ │ └── print.awk │ │ │ ├── logger │ │ │ │ ├── ConsoleLogHandler.cpp │ │ │ │ ├── FileLogHandler.cpp │ │ │ │ ├── LogHandler.cpp │ │ │ │ ├── LogHandlerList.cpp │ │ │ │ ├── LogHandlerList.hpp │ │ │ │ ├── Logger.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── SysLogHandler.cpp │ │ │ │ ├── listtest │ │ │ │ │ ├── LogHandlerListUnitTest.cpp │ │ │ │ │ ├── LogHandlerListUnitTest.hpp │ │ │ │ │ └── Makefile │ │ │ │ └── loggertest │ │ │ │ │ ├── LoggerUnitTest.cpp │ │ │ │ │ ├── LoggerUnitTest.hpp │ │ │ │ │ └── Makefile │ │ │ ├── mgmcommon │ │ │ │ ├── ConfigRetriever.cpp │ │ │ │ ├── IPCConfig.cpp │ │ │ │ ├── Makefile.am │ │ │ │ └── printConfig │ │ │ │ │ ├── Makefile │ │ │ │ │ └── printConfig.cpp │ │ │ ├── portlib │ │ │ │ ├── Makefile.am │ │ │ │ ├── NdbCondition.c │ │ │ │ ├── NdbConfig.c │ │ │ │ ├── NdbDaemon.c │ │ │ │ ├── NdbEnv.c │ │ │ │ ├── NdbHost.c │ │ │ │ ├── NdbMem.c │ │ │ │ ├── NdbMutex.c │ │ │ │ ├── NdbPortLibTest.cpp │ │ │ │ ├── NdbSleep.c │ │ │ │ ├── NdbTCP.cpp │ │ │ │ ├── NdbThread.c │ │ │ │ ├── NdbTick.c │ │ │ │ ├── memtest.c │ │ │ │ ├── mmstest.cpp │ │ │ │ ├── munmaptest.cpp │ │ │ │ └── win32 │ │ │ │ │ ├── NdbCondition.c │ │ │ │ │ ├── NdbDaemon.c │ │ │ │ │ ├── NdbEnv.c │ │ │ │ │ ├── NdbHost.c │ │ │ │ │ ├── NdbMem.c │ │ │ │ │ ├── NdbMutex.c │ │ │ │ │ ├── NdbSleep.c │ │ │ │ │ ├── NdbTCP.c │ │ │ │ │ ├── NdbThread.c │ │ │ │ │ └── NdbTick.c │ │ │ ├── transporter │ │ │ │ ├── Makefile.am │ │ │ │ ├── Packer.cpp │ │ │ │ ├── Packer.hpp │ │ │ │ ├── SCI_Transporter.cpp │ │ │ │ ├── SCI_Transporter.hpp │ │ │ │ ├── SHM_Buffer.hpp │ │ │ │ ├── SHM_Transporter.cpp │ │ │ │ ├── SHM_Transporter.hpp │ │ │ │ ├── SHM_Transporter.unix.cpp │ │ │ │ ├── SHM_Transporter.win32.cpp │ │ │ │ ├── SendBuffer.cpp │ │ │ │ ├── SendBuffer.hpp │ │ │ │ ├── TCP_Transporter.cpp │ │ │ │ ├── TCP_Transporter.hpp │ │ │ │ ├── Transporter.cpp │ │ │ │ ├── Transporter.hpp │ │ │ │ ├── TransporterInternalDefinitions.hpp │ │ │ │ ├── TransporterRegistry.cpp │ │ │ │ ├── basictest │ │ │ │ │ ├── Makefile │ │ │ │ │ └── basicTransporterTest.cpp │ │ │ │ ├── buddy.cpp │ │ │ │ ├── buddy.hpp │ │ │ │ ├── failoverSCI │ │ │ │ │ ├── Makefile │ │ │ │ │ └── failoverSCI.cpp │ │ │ │ ├── perftest │ │ │ │ │ ├── Makefile │ │ │ │ │ └── perfTransporterTest.cpp │ │ │ │ └── priotest │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── prioSCI │ │ │ │ │ ├── Makefile │ │ │ │ │ └── prioSCI.cpp │ │ │ │ │ ├── prioSHM │ │ │ │ │ ├── Makefile │ │ │ │ │ └── prioSHM.cpp │ │ │ │ │ ├── prioTCP │ │ │ │ │ ├── Makefile │ │ │ │ │ └── prioTCP.cpp │ │ │ │ │ ├── prioTransporterTest.cpp │ │ │ │ │ └── prioTransporterTest.hpp │ │ │ └── util │ │ │ │ ├── BaseString.cpp │ │ │ │ ├── Bitmask.cpp │ │ │ │ ├── ConfigValues.cpp │ │ │ │ ├── File.cpp │ │ │ │ ├── InputStream.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── NdbOut.cpp │ │ │ │ ├── NdbSqlUtil.cpp │ │ │ │ ├── OutputStream.cpp │ │ │ │ ├── Parser.cpp │ │ │ │ ├── Properties.cpp │ │ │ │ ├── SimpleProperties.cpp │ │ │ │ ├── SocketAuthenticator.cpp │ │ │ │ ├── SocketClient.cpp │ │ │ │ ├── SocketServer.cpp │ │ │ │ ├── basestring_vsnprintf.c │ │ │ │ ├── filetest │ │ │ │ ├── FileUnitTest.cpp │ │ │ │ ├── FileUnitTest.hpp │ │ │ │ └── Makefile │ │ │ │ ├── getarg.cat3 │ │ │ │ ├── md5_hash.cpp │ │ │ │ ├── ndb_init.c │ │ │ │ ├── ndb_rand.c │ │ │ │ ├── new.cpp │ │ │ │ ├── random.c │ │ │ │ ├── socket_io.cpp │ │ │ │ ├── strdup.c │ │ │ │ ├── testConfigValues │ │ │ │ ├── Makefile │ │ │ │ └── testConfigValues.cpp │ │ │ │ ├── testProperties │ │ │ │ ├── Makefile │ │ │ │ └── testProperties.cpp │ │ │ │ ├── testSimpleProperties │ │ │ │ ├── Makefile │ │ │ │ └── sp_test.cpp │ │ │ │ ├── uucode.c │ │ │ │ └── version.c │ │ ├── cw │ │ │ ├── Makefile.am │ │ │ ├── cpcc-win32 │ │ │ │ ├── C++ │ │ │ │ │ ├── CPC_GUI.cpp │ │ │ │ │ ├── CPC_GUI.dsp │ │ │ │ │ ├── CPC_GUI.dsw │ │ │ │ │ ├── CPC_GUI.h │ │ │ │ │ ├── CPC_GUI.ico │ │ │ │ │ ├── CPC_GUI.rc │ │ │ │ │ ├── CPC_GUI.sln │ │ │ │ │ ├── CPC_GUI.suo │ │ │ │ │ ├── CPC_GUI.vcproj │ │ │ │ │ ├── Closed.ICO │ │ │ │ │ ├── NdbControls.cpp │ │ │ │ │ ├── Open.ICO │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── TreeView.cpp │ │ │ │ │ ├── TreeView.h │ │ │ │ │ ├── bmp00001.bmp │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── small.ico │ │ │ │ │ └── toolbar.bmp │ │ │ │ └── csharp │ │ │ │ │ ├── App.ico │ │ │ │ │ ├── CPC_Form.cs │ │ │ │ │ ├── Computer.cs │ │ │ │ │ ├── ComputerAddDialog.cs │ │ │ │ │ ├── ComputerRemoveDialog.cs │ │ │ │ │ ├── DATABASE.ICO │ │ │ │ │ ├── Database.cs │ │ │ │ │ ├── NDB_CPC.csproj │ │ │ │ │ ├── NDB_CPC.csproj.user │ │ │ │ │ ├── NDB_CPC.ncb │ │ │ │ │ ├── NDB_CPC.sln │ │ │ │ │ ├── PanelWizard.cs │ │ │ │ │ ├── Process.cs │ │ │ │ │ ├── ProcessDefineDialog.cs │ │ │ │ │ ├── fileaccess │ │ │ │ │ └── FileMgmt.cs │ │ │ │ │ ├── simpleparser │ │ │ │ │ └── SimpleCPCParser.cs │ │ │ │ │ ├── socketcomm │ │ │ │ │ ├── SocketComm.cs │ │ │ │ │ └── myTcpClient.cs │ │ │ │ │ ├── startDatabaseDlg.cs │ │ │ │ │ └── telnetclient │ │ │ │ │ └── telnetClient.cs │ │ │ ├── cpcd │ │ │ │ ├── APIService.cpp │ │ │ │ ├── APIService.hpp │ │ │ │ ├── CPCD.cpp │ │ │ │ ├── CPCD.hpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Monitor.cpp │ │ │ │ ├── Process.cpp │ │ │ │ ├── common.cpp │ │ │ │ ├── common.hpp │ │ │ │ └── main.cpp │ │ │ ├── test │ │ │ │ └── socketclient │ │ │ │ │ ├── Makefile │ │ │ │ │ └── socketClientTest.cpp │ │ │ └── util │ │ │ │ ├── ClientInterface.cpp │ │ │ │ ├── ClientInterface.hpp │ │ │ │ ├── Makefile │ │ │ │ ├── SocketRegistry.cpp │ │ │ │ ├── SocketRegistry.hpp │ │ │ │ ├── SocketService.cpp │ │ │ │ └── SocketService.hpp │ │ ├── external │ │ │ └── WIN32.x86 │ │ │ │ └── sci │ │ │ │ └── lib │ │ │ │ ├── SISCI_LIBRARY_WIN32.TXT │ │ │ │ ├── scilib.lib │ │ │ │ ├── scilib_md.lib │ │ │ │ ├── scilib_mt.lib │ │ │ │ ├── sisci_api.lib │ │ │ │ ├── sisci_api_md.lib │ │ │ │ └── sisci_api_mt.lib │ │ ├── kernel │ │ │ ├── Makefile.am │ │ │ ├── SimBlockList.cpp │ │ │ ├── blocks │ │ │ │ ├── ERROR_codes.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── NodeRestart.new.txt │ │ │ │ ├── NodeRestart.txt │ │ │ │ ├── OptNR.txt │ │ │ │ ├── Start.txt │ │ │ │ ├── SystemRestart.new.txt │ │ │ │ ├── SystemRestart.txt │ │ │ │ ├── backup │ │ │ │ │ ├── Backup.cpp │ │ │ │ │ ├── Backup.hpp │ │ │ │ │ ├── Backup.txt │ │ │ │ │ ├── BackupFormat.hpp │ │ │ │ │ ├── BackupInit.cpp │ │ │ │ │ ├── FsBuffer.hpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── read.cpp │ │ │ │ ├── cmvmi │ │ │ │ │ ├── Cmvmi.cpp │ │ │ │ │ └── Cmvmi.hpp │ │ │ │ ├── dbacc │ │ │ │ │ ├── Dbacc.hpp │ │ │ │ │ ├── DbaccInit.cpp │ │ │ │ │ └── DbaccMain.cpp │ │ │ │ ├── dbdict │ │ │ │ │ ├── CreateIndex.txt │ │ │ │ │ ├── CreateTable.new.txt │ │ │ │ │ ├── CreateTable.txt │ │ │ │ │ ├── Dbdict.cpp │ │ │ │ │ ├── Dbdict.hpp │ │ │ │ │ ├── Dbdict.txt │ │ │ │ │ ├── DictLock.txt │ │ │ │ │ ├── DropTable.txt │ │ │ │ │ ├── Event.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Master_AddTable.sfl │ │ │ │ │ ├── SchemaFile.hpp │ │ │ │ │ ├── Slave_AddTable.sfl │ │ │ │ │ └── printSchemaFile.cpp │ │ │ │ ├── dbdih │ │ │ │ │ ├── Dbdih.hpp │ │ │ │ │ ├── DbdihInit.cpp │ │ │ │ │ ├── DbdihMain.cpp │ │ │ │ │ ├── LCP.txt │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Sysfile.hpp │ │ │ │ │ ├── printSysfile.cpp │ │ │ │ │ └── printSysfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── printSysfile.cpp │ │ │ │ ├── dblqh │ │ │ │ │ ├── Dblqh.hpp │ │ │ │ │ ├── DblqhInit.cpp │ │ │ │ │ ├── DblqhMain.cpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── redoLogReader │ │ │ │ │ │ ├── reader.cpp │ │ │ │ │ │ ├── records.cpp │ │ │ │ │ │ └── records.hpp │ │ │ │ ├── dbtc │ │ │ │ │ ├── Dbtc.hpp │ │ │ │ │ ├── DbtcInit.cpp │ │ │ │ │ └── DbtcMain.cpp │ │ │ │ ├── dbtup │ │ │ │ │ ├── AttributeOffset.hpp │ │ │ │ │ ├── Dbtup.hpp │ │ │ │ │ ├── DbtupAbort.cpp │ │ │ │ │ ├── DbtupBuffer.cpp │ │ │ │ │ ├── DbtupCommit.cpp │ │ │ │ │ ├── DbtupDebug.cpp │ │ │ │ │ ├── DbtupDiskAlloc.cpp │ │ │ │ │ ├── DbtupExecQuery.cpp │ │ │ │ │ ├── DbtupFixAlloc.cpp │ │ │ │ │ ├── DbtupGen.cpp │ │ │ │ │ ├── DbtupIndex.cpp │ │ │ │ │ ├── DbtupMeta.cpp │ │ │ │ │ ├── DbtupPagMan.cpp │ │ │ │ │ ├── DbtupPageMap.cpp │ │ │ │ │ ├── DbtupRoutines.cpp │ │ │ │ │ ├── DbtupScan.cpp │ │ │ │ │ ├── DbtupStoredProcDef.cpp │ │ │ │ │ ├── DbtupTabDesMan.cpp │ │ │ │ │ ├── DbtupTrigger.cpp │ │ │ │ │ ├── DbtupVarAlloc.cpp │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Notes.txt │ │ │ │ │ ├── Undo_buffer.cpp │ │ │ │ │ ├── Undo_buffer.hpp │ │ │ │ │ ├── test_varpage.cpp │ │ │ │ │ ├── tuppage.cpp │ │ │ │ │ └── tuppage.hpp │ │ │ │ ├── dbtux │ │ │ │ │ ├── Dbtux.hpp │ │ │ │ │ ├── DbtuxCmp.cpp │ │ │ │ │ ├── DbtuxDebug.cpp │ │ │ │ │ ├── DbtuxGen.cpp │ │ │ │ │ ├── DbtuxMaint.cpp │ │ │ │ │ ├── DbtuxMeta.cpp │ │ │ │ │ ├── DbtuxNode.cpp │ │ │ │ │ ├── DbtuxScan.cpp │ │ │ │ │ ├── DbtuxSearch.cpp │ │ │ │ │ ├── DbtuxStat.cpp │ │ │ │ │ ├── DbtuxTree.cpp │ │ │ │ │ ├── Times.txt │ │ │ │ │ └── tuxstatus.html │ │ │ │ ├── dbutil │ │ │ │ │ ├── DbUtil.cpp │ │ │ │ │ ├── DbUtil.hpp │ │ │ │ │ └── DbUtil.txt │ │ │ │ ├── diskpage.cpp │ │ │ │ ├── diskpage.hpp │ │ │ │ ├── lgman.cpp │ │ │ │ ├── lgman.hpp │ │ │ │ ├── mutexes.hpp │ │ │ │ ├── ndbcntr │ │ │ │ │ ├── Ndbcntr.hpp │ │ │ │ │ ├── NdbcntrInit.cpp │ │ │ │ │ ├── NdbcntrMain.cpp │ │ │ │ │ └── NdbcntrSysTable.cpp │ │ │ │ ├── ndbfs │ │ │ │ │ ├── AsyncFile.cpp │ │ │ │ │ ├── AsyncFile.hpp │ │ │ │ │ ├── AsyncFileTest │ │ │ │ │ │ ├── AsyncFileTest.cpp │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── CircularIndex.cpp │ │ │ │ │ ├── CircularIndex.hpp │ │ │ │ │ ├── Filename.cpp │ │ │ │ │ ├── Filename.hpp │ │ │ │ │ ├── MemoryChannel.cpp │ │ │ │ │ ├── MemoryChannel.hpp │ │ │ │ │ ├── MemoryChannelTest │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── MemoryChannelTest.cpp │ │ │ │ │ ├── Ndbfs.cpp │ │ │ │ │ ├── Ndbfs.hpp │ │ │ │ │ ├── OpenFiles.hpp │ │ │ │ │ ├── Pool.hpp │ │ │ │ │ └── VoidFs.cpp │ │ │ │ ├── new-block.tar.gz │ │ │ │ ├── pgman.cpp │ │ │ │ ├── pgman.hpp │ │ │ │ ├── print_file.cpp │ │ │ │ ├── qmgr │ │ │ │ │ ├── Qmgr.hpp │ │ │ │ │ ├── QmgrInit.cpp │ │ │ │ │ ├── QmgrMain.cpp │ │ │ │ │ └── timer.hpp │ │ │ │ ├── record_types.hpp │ │ │ │ ├── restore.cpp │ │ │ │ ├── restore.hpp │ │ │ │ ├── suma │ │ │ │ │ ├── Suma.cpp │ │ │ │ │ ├── Suma.hpp │ │ │ │ │ ├── Suma.txt │ │ │ │ │ └── SumaInit.cpp │ │ │ │ ├── trix │ │ │ │ │ ├── Trix.cpp │ │ │ │ │ └── Trix.hpp │ │ │ │ ├── tsman.cpp │ │ │ │ └── tsman.hpp │ │ │ ├── error │ │ │ │ ├── ErrorHandlingMacros.hpp │ │ │ │ ├── ErrorReporter.cpp │ │ │ │ ├── ErrorReporter.hpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── TimeModule.cpp │ │ │ │ ├── TimeModule.hpp │ │ │ │ └── ndbd_exit_codes.c │ │ │ ├── main.cpp │ │ │ └── vm │ │ │ │ ├── Array.hpp │ │ │ │ ├── ArrayPool.hpp │ │ │ │ ├── CArray.hpp │ │ │ │ ├── Callback.hpp │ │ │ │ ├── ClusterConfiguration.cpp │ │ │ │ ├── ClusterConfiguration.hpp │ │ │ │ ├── Configuration.cpp │ │ │ │ ├── Configuration.hpp │ │ │ │ ├── DLCFifoList.hpp │ │ │ │ ├── DLCHashTable.hpp │ │ │ │ ├── DLFifoList.hpp │ │ │ │ ├── DLHashTable.hpp │ │ │ │ ├── DLHashTable2.hpp │ │ │ │ ├── DLList.hpp │ │ │ │ ├── DataBuffer.hpp │ │ │ │ ├── DynArr256.cpp │ │ │ │ ├── DynArr256.hpp │ │ │ │ ├── Emulator.cpp │ │ │ │ ├── Emulator.hpp │ │ │ │ ├── FastScheduler.cpp │ │ │ │ ├── FastScheduler.hpp │ │ │ │ ├── GlobalData.hpp │ │ │ │ ├── KeyDescriptor.hpp │ │ │ │ ├── KeyTable.hpp │ │ │ │ ├── KeyTable2.hpp │ │ │ │ ├── KeyTable2Ref.hpp │ │ │ │ ├── LinearPool.hpp │ │ │ │ ├── LongSignal.hpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── Mutex.hpp │ │ │ │ ├── NdbdSuperPool.cpp │ │ │ │ ├── NdbdSuperPool.hpp │ │ │ │ ├── Pool.cpp │ │ │ │ ├── Pool.hpp │ │ │ │ ├── Prio.hpp │ │ │ │ ├── RWPool.cpp │ │ │ │ ├── RWPool.hpp │ │ │ │ ├── RequestTracker.hpp │ │ │ │ ├── Rope.cpp │ │ │ │ ├── Rope.hpp │ │ │ │ ├── SLFifoList.hpp │ │ │ │ ├── SLList.hpp │ │ │ │ ├── SafeCounter.cpp │ │ │ │ ├── SafeCounter.hpp │ │ │ │ ├── SectionReader.cpp │ │ │ │ ├── SectionReader.hpp │ │ │ │ ├── SignalCounter.hpp │ │ │ │ ├── SimBlockList.hpp │ │ │ │ ├── SimplePropertiesSection.cpp │ │ │ │ ├── SimulatedBlock.cpp │ │ │ │ ├── SimulatedBlock.hpp │ │ │ │ ├── SuperPool.cpp │ │ │ │ ├── SuperPool.hpp │ │ │ │ ├── ThreadConfig.cpp │ │ │ │ ├── ThreadConfig.hpp │ │ │ │ ├── TimeQueue.cpp │ │ │ │ ├── TimeQueue.hpp │ │ │ │ ├── TransporterCallback.cpp │ │ │ │ ├── VMSignal.cpp │ │ │ │ ├── VMSignal.hpp │ │ │ │ ├── WOPool.cpp │ │ │ │ ├── WOPool.hpp │ │ │ │ ├── WaitQueue.hpp │ │ │ │ ├── WatchDog.cpp │ │ │ │ ├── WatchDog.hpp │ │ │ │ ├── al_test │ │ │ │ ├── Makefile │ │ │ │ ├── arrayListTest.cpp │ │ │ │ ├── arrayPoolTest.cpp │ │ │ │ └── main.cpp │ │ │ │ ├── bench_pool.cpp │ │ │ │ ├── mem.txt │ │ │ │ ├── ndbd_malloc.cpp │ │ │ │ ├── ndbd_malloc.hpp │ │ │ │ ├── ndbd_malloc_impl.cpp │ │ │ │ ├── ndbd_malloc_impl.hpp │ │ │ │ ├── pc.hpp │ │ │ │ ├── testCopy │ │ │ │ ├── Makefile │ │ │ │ ├── rr.cpp │ │ │ │ └── testCopy.cpp │ │ │ │ ├── testDataBuffer │ │ │ │ ├── Makefile │ │ │ │ └── testDataBuffer.cpp │ │ │ │ ├── testLongSig │ │ │ │ ├── Makefile │ │ │ │ └── testLongSig.cpp │ │ │ │ ├── testSimplePropertiesSection │ │ │ │ ├── Makefile │ │ │ │ └── test.cpp │ │ │ │ └── testSuperPool.cpp │ │ ├── libndb.ver.in │ │ ├── mgmapi │ │ │ ├── LocalConfig.cpp │ │ │ ├── LocalConfig.hpp │ │ │ ├── Makefile.am │ │ │ ├── mgmapi.cpp │ │ │ ├── mgmapi_configuration.cpp │ │ │ ├── mgmapi_configuration.hpp │ │ │ ├── mgmapi_internal.h │ │ │ ├── ndb_logevent.cpp │ │ │ ├── ndb_logevent.hpp │ │ │ └── test │ │ │ │ ├── Makefile │ │ │ │ ├── keso.c │ │ │ │ └── mgmSrvApi.cpp │ │ ├── mgmclient │ │ │ ├── CommandInterpreter.cpp │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── ndb_mgmclient.h │ │ │ ├── ndb_mgmclient.hpp │ │ │ └── test_cpcd │ │ │ │ ├── Makefile │ │ │ │ └── test_cpcd.cpp │ │ ├── mgmsrv │ │ │ ├── Config.cpp │ │ │ ├── Config.hpp │ │ │ ├── ConfigInfo.cpp │ │ │ ├── ConfigInfo.hpp │ │ │ ├── ERROR_codes.txt │ │ │ ├── InitConfigFileParser.cpp │ │ │ ├── InitConfigFileParser.hpp │ │ │ ├── Makefile.am │ │ │ ├── MgmtSrvr.cpp │ │ │ ├── MgmtSrvr.hpp │ │ │ ├── MgmtSrvrConfig.cpp │ │ │ ├── MgmtSrvrGeneralSignalHandling.cpp │ │ │ ├── Services.cpp │ │ │ ├── Services.hpp │ │ │ ├── SignalQueue.cpp │ │ │ ├── SignalQueue.hpp │ │ │ ├── convertStrToInt.cpp │ │ │ ├── convertStrToInt.hpp │ │ │ ├── main.cpp │ │ │ ├── mkconfig │ │ │ │ ├── Makefile │ │ │ │ └── mkconfig.cpp │ │ │ └── ndb_mgmd_error.h │ │ └── ndbapi │ │ │ ├── API.hpp │ │ │ ├── ClusterMgr.cpp │ │ │ ├── ClusterMgr.hpp │ │ │ ├── DictCache.cpp │ │ │ ├── DictCache.hpp │ │ │ ├── Makefile.am │ │ │ ├── Ndb.cpp │ │ │ ├── NdbApiSignal.cpp │ │ │ ├── NdbApiSignal.hpp │ │ │ ├── NdbBlob.cpp │ │ │ ├── NdbBlobImpl.hpp │ │ │ ├── NdbDictionary.cpp │ │ │ ├── NdbDictionaryImpl.cpp │ │ │ ├── NdbDictionaryImpl.hpp │ │ │ ├── NdbErrorOut.cpp │ │ │ ├── NdbEventOperation.cpp │ │ │ ├── NdbEventOperationImpl.cpp │ │ │ ├── NdbEventOperationImpl.hpp │ │ │ ├── NdbImpl.hpp │ │ │ ├── NdbIndexOperation.cpp │ │ │ ├── NdbIndexStat.cpp │ │ │ ├── NdbLinHash.hpp │ │ │ ├── NdbOperation.cpp │ │ │ ├── NdbOperationDefine.cpp │ │ │ ├── NdbOperationExec.cpp │ │ │ ├── NdbOperationInt.cpp │ │ │ ├── NdbOperationScan.cpp │ │ │ ├── NdbOperationSearch.cpp │ │ │ ├── NdbPool.cpp │ │ │ ├── NdbPoolImpl.cpp │ │ │ ├── NdbPoolImpl.hpp │ │ │ ├── NdbRecAttr.cpp │ │ │ ├── NdbReceiver.cpp │ │ │ ├── NdbScanFilter.cpp │ │ │ ├── NdbScanOperation.cpp │ │ │ ├── NdbTransaction.cpp │ │ │ ├── NdbTransactionScan.cpp │ │ │ ├── NdbUtil.cpp │ │ │ ├── NdbUtil.hpp │ │ │ ├── NdbWaiter.hpp │ │ │ ├── Ndberr.cpp │ │ │ ├── Ndbif.cpp │ │ │ ├── Ndbinit.cpp │ │ │ ├── Ndblist.cpp │ │ │ ├── ObjectMap.cpp │ │ │ ├── ObjectMap.hpp │ │ │ ├── ScanOperation.txt │ │ │ ├── SignalSender.cpp │ │ │ ├── SignalSender.hpp │ │ │ ├── TransporterFacade.cpp │ │ │ ├── TransporterFacade.hpp │ │ │ ├── ndb_cluster_connection.cpp │ │ │ ├── ndb_cluster_connection_impl.hpp │ │ │ ├── ndb_internal.hpp │ │ │ ├── ndberror.c │ │ │ ├── ndberror_check.c │ │ │ └── signal-sender │ │ │ ├── Makefile │ │ │ ├── SignalSender.cpp │ │ │ └── SignalSender.hpp │ ├── test │ │ ├── Makefile.am │ │ ├── include │ │ │ ├── AtrtClient.hpp │ │ │ ├── CpcClient.hpp │ │ │ ├── DbUtil.hpp │ │ │ ├── HugoAsynchTransactions.hpp │ │ │ ├── HugoCalculator.hpp │ │ │ ├── HugoOperations.hpp │ │ │ ├── HugoTransactions.hpp │ │ │ ├── NDBT.hpp │ │ │ ├── NDBT_DataSet.hpp │ │ │ ├── NDBT_DataSetTransaction.hpp │ │ │ ├── NDBT_Error.hpp │ │ │ ├── NDBT_Output.hpp │ │ │ ├── NDBT_ResultRow.hpp │ │ │ ├── NDBT_ReturnCodes.h │ │ │ ├── NDBT_Stats.hpp │ │ │ ├── NDBT_Table.hpp │ │ │ ├── NDBT_Tables.hpp │ │ │ ├── NDBT_Test.hpp │ │ │ ├── NDBT_Thread.hpp │ │ │ ├── NdbBackup.hpp │ │ │ ├── NdbConfig.hpp │ │ │ ├── NdbGrep.hpp │ │ │ ├── NdbMixRestarter.hpp │ │ │ ├── NdbRestarter.hpp │ │ │ ├── NdbRestarts.hpp │ │ │ ├── NdbSchemaCon.hpp │ │ │ ├── NdbSchemaOp.hpp │ │ │ ├── NdbTest.hpp │ │ │ ├── NdbTimer.hpp │ │ │ ├── TestNdbEventOperation.hpp │ │ │ ├── UtilTransactions.hpp │ │ │ └── getarg.h │ │ ├── ndbapi │ │ │ ├── InsertRecs.cpp │ │ │ ├── Makefile.am │ │ │ ├── ScanFilter.hpp │ │ │ ├── ScanFunctions.hpp │ │ │ ├── ScanInterpretTest.hpp │ │ │ ├── TraceNdbApi.cpp │ │ │ ├── VerifyNdbApi.cpp │ │ │ ├── acid.cpp │ │ │ ├── acid2.cpp │ │ │ ├── acrt │ │ │ │ └── NdbRepStress.cpp │ │ │ ├── adoInsertRecs.cpp │ │ │ ├── asyncGenerator.cpp │ │ │ ├── bank │ │ │ │ ├── Bank.cpp │ │ │ │ ├── Bank.hpp │ │ │ │ ├── BankLoad.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── bankCreator.cpp │ │ │ │ ├── bankMakeGL.cpp │ │ │ │ ├── bankSumAccounts.cpp │ │ │ │ ├── bankTimer.cpp │ │ │ │ ├── bankTransactionMaker.cpp │ │ │ │ ├── bankValidateAllGLs.cpp │ │ │ │ └── testBank.cpp │ │ │ ├── bench │ │ │ │ ├── asyncGenerator.cpp │ │ │ │ ├── dbGenerator.h │ │ │ │ ├── dbPopulate.cpp │ │ │ │ ├── dbPopulate.h │ │ │ │ ├── macros.h │ │ │ │ ├── mainAsyncGenerator.cpp │ │ │ │ ├── mainPopulate.cpp │ │ │ │ ├── ndb_async1.cpp │ │ │ │ ├── ndb_async2.cpp │ │ │ │ ├── ndb_error.hpp │ │ │ │ ├── ndb_schema.hpp │ │ │ │ ├── ndb_user_transaction.cpp │ │ │ │ ├── ndb_user_transaction2.cpp │ │ │ │ ├── ndb_user_transaction3.cpp │ │ │ │ ├── ndb_user_transaction4.cpp │ │ │ │ ├── ndb_user_transaction5.cpp │ │ │ │ ├── ndb_user_transaction6.cpp │ │ │ │ ├── testData.h │ │ │ │ ├── testDefinitions.h │ │ │ │ ├── userInterface.cpp │ │ │ │ └── userInterface.h │ │ │ ├── benchronja.cpp │ │ │ ├── bulk_copy.cpp │ │ │ ├── cdrserver.cpp │ │ │ ├── celloDb.cpp │ │ │ ├── create_all_tabs.cpp │ │ │ ├── create_tab.cpp │ │ │ ├── drop_all_tabs.cpp │ │ │ ├── flexAsynch.cpp │ │ │ ├── flexBench.cpp │ │ │ ├── flexHammer.cpp │ │ │ ├── flexScan.cpp │ │ │ ├── flexTT.cpp │ │ │ ├── flexTimedAsynch.cpp │ │ │ ├── flex_bench_mysql.cpp │ │ │ ├── index.cpp │ │ │ ├── index2.cpp │ │ │ ├── initronja.cpp │ │ │ ├── interpreterInTup.cpp │ │ │ ├── mainAsyncGenerator.cpp │ │ │ ├── msa.cpp │ │ │ ├── ndb_async1.cpp │ │ │ ├── ndb_async2.cpp │ │ │ ├── ndb_user_populate.cpp │ │ │ ├── ndb_user_transaction.cpp │ │ │ ├── ndb_user_transaction2.cpp │ │ │ ├── ndb_user_transaction3.cpp │ │ │ ├── ndb_user_transaction4.cpp │ │ │ ├── ndb_user_transaction5.cpp │ │ │ ├── ndb_user_transaction6.cpp │ │ │ ├── restarter.cpp │ │ │ ├── restarter2.cpp │ │ │ ├── restarts.cpp │ │ │ ├── size.cpp │ │ │ ├── slow_select.cpp │ │ │ ├── testBackup.cpp │ │ │ ├── testBasic.cpp │ │ │ ├── testBasicAsynch.cpp │ │ │ ├── testBitfield.cpp │ │ │ ├── testBlobs.cpp │ │ │ ├── testDataBuffers.cpp │ │ │ ├── testDeadlock.cpp │ │ │ ├── testDict.cpp │ │ │ ├── testGrepVerify.cpp │ │ │ ├── testIndex.cpp │ │ │ ├── testIndexStat.cpp │ │ │ ├── testInterpreter.cpp │ │ │ ├── testLcp.cpp │ │ │ ├── testMgm.cpp │ │ │ ├── testNDBT.cpp │ │ │ ├── testNdbApi.cpp │ │ │ ├── testNodeRestart.cpp │ │ │ ├── testOIBasic.cpp │ │ │ ├── testOperations.cpp │ │ │ ├── testOrderedIndex.cpp │ │ │ ├── testPartitioning.cpp │ │ │ ├── testReadPerf.cpp │ │ │ ├── testRestartGci.cpp │ │ │ ├── testSRBank.cpp │ │ │ ├── testScan.cpp │ │ │ ├── testScanFilter.cpp │ │ │ ├── testScanInterpreter.cpp │ │ │ ├── testScanPerf.cpp │ │ │ ├── testSystemRestart.cpp │ │ │ ├── testTimeout.cpp │ │ │ ├── testTransactions.cpp │ │ │ ├── test_event.cpp │ │ │ ├── test_event_merge.cpp │ │ │ ├── test_event_multi_table.cpp │ │ │ └── userInterface.cpp │ │ ├── ndbnet │ │ │ ├── test.run │ │ │ ├── testError.run │ │ │ ├── testMNF.run │ │ │ ├── testNR.run │ │ │ ├── testNR1.run │ │ │ ├── testNR4.run │ │ │ ├── testSRhang.run │ │ │ └── testTR295.run │ │ ├── newtonapi │ │ │ ├── basic_test │ │ │ │ ├── Makefile │ │ │ │ ├── basic │ │ │ │ │ ├── Makefile │ │ │ │ │ └── basic.cpp │ │ │ │ ├── bulk_read │ │ │ │ │ ├── Makefile │ │ │ │ │ └── br_test.cpp │ │ │ │ ├── common.cpp │ │ │ │ ├── common.hpp │ │ │ │ ├── ptr_binding │ │ │ │ │ ├── Makefile │ │ │ │ │ └── ptr_binding_test.cpp │ │ │ │ └── too_basic.cpp │ │ │ └── perf_test │ │ │ │ ├── Makefile │ │ │ │ └── perf.cpp │ │ ├── odbc │ │ │ ├── SQL99_test │ │ │ │ ├── Makefile │ │ │ │ ├── SQL99_test.cpp │ │ │ │ └── SQL99_test.h │ │ │ ├── client │ │ │ │ ├── Makefile │ │ │ │ ├── NDBT_ALLOCHANDLE.cpp │ │ │ │ ├── NDBT_ALLOCHANDLE_HDBC.cpp │ │ │ │ ├── NDBT_SQLConnect.cpp │ │ │ │ ├── NDBT_SQLPrepare.cpp │ │ │ │ ├── SQLAllocEnvTest.cpp │ │ │ │ ├── SQLAllocHandleTest.cpp │ │ │ │ ├── SQLAllocHandleTest_bf.cpp │ │ │ │ ├── SQLBindColTest.cpp │ │ │ │ ├── SQLBindParameterTest.cpp │ │ │ │ ├── SQLCancelTest.cpp │ │ │ │ ├── SQLCloseCursorTest.cpp │ │ │ │ ├── SQLColAttributeTest.cpp │ │ │ │ ├── SQLColAttributeTest1.cpp │ │ │ │ ├── SQLColAttributeTest2.cpp │ │ │ │ ├── SQLColAttributeTest3.cpp │ │ │ │ ├── SQLConnectTest.cpp │ │ │ │ ├── SQLCopyDescTest.cpp │ │ │ │ ├── SQLDescribeColTest.cpp │ │ │ │ ├── SQLDisconnectTest.cpp │ │ │ │ ├── SQLDriverConnectTest.cpp │ │ │ │ ├── SQLEndTranTest.cpp │ │ │ │ ├── SQLErrorTest.cpp │ │ │ │ ├── SQLExecDirectTest.cpp │ │ │ │ ├── SQLExecuteTest.cpp │ │ │ │ ├── SQLFetchScrollTest.cpp │ │ │ │ ├── SQLFetchTest.cpp │ │ │ │ ├── SQLFreeHandleTest.cpp │ │ │ │ ├── SQLFreeStmtTest.cpp │ │ │ │ ├── SQLGetConnectAttrTest.cpp │ │ │ │ ├── SQLGetCursorNameTest.cpp │ │ │ │ ├── SQLGetDataTest.cpp │ │ │ │ ├── SQLGetDescFieldTest.cpp │ │ │ │ ├── SQLGetDescRecTest.cpp │ │ │ │ ├── SQLGetDiagFieldTest.cpp │ │ │ │ ├── SQLGetDiagRecSimpleTest.cpp │ │ │ │ ├── SQLGetDiagRecTest.cpp │ │ │ │ ├── SQLGetEnvAttrTest.cpp │ │ │ │ ├── SQLGetFunctionsTest.cpp │ │ │ │ ├── SQLGetInfoTest.cpp │ │ │ │ ├── SQLGetStmtAttrTest.cpp │ │ │ │ ├── SQLGetTypeInfoTest.cpp │ │ │ │ ├── SQLMoreResultsTest.cpp │ │ │ │ ├── SQLNumResultColsTest.cpp │ │ │ │ ├── SQLParamDataTest.cpp │ │ │ │ ├── SQLPrepareTest.cpp │ │ │ │ ├── SQLPutDataTest.cpp │ │ │ │ ├── SQLRowCountTest.cpp │ │ │ │ ├── SQLSetConnectAttrTest.cpp │ │ │ │ ├── SQLSetCursorNameTest.cpp │ │ │ │ ├── SQLSetDescFieldTest.cpp │ │ │ │ ├── SQLSetDescRecTest.cpp │ │ │ │ ├── SQLSetEnvAttrTest.cpp │ │ │ │ ├── SQLSetStmtAttrTest.cpp │ │ │ │ ├── SQLTablesTest.cpp │ │ │ │ ├── SQLTransactTest.cpp │ │ │ │ ├── common.hpp │ │ │ │ └── main.cpp │ │ │ ├── dm-iodbc │ │ │ │ └── Makefile │ │ │ ├── dm-unixodbc │ │ │ │ └── Makefile │ │ │ ├── driver │ │ │ │ ├── Makefile │ │ │ │ └── testOdbcDriver.cpp │ │ │ └── test_compiler │ │ │ │ ├── Makefile │ │ │ │ └── test_compiler.cpp │ │ ├── run-test │ │ │ ├── 16node-tests.txt │ │ │ ├── ATRT_SETUP_README.txt │ │ │ ├── ATRT_USAGE_README.txt │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── README.ATRT │ │ │ ├── atrt-analyze-result.sh │ │ │ ├── atrt-clear-result.sh │ │ │ ├── atrt-example.tgz │ │ │ ├── atrt-gather-result.sh │ │ │ ├── atrt-mysql-test-run │ │ │ ├── atrt-setup.sh │ │ │ ├── atrt-testBackup │ │ │ ├── atrt.hpp │ │ │ ├── autotest-boot.sh │ │ │ ├── autotest-run.sh │ │ │ ├── basic.txt │ │ │ ├── conf-dl145a.cnf │ │ │ ├── conf-ndbmaster.cnf │ │ │ ├── conf-repl.cnf │ │ │ ├── conf-test.cnf │ │ │ ├── daily-basic-tests.txt │ │ │ ├── daily-devel-tests.txt │ │ │ ├── example-my.cnf │ │ │ ├── example.conf │ │ │ ├── files.cpp │ │ │ ├── main.cpp │ │ │ ├── make-config.sh │ │ │ ├── make-html-reports.sh │ │ │ ├── make-index.sh │ │ │ ├── ndb-autotest.sh │ │ │ ├── setup.cpp │ │ │ ├── test-tests.txt │ │ │ └── upgrade-boot.sh │ │ ├── src │ │ │ ├── AtrtClient.cpp │ │ │ ├── CpcClient.cpp │ │ │ ├── DbUtil.cpp │ │ │ ├── HugoAsynchTransactions.cpp │ │ │ ├── HugoCalculator.cpp │ │ │ ├── HugoOperations.cpp │ │ │ ├── HugoTransactions.cpp │ │ │ ├── Makefile.am │ │ │ ├── NDBT_Error.cpp │ │ │ ├── NDBT_Output.cpp │ │ │ ├── NDBT_ResultRow.cpp │ │ │ ├── NDBT_ReturnCodes.cpp │ │ │ ├── NDBT_Table.cpp │ │ │ ├── NDBT_Tables.cpp │ │ │ ├── NDBT_Test.cpp │ │ │ ├── NDBT_Thread.cpp │ │ │ ├── NdbBackup.cpp │ │ │ ├── NdbConfig.cpp │ │ │ ├── NdbGrep.cpp │ │ │ ├── NdbMixRestarter.cpp │ │ │ ├── NdbRestarter.cpp │ │ │ ├── NdbRestarts.cpp │ │ │ ├── NdbSchemaCon.cpp │ │ │ ├── NdbSchemaOp.cpp │ │ │ ├── UtilTransactions.cpp │ │ │ └── getarg.c │ │ └── tools │ │ │ ├── Makefile.am │ │ │ ├── connect.cpp │ │ │ ├── copy_tab.cpp │ │ │ ├── cpcc.cpp │ │ │ ├── create_index.cpp │ │ │ ├── hugoCalculator.cpp │ │ │ ├── hugoFill.cpp │ │ │ ├── hugoLoad.cpp │ │ │ ├── hugoLockRecords.cpp │ │ │ ├── hugoPkDelete.cpp │ │ │ ├── hugoPkRead.cpp │ │ │ ├── hugoPkReadRecord.cpp │ │ │ ├── hugoPkUpdate.cpp │ │ │ ├── hugoScanRead.cpp │ │ │ ├── hugoScanUpdate.cpp │ │ │ ├── listen.cpp │ │ │ ├── log_listner.cpp │ │ │ ├── rep_latency.cpp │ │ │ ├── restart.cpp │ │ │ ├── transproxy.cpp │ │ │ └── verify_index.cpp │ └── tools │ │ ├── Makefile.am │ │ ├── clean-links.sh │ │ ├── delete_all.cpp │ │ ├── desc.cpp │ │ ├── drop_index.cpp │ │ ├── drop_tab.cpp │ │ ├── listTables.cpp │ │ ├── make-errors.pl │ │ ├── make-links.sh │ │ ├── ndb_config.cpp │ │ ├── ndb_error_reporter │ │ ├── ndb_size.pl │ │ ├── ndb_test_platform.cpp │ │ ├── ndbsql.cpp │ │ ├── restore │ │ ├── Restore.cpp │ │ ├── Restore.hpp │ │ ├── consumer.cpp │ │ ├── consumer.hpp │ │ ├── consumer_printer.cpp │ │ ├── consumer_printer.hpp │ │ ├── consumer_restore.cpp │ │ ├── consumer_restore.hpp │ │ ├── consumer_restorem.cpp │ │ ├── ndb_nodegroup_map.h │ │ └── restore_main.cpp │ │ ├── rgrep │ │ ├── select_all.cpp │ │ ├── select_count.cpp │ │ └── waiter.cpp ├── oqgraph │ ├── CMakeLists.txt │ ├── README │ ├── graphcore-graph.h │ ├── graphcore-types.h │ ├── graphcore.cc │ ├── graphcore.h │ ├── graphstore.c │ ├── graphstore.h │ ├── ha_oqgraph.cc │ ├── ha_oqgraph.h │ ├── oqgraph_config.h.in │ └── oqgraph_probes.d ├── pbxt │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── TODO │ ├── bin │ │ └── xtstat_xt.cc │ ├── mysql-test │ │ └── main │ │ │ ├── README │ │ │ ├── disabled.def │ │ │ ├── init_file.sql │ │ │ ├── r │ │ │ ├── 1st.rdiff │ │ │ ├── ansi.rdiff │ │ │ ├── bench_count_distinct.rdiff │ │ │ ├── bigint.rdiff │ │ │ ├── binary.rdiff │ │ │ ├── case.rdiff │ │ │ ├── cast.rdiff │ │ │ ├── check.rdiff │ │ │ ├── constraints.rdiff │ │ │ ├── create-uca.rdiff │ │ │ ├── create.rdiff │ │ │ ├── create_not_windows.rdiff │ │ │ ├── ctype_cp1250_ch.rdiff │ │ │ ├── ctype_cp932_binlog_row.rdiff │ │ │ ├── ctype_create.rdiff │ │ │ ├── ctype_eucjpms.rdiff │ │ │ ├── ctype_euckr.rdiff │ │ │ ├── ctype_gb2312.rdiff │ │ │ ├── ctype_gbk.rdiff │ │ │ ├── ctype_mb.rdiff │ │ │ ├── ctype_recoding.rdiff │ │ │ ├── ctype_sjis.rdiff │ │ │ ├── ctype_ujis.rdiff │ │ │ ├── ctype_utf32_uca.rdiff │ │ │ ├── ctype_utf8mb4_heap.rdiff │ │ │ ├── ctype_utf8mb4_myisam.rdiff │ │ │ ├── ddl_i18n_koi8r.rdiff │ │ │ ├── ddl_i18n_utf8.rdiff │ │ │ ├── derived.rdiff │ │ │ ├── derived_opt.rdiff │ │ │ ├── derived_view.rdiff │ │ │ ├── distinct.rdiff │ │ │ ├── drop.rdiff │ │ │ ├── endspace.rdiff │ │ │ ├── errors.rdiff │ │ │ ├── func_compress.rdiff │ │ │ ├── func_default.rdiff │ │ │ ├── func_group.rdiff │ │ │ ├── func_in.rdiff │ │ │ ├── func_math.rdiff │ │ │ ├── func_misc.rdiff │ │ │ ├── func_regexp.rdiff │ │ │ ├── func_str.rdiff │ │ │ ├── func_system.rdiff │ │ │ ├── func_test.rdiff │ │ │ ├── func_time.rdiff │ │ │ ├── func_time_hires.rdiff │ │ │ ├── grant.rdiff │ │ │ ├── grant2.rdiff │ │ │ ├── grant4.rdiff │ │ │ ├── greedy_optimizer.rdiff │ │ │ ├── group_by.rdiff │ │ │ ├── group_min_max.rdiff │ │ │ ├── heap.rdiff │ │ │ ├── index_intersect.rdiff │ │ │ ├── information_schema.rdiff │ │ │ ├── information_schema_part.rdiff │ │ │ ├── insert_select.rdiff │ │ │ ├── join.rdiff │ │ │ ├── join_nested.rdiff │ │ │ ├── join_optimizer.rdiff │ │ │ ├── join_outer.rdiff │ │ │ ├── join_outer_jcl6.rdiff │ │ │ ├── log_tables_upgrade.rdiff │ │ │ ├── lowercase_table.rdiff │ │ │ ├── myisam_icp.rdiff │ │ │ ├── mysql.rdiff │ │ │ ├── mysql_upgrade.rdiff │ │ │ ├── mysql_upgrade_ssl.rdiff │ │ │ ├── mysqlslap.rdiff │ │ │ ├── null.rdiff │ │ │ ├── partition.rdiff │ │ │ ├── partition_column.rdiff │ │ │ ├── partition_column_prune.rdiff │ │ │ ├── partition_mgm_err.rdiff │ │ │ ├── partition_not_windows.rdiff │ │ │ ├── partition_pruning.rdiff │ │ │ ├── partition_utf8.rdiff │ │ │ ├── pbxt_assertions.result │ │ │ ├── pbxt_bugs.result │ │ │ ├── pbxt_locking.result │ │ │ ├── pbxt_my_fail2.result │ │ │ ├── pbxt_ref_int.result │ │ │ ├── pbxt_transactions.result │ │ │ ├── pbxt_updates.result │ │ │ ├── pbxt_xa.result │ │ │ ├── pbxt_xa_binlog.result │ │ │ ├── plugin.rdiff │ │ │ ├── pool_of_threads.rdiff │ │ │ ├── preload.rdiff │ │ │ ├── ps_11bugs.rdiff │ │ │ ├── ps_1general.rdiff │ │ │ ├── ps_ddl.rdiff │ │ │ ├── rpl_mmap.result │ │ │ ├── schema.rdiff │ │ │ ├── show_check.rdiff │ │ │ ├── single_delete_update.rdiff │ │ │ ├── sql_mode.rdiff │ │ │ ├── status.rdiff │ │ │ ├── subselect3.rdiff │ │ │ ├── subselect_extra.rdiff │ │ │ ├── subselect_extra_no_semijoin.rdiff │ │ │ ├── subselect_innodb.rdiff │ │ │ ├── subselect_mat.rdiff │ │ │ ├── subselect_mat_cost_bugs.rdiff │ │ │ ├── subselect_partial_match.rdiff │ │ │ ├── subselect_sj2.rdiff │ │ │ ├── subselect_sj2_mat.rdiff │ │ │ ├── subselect_sj_mat.rdiff │ │ │ ├── subselect_sj_nonmerged.rdiff │ │ │ ├── synchronization.rdiff │ │ │ ├── system_mysql_db_fix50117.rdiff │ │ │ ├── table_elim.rdiff │ │ │ ├── table_options.rdiff │ │ │ ├── temp_table.rdiff │ │ │ ├── type_binary.rdiff │ │ │ ├── type_bit.rdiff │ │ │ ├── type_datetime.rdiff │ │ │ ├── type_datetime_hires.rdiff │ │ │ ├── type_decimal.rdiff │ │ │ ├── type_enum.rdiff │ │ │ ├── type_float.rdiff │ │ │ ├── type_nchar.rdiff │ │ │ ├── type_ranges.rdiff │ │ │ ├── type_set.rdiff │ │ │ ├── type_time_hires.rdiff │ │ │ ├── type_timestamp_hires.rdiff │ │ │ ├── type_varchar.rdiff │ │ │ ├── user_var.rdiff │ │ │ ├── varbinary.rdiff │ │ │ └── warnings_engine_disabled.rdiff │ │ │ ├── suite.opt │ │ │ ├── suite.pm │ │ │ └── t │ │ │ ├── pbxt_assertions.test │ │ │ ├── pbxt_bugs.test │ │ │ ├── pbxt_locking.test │ │ │ ├── pbxt_my_fail2.test │ │ │ ├── pbxt_ref_int.test │ │ │ ├── pbxt_transactions.test │ │ │ ├── pbxt_updates.test │ │ │ ├── pbxt_xa.test │ │ │ ├── pbxt_xa_binlog.test │ │ │ └── rpl_mmap.test │ └── src │ │ ├── backup_xt.cc │ │ ├── backup_xt.h │ │ ├── bsearch_xt.cc │ │ ├── bsearch_xt.h │ │ ├── cache_xt.cc │ │ ├── cache_xt.h │ │ ├── ccutils_xt.cc │ │ ├── ccutils_xt.h │ │ ├── database_xt.cc │ │ ├── database_xt.h │ │ ├── datadic_xt.cc │ │ ├── datadic_xt.h │ │ ├── datalog_xt.cc │ │ ├── datalog_xt.h │ │ ├── discover_xt.cc │ │ ├── discover_xt.h │ │ ├── filesys_xt.cc │ │ ├── filesys_xt.h │ │ ├── ha_pbxt.cc │ │ ├── ha_pbxt.h │ │ ├── ha_xtsys.cc │ │ ├── ha_xtsys.h │ │ ├── hashtab_xt.cc │ │ ├── hashtab_xt.h │ │ ├── heap_xt.cc │ │ ├── heap_xt.h │ │ ├── index_xt.cc │ │ ├── index_xt.h │ │ ├── linklist_xt.cc │ │ ├── linklist_xt.h │ │ ├── lock_xt.cc │ │ ├── lock_xt.h │ │ ├── locklist_xt.cc │ │ ├── locklist_xt.h │ │ ├── memory_xt.cc │ │ ├── memory_xt.h │ │ ├── myxt_xt.cc │ │ ├── myxt_xt.h │ │ ├── pbms.h │ │ ├── pbms_enabled.cc │ │ ├── pbms_enabled.h │ │ ├── pthread_xt.cc │ │ ├── pthread_xt.h │ │ ├── restart_xt.cc │ │ ├── restart_xt.h │ │ ├── sortedlist_xt.cc │ │ ├── sortedlist_xt.h │ │ ├── strutil_xt.cc │ │ ├── strutil_xt.h │ │ ├── systab_xt.cc │ │ ├── systab_xt.h │ │ ├── tabcache_xt.cc │ │ ├── tabcache_xt.h │ │ ├── table_xt.cc │ │ ├── table_xt.h │ │ ├── thread_xt.cc │ │ ├── thread_xt.h │ │ ├── trace_xt.cc │ │ ├── trace_xt.h │ │ ├── util_xt.cc │ │ ├── util_xt.h │ │ ├── win_inttypes.h │ │ ├── xaction_xt.cc │ │ ├── xaction_xt.h │ │ ├── xactlog_xt.cc │ │ ├── xactlog_xt.h │ │ ├── xt_config.h │ │ ├── xt_defs.h │ │ └── xt_errno.h ├── perfschema │ ├── CMakeLists.txt │ ├── ha_perfschema.cc │ ├── ha_perfschema.h │ ├── pfs.cc │ ├── pfs.h │ ├── pfs_atomic.cc │ ├── pfs_atomic.h │ ├── pfs_check.cc │ ├── pfs_column_types.h │ ├── pfs_column_values.cc │ ├── pfs_column_values.h │ ├── pfs_engine_table.cc │ ├── pfs_engine_table.h │ ├── pfs_events_waits.cc │ ├── pfs_events_waits.h │ ├── pfs_global.cc │ ├── pfs_global.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_stat.h │ ├── pfs_timer.cc │ ├── pfs_timer.h │ ├── table_all_instr.cc │ ├── table_all_instr.h │ ├── table_events_waits.cc │ ├── table_events_waits.h │ ├── table_events_waits_summary.cc │ ├── table_events_waits_summary.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.cc │ ├── table_file_summary.h │ ├── table_performance_timers.cc │ ├── table_performance_timers.h │ ├── table_setup_consumers.cc │ ├── table_setup_consumers.h │ ├── table_setup_instruments.cc │ ├── table_setup_instruments.h │ ├── table_setup_timers.cc │ ├── table_setup_timers.h │ ├── table_sync_instances.cc │ ├── table_sync_instances.h │ ├── table_threads.cc │ ├── table_threads.h │ └── unittest │ │ ├── CMakeLists.txt │ │ ├── conf.txt │ │ ├── pfs-t.cc │ │ ├── pfs_instr-oom-t.cc │ │ ├── pfs_instr-t.cc │ │ ├── pfs_instr_class-oom-t.cc │ │ ├── pfs_instr_class-t.cc │ │ ├── pfs_timer-t.cc │ │ ├── stub_pfs_global.h │ │ ├── stub_print_error.h │ │ └── stub_server_misc.h ├── sphinx │ ├── CMakeLists.txt │ ├── gen_data.php │ ├── ha_sphinx.cc │ ├── ha_sphinx.h │ ├── make-patch.sh │ └── snippets_udf.cc └── xtradb │ ├── CMakeLists.txt │ ├── COPYING.Google │ ├── COPYING.Percona │ ├── Doxyfile │ ├── btr │ ├── btr0btr.c │ ├── btr0cur.c │ ├── btr0pcur.c │ └── btr0sea.c │ ├── buf │ ├── buf0buddy.c │ ├── buf0buf.c │ ├── buf0flu.c │ ├── buf0lru.c │ └── buf0rea.c │ ├── data │ ├── data0data.c │ └── data0type.c │ ├── dict │ ├── dict0boot.c │ ├── dict0crea.c │ ├── dict0dict.c │ ├── dict0load.c │ └── dict0mem.c │ ├── dyn │ └── dyn0dyn.c │ ├── eval │ ├── eval0eval.c │ └── eval0proc.c │ ├── fil │ └── fil0fil.c │ ├── fsp │ └── fsp0fsp.c │ ├── fut │ ├── fut0fut.c │ └── fut0lst.c │ ├── ha │ ├── ha0ha.c │ ├── ha0storage.c │ └── hash0hash.c │ ├── ha_innodb.def │ ├── handler │ ├── ha_innodb.cc │ ├── ha_innodb.h │ ├── handler0alter.cc │ ├── i_s.cc │ └── i_s.h │ ├── ibuf │ └── ibuf0ibuf.c │ ├── include │ ├── btr0btr.h │ ├── btr0btr.ic │ ├── btr0cur.h │ ├── btr0cur.ic │ ├── btr0pcur.h │ ├── btr0pcur.ic │ ├── btr0sea.h │ ├── btr0sea.ic │ ├── btr0types.h │ ├── buf0buddy.h │ ├── buf0buddy.ic │ ├── buf0buf.h │ ├── buf0buf.ic │ ├── buf0flu.h │ ├── buf0flu.ic │ ├── buf0lru.h │ ├── buf0lru.ic │ ├── buf0rea.h │ ├── buf0types.h │ ├── data0data.h │ ├── data0data.ic │ ├── data0type.h │ ├── data0type.ic │ ├── data0types.h │ ├── db0err.h │ ├── dict0boot.h │ ├── dict0boot.ic │ ├── dict0crea.h │ ├── dict0crea.ic │ ├── dict0dict.h │ ├── dict0dict.ic │ ├── dict0load.h │ ├── dict0load.ic │ ├── dict0mem.h │ ├── dict0mem.ic │ ├── dict0types.h │ ├── dyn0dyn.h │ ├── dyn0dyn.ic │ ├── eval0eval.h │ ├── eval0eval.ic │ ├── eval0proc.h │ ├── eval0proc.ic │ ├── fil0fil.h │ ├── fsp0fsp.h │ ├── fsp0fsp.ic │ ├── fsp0types.h │ ├── fut0fut.h │ ├── fut0fut.ic │ ├── fut0lst.h │ ├── fut0lst.ic │ ├── ha0ha.h │ ├── ha0ha.ic │ ├── ha0storage.h │ ├── ha0storage.ic │ ├── ha_prototypes.h │ ├── handler0alter.h │ ├── hash0hash.h │ ├── hash0hash.ic │ ├── ibuf0ibuf.h │ ├── ibuf0ibuf.ic │ ├── ibuf0types.h │ ├── lock0iter.h │ ├── lock0lock.h │ ├── lock0lock.ic │ ├── lock0priv.h │ ├── lock0priv.ic │ ├── lock0types.h │ ├── log0log.h │ ├── log0log.ic │ ├── log0online.h │ ├── log0recv.h │ ├── log0recv.ic │ ├── mach0data.h │ ├── mach0data.ic │ ├── mem0dbg.h │ ├── mem0dbg.ic │ ├── mem0mem.h │ ├── mem0mem.ic │ ├── mem0pool.h │ ├── mem0pool.ic │ ├── mtr0log.h │ ├── mtr0log.ic │ ├── mtr0mtr.h │ ├── mtr0mtr.ic │ ├── mtr0types.h │ ├── os0file.h │ ├── os0file.ic │ ├── os0proc.h │ ├── os0proc.ic │ ├── os0sync.h │ ├── os0sync.ic │ ├── os0thread.h │ ├── os0thread.ic │ ├── page0cur.h │ ├── page0cur.ic │ ├── page0page.h │ ├── page0page.ic │ ├── page0types.h │ ├── page0zip.h │ ├── page0zip.ic │ ├── pars0grm.h │ ├── pars0opt.h │ ├── pars0opt.ic │ ├── pars0pars.h │ ├── pars0pars.ic │ ├── pars0sym.h │ ├── pars0sym.ic │ ├── pars0types.h │ ├── que0que.h │ ├── que0que.ic │ ├── que0types.h │ ├── read0read.h │ ├── read0read.ic │ ├── read0types.h │ ├── rem0cmp.h │ ├── rem0cmp.ic │ ├── rem0rec.h │ ├── rem0rec.ic │ ├── rem0types.h │ ├── row0ext.h │ ├── row0ext.ic │ ├── row0ins.h │ ├── row0ins.ic │ ├── row0merge.h │ ├── row0mysql.h │ ├── row0mysql.ic │ ├── row0purge.h │ ├── row0purge.ic │ ├── row0row.h │ ├── row0row.ic │ ├── row0sel.h │ ├── row0sel.ic │ ├── row0types.h │ ├── row0uins.h │ ├── row0uins.ic │ ├── row0umod.h │ ├── row0umod.ic │ ├── row0undo.h │ ├── row0undo.ic │ ├── row0upd.h │ ├── row0upd.ic │ ├── row0vers.h │ ├── row0vers.ic │ ├── srv0srv.h │ ├── srv0srv.ic │ ├── srv0start.h │ ├── sync0arr.h │ ├── sync0arr.ic │ ├── sync0rw.h │ ├── sync0rw.ic │ ├── sync0sync.h │ ├── sync0sync.ic │ ├── sync0types.h │ ├── trx0i_s.h │ ├── trx0purge.h │ ├── trx0purge.ic │ ├── trx0rec.h │ ├── trx0rec.ic │ ├── trx0roll.h │ ├── trx0roll.ic │ ├── trx0rseg.h │ ├── trx0rseg.ic │ ├── trx0sys.h │ ├── trx0sys.ic │ ├── trx0trx.h │ ├── trx0trx.ic │ ├── trx0types.h │ ├── trx0undo.h │ ├── trx0undo.ic │ ├── trx0xa.h │ ├── univ.i │ ├── usr0sess.h │ ├── usr0sess.ic │ ├── usr0types.h │ ├── ut0bh.h │ ├── ut0bh.ic │ ├── ut0byte.h │ ├── ut0byte.ic │ ├── ut0dbg.h │ ├── ut0list.h │ ├── ut0list.ic │ ├── ut0lst.h │ ├── ut0mem.h │ ├── ut0mem.ic │ ├── ut0rbt.h │ ├── ut0rnd.h │ ├── ut0rnd.ic │ ├── ut0sort.h │ ├── ut0ut.h │ ├── ut0ut.ic │ ├── ut0vec.h │ ├── ut0vec.ic │ └── ut0wqueue.h │ ├── lock │ ├── lock0iter.c │ └── lock0lock.c │ ├── log │ ├── log0log.c │ ├── log0online.c │ └── log0recv.c │ ├── mach │ └── mach0data.c │ ├── mem │ ├── mem0dbg.c │ ├── mem0mem.c │ └── mem0pool.c │ ├── mtr │ ├── mtr0log.c │ └── mtr0mtr.c │ ├── os │ ├── os0file.c │ ├── os0proc.c │ ├── os0sync.c │ └── os0thread.c │ ├── page │ ├── page0cur.c │ ├── page0page.c │ └── page0zip.c │ ├── pars │ ├── lexyy.c │ ├── make_bison.sh │ ├── make_flex.sh │ ├── pars0grm.c │ ├── pars0grm.y │ ├── pars0lex.l │ ├── pars0opt.c │ ├── pars0pars.c │ └── pars0sym.c │ ├── que │ └── que0que.c │ ├── read │ └── read0read.c │ ├── rem │ ├── rem0cmp.c │ └── rem0rec.c │ ├── row │ ├── row0ext.c │ ├── row0ins.c │ ├── row0merge.c │ ├── row0mysql.c │ ├── row0purge.c │ ├── row0row.c │ ├── row0sel.c │ ├── row0uins.c │ ├── row0umod.c │ ├── row0undo.c │ ├── row0upd.c │ └── row0vers.c │ ├── srv │ ├── srv0srv.c │ └── srv0start.c │ ├── sync │ ├── sync0arr.c │ ├── sync0rw.c │ └── sync0sync.c │ ├── trx │ ├── trx0i_s.c │ ├── trx0purge.c │ ├── trx0rec.c │ ├── trx0roll.c │ ├── trx0rseg.c │ ├── trx0sys.c │ ├── trx0trx.c │ └── trx0undo.c │ ├── usr │ └── usr0sess.c │ └── ut │ ├── ut0bh.c │ ├── ut0byte.c │ ├── ut0dbg.c │ ├── ut0list.c │ ├── ut0mem.c │ ├── ut0rbt.c │ ├── ut0rnd.c │ ├── ut0ut.c │ ├── ut0vec.c │ └── ut0wqueue.c ├── 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-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 ├── latin2.def ├── llstr.c ├── longlong2str.c ├── my_strchr.c ├── my_strtoll10.c ├── my_vsnprintf.c ├── str2int.c ├── str_alloc.c ├── strappend.c ├── strcend.c ├── 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 ├── MySQL-shared-compat.spec.sh ├── RHEL4-SElinux │ ├── mysql.fc │ └── mysql.te ├── binary-configure.sh ├── build-tags ├── ccfilter ├── compiler_warnings.supp ├── config.huge.ini.sh ├── config.medium.ini.sh ├── config.small.ini.sh ├── 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 ├── my-huge.cnf.sh ├── my-innodb-heavy-4G.cnf.sh ├── my-large.cnf.sh ├── my-medium.cnf.sh ├── my-small.cnf.sh ├── mysql-log-rotate.sh ├── mysql-multi.server.sh ├── mysql.m4 ├── mysql.server-sys5.sh ├── mysql.server.sh ├── mysql.spec.sh ├── mysqld_multi.server.sh ├── ndb-config-2-node.ini.sh └── rpm │ ├── client.cnf │ ├── my.cnf │ ├── mysql-clients.cnf │ ├── server-postin.sh │ ├── server-postun.sh │ ├── server-prein.sh │ ├── server-preun.sh │ ├── server.cnf │ └── shared-post.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 ├── examples │ ├── CMakeLists.txt │ ├── core-t.c │ ├── no_plan-t.c │ ├── simple-t.c │ ├── skip-t.c │ ├── skip_all-t.c │ └── todo-t.c ├── mysys │ ├── CMakeLists.txt │ ├── base64-t.c │ ├── bitmap-t.c │ ├── explain_filename-t.cc │ ├── lf-t.c │ ├── ma_dyncol-t.c │ ├── my_atomic-t.c │ ├── my_delete-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 ├── 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 ├── 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 │ ├── WixUIBannerBmp.jpg │ ├── WixUIDialogBmp.jpg │ ├── ca │ │ ├── CMakeLists.txt │ │ ├── CustomAction.cpp │ │ ├── CustomAction.def │ │ └── CustomAction.rc │ ├── create_msi.cmake.in │ ├── 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 └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── README ├── README.MySQL ├── adler32.c ├── algorithm.txt ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzio.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.3 ├── zlib.h ├── zutil.c └── zutil.h /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/.bzrignore -------------------------------------------------------------------------------- /BUILD-CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD-CMAKE -------------------------------------------------------------------------------- /BUILD/FINISH.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/FINISH.sh -------------------------------------------------------------------------------- /BUILD/SETUP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/SETUP.sh -------------------------------------------------------------------------------- /BUILD/autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/autorun.sh -------------------------------------------------------------------------------- /BUILD/build_mccge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/build_mccge.sh -------------------------------------------------------------------------------- /BUILD/check-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/check-cpu -------------------------------------------------------------------------------- /BUILD/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/cleanup -------------------------------------------------------------------------------- /BUILD/compile-alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/compile-alpha -------------------------------------------------------------------------------- /BUILD/compile-bintar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/compile-bintar -------------------------------------------------------------------------------- /BUILD/compile-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/compile-dist -------------------------------------------------------------------------------- /BUILD/compile-innodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/compile-innodb -------------------------------------------------------------------------------- /BUILD/compile-ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/compile-ppc -------------------------------------------------------------------------------- /BUILD/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/BUILD/util.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Docs/INSTALL-BINARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/Docs/INSTALL-BINARY -------------------------------------------------------------------------------- /Docs/myisam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/Docs/myisam.txt -------------------------------------------------------------------------------- /Docs/mysql.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/Docs/mysql.info -------------------------------------------------------------------------------- /Docs/sp-imp-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/Docs/sp-imp-spec.txt -------------------------------------------------------------------------------- /INSTALL-SOURCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/INSTALL-SOURCE -------------------------------------------------------------------------------- /INSTALL-WIN-SOURCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/INSTALL-WIN-SOURCE -------------------------------------------------------------------------------- /KNOWN_BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/KNOWN_BUGS.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/VERSION -------------------------------------------------------------------------------- /client/client_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/client_priv.h -------------------------------------------------------------------------------- /client/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/echo.c -------------------------------------------------------------------------------- /client/my_readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/my_readline.h -------------------------------------------------------------------------------- /client/mysql.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysql.cc -------------------------------------------------------------------------------- /client/mysqladmin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqladmin.cc -------------------------------------------------------------------------------- /client/mysqlcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqlcheck.c -------------------------------------------------------------------------------- /client/mysqldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqldump.c -------------------------------------------------------------------------------- /client/mysqlimport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqlimport.c -------------------------------------------------------------------------------- /client/mysqlshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqlshow.c -------------------------------------------------------------------------------- /client/mysqlslap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqlslap.c -------------------------------------------------------------------------------- /client/mysqltest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/mysqltest.cc -------------------------------------------------------------------------------- /client/readline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/client/readline.cc -------------------------------------------------------------------------------- /cmake/bison.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/bison.cmake -------------------------------------------------------------------------------- /cmake/cat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/cat.cmake -------------------------------------------------------------------------------- /cmake/configure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/configure.pl -------------------------------------------------------------------------------- /cmake/ctest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/ctest.cmake -------------------------------------------------------------------------------- /cmake/dtrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/dtrace.cmake -------------------------------------------------------------------------------- /cmake/info_bin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/info_bin.cmake -------------------------------------------------------------------------------- /cmake/info_src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/info_src.cmake -------------------------------------------------------------------------------- /cmake/libutils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/libutils.cmake -------------------------------------------------------------------------------- /cmake/os/AIX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/os/AIX.cmake -------------------------------------------------------------------------------- /cmake/os/HP-UX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/os/HP-UX.cmake -------------------------------------------------------------------------------- /cmake/os/Linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/os/Linux.cmake -------------------------------------------------------------------------------- /cmake/os/OS400.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/os/OS400.cmake -------------------------------------------------------------------------------- /cmake/os/SunOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/os/SunOS.cmake -------------------------------------------------------------------------------- /cmake/plugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/plugin.cmake -------------------------------------------------------------------------------- /cmake/readline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/readline.cmake -------------------------------------------------------------------------------- /cmake/ssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/ssl.cmake -------------------------------------------------------------------------------- /cmake/tags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/tags.cmake -------------------------------------------------------------------------------- /cmake/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/cmake/zlib.cmake -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/config.h.cmake -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/configure.cmake -------------------------------------------------------------------------------- /dbug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/CMakeLists.txt -------------------------------------------------------------------------------- /dbug/dbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/dbug.c -------------------------------------------------------------------------------- /dbug/dbug_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/dbug_long.h -------------------------------------------------------------------------------- /dbug/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/example1.c -------------------------------------------------------------------------------- /dbug/example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/example2.c -------------------------------------------------------------------------------- /dbug/example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/example3.c -------------------------------------------------------------------------------- /dbug/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/factorial.c -------------------------------------------------------------------------------- /dbug/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/main.c -------------------------------------------------------------------------------- /dbug/monty.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/monty.doc -------------------------------------------------------------------------------- /dbug/my_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/my_main.c -------------------------------------------------------------------------------- /dbug/tests-t.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/tests-t.pl -------------------------------------------------------------------------------- /dbug/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/dbug/tests.c -------------------------------------------------------------------------------- /dbug/user.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/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 | syslog 3 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libmariadbclient-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/include/ 2 | usr/lib/ 3 | -------------------------------------------------------------------------------- /debian/libmariadbclient-dev.examples: -------------------------------------------------------------------------------- 1 | sql/udf_example.c 2 | -------------------------------------------------------------------------------- /debian/libmariadbclient18.dirs: -------------------------------------------------------------------------------- 1 | usr/lib/ 2 | -------------------------------------------------------------------------------- /debian/mariadb-common.files: -------------------------------------------------------------------------------- 1 | etc/mysql/conf.d/mariadb.cnf 2 | -------------------------------------------------------------------------------- /debian/mysql-common.dirs: -------------------------------------------------------------------------------- 1 | etc/mysql/conf.d/ 2 | -------------------------------------------------------------------------------- /debian/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | [type: gettext/rfc822deb] mariadb-server-5.5.templates 2 | -------------------------------------------------------------------------------- /debian/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/ar.po -------------------------------------------------------------------------------- /debian/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/ca.po -------------------------------------------------------------------------------- /debian/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/cs.po -------------------------------------------------------------------------------- /debian/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/da.po -------------------------------------------------------------------------------- /debian/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/de.po -------------------------------------------------------------------------------- /debian/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/es.po -------------------------------------------------------------------------------- /debian/po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/eu.po -------------------------------------------------------------------------------- /debian/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/fr.po -------------------------------------------------------------------------------- /debian/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/gl.po -------------------------------------------------------------------------------- /debian/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/it.po -------------------------------------------------------------------------------- /debian/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/ja.po -------------------------------------------------------------------------------- /debian/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/nb.po -------------------------------------------------------------------------------- /debian/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/nl.po -------------------------------------------------------------------------------- /debian/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/pt.po -------------------------------------------------------------------------------- /debian/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/pt_BR.po -------------------------------------------------------------------------------- /debian/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/ro.po -------------------------------------------------------------------------------- /debian/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/ru.po -------------------------------------------------------------------------------- /debian/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/sv.po -------------------------------------------------------------------------------- /debian/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/po/tr.po -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/debian/watch -------------------------------------------------------------------------------- /extra/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/CMakeLists.txt -------------------------------------------------------------------------------- /extra/charset2html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/charset2html.c -------------------------------------------------------------------------------- /extra/comp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/comp_err.c -------------------------------------------------------------------------------- /extra/innochecksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/innochecksum.c -------------------------------------------------------------------------------- /extra/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/perror.c -------------------------------------------------------------------------------- /extra/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/replace.c -------------------------------------------------------------------------------- /extra/resolveip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/resolveip.c -------------------------------------------------------------------------------- /extra/yassl/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/yassl/COPYING -------------------------------------------------------------------------------- /extra/yassl/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/yassl/INSTALL -------------------------------------------------------------------------------- /extra/yassl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/yassl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/extra/yassl/README -------------------------------------------------------------------------------- /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/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/base64.h -------------------------------------------------------------------------------- /include/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/decimal.h -------------------------------------------------------------------------------- /include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/errmsg.h -------------------------------------------------------------------------------- /include/ft_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/ft_global.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/heap.h -------------------------------------------------------------------------------- /include/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/keycache.h -------------------------------------------------------------------------------- /include/lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/lf.h -------------------------------------------------------------------------------- /include/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/m_ctype.h -------------------------------------------------------------------------------- /include/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/m_string.h -------------------------------------------------------------------------------- /include/ma_dyncol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/ma_dyncol.h -------------------------------------------------------------------------------- /include/maria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/maria.h -------------------------------------------------------------------------------- /include/my_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_aes.h -------------------------------------------------------------------------------- /include/my_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_alarm.h -------------------------------------------------------------------------------- /include/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_alloc.h -------------------------------------------------------------------------------- /include/my_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_atomic.h -------------------------------------------------------------------------------- /include/my_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_base.h -------------------------------------------------------------------------------- /include/my_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_bit.h -------------------------------------------------------------------------------- /include/my_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_bitmap.h -------------------------------------------------------------------------------- /include/my_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_compare.h -------------------------------------------------------------------------------- /include/my_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_context.h -------------------------------------------------------------------------------- /include/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_dbug.h -------------------------------------------------------------------------------- /include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_dir.h -------------------------------------------------------------------------------- /include/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_getopt.h -------------------------------------------------------------------------------- /include/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_global.h -------------------------------------------------------------------------------- /include/my_libwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_libwrap.h -------------------------------------------------------------------------------- /include/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_list.h -------------------------------------------------------------------------------- /include/my_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_md5.h -------------------------------------------------------------------------------- /include/my_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_net.h -------------------------------------------------------------------------------- /include/my_nosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_nosys.h -------------------------------------------------------------------------------- /include/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_pthread.h -------------------------------------------------------------------------------- /include/my_rdtsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_rdtsc.h -------------------------------------------------------------------------------- /include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_sys.h -------------------------------------------------------------------------------- /include/my_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_time.h -------------------------------------------------------------------------------- /include/my_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_tree.h -------------------------------------------------------------------------------- /include/my_uctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_uctype.h -------------------------------------------------------------------------------- /include/my_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_user.h -------------------------------------------------------------------------------- /include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/my_xml.h -------------------------------------------------------------------------------- /include/myisam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/myisam.h -------------------------------------------------------------------------------- /include/myisamchk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/myisamchk.h -------------------------------------------------------------------------------- /include/myisammrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/myisammrg.h -------------------------------------------------------------------------------- /include/myisampack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/myisampack.h -------------------------------------------------------------------------------- /include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/mysql.h -------------------------------------------------------------------------------- /include/mysql.h.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/mysql.h.pp -------------------------------------------------------------------------------- /include/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/mysql_com.h -------------------------------------------------------------------------------- /include/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/mysql_time.h -------------------------------------------------------------------------------- /include/mysys_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/mysys_err.h -------------------------------------------------------------------------------- /include/password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/password.h -------------------------------------------------------------------------------- /include/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/queues.h -------------------------------------------------------------------------------- /include/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/rijndael.h -------------------------------------------------------------------------------- /include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/sha1.h -------------------------------------------------------------------------------- /include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/sha2.h -------------------------------------------------------------------------------- /include/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/sql_common.h -------------------------------------------------------------------------------- /include/t_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/t_ctype.h -------------------------------------------------------------------------------- /include/thr_alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/thr_alarm.h -------------------------------------------------------------------------------- /include/thr_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/thr_lock.h -------------------------------------------------------------------------------- /include/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/typelib.h -------------------------------------------------------------------------------- /include/violite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/violite.h -------------------------------------------------------------------------------- /include/wqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/include/wqueue.h -------------------------------------------------------------------------------- /libmysql/errmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/libmysql/errmsg.c -------------------------------------------------------------------------------- /libmysql/libmysql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/libmysql/libmysql.c -------------------------------------------------------------------------------- /libmysql/libmysql.ver.in: -------------------------------------------------------------------------------- 1 | libmysqlclient_@SHARED_LIB_MAJOR_VERSION@ { global: *; }; 2 | -------------------------------------------------------------------------------- /libmysqld/lib_sql.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/libmysqld/lib_sql.cc -------------------------------------------------------------------------------- /libmysqld/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/libmysqld/resource.h -------------------------------------------------------------------------------- /libservices/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/libservices/HOWTO -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/comp_err.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/comp_err.1 -------------------------------------------------------------------------------- /man/innochecksum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/innochecksum.1 -------------------------------------------------------------------------------- /man/msql2mysql.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/msql2mysql.1 -------------------------------------------------------------------------------- /man/myisam_ftdump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/myisam_ftdump.1 -------------------------------------------------------------------------------- /man/myisamchk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/myisamchk.1 -------------------------------------------------------------------------------- /man/myisamlog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/myisamlog.1 -------------------------------------------------------------------------------- /man/myisampack.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/myisampack.1 -------------------------------------------------------------------------------- /man/mysql.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql.1 -------------------------------------------------------------------------------- /man/mysql.server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql.server.1 -------------------------------------------------------------------------------- /man/mysql_client_test_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql_client_test.1 2 | -------------------------------------------------------------------------------- /man/mysql_config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql_config.1 -------------------------------------------------------------------------------- /man/mysql_plugin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql_plugin.1 -------------------------------------------------------------------------------- /man/mysql_upgrade.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql_upgrade.1 -------------------------------------------------------------------------------- /man/mysql_waitpid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql_waitpid.1 -------------------------------------------------------------------------------- /man/mysql_zap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysql_zap.1 -------------------------------------------------------------------------------- /man/mysqlaccess.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlaccess.1 -------------------------------------------------------------------------------- /man/mysqladmin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqladmin.1 -------------------------------------------------------------------------------- /man/mysqlbinlog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlbinlog.1 -------------------------------------------------------------------------------- /man/mysqlbug.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlbug.1 -------------------------------------------------------------------------------- /man/mysqlcheck.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlcheck.1 -------------------------------------------------------------------------------- /man/mysqld.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqld.8 -------------------------------------------------------------------------------- /man/mysqld_multi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqld_multi.1 -------------------------------------------------------------------------------- /man/mysqld_safe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqld_safe.1 -------------------------------------------------------------------------------- /man/mysqldump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqldump.1 -------------------------------------------------------------------------------- /man/mysqldumpslow.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqldumpslow.1 -------------------------------------------------------------------------------- /man/mysqlhotcopy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlhotcopy.1 -------------------------------------------------------------------------------- /man/mysqlimport.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlimport.1 -------------------------------------------------------------------------------- /man/mysqlman.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlman.1 -------------------------------------------------------------------------------- /man/mysqlmanager.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlmanager.8 -------------------------------------------------------------------------------- /man/mysqlshow.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlshow.1 -------------------------------------------------------------------------------- /man/mysqlslap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqlslap.1 -------------------------------------------------------------------------------- /man/mysqltest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/mysqltest.1 -------------------------------------------------------------------------------- /man/mysqltest_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysqltest.1 2 | -------------------------------------------------------------------------------- /man/ndbd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/ndbd.8 -------------------------------------------------------------------------------- /man/ndbmtd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/ndbmtd.8 -------------------------------------------------------------------------------- /man/perror.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/perror.1 -------------------------------------------------------------------------------- /man/replace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/replace.1 -------------------------------------------------------------------------------- /man/resolveip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/man/resolveip.1 -------------------------------------------------------------------------------- /mysql-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysql-test/README -------------------------------------------------------------------------------- /mysql-test/include/analyze-timeout.test: -------------------------------------------------------------------------------- 1 | SHOW PROCESSLIST; 2 | 3 | exit; 4 | -------------------------------------------------------------------------------- /mysql-test/include/have_archive.opt: -------------------------------------------------------------------------------- 1 | --loose-archive 2 | --plugin-load=$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_partition.opt: -------------------------------------------------------------------------------- 1 | --enable-partition 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_pbxt.opt: -------------------------------------------------------------------------------- 1 | --loose-pbxt 2 | -------------------------------------------------------------------------------- /mysql-test/include/have_plugin_auth.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$AUTH_TEST_PLUGIN_SO 2 | -------------------------------------------------------------------------------- /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/platform.combinations: -------------------------------------------------------------------------------- 1 | [win] 2 | 3 | [unix] 4 | 5 | -------------------------------------------------------------------------------- /mysql-test/r/big_test.require: -------------------------------------------------------------------------------- 1 | using_big_test 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/check_var_limit.require: -------------------------------------------------------------------------------- 1 | limit 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/default_storage_engine.result: -------------------------------------------------------------------------------- 1 | "all ok" 2 | -------------------------------------------------------------------------------- /mysql-test/r/have_compress.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_compress YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_crypt.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_crypt YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_geometry.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_geometry YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_local_infile.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | local_infile ON 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_log_bin.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | log_bin ON 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_met_timezone.require: -------------------------------------------------------------------------------- 1 | FROM_UNIXTIME(24*3600) 2 | 1970-01-02 01:00:00 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_mutex_deadlock_detector.require: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_mysql_upgrade.result: -------------------------------------------------------------------------------- 1 | have_mysql_upgrade 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_ndb_extra.require: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-test/r/have_ndbapi_examples.require: -------------------------------------------------------------------------------- 1 | have_ndb_example 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_partition.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_partitioning YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_perror.require: -------------------------------------------------------------------------------- 1 | have_perror 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_profiling.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_profiling YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_query_cache.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_query_cache YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_ssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_symlink.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_symlink YES 3 | -------------------------------------------------------------------------------- /mysql-test/r/have_working_dns.require: -------------------------------------------------------------------------------- 1 | have_working_dns 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/is_debug_build.require: -------------------------------------------------------------------------------- 1 | instr(version(), "debug") > 0 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/is_embedded.require: -------------------------------------------------------------------------------- 1 | have_embedded 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/mysqldump-no-binlog.result: -------------------------------------------------------------------------------- 1 | mysqldump: Error: Binlogging on server not active 2 | -------------------------------------------------------------------------------- /mysql-test/r/mysqltest_256.result: -------------------------------------------------------------------------------- 1 | # Done 2 | -------------------------------------------------------------------------------- /mysql-test/r/not_embedded.require: -------------------------------------------------------------------------------- 1 | have_embedded 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_ndb.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ndbcluster NO 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_ndb_default.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_openssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_openssl NO 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_partition.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_partitioning NO 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_valgrind.require: -------------------------------------------------------------------------------- 1 | using_valgrind 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-test/r/not_windows.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/partition_mgm_err2.result: -------------------------------------------------------------------------------- 1 | INSERT INTO t1 VALUES (15); 2 | DROP TABLE t1; 3 | -------------------------------------------------------------------------------- /mysql-test/r/server_id.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | server_id 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/server_id1.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | server_id 102 3 | -------------------------------------------------------------------------------- /mysql-test/r/ssl_8k_key.result: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | Ssl_cipher DHE-RSA-AES256-SHA 3 | -------------------------------------------------------------------------------- /mysql-test/r/ssl_connect.result: -------------------------------------------------------------------------------- 1 | completed 2 | -------------------------------------------------------------------------------- /mysql-test/r/testdb_only.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | use extern server NO 3 | -------------------------------------------------------------------------------- /mysql-test/r/true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/r/windows.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-test/std_data/bad_gis_data.dat: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /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/funcs_1/load_file.txt: -------------------------------------------------------------------------------- 1 | Here is content from load_file 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/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/suite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysql-test/suite.pm -------------------------------------------------------------------------------- /mysql-test/suite/binlog/r/binlog_reset_master.result: -------------------------------------------------------------------------------- 1 | RESET MASTER; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/binlog/t/binlog_bug36391-master.opt: -------------------------------------------------------------------------------- 1 | --sql_mode=NO_BACKSLASH_ESCAPES 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_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/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/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_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_relayspace-slave.opt: -------------------------------------------------------------------------------- 1 | --relay_log_space_limit=10 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_view-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.foo 2 | -------------------------------------------------------------------------------- /mysql-test/suite/engines/rr_trx/init_innodb.txt: -------------------------------------------------------------------------------- 1 | init_innodb 2 | -------------------------------------------------------------------------------- /mysql-test/suite/federated/federated_partition-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 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/innodb/r/innodb_bug34053.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug35220.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug36172.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/r/innodb_bug38231.result: -------------------------------------------------------------------------------- 1 | SET storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /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/innodb-consistent-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug14676111-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-purge-threads=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug39438-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-file-per-table=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_bug60049-master.opt: -------------------------------------------------------------------------------- 1 | --loose-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_bug60229-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/innodb/t/innodb_cmp_drop_table-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-size=8M 2 | -------------------------------------------------------------------------------- /mysql-test/suite/jp/t/jp_enum_sjis-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/jp/t/jp_enum_ucs2-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/jp/t/jp_enum_ujis-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/jp/t/jp_enum_utf8-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 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/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/single.result: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /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/oqgraph/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$HA_OQGRAPH_SO --enable-oqgraph 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_recover_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover 2 | -------------------------------------------------------------------------------- /mysql-test/suite/parts/t/partition_repair_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover=off 2 | -------------------------------------------------------------------------------- /mysql-test/suite/percona/percona_log_warnings_suppress-master.opt: -------------------------------------------------------------------------------- 1 | --log-error 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/pool_of_threads-master.opt: -------------------------------------------------------------------------------- 1 | --loose-pool-of-threads 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/selects-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema/t/short_option_2-master.opt: -------------------------------------------------------------------------------- 1 | -aW5 2 | -------------------------------------------------------------------------------- /mysql-test/suite/perfschema_stress/stress_init.txt: -------------------------------------------------------------------------------- 1 | setup 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/feedback_plugin_install.opt: -------------------------------------------------------------------------------- 1 | --loose-feedback 2 | -------------------------------------------------------------------------------- /mysql-test/suite/plugins/t/pam_cleartext.opt: -------------------------------------------------------------------------------- 1 | --loose-pam-use-cleartext-plugin 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/t/rpl_000010-slave.opt: -------------------------------------------------------------------------------- 1 | --debug-disconnect-slave-event-count=2 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_binlog_errors-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_checksum-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-checksum=CRC32 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_ddl-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-innodb 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_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_m-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 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_update4-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=d1.% 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_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_semi_sync_event-master.opt: -------------------------------------------------------------------------------- 1 | --max-connections=40 2 | -------------------------------------------------------------------------------- /mysql-test/suite/rpl/t/rpl_skip_error-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-error=1062 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_stm_log-slave.opt: -------------------------------------------------------------------------------- 1 | --log-slave-updates 2 | -------------------------------------------------------------------------------- /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/sphinx/suite.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$HA_SPHINX_SO --sphinx 2 | -------------------------------------------------------------------------------- /mysql-test/suite/storage_engine/disabled.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_buffer_pool_shm_key_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_dict_size_limit_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_doublewrite_file_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_fake_changes_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_fast_checksum_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_ibuf_accel_rate_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_ibuf_max_size_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_lazy_drop_table_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_log_block_size_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_max_changed_pages_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_page_size_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_read_ahead_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_recovery_stats_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_show_locks_held_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_show_verbose_locks_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_stats_auto_update_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/r/innodb_use_sys_stats_table_basic.result: -------------------------------------------------------------------------------- 1 | XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func2-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=1 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func3-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=0 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func4-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=on 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/autocommit_func5-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=off 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/general_log_file_basic-master.opt: -------------------------------------------------------------------------------- 1 | --log=test.log 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/identity_func-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_fake_changes_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_fast_checksum_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_ibuf_max_size_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_log_block_size_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_page_size_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_read_ahead_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/innodb_recovery_stats_basic.test: -------------------------------------------------------------------------------- 1 | --echo XtraDB extension 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/last_insert_id_func-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/plugin_dir_basic-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$MYSQL_TMP_DIR 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/skip_name_resolve_basic-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/suite/sys_vars/t/storage_engine_basic-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /mysql-test/t/auth_rpl-slave.opt: -------------------------------------------------------------------------------- 1 | --master-retry-count=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/bootstrap-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/bug46261-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-test/t/bug58669-master.opt: -------------------------------------------------------------------------------- 1 | --read-only 2 | -------------------------------------------------------------------------------- /mysql-test/t/concurrent_innodb_safelog-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/contributors.test: -------------------------------------------------------------------------------- 1 | SHOW CONTRIBUTORS; 2 | -------------------------------------------------------------------------------- /mysql-test/t/count_distinct2-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-test/t/ctype_utf16_def-master.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16,latin1 2 | -------------------------------------------------------------------------------- /mysql-test/t/ctype_utf8-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/ctype_utf8mb4-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/ctype_utf8mb4_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/events_bugs-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/t/events_restart-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-test/t/flush2-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/t/grant3-master.opt: -------------------------------------------------------------------------------- 1 | --safe-user-create 2 | -------------------------------------------------------------------------------- /mysql-test/t/grant_lowercase.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/implicit_commit-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/init_connect-master.opt: -------------------------------------------------------------------------------- 1 | --init_connect="set @a='a\\0c'" 2 | -------------------------------------------------------------------------------- /mysql-test/t/innodb_ignore_builtin-master.opt: -------------------------------------------------------------------------------- 1 | --ignore_builtin_innodb 2 | -------------------------------------------------------------------------------- /mysql-test/t/innodb_mysql_lock-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=300 2 | -------------------------------------------------------------------------------- /mysql-test/t/ipv6-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve --bind-address=:: 2 | -------------------------------------------------------------------------------- /mysql-test/t/lock_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/lock_tables_lost_commit-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=test 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_table-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_table3-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_table4-master.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=2 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_table_grant-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_table_qcache-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-test/t/lowercase_view-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/mdl_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/merge_mmap-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-use-mmap 2 | -------------------------------------------------------------------------------- /mysql-test/t/merge_recover-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover=force 2 | -------------------------------------------------------------------------------- /mysql-test/t/multi_update-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-test/t/multi_update2-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-test/t/multi_update_tiny_hash-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-test/t/myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover-options=off 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysql_delimiter_19799.sql: -------------------------------------------------------------------------------- 1 | delimiter // 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysql_plugin-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$DAEMONEXAMPLE_DIR 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysqlbinlog-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=4096 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysqldump-compat.opt: -------------------------------------------------------------------------------- 1 | --loose-debug-dbug=d,4x_server_emul 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysqldump-max-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/mysqldump-no-binlog-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/t/named_pipe-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-named-pipe 2 | -------------------------------------------------------------------------------- /mysql-test/t/old-mode-master.opt: -------------------------------------------------------------------------------- 1 | --old=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/partition-master.opt: -------------------------------------------------------------------------------- 1 | --symbolic-links=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/partition_disabled-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-partition 2 | -------------------------------------------------------------------------------- /mysql-test/t/partition_not_blackhole-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-blackhole 2 | -------------------------------------------------------------------------------- /mysql-test/t/partition_not_windows-master.opt: -------------------------------------------------------------------------------- 1 | --symbolic-links=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/plugin_auth_qa_2-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$QA_AUTH_INTERFACE_SO 2 | -------------------------------------------------------------------------------- /mysql-test/t/plugin_auth_qa_3-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-load=$QA_AUTH_SERVER_SO 2 | -------------------------------------------------------------------------------- /mysql-test/t/plugin_maturity-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-maturity=stable 2 | -------------------------------------------------------------------------------- /mysql-test/t/ps_3innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/row-checksum-old-master.opt: -------------------------------------------------------------------------------- 1 | --old 2 | -------------------------------------------------------------------------------- /mysql-test/t/secure_file_priv_win-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-test/t/select_pkeycache-master.opt: -------------------------------------------------------------------------------- 1 | --key_cache_segments=7 2 | -------------------------------------------------------------------------------- /mysql-test/t/skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-test/t/skip_log_bin-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-test/t/skip_name_resolve-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-test/t/ssl_cipher-master.opt: -------------------------------------------------------------------------------- 1 | --loose-ssl-cipher=AES128-SHA 2 | -------------------------------------------------------------------------------- /mysql-test/t/status-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=table,file 2 | -------------------------------------------------------------------------------- /mysql-test/t/strict-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-test/t/sysdate_is_now-master.opt: -------------------------------------------------------------------------------- 1 | --sysdate-is-now 2 | -------------------------------------------------------------------------------- /mysql-test/t/temp_table-master.opt: -------------------------------------------------------------------------------- 1 | --tmpdir=$MYSQLTEST_VARDIR//tmp 2 | -------------------------------------------------------------------------------- /mysql-test/t/timezone-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=MET 2 | -------------------------------------------------------------------------------- /mysql-test/t/timezone3-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=:$MYSQL_TEST_DIR/std_data/Moscow_leap 2 | -------------------------------------------------------------------------------- /mysql-test/t/timezone4-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT+10 2 | -------------------------------------------------------------------------------- /mysql-test/t/udf_skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-test/t/user_limits-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=1000 2 | -------------------------------------------------------------------------------- /mysql-test/t/variables-master.opt: -------------------------------------------------------------------------------- 1 | --max-user-connections=1 2 | -------------------------------------------------------------------------------- /mysql-test/t/warnings-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-innodb 2 | -------------------------------------------------------------------------------- /mysys/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/ChangeLog -------------------------------------------------------------------------------- /mysys/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/array.c -------------------------------------------------------------------------------- /mysys/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/base64.c -------------------------------------------------------------------------------- /mysys/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/charset.c -------------------------------------------------------------------------------- /mysys/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/checksum.c -------------------------------------------------------------------------------- /mysys/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/default.c -------------------------------------------------------------------------------- /mysys/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/errors.c -------------------------------------------------------------------------------- /mysys/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/hash.c -------------------------------------------------------------------------------- /mysys/lf_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/lf_hash.c -------------------------------------------------------------------------------- /mysys/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/list.c -------------------------------------------------------------------------------- /mysys/ma_dyncol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/ma_dyncol.c -------------------------------------------------------------------------------- /mysys/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/md5.c -------------------------------------------------------------------------------- /mysys/mf_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_cache.c -------------------------------------------------------------------------------- /mysys/mf_dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_dirname.c -------------------------------------------------------------------------------- /mysys/mf_fn_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_fn_ext.c -------------------------------------------------------------------------------- /mysys/mf_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_format.c -------------------------------------------------------------------------------- /mysys/mf_getdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_getdate.c -------------------------------------------------------------------------------- /mysys/mf_iocache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_iocache.c -------------------------------------------------------------------------------- /mysys/mf_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_pack.c -------------------------------------------------------------------------------- /mysys/mf_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_path.c -------------------------------------------------------------------------------- /mysys/mf_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_qsort.c -------------------------------------------------------------------------------- /mysys/mf_qsort2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_qsort2.c -------------------------------------------------------------------------------- /mysys/mf_radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_radix.c -------------------------------------------------------------------------------- /mysys/mf_same.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_same.c -------------------------------------------------------------------------------- /mysys/mf_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_sort.c -------------------------------------------------------------------------------- /mysys/mf_soundex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_soundex.c -------------------------------------------------------------------------------- /mysys/mf_tempdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_tempdir.c -------------------------------------------------------------------------------- /mysys/mf_wcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mf_wcomp.c -------------------------------------------------------------------------------- /mysys/mulalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mulalloc.c -------------------------------------------------------------------------------- /mysys/my_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_access.c -------------------------------------------------------------------------------- /mysys/my_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_aes.c -------------------------------------------------------------------------------- /mysys/my_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_alarm.c -------------------------------------------------------------------------------- /mysys/my_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_alloc.c -------------------------------------------------------------------------------- /mysys/my_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_atomic.c -------------------------------------------------------------------------------- /mysys/my_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_bit.c -------------------------------------------------------------------------------- /mysys/my_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_bitmap.c -------------------------------------------------------------------------------- /mysys/my_chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_chmod.c -------------------------------------------------------------------------------- /mysys/my_chsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_chsize.c -------------------------------------------------------------------------------- /mysys/my_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_compare.c -------------------------------------------------------------------------------- /mysys/my_conio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_conio.c -------------------------------------------------------------------------------- /mysys/my_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_context.c -------------------------------------------------------------------------------- /mysys/my_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_copy.c -------------------------------------------------------------------------------- /mysys/my_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_crc32.c -------------------------------------------------------------------------------- /mysys/my_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_create.c -------------------------------------------------------------------------------- /mysys/my_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_delete.c -------------------------------------------------------------------------------- /mysys/my_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_div.c -------------------------------------------------------------------------------- /mysys/my_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_error.c -------------------------------------------------------------------------------- /mysys/my_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_file.c -------------------------------------------------------------------------------- /mysys/my_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_fopen.c -------------------------------------------------------------------------------- /mysys/my_fstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_fstream.c -------------------------------------------------------------------------------- /mysys/my_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_getopt.c -------------------------------------------------------------------------------- /mysys/my_getwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_getwd.c -------------------------------------------------------------------------------- /mysys/my_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_init.c -------------------------------------------------------------------------------- /mysys/my_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_lib.c -------------------------------------------------------------------------------- /mysys/my_libwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_libwrap.c -------------------------------------------------------------------------------- /mysys/my_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_lock.c -------------------------------------------------------------------------------- /mysys/my_lockmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_lockmem.c -------------------------------------------------------------------------------- /mysys/my_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_malloc.c -------------------------------------------------------------------------------- /mysys/my_memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_memmem.c -------------------------------------------------------------------------------- /mysys/my_mess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_mess.c -------------------------------------------------------------------------------- /mysys/my_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_mkdir.c -------------------------------------------------------------------------------- /mysys/my_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_mmap.c -------------------------------------------------------------------------------- /mysys/my_new.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_new.cc -------------------------------------------------------------------------------- /mysys/my_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_once.c -------------------------------------------------------------------------------- /mysys/my_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_open.c -------------------------------------------------------------------------------- /mysys/my_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_port.c -------------------------------------------------------------------------------- /mysys/my_pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_pread.c -------------------------------------------------------------------------------- /mysys/my_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_pthread.c -------------------------------------------------------------------------------- /mysys/my_quick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_quick.c -------------------------------------------------------------------------------- /mysys/my_rdtsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_rdtsc.c -------------------------------------------------------------------------------- /mysys/my_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_read.c -------------------------------------------------------------------------------- /mysys/my_redel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_redel.c -------------------------------------------------------------------------------- /mysys/my_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_rename.c -------------------------------------------------------------------------------- /mysys/my_rnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_rnd.c -------------------------------------------------------------------------------- /mysys/my_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_seek.c -------------------------------------------------------------------------------- /mysys/my_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_sleep.c -------------------------------------------------------------------------------- /mysys/my_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_static.c -------------------------------------------------------------------------------- /mysys/my_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_static.h -------------------------------------------------------------------------------- /mysys/my_symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_symlink.c -------------------------------------------------------------------------------- /mysys/my_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_sync.c -------------------------------------------------------------------------------- /mysys/my_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_uuid.c -------------------------------------------------------------------------------- /mysys/my_wincond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_wincond.c -------------------------------------------------------------------------------- /mysys/my_windac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_windac.c -------------------------------------------------------------------------------- /mysys/my_winerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_winerr.c -------------------------------------------------------------------------------- /mysys/my_winfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_winfile.c -------------------------------------------------------------------------------- /mysys/my_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/my_write.c -------------------------------------------------------------------------------- /mysys/mysys_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/mysys_priv.h -------------------------------------------------------------------------------- /mysys/ptr_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/ptr_cmp.c -------------------------------------------------------------------------------- /mysys/queues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/queues.c -------------------------------------------------------------------------------- /mysys/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/rijndael.c -------------------------------------------------------------------------------- /mysys/safemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/safemalloc.c -------------------------------------------------------------------------------- /mysys/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/sha1.c -------------------------------------------------------------------------------- /mysys/stacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/stacktrace.c -------------------------------------------------------------------------------- /mysys/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/string.c -------------------------------------------------------------------------------- /mysys/test_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/test_dir.c -------------------------------------------------------------------------------- /mysys/test_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/test_xml.c -------------------------------------------------------------------------------- /mysys/testhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/testhash.c -------------------------------------------------------------------------------- /mysys/thr_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/thr_alarm.c -------------------------------------------------------------------------------- /mysys/thr_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/thr_lock.c -------------------------------------------------------------------------------- /mysys/thr_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/thr_mutex.c -------------------------------------------------------------------------------- /mysys/thr_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/thr_rwlock.c -------------------------------------------------------------------------------- /mysys/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/tree.c -------------------------------------------------------------------------------- /mysys/typelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/typelib.c -------------------------------------------------------------------------------- /mysys/wqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/mysys/wqueue.c -------------------------------------------------------------------------------- /plugin/daemon_example/ChangeLog: -------------------------------------------------------------------------------- 1 | 0.1 2 | - Added 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /regex/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/CHANGES -------------------------------------------------------------------------------- /regex/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/COPYRIGHT -------------------------------------------------------------------------------- /regex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/README -------------------------------------------------------------------------------- /regex/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/WHATSNEW -------------------------------------------------------------------------------- /regex/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/cclass.h -------------------------------------------------------------------------------- /regex/cname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/cname.h -------------------------------------------------------------------------------- /regex/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/debug.c -------------------------------------------------------------------------------- /regex/debug.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/debug.ih -------------------------------------------------------------------------------- /regex/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/engine.c -------------------------------------------------------------------------------- /regex/engine.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/engine.ih -------------------------------------------------------------------------------- /regex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/main.c -------------------------------------------------------------------------------- /regex/main.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/main.ih -------------------------------------------------------------------------------- /regex/my_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/my_regex.h -------------------------------------------------------------------------------- /regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regcomp.c -------------------------------------------------------------------------------- /regex/regcomp.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regcomp.ih -------------------------------------------------------------------------------- /regex/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regerror.c -------------------------------------------------------------------------------- /regex/regerror.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regerror.ih -------------------------------------------------------------------------------- /regex/regex.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regex.3 -------------------------------------------------------------------------------- /regex/regex.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regex.7 -------------------------------------------------------------------------------- /regex/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regex2.h -------------------------------------------------------------------------------- /regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regexec.c -------------------------------------------------------------------------------- /regex/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regexp.c -------------------------------------------------------------------------------- /regex/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/regfree.c -------------------------------------------------------------------------------- /regex/reginit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/reginit.c -------------------------------------------------------------------------------- /regex/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/split.c -------------------------------------------------------------------------------- /regex/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/tests -------------------------------------------------------------------------------- /regex/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/regex/utils.h -------------------------------------------------------------------------------- /scripts/comp_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/scripts/comp_sql.c -------------------------------------------------------------------------------- /scripts/mytop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/scripts/mytop.sh -------------------------------------------------------------------------------- /sql-bench/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql-bench/README -------------------------------------------------------------------------------- /sql-bench/as3ap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql-bench/as3ap.sh -------------------------------------------------------------------------------- /sql-bench/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql-bench/example -------------------------------------------------------------------------------- /sql-bench/pwd.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @cd 3 | -------------------------------------------------------------------------------- /sql-bench/uname.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @ver 3 | -------------------------------------------------------------------------------- /sql-common/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql-common/pack.c -------------------------------------------------------------------------------- /sql/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/CMakeLists.txt -------------------------------------------------------------------------------- /sql/MSG00001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/MSG00001.bin -------------------------------------------------------------------------------- /sql/add_errmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/add_errmsg -------------------------------------------------------------------------------- /sql/authors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/authors.h -------------------------------------------------------------------------------- /sql/contributors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/contributors.h -------------------------------------------------------------------------------- /sql/custom_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/custom_conf.h -------------------------------------------------------------------------------- /sql/datadict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/datadict.cc -------------------------------------------------------------------------------- /sql/datadict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/datadict.h -------------------------------------------------------------------------------- /sql/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/db.opt -------------------------------------------------------------------------------- /sql/debug_sync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/debug_sync.cc -------------------------------------------------------------------------------- /sql/debug_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/debug_sync.h -------------------------------------------------------------------------------- /sql/derror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/derror.cc -------------------------------------------------------------------------------- /sql/derror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/derror.h -------------------------------------------------------------------------------- /sql/des_key_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/des_key_file.h -------------------------------------------------------------------------------- /sql/discover.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/discover.cc -------------------------------------------------------------------------------- /sql/discover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/discover.h -------------------------------------------------------------------------------- /sql/event_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/event_queue.cc -------------------------------------------------------------------------------- /sql/event_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/event_queue.h -------------------------------------------------------------------------------- /sql/events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/events.cc -------------------------------------------------------------------------------- /sql/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/events.h -------------------------------------------------------------------------------- /sql/field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/field.cc -------------------------------------------------------------------------------- /sql/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/field.h -------------------------------------------------------------------------------- /sql/field_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/field_conv.cc -------------------------------------------------------------------------------- /sql/filesort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/filesort.cc -------------------------------------------------------------------------------- /sql/filesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/filesort.h -------------------------------------------------------------------------------- /sql/frm_crypt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/frm_crypt.cc -------------------------------------------------------------------------------- /sql/frm_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/frm_crypt.h -------------------------------------------------------------------------------- /sql/gcalc_tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/gcalc_tools.cc -------------------------------------------------------------------------------- /sql/gcalc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/gcalc_tools.h -------------------------------------------------------------------------------- /sql/gstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/gstream.cc -------------------------------------------------------------------------------- /sql/gstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/gstream.h -------------------------------------------------------------------------------- /sql/ha_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/ha_partition.h -------------------------------------------------------------------------------- /sql/handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/handler.cc -------------------------------------------------------------------------------- /sql/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/handler.h -------------------------------------------------------------------------------- /sql/hash_filo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/hash_filo.cc -------------------------------------------------------------------------------- /sql/hash_filo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/hash_filo.h -------------------------------------------------------------------------------- /sql/hostname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/hostname.cc -------------------------------------------------------------------------------- /sql/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/hostname.h -------------------------------------------------------------------------------- /sql/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/init.cc -------------------------------------------------------------------------------- /sql/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/init.h -------------------------------------------------------------------------------- /sql/innodb_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/innodb_priv.h -------------------------------------------------------------------------------- /sql/item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item.cc -------------------------------------------------------------------------------- /sql/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item.h -------------------------------------------------------------------------------- /sql/item_buff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_buff.cc -------------------------------------------------------------------------------- /sql/item_cmpfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_cmpfunc.h -------------------------------------------------------------------------------- /sql/item_create.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_create.cc -------------------------------------------------------------------------------- /sql/item_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_create.h -------------------------------------------------------------------------------- /sql/item_func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_func.cc -------------------------------------------------------------------------------- /sql/item_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_func.h -------------------------------------------------------------------------------- /sql/item_geofunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_geofunc.h -------------------------------------------------------------------------------- /sql/item_row.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_row.cc -------------------------------------------------------------------------------- /sql/item_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_row.h -------------------------------------------------------------------------------- /sql/item_strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_strfunc.h -------------------------------------------------------------------------------- /sql/item_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_sum.cc -------------------------------------------------------------------------------- /sql/item_sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_sum.h -------------------------------------------------------------------------------- /sql/item_xmlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/item_xmlfunc.h -------------------------------------------------------------------------------- /sql/key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/key.cc -------------------------------------------------------------------------------- /sql/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/key.h -------------------------------------------------------------------------------- /sql/keycaches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/keycaches.cc -------------------------------------------------------------------------------- /sql/keycaches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/keycaches.h -------------------------------------------------------------------------------- /sql/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/lex.h -------------------------------------------------------------------------------- /sql/lex_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/lex_symbol.h -------------------------------------------------------------------------------- /sql/lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/lock.cc -------------------------------------------------------------------------------- /sql/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/lock.h -------------------------------------------------------------------------------- /sql/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/log.cc -------------------------------------------------------------------------------- /sql/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/log.h -------------------------------------------------------------------------------- /sql/log_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/log_event.cc -------------------------------------------------------------------------------- /sql/log_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/log_event.h -------------------------------------------------------------------------------- /sql/log_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/log_slow.h -------------------------------------------------------------------------------- /sql/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/main.cc -------------------------------------------------------------------------------- /sql/mdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/mdl.cc -------------------------------------------------------------------------------- /sql/mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/mdl.h -------------------------------------------------------------------------------- /sql/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/message.h -------------------------------------------------------------------------------- /sql/message.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/message.mc -------------------------------------------------------------------------------- /sql/message.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 MSG00001.bin 3 | -------------------------------------------------------------------------------- /sql/mf_iocache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/mf_iocache.cc -------------------------------------------------------------------------------- /sql/my_decimal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/my_decimal.cc -------------------------------------------------------------------------------- /sql/my_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/my_decimal.h -------------------------------------------------------------------------------- /sql/mysqld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/mysqld.cc -------------------------------------------------------------------------------- /sql/mysqld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/mysqld.h -------------------------------------------------------------------------------- /sql/net_serv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/net_serv.cc -------------------------------------------------------------------------------- /sql/nt_servc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/nt_servc.cc -------------------------------------------------------------------------------- /sql/nt_servc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/nt_servc.h -------------------------------------------------------------------------------- /sql/opt_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/opt_range.cc -------------------------------------------------------------------------------- /sql/opt_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/opt_range.h -------------------------------------------------------------------------------- /sql/opt_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/opt_sum.cc -------------------------------------------------------------------------------- /sql/parse_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/parse_file.cc -------------------------------------------------------------------------------- /sql/parse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/parse_file.h -------------------------------------------------------------------------------- /sql/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/password.c -------------------------------------------------------------------------------- /sql/plistsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/plistsort.c -------------------------------------------------------------------------------- /sql/procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/procedure.cc -------------------------------------------------------------------------------- /sql/procedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/procedure.h -------------------------------------------------------------------------------- /sql/protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/protocol.cc -------------------------------------------------------------------------------- /sql/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/protocol.h -------------------------------------------------------------------------------- /sql/records.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/records.cc -------------------------------------------------------------------------------- /sql/records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/records.h -------------------------------------------------------------------------------- /sql/replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/replication.h -------------------------------------------------------------------------------- /sql/rpl_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_filter.cc -------------------------------------------------------------------------------- /sql/rpl_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_filter.h -------------------------------------------------------------------------------- /sql/rpl_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_handler.cc -------------------------------------------------------------------------------- /sql/rpl_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_handler.h -------------------------------------------------------------------------------- /sql/rpl_injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_injector.h -------------------------------------------------------------------------------- /sql/rpl_mi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_mi.cc -------------------------------------------------------------------------------- /sql/rpl_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_mi.h -------------------------------------------------------------------------------- /sql/rpl_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_record.cc -------------------------------------------------------------------------------- /sql/rpl_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_record.h -------------------------------------------------------------------------------- /sql/rpl_rli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_rli.cc -------------------------------------------------------------------------------- /sql/rpl_rli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_rli.h -------------------------------------------------------------------------------- /sql/rpl_tblmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_tblmap.cc -------------------------------------------------------------------------------- /sql/rpl_tblmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_tblmap.h -------------------------------------------------------------------------------- /sql/rpl_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_utility.cc -------------------------------------------------------------------------------- /sql/rpl_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/rpl_utility.h -------------------------------------------------------------------------------- /sql/scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/scheduler.cc -------------------------------------------------------------------------------- /sql/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/scheduler.h -------------------------------------------------------------------------------- /sql/set_var.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/set_var.cc -------------------------------------------------------------------------------- /sql/set_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/set_var.h -------------------------------------------------------------------------------- /sql/sha2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sha2.cc -------------------------------------------------------------------------------- /sql/slave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/slave.cc -------------------------------------------------------------------------------- /sql/slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/slave.h -------------------------------------------------------------------------------- /sql/sp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp.cc -------------------------------------------------------------------------------- /sql/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp.h -------------------------------------------------------------------------------- /sql/sp_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_cache.cc -------------------------------------------------------------------------------- /sql/sp_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_cache.h -------------------------------------------------------------------------------- /sql/sp_head.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_head.cc -------------------------------------------------------------------------------- /sql/sp_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_head.h -------------------------------------------------------------------------------- /sql/sp_pcontext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_pcontext.cc -------------------------------------------------------------------------------- /sql/sp_pcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_pcontext.h -------------------------------------------------------------------------------- /sql/sp_rcontext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_rcontext.cc -------------------------------------------------------------------------------- /sql/sp_rcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sp_rcontext.h -------------------------------------------------------------------------------- /sql/spatial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/spatial.cc -------------------------------------------------------------------------------- /sql/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/spatial.h -------------------------------------------------------------------------------- /sql/sql_acl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_acl.cc -------------------------------------------------------------------------------- /sql/sql_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_acl.h -------------------------------------------------------------------------------- /sql/sql_admin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_admin.cc -------------------------------------------------------------------------------- /sql/sql_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_admin.h -------------------------------------------------------------------------------- /sql/sql_alter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_alter.cc -------------------------------------------------------------------------------- /sql/sql_alter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_alter.h -------------------------------------------------------------------------------- /sql/sql_analyse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_analyse.cc -------------------------------------------------------------------------------- /sql/sql_analyse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_analyse.h -------------------------------------------------------------------------------- /sql/sql_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_array.h -------------------------------------------------------------------------------- /sql/sql_audit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_audit.cc -------------------------------------------------------------------------------- /sql/sql_audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_audit.h -------------------------------------------------------------------------------- /sql/sql_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_base.cc -------------------------------------------------------------------------------- /sql/sql_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_base.h -------------------------------------------------------------------------------- /sql/sql_binlog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_binlog.cc -------------------------------------------------------------------------------- /sql/sql_binlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_binlog.h -------------------------------------------------------------------------------- /sql/sql_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_bitmap.h -------------------------------------------------------------------------------- /sql/sql_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_cache.cc -------------------------------------------------------------------------------- /sql/sql_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_cache.h -------------------------------------------------------------------------------- /sql/sql_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_callback.h -------------------------------------------------------------------------------- /sql/sql_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_class.cc -------------------------------------------------------------------------------- /sql/sql_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_class.h -------------------------------------------------------------------------------- /sql/sql_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_client.cc -------------------------------------------------------------------------------- /sql/sql_connect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_connect.cc -------------------------------------------------------------------------------- /sql/sql_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_connect.h -------------------------------------------------------------------------------- /sql/sql_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_const.h -------------------------------------------------------------------------------- /sql/sql_crypt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_crypt.cc -------------------------------------------------------------------------------- /sql/sql_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_crypt.h -------------------------------------------------------------------------------- /sql/sql_cursor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_cursor.cc -------------------------------------------------------------------------------- /sql/sql_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_cursor.h -------------------------------------------------------------------------------- /sql/sql_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_db.cc -------------------------------------------------------------------------------- /sql/sql_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_db.h -------------------------------------------------------------------------------- /sql/sql_delete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_delete.cc -------------------------------------------------------------------------------- /sql/sql_delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_delete.h -------------------------------------------------------------------------------- /sql/sql_derived.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_derived.cc -------------------------------------------------------------------------------- /sql/sql_derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_derived.h -------------------------------------------------------------------------------- /sql/sql_do.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_do.cc -------------------------------------------------------------------------------- /sql/sql_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_do.h -------------------------------------------------------------------------------- /sql/sql_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_error.cc -------------------------------------------------------------------------------- /sql/sql_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_error.h -------------------------------------------------------------------------------- /sql/sql_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_handler.cc -------------------------------------------------------------------------------- /sql/sql_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_handler.h -------------------------------------------------------------------------------- /sql/sql_help.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_help.cc -------------------------------------------------------------------------------- /sql/sql_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_help.h -------------------------------------------------------------------------------- /sql/sql_hset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_hset.h -------------------------------------------------------------------------------- /sql/sql_insert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_insert.cc -------------------------------------------------------------------------------- /sql/sql_insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_insert.h -------------------------------------------------------------------------------- /sql/sql_lex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_lex.cc -------------------------------------------------------------------------------- /sql/sql_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_lex.h -------------------------------------------------------------------------------- /sql/sql_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_list.cc -------------------------------------------------------------------------------- /sql/sql_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_list.h -------------------------------------------------------------------------------- /sql/sql_load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_load.cc -------------------------------------------------------------------------------- /sql/sql_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_load.h -------------------------------------------------------------------------------- /sql/sql_locale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_locale.cc -------------------------------------------------------------------------------- /sql/sql_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_locale.h -------------------------------------------------------------------------------- /sql/sql_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_manager.cc -------------------------------------------------------------------------------- /sql/sql_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_manager.h -------------------------------------------------------------------------------- /sql/sql_parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_parse.cc -------------------------------------------------------------------------------- /sql/sql_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_parse.h -------------------------------------------------------------------------------- /sql/sql_plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_plist.h -------------------------------------------------------------------------------- /sql/sql_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_plugin.cc -------------------------------------------------------------------------------- /sql/sql_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_plugin.h -------------------------------------------------------------------------------- /sql/sql_prepare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_prepare.cc -------------------------------------------------------------------------------- /sql/sql_prepare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_prepare.h -------------------------------------------------------------------------------- /sql/sql_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_priv.h -------------------------------------------------------------------------------- /sql/sql_profile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_profile.cc -------------------------------------------------------------------------------- /sql/sql_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_profile.h -------------------------------------------------------------------------------- /sql/sql_reload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_reload.cc -------------------------------------------------------------------------------- /sql/sql_reload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_reload.h -------------------------------------------------------------------------------- /sql/sql_rename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_rename.cc -------------------------------------------------------------------------------- /sql/sql_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_rename.h -------------------------------------------------------------------------------- /sql/sql_repl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_repl.cc -------------------------------------------------------------------------------- /sql/sql_repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_repl.h -------------------------------------------------------------------------------- /sql/sql_select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_select.cc -------------------------------------------------------------------------------- /sql/sql_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_select.h -------------------------------------------------------------------------------- /sql/sql_servers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_servers.cc -------------------------------------------------------------------------------- /sql/sql_servers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_servers.h -------------------------------------------------------------------------------- /sql/sql_show.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_show.cc -------------------------------------------------------------------------------- /sql/sql_show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_show.h -------------------------------------------------------------------------------- /sql/sql_signal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_signal.cc -------------------------------------------------------------------------------- /sql/sql_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_signal.h -------------------------------------------------------------------------------- /sql/sql_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_sort.h -------------------------------------------------------------------------------- /sql/sql_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_state.c -------------------------------------------------------------------------------- /sql/sql_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_string.cc -------------------------------------------------------------------------------- /sql/sql_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_string.h -------------------------------------------------------------------------------- /sql/sql_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_table.cc -------------------------------------------------------------------------------- /sql/sql_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_table.h -------------------------------------------------------------------------------- /sql/sql_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_test.cc -------------------------------------------------------------------------------- /sql/sql_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_test.h -------------------------------------------------------------------------------- /sql/sql_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_time.cc -------------------------------------------------------------------------------- /sql/sql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_time.h -------------------------------------------------------------------------------- /sql/sql_trigger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_trigger.cc -------------------------------------------------------------------------------- /sql/sql_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_trigger.h -------------------------------------------------------------------------------- /sql/sql_truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_truncate.h -------------------------------------------------------------------------------- /sql/sql_udf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_udf.cc -------------------------------------------------------------------------------- /sql/sql_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_udf.h -------------------------------------------------------------------------------- /sql/sql_union.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_union.cc -------------------------------------------------------------------------------- /sql/sql_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_union.h -------------------------------------------------------------------------------- /sql/sql_update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_update.cc -------------------------------------------------------------------------------- /sql/sql_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_update.h -------------------------------------------------------------------------------- /sql/sql_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_view.cc -------------------------------------------------------------------------------- /sql/sql_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_view.h -------------------------------------------------------------------------------- /sql/sql_yacc.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sql_yacc.yy -------------------------------------------------------------------------------- /sql/strfunc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/strfunc.cc -------------------------------------------------------------------------------- /sql/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/strfunc.h -------------------------------------------------------------------------------- /sql/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/structs.h -------------------------------------------------------------------------------- /sql/sys_vars.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sys_vars.cc -------------------------------------------------------------------------------- /sql/sys_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/sys_vars.h -------------------------------------------------------------------------------- /sql/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/table.cc -------------------------------------------------------------------------------- /sql/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/table.h -------------------------------------------------------------------------------- /sql/thr_malloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/thr_malloc.cc -------------------------------------------------------------------------------- /sql/thr_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/thr_malloc.h -------------------------------------------------------------------------------- /sql/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/threadpool.h -------------------------------------------------------------------------------- /sql/transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/transaction.cc -------------------------------------------------------------------------------- /sql/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/transaction.h -------------------------------------------------------------------------------- /sql/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/tzfile.h -------------------------------------------------------------------------------- /sql/tztime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/tztime.cc -------------------------------------------------------------------------------- /sql/tztime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/tztime.h -------------------------------------------------------------------------------- /sql/udf_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/udf_example.c -------------------------------------------------------------------------------- /sql/uniques.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/uniques.cc -------------------------------------------------------------------------------- /sql/unireg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/unireg.cc -------------------------------------------------------------------------------- /sql/unireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/unireg.h -------------------------------------------------------------------------------- /sql/winservice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/winservice.c -------------------------------------------------------------------------------- /sql/winservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/sql/winservice.h -------------------------------------------------------------------------------- /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/myisam/mysql-test/mtr2/suite.opt: -------------------------------------------------------------------------------- 1 | --old 2 | -------------------------------------------------------------------------------- /storage/ndb/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/ndb/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/pbxt/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/pbxt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/storage/pbxt/TODO -------------------------------------------------------------------------------- /strings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/README -------------------------------------------------------------------------------- /strings/bchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/bchange.c -------------------------------------------------------------------------------- /strings/ctype-mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/ctype-mb.c -------------------------------------------------------------------------------- /strings/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/ctype.c -------------------------------------------------------------------------------- /strings/decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/decimal.c -------------------------------------------------------------------------------- /strings/do_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/do_ctype.c -------------------------------------------------------------------------------- /strings/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/dtoa.c -------------------------------------------------------------------------------- /strings/dump_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/dump_map.c -------------------------------------------------------------------------------- /strings/int2str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/int2str.c -------------------------------------------------------------------------------- /strings/latin2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/latin2.def -------------------------------------------------------------------------------- /strings/llstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/llstr.c -------------------------------------------------------------------------------- /strings/str2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/str2int.c -------------------------------------------------------------------------------- /strings/strcend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strcend.c -------------------------------------------------------------------------------- /strings/strcont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strcont.c -------------------------------------------------------------------------------- /strings/strend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strend.c -------------------------------------------------------------------------------- /strings/strfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strfill.c -------------------------------------------------------------------------------- /strings/string.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/string.doc -------------------------------------------------------------------------------- /strings/strmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strmake.c -------------------------------------------------------------------------------- /strings/strmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strmov.c -------------------------------------------------------------------------------- /strings/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strnlen.c -------------------------------------------------------------------------------- /strings/strnmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strnmov.c -------------------------------------------------------------------------------- /strings/strxmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strxmov.c -------------------------------------------------------------------------------- /strings/strxnmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/strxnmov.c -------------------------------------------------------------------------------- /strings/t_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/t_ctype.h -------------------------------------------------------------------------------- /strings/uca-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/uca-dump.c -------------------------------------------------------------------------------- /strings/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/strings/xml.c -------------------------------------------------------------------------------- /support-files/rpm/shared-post.sh: -------------------------------------------------------------------------------- 1 | /sbin/ldconfig 2 | -------------------------------------------------------------------------------- /tests/bug25714.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/bug25714.c -------------------------------------------------------------------------------- /tests/drop_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/drop_test.pl -------------------------------------------------------------------------------- /tests/export.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/export.pl -------------------------------------------------------------------------------- /tests/fork_big.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/fork_big.pl -------------------------------------------------------------------------------- /tests/fork_big2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/fork_big2.pl -------------------------------------------------------------------------------- /tests/function.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/function.res -------------------------------------------------------------------------------- /tests/function.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/function.tst -------------------------------------------------------------------------------- /tests/grant.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/grant.pl -------------------------------------------------------------------------------- /tests/grant.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/grant.res -------------------------------------------------------------------------------- /tests/list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/list_test.c -------------------------------------------------------------------------------- /tests/lock_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/lock_test.pl -------------------------------------------------------------------------------- /tests/pmail.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/pmail.pl -------------------------------------------------------------------------------- /tests/ssl_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/ssl_test.c -------------------------------------------------------------------------------- /tests/truncate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/tests/truncate.pl -------------------------------------------------------------------------------- /unittest/unit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/unittest/unit.pl -------------------------------------------------------------------------------- /vio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/CMakeLists.txt -------------------------------------------------------------------------------- /vio/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/docs/INSTALL -------------------------------------------------------------------------------- /vio/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/docs/TODO -------------------------------------------------------------------------------- /vio/test-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/test-ssl.c -------------------------------------------------------------------------------- /vio/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/vio.c -------------------------------------------------------------------------------- /vio/vio_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/vio_priv.h -------------------------------------------------------------------------------- /vio/viosocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/viosocket.c -------------------------------------------------------------------------------- /vio/viossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/viossl.c -------------------------------------------------------------------------------- /vio/viotest-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/viotest-ssl.c -------------------------------------------------------------------------------- /vio/viotest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/vio/viotest.cc -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/README.MySQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/README.MySQL -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/algorithm.txt -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/gzio.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atcurtis/mariadb/HEAD/zlib/zutil.h --------------------------------------------------------------------------------