├── .gitignore ├── LICENSE ├── README.md └── mysql-5.6.26 ├── .gitignore ├── BUILD-CMAKE ├── BUILD ├── README ├── SETUP.sh ├── autorun.sh ├── build_mccge.sh ├── cmake_configure.sh ├── compile-dist ├── compile-pentium ├── compile-pentium-debug ├── compile-pentium-debug-max ├── compile-pentium-debug-max-no-ndb ├── compile-pentium-gcov ├── compile-pentium-gprof ├── compile-pentium-valgrind-max ├── compile-pentium-valgrind-max-no-ndb └── compile-pentium64 ├── CMakeCache.txt ├── CMakeLists.txt ├── Doxyfile-perfschema ├── INSTALL-BINARY ├── README ├── VERSION ├── client ├── CMakeLists.txt ├── client_priv.h ├── completion_hash.cc ├── completion_hash.h ├── echo.c ├── get_password.c ├── my_readline.h ├── mysql.cc ├── mysql_config_editor.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 └── sql_string.h ├── cmake ├── abi_check.cmake ├── bison.cmake ├── build_configurations │ ├── compiler_options.cmake │ ├── feature_set.cmake │ └── mysql_release.cmake ├── cat.cmake ├── character_sets.cmake ├── check_minimal_version.cmake ├── cmake_parse_arguments.cmake ├── compile_flags.cmake ├── configurable_file_content.in ├── configure.pl ├── cpack_source_ignore_files.cmake ├── cpu_info.cmake ├── create_initial_db.cmake.in ├── 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 ├── libevent.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 ├── run_collection.cmake.in ├── 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 │ ├── editline │ └── readline.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 │ ├── 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 ├── config.h.cmake ├── configure.cmake ├── data ├── auto.cnf ├── ib_logfile0 ├── ib_logfile1 ├── ibdata1 ├── lbh-Z170X-UD5.err ├── lbh-server.err └── test │ └── db.opt ├── dbug ├── CMakeLists.txt ├── dbug.c ├── dbug_add_tags.pl ├── dbug_analyze.c ├── 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 ├── docs ├── ChangeLog ├── myisam.txt └── sp-imp-spec.txt ├── extra ├── CMakeLists.txt ├── comp_err.c ├── innochecksum.cc ├── my_print_defaults.c ├── mysql_waitpid.c ├── perror.c ├── replace.c ├── resolve_stack_dump.c ├── resolveip.c └── yassl │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FLOSS-EXCEPTIONS │ ├── NEWS │ ├── README │ ├── certs │ ├── ca-cert.pem │ ├── ca-key.pem │ ├── client-cert.der │ ├── client-cert.pem │ ├── client-key.der │ ├── client-key.pem │ ├── client-keyEnc.pem │ ├── client-keyEnc3.pem │ ├── dh1024.dat │ ├── dsa-cert.pem │ ├── dsa1024.der │ ├── dsa1024.pem │ ├── server-cert.pem │ ├── server-key.pem │ ├── server-keyEnc.pem │ └── taoCert.txt │ ├── examples │ ├── client │ │ ├── client.cpp │ │ └── client.dsp │ ├── echoclient │ │ ├── echoclient.cpp │ │ ├── echoclient.dsp │ │ ├── input │ │ └── quit │ ├── echoserver │ │ ├── echoserver.cpp │ │ └── echoserver.dsp │ └── server │ │ ├── server.cpp │ │ └── server.dsp │ ├── include │ ├── buffer.hpp │ ├── cert_wrapper.hpp │ ├── crypto_wrapper.hpp │ ├── factory.hpp │ ├── handshake.hpp │ ├── lock.hpp │ ├── log.hpp │ ├── openssl │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── generate_prefix_files.pl │ │ ├── hmac.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── objects.h │ │ ├── opensslv.h │ │ ├── pem.h │ │ ├── pkcs12.h │ │ ├── prefix_crypto.h │ │ ├── prefix_ssl.h │ │ ├── rand.h │ │ ├── rsa.h │ │ ├── sha.h │ │ ├── ssl.h │ │ ├── transport_types.h │ │ ├── x509.h │ │ └── x509v3.h │ ├── socket_wrapper.hpp │ ├── timer.hpp │ ├── yassl.hpp │ ├── yassl_error.hpp │ ├── yassl_imp.hpp │ ├── yassl_int.hpp │ └── yassl_types.hpp │ ├── lib │ └── dummy │ ├── src │ ├── buffer.cpp │ ├── cert_wrapper.cpp │ ├── crypto_wrapper.cpp │ ├── dummy.cpp │ ├── handshake.cpp │ ├── lock.cpp │ ├── log.cpp │ ├── make.bat │ ├── socket_wrapper.cpp │ ├── ssl.cpp │ ├── template_instnt.cpp │ ├── timer.cpp │ ├── yassl.cpp │ ├── yassl_error.cpp │ ├── yassl_imp.cpp │ └── yassl_int.cpp │ ├── taocrypt │ ├── CMakeLists.txt │ ├── README │ ├── benchmark │ │ ├── benchmark.cpp │ │ ├── benchmark.dsp │ │ ├── dh1024.der │ │ ├── dsa1024.der │ │ ├── make.bat │ │ └── rsa1024.der │ ├── certs │ │ └── dh1024.dat │ ├── 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 │ ├── cipher-test.sh │ ├── 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 ├── base64.h ├── big_endian.h ├── byte_order_generic.h ├── byte_order_generic_x86.h ├── byte_order_generic_x86_64.h ├── crypt_genhash_impl.h ├── decimal.h ├── errmsg.h ├── ft_global.h ├── hash.h ├── heap.h ├── keycache.h ├── lf.h ├── little_endian.h ├── m_ctype.h ├── m_string.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_byteorder.h ├── my_check_opt.h ├── my_compare.h ├── my_compiler.h ├── my_dbug.h ├── my_default.h ├── my_dir.h ├── my_getopt.h ├── my_libwrap.h ├── my_list.h ├── my_md5.h ├── my_murmur3.h ├── my_net.h ├── my_nosys.h ├── my_pthread.h ├── my_rdtsc.h ├── my_rnd.h ├── my_stacktrace.h ├── my_sys.h ├── my_time.h ├── my_tree.h ├── my_uctype.h ├── my_user.h ├── my_xml.h ├── myisam.h ├── myisammrg.h ├── myisampack.h ├── mysql.h ├── mysql.h.pp ├── mysql │ ├── client_authentication.h │ ├── client_plugin.h │ ├── client_plugin.h.pp │ ├── get_password.h │ ├── innodb_priv.h │ ├── 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 │ ├── plugin_validate_password.h │ ├── psi │ │ ├── mysql_file.h │ │ ├── mysql_idle.h │ │ ├── mysql_socket.h │ │ ├── mysql_stage.h │ │ ├── mysql_statement.h │ │ ├── mysql_table.h │ │ ├── mysql_thread.h │ │ ├── psi.h │ │ ├── psi_abi_v0.h │ │ ├── psi_abi_v0.h.pp │ │ ├── psi_abi_v1.h │ │ ├── psi_abi_v1.h.pp │ │ ├── psi_abi_v2.h │ │ └── psi_abi_v2.h.pp │ ├── service_my_plugin_log.h │ ├── service_my_snprintf.h │ ├── service_mysql_string.h │ ├── service_thd_alloc.h │ ├── service_thd_wait.h │ ├── service_thread_scheduler.h │ ├── services.h │ └── thread_pool_priv.h ├── mysql_com.h ├── mysql_com_server.h ├── mysql_embed.h ├── mysql_time.h ├── mysql_version.h.in ├── mysys_err.h ├── password.h ├── plugin.h ├── plugin_audit.h ├── plugin_ftparser.h ├── plugin_validate_password.h ├── probes_mysql.d.base ├── probes_mysql.h ├── probes_mysql_nodtrace.h ├── queues.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 ├── typelib.h ├── violite.h ├── waiting_threads.h └── welcome_copyright_notice.h ├── install_manifest.txt ├── lib └── plugin │ └── daemon_example.ini ├── libevent ├── CMakeLists.txt ├── ChangeLog ├── Doxyfile ├── Makefile.am ├── README ├── WIN32-Code │ ├── event-config.h │ ├── misc.c │ ├── misc.h │ ├── tree.h │ └── win32.c ├── WIN32-Prj │ ├── libevent.dsp │ ├── libevent.dsw │ └── libevent.sln ├── autogen.sh ├── buffer.c ├── compat │ └── sys │ │ ├── _time.h │ │ └── queue.h ├── configure.in ├── devpoll.c ├── epoll.c ├── epoll_sub.c ├── evbuffer.c ├── evdns.3 ├── evdns.c ├── evdns.h ├── event-internal.h ├── event.3 ├── event.c ├── event.h ├── event_rpcgen.py ├── event_tagging.c ├── evhttp.h ├── evport.c ├── evrpc-internal.h ├── evrpc.c ├── evrpc.h ├── evsignal.h ├── evutil.c ├── evutil.h ├── http-internal.h ├── http.c ├── kqueue.c ├── log.c ├── log.h ├── min_heap.h ├── poll.c ├── sample │ ├── Makefile.am │ ├── event-test.c │ ├── signal-test.c │ └── time-test.c ├── select.c ├── signal.c ├── strlcpy-internal.h ├── strlcpy.c └── test │ ├── Makefile.am │ ├── bench.c │ ├── regress.c │ ├── regress.gen.c │ ├── regress.gen.h │ ├── regress.h │ ├── regress.rpc │ ├── regress_dns.c │ ├── regress_http.c │ ├── regress_rpc.c │ ├── test-eof.c │ ├── test-init.c │ ├── test-time.c │ ├── test-weof.c │ └── test.sh ├── libmysql ├── CMakeLists.txt ├── authentication_win │ ├── CMakeLists.txt │ ├── common.cc │ ├── common.h │ ├── handshake.cc │ ├── handshake.h │ ├── handshake_client.cc │ ├── log_client.cc │ └── plugin_client.cc ├── client_settings.h ├── libmysql.def └── libmysql.ver.in ├── 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 ├── my_plugin_log_service.c ├── my_snprintf_service.c ├── my_thread_scheduler_service.c ├── mysql_string_service.c ├── thd_alloc_service.c └── thd_wait_service.c ├── man ├── CMakeLists.txt ├── man1 │ ├── comp_err.1 │ ├── innochecksum.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_config_editor.1 │ ├── mysql_convert_table_format.1 │ ├── mysql_find_rows.1 │ ├── mysql_fix_extensions.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_multi.1 │ ├── mysqld_safe.1 │ ├── mysqldump.1 │ ├── mysqldumpslow.1 │ ├── mysqlhotcopy.1 │ ├── mysqlimport.1 │ ├── mysqlman.1 │ ├── mysqlshow.1 │ ├── mysqlslap.1 │ ├── mysqltest.1 │ ├── mysqltest_embedded.1 │ ├── perror.1 │ ├── replace.1 │ ├── resolve_stack_dump.1 │ └── resolveip.1 ├── man8 │ └── mysqld.8 ├── mysqld.8 ├── ndb_mgmd.8 ├── ndbd.8 └── ndbmtd.8 ├── my-new.cnf ├── my.cnf ├── mysql-test ├── CMakeLists.txt ├── README ├── README.stress ├── collections │ ├── README │ ├── README.experimental │ ├── default.daily │ ├── default.daily-valgrind │ ├── default.experimental │ ├── default.push │ ├── default.push-valgrind │ ├── default.release.in │ ├── default.weekly │ ├── default.weekly-valgrind │ ├── default.weekly.basic │ ├── disabled-daily.list │ ├── disabled-gtid-on.list │ ├── disabled-per-push.list │ └── disabled-weekly.list ├── extra │ ├── binlog_tests │ │ ├── binlog.test │ │ ├── binlog_cache_stat.test │ │ ├── binlog_implicit_commit.inc │ │ ├── binlog_innodb.inc │ │ ├── binlog_insert_delayed.test │ │ ├── binlog_mysqlbinlog_fill.inc │ │ ├── binlog_mysqlbinlog_row.inc │ │ ├── binlog_mysqlbinlog_start_stop.inc │ │ ├── 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 │ │ ├── mysqlbinlog_start_stop_1.inc │ │ └── mysqlbinlog_start_stop_2.inc │ └── rpl_tests │ │ ├── check_type.inc │ │ ├── create_recursive_construct.inc │ │ ├── delayed_slave_wait_on_query.inc │ │ ├── grep_pattern.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_error.inc │ │ ├── rpl_binlog_max_cache_size.test │ │ ├── rpl_blackhole.test │ │ ├── rpl_change_master.test │ │ ├── rpl_change_master_bind.inc │ │ ├── rpl_charset.test │ │ ├── rpl_check_gtid.inc │ │ ├── rpl_commit_after_flush.test │ │ ├── rpl_conflicts.test │ │ ├── rpl_crash_safe.inc │ │ ├── rpl_crash_safe.test │ │ ├── rpl_ddl.test │ │ ├── rpl_deadlock.test │ │ ├── rpl_delete_no_where.test │ │ ├── rpl_do_table_filter_insensitive.inc │ │ ├── rpl_do_table_filter_sensitive.inc │ │ ├── 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_filters.test │ │ ├── rpl_flsh_tbls.test │ │ ├── rpl_foreign_key.test │ │ ├── rpl_get_master_version_and_clock.test │ │ ├── rpl_gtid_drop_table.inc │ │ ├── rpl_gtid_mts_relay_log_recovery.test │ │ ├── rpl_gtids_restart_slave_io_lost_trx.test │ │ ├── rpl_heartbeat_2slaves.inc │ │ ├── rpl_ignore_table_filter_insensitive.inc │ │ ├── rpl_ignore_table_filter_sensitive.inc │ │ ├── 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_insert_ignore_gtid_on.inc │ │ ├── rpl_kill_query.inc │ │ ├── rpl_loaddata.test │ │ ├── rpl_loaddata_s.inc │ │ ├── rpl_loadfile.test │ │ ├── rpl_log.test │ │ ├── rpl_lower_case_table_names.test │ │ ├── rpl_max_relay_size.test │ │ ├── rpl_mixing_engines.inc │ │ ├── rpl_mixing_engines.test │ │ ├── rpl_mts_crash_safe.inc │ │ ├── rpl_mts_crash_safe.test │ │ ├── rpl_mts_execute_partial_trx_in_relay_log.inc │ │ ├── rpl_multi_query.test │ │ ├── rpl_multi_update.test │ │ ├── rpl_multi_update2.test │ │ ├── rpl_multi_update3.test │ │ ├── rpl_not_null.test │ │ ├── rpl_parallel_load.test │ │ ├── rpl_parallel_load_innodb.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_basic.test │ │ ├── rpl_row_blob.test │ │ ├── rpl_row_delayed_ins.test │ │ ├── rpl_row_empty_imgs.test │ │ ├── rpl_row_event_max_size.inc │ │ ├── rpl_row_func003.test │ │ ├── rpl_row_idempotency.test │ │ ├── rpl_row_img.test │ │ ├── rpl_row_img_blobs.test │ │ ├── rpl_row_img_diff_indexes.test │ │ ├── rpl_row_show_relaylog_events.inc │ │ ├── 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_stm_insert_delayed.inc │ │ ├── rpl_stm_mix_show_relaylog_events.inc │ │ ├── rpl_stop_middle_group.test │ │ ├── rpl_stop_slave.test │ │ ├── rpl_stress_test.inc │ │ ├── rpl_sv_relay_space.test │ │ ├── rpl_temp_error.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 │ ├── Load_data.inc │ ├── add_anonymous_users.inc │ ├── analyze-sync_with_master.test │ ├── analyze-timeout.test │ ├── assert.inc │ ├── assert_command_output.inc │ ├── assert_grep.inc │ ├── begin_include_file.inc │ ├── big_test.inc │ ├── binlog_inject_error.inc │ ├── bug38347.inc │ ├── change_file_perms.inc │ ├── check-testcase.test │ ├── check-warnings.test │ ├── check_concurrent_insert.inc │ ├── check_events_off.inc │ ├── check_ftwrl_compatible.inc │ ├── check_ftwrl_incompatible.inc │ ├── check_ipv4_mapped.inc │ ├── check_ipv6.inc │ ├── check_key_reads.inc │ ├── check_key_req.inc │ ├── check_no_concurrent_insert.inc │ ├── check_no_row_lock.inc │ ├── check_qep.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 │ ├── create_table.inc │ ├── ctype_8bit.inc │ ├── ctype_ascii_order.inc │ ├── ctype_common.inc │ ├── ctype_czech.inc │ ├── ctype_datetime.inc │ ├── ctype_filesort.inc │ ├── ctype_filesort2.inc │ ├── ctype_german.inc │ ├── ctype_heap.inc │ ├── ctype_inet.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_pad_space.inc │ ├── ctype_regex.inc │ ├── ctype_unicode520.inc │ ├── ctype_unicode_latin.inc │ ├── ctype_utf8_table.inc │ ├── ctype_utf8mb4.inc │ ├── daemon_example_bad_format.ini │ ├── daemon_example_bad_soname.ini │ ├── 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_mysqld_autosize.cnf │ ├── default_ndbd.cnf │ ├── delete_anonymous_users.inc │ ├── diff_servers.inc │ ├── diff_tables.inc │ ├── end_include_file.inc │ ├── endspace.inc │ ├── eval.inc │ ├── execute_with_statistics.inc │ ├── expect_qep.inc │ ├── explain.inc │ ├── explain_json.inc │ ├── explain_non_select.inc │ ├── explain_utils.inc │ ├── file_does_not_exist.inc │ ├── filter_file.inc │ ├── force_restart.inc │ ├── force_restart_if_skipped.inc │ ├── func_aes_block.inc │ ├── func_in.inc │ ├── function_defaults.inc │ ├── function_defaults_notembedded.inc │ ├── get_file_permissions.inc │ ├── get_ndb_epochs.inc │ ├── get_relay_log_pos.inc │ ├── gis_debug.inc │ ├── gis_generic.inc │ ├── gis_keys.inc │ ├── grant_cache.inc │ ├── greedy_search_drop_tables.inc │ ├── greedy_search_load_tables.inc │ ├── gtid_step_assert.inc │ ├── gtid_step_reset.inc │ ├── gtid_utils.inc │ ├── gtid_utils_end.inc │ ├── handler.inc │ ├── have_32bit.inc │ ├── have_64bit.inc │ ├── have_QC_Disabled.inc │ ├── have_archive.inc │ ├── have_archive_plugin.inc │ ├── have_big5.inc │ ├── have_binlog_checksum_off.inc │ ├── have_binlog_format_mixed.inc │ ├── have_binlog_format_mixed_or_row.inc │ ├── have_binlog_format_mixed_or_statement.inc │ ├── have_binlog_format_row.inc │ ├── have_binlog_format_row_or_statement.inc │ ├── have_binlog_format_statement.inc │ ├── have_binlog_rows_query.inc │ ├── have_blackhole.inc │ ├── have_blackhole_plugin.inc │ ├── have_case_insensitive_file_system.inc │ ├── have_case_sensitive_file_system.inc │ ├── have_compress.inc │ ├── have_cp1250_ch.inc │ ├── have_cp1251.inc │ ├── have_cp866.inc │ ├── have_cp932.inc │ ├── have_crypt.inc │ ├── have_csv.inc │ ├── have_daemon_example_plugin.inc │ ├── have_dbi_dbd-mysql.inc │ ├── have_debug.inc │ ├── have_debug_sync.inc │ ├── have_dynamic_loading.inc │ ├── have_engine_condition_pushdown.inc │ ├── have_eucjpms.inc │ ├── have_euckr.inc │ ├── have_example_plugin.inc │ ├── have_exampledb.inc │ ├── have_federated_plugin.inc │ ├── have_firstmatch.inc │ ├── have_gb2312.inc │ ├── have_gbk.inc │ ├── have_geometry.inc │ ├── have_gtid.inc │ ├── have_index_condition_pushdown.inc │ ├── have_innodb.inc │ ├── have_innodb_16k.inc │ ├── have_innodb_4k.inc │ ├── have_innodb_8k.inc │ ├── have_ipv4_mapped.inc │ ├── have_ipv6.inc │ ├── have_koi8r.inc │ ├── have_latin2_ch.inc │ ├── have_local_infile.inc │ ├── have_log_bin.inc │ ├── have_loosescan.inc │ ├── have_lowercase0.inc │ ├── have_lowercase1.inc │ ├── have_lowercase2.inc │ ├── have_materialization.inc │ ├── have_memcached_plugin.inc │ ├── have_mrr.inc │ ├── have_multi_ndb.inc │ ├── have_mysql_no_login_plugin.inc │ ├── have_mysql_upgrade.inc │ ├── have_ndb.inc │ ├── have_ndb_extra.inc │ ├── have_ndbapi_examples.inc │ ├── have_nodebug.inc │ ├── have_not_innodb_plugin.inc │ ├── have_null_audit_plugin.inc │ ├── have_openssl.inc │ ├── have_optimizer_trace.inc │ ├── have_outfile.inc │ ├── have_partition.inc │ ├── have_partition_open_file_limit.inc │ ├── have_perfschema.inc │ ├── have_plugin_auth.inc │ ├── have_plugin_interface.inc │ ├── have_plugin_server.inc │ ├── have_profiling.inc │ ├── have_query_cache.inc │ ├── have_semijoin.inc │ ├── have_semisync_plugin.inc │ ├── have_sha256_rsa_auth.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_util_nc.inc │ ├── have_valgrind.inc │ ├── have_validate_password_plugin.inc │ ├── ib_logfile_size_check.inc │ ├── icp_tests.inc │ ├── implicit_commit_helper.inc │ ├── index_merge1.inc │ ├── index_merge2.inc │ ├── index_merge_2sweeps.inc │ ├── index_merge_delete.inc │ ├── index_merge_insert-and-replace.inc │ ├── index_merge_intersect_dml.inc │ ├── index_merge_multi_col_setup.inc │ ├── index_merge_ror.inc │ ├── index_merge_ror_cpk.inc │ ├── index_merge_single_col_setup.inc │ ├── index_merge_update.inc │ ├── innodb-index.inc │ ├── innodb-util.inc │ ├── innodb_pk_extension.inc │ ├── innodb_rollback_on_timeout.inc │ ├── innodb_trx_weight.inc │ ├── install_semisync.inc │ ├── io_thd_fault_injection.inc │ ├── ipv6.inc │ ├── ipv6_clients.inc │ ├── ipv6_func.inc │ ├── is_embedded.inc │ ├── join_cache.inc │ ├── kill_query.inc │ ├── kill_query_and_diff_master_slave.inc │ ├── libdaemon_example.ini │ ├── linux.inc │ ├── linux_sys_vars.inc │ ├── load_sysvars.inc │ ├── loaddata_autocom.inc │ ├── master-slave.inc │ ├── memcache_config.inc │ ├── min_null_cond.inc │ ├── mix1.inc │ ├── mix2.inc │ ├── mix2_ucs2.inc │ ├── mrr_innodb_tests.inc │ ├── mrr_tests.inc │ ├── mtr_check.sql │ ├── mtr_warnings.sql │ ├── mysql_upgrade_preparation.inc │ ├── mysqlbinlog_have_debug.inc │ ├── mysqlbinlog_raw_mode.inc │ ├── mysqld--help.inc │ ├── mysqldump.inc │ ├── mysqlhotcopy.inc │ ├── mysqltest-x.inc │ ├── ndb_backup.inc │ ├── ndb_backup_id.inc │ ├── ndb_backup_print.inc │ ├── ndb_default_cluster.inc │ ├── ndb_have_online_alter.inc │ ├── ndb_not_readonly.inc │ ├── ndb_restore_master.inc │ ├── ndb_restore_slave_eoption.inc │ ├── ndb_setup_slave.inc │ ├── ndb_wait_connected.inc │ ├── no_protocol.inc │ ├── no_running_event_scheduler.inc │ ├── no_running_events.inc │ ├── no_valgrind_without_big.inc │ ├── not_as_root.inc │ ├── not_binlog_format_row.inc │ ├── not_blackhole.inc │ ├── not_crashrep.inc │ ├── not_embedded.inc │ ├── not_gtid_enabled.inc │ ├── not_master_info_table.inc │ ├── not_mts_slave_parallel_workers.inc │ ├── not_ndb.inc │ ├── not_ndb_default.inc │ ├── not_openssl.inc │ ├── not_parallel.inc │ ├── not_relay_log_info_table.inc │ ├── not_sha256_rsa_auth.inc │ ├── not_ssl.inc │ ├── not_threadpool.inc │ ├── not_valgrind.inc │ ├── not_var_link.inc │ ├── not_windows.inc │ ├── not_windows_embedded.inc │ ├── null_key.inc │ ├── one_thread_per_connection.inc │ ├── only_mts_slave_parallel_workers.inc │ ├── order_by.inc │ ├── parser_bug21114.inc │ ├── partition_date_range.inc │ ├── partition_default_functions.inc │ ├── plugin.defs │ ├── print_greedy_search_count.inc │ ├── ps_conv.inc │ ├── ps_create.inc │ ├── ps_ddl_1.inc │ ├── ps_modify.inc │ ├── ps_modify1.inc │ ├── ps_query.inc │ ├── ps_renew.inc │ ├── purge_first_log.inc │ ├── python_with_json.inc │ ├── query_cache.inc │ ├── query_cache_sql_prepare.inc │ ├── rand.inc │ ├── range.inc │ ├── read_file_to_var.inc │ ├── read_many_rows.inc │ ├── relocate_binlogs.inc │ ├── report-features.test │ ├── restart_mysqld.inc │ ├── restart_readonly_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_master1.inc │ ├── rpl_connection_slave.inc │ ├── rpl_connection_slave1.inc │ ├── rpl_default_connections.inc │ ├── rpl_diff.inc │ ├── rpl_end.inc │ ├── rpl_events.inc │ ├── rpl_for_each_slave.inc │ ├── rpl_generate_sync_chain.inc │ ├── rpl_hash_scan_assertion.inc │ ├── rpl_init.inc │ ├── rpl_ip_mix.inc │ ├── rpl_ip_mix2.inc │ ├── rpl_ipv6.inc │ ├── rpl_loaddata_charset.inc │ ├── rpl_multi_engine.inc │ ├── rpl_multi_engine2.inc │ ├── rpl_multi_engine3.inc │ ├── rpl_reconnect.inc │ ├── rpl_reset.inc │ ├── rpl_restart_server.inc │ ├── rpl_row_img_general_loop.inc │ ├── rpl_row_img_parts_assertion.inc │ ├── rpl_row_img_parts_master_slave.inc │ ├── rpl_row_img_set.inc │ ├── rpl_set_gtid_mode.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_io_thread_pos.inc │ ├── save_master_pos.inc │ ├── search_pattern.inc │ ├── search_pattern_in_file.inc │ ├── select.inc │ ├── set_binlog_format_mixed.sql │ ├── set_binlog_format_row.sql │ ├── set_binlog_format_statement.sql │ ├── setup_fake_relay_log.inc │ ├── show_all_binlogs.inc │ ├── show_all_relay_logs.inc │ ├── show_binary_logs.inc │ ├── show_binlog_events.inc │ ├── show_binlog_events2.inc │ ├── show_binlog_using_logname.inc │ ├── show_delayed_slave_state.inc │ ├── show_events.inc │ ├── show_master_logs.inc │ ├── show_master_status.inc │ ├── show_msg.inc │ ├── show_msg80.inc │ ├── show_relaylog_events.inc │ ├── show_rpl_debug_info.inc │ ├── show_slave_hosts.inc │ ├── show_slave_status.inc │ ├── shutdown_mysqld.inc │ ├── sp-vars.inc │ ├── start_mysqld.inc │ ├── start_slave.inc │ ├── start_slave_io.inc │ ├── start_slave_sql.inc │ ├── stop_dump_threads.inc │ ├── stop_slave.inc │ ├── stop_slave_io.inc │ ├── stop_slave_sql.inc │ ├── strict_autoinc.inc │ ├── subquery.inc │ ├── subquery_mat.inc │ ├── subquery_sj.inc │ ├── subquery_sj_innodb.inc │ ├── sync_slave_io.inc │ ├── sync_slave_io_with_master.inc │ ├── sync_slave_sql.inc │ ├── sync_slave_sql_with_io.inc │ ├── sync_slave_sql_with_master.inc │ ├── system_db_struct.inc │ ├── test_fieldsize.inc │ ├── test_outfile.inc │ ├── testdb_only.inc │ ├── tpcb.inc │ ├── tpcb_disk_data.inc │ ├── truncate_file.inc │ ├── uninstall_semisync.inc │ ├── unsafe_binlog.inc │ ├── uses_vardir.inc │ ├── varchar.inc │ ├── vardir_size_check.inc │ ├── view_alias.inc │ ├── wait_condition.inc │ ├── wait_condition_sp.inc │ ├── wait_for_binlog_event.inc │ ├── wait_for_ndb_committed_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_slave_to_sync_with_master.inc │ ├── wait_for_status_var.inc │ ├── wait_innodb_all_purged.inc │ ├── wait_show_condition.inc │ ├── wait_time_until_connected_again.inc │ ├── wait_until_connected_again.inc │ ├── wait_until_count_sessions.inc │ ├── wait_until_disconnected.inc │ ├── wait_until_rows_count.inc │ ├── weight_string.inc │ ├── weight_string_8140.inc │ ├── weight_string_8EA1.inc │ ├── weight_string_8FA2C3.inc │ ├── weight_string_A1A1.inc │ ├── weight_string_chde.inc │ ├── weight_string_euro.inc │ ├── weight_string_l1.inc │ ├── weight_string_l12.inc │ ├── weight_string_l14.inc │ ├── weight_string_l2.inc │ ├── weight_string_l3.inc │ ├── weight_string_l4.inc │ ├── windows.inc │ ├── windows_sys_vars.inc │ ├── wl6219-engine.test │ ├── wl6301.inc │ ├── world.inc │ ├── world_schema.inc │ ├── world_schema1.inc │ ├── write_result_to_file.inc │ └── write_var_to_file.inc ├── lib │ ├── My │ │ ├── Config.pm │ │ ├── ConfigFactory.pm │ │ ├── CoreDump.pm │ │ ├── Exec.pm │ │ ├── File │ │ │ └── Path.pm │ │ ├── Find.pm │ │ ├── Handles.pm │ │ ├── Memcache.pm │ │ ├── Options.pm │ │ ├── Platform.pm │ │ ├── SafeProcess.pm │ │ ├── SafeProcess │ │ │ ├── Base.pm │ │ │ ├── CMakeLists.txt │ │ │ ├── safe_kill_win.cc │ │ │ ├── safe_process.cc │ │ │ └── safe_process_win.cc │ │ ├── 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 │ ├── 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 │ ├── alias.result │ ├── almost_full.result │ ├── alter_table-big.result │ ├── alter_table.result │ ├── analyze.result │ ├── ansi.result │ ├── archive-big.result │ ├── archive.result │ ├── archive_bitfield.result │ ├── archive_debug.result │ ├── archive_gis.result │ ├── archive_no_symlink.result │ ├── archive_plugin.result │ ├── archive_symlink.result │ ├── audit_plugin.result │ ├── auth_rpl.result │ ├── auto_increment.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 │ ├── bug12969156.result │ ├── bug17076131.result │ ├── bug33509.result │ ├── bug39022.result │ ├── bug46080.result │ ├── bug46261.result │ ├── bug46760.result │ ├── bug47671.result │ ├── bug58669.result │ ├── bulk_replace.result │ ├── cache_innodb.result │ ├── case.result │ ├── case_insensitive_file_system.require │ ├── case_sensitive_file_system.require │ ├── cast.result │ ├── change_user.result │ ├── check.result │ ├── check_auto_permission.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 │ ├── count_distinct.result │ ├── count_distinct2.result │ ├── count_distinct3.result │ ├── create-big.result │ ├── create.result │ ├── create_not_windows.result │ ├── create_select_tmp.result │ ├── csv.result │ ├── csv_alter_table.result │ ├── csv_not_null.result │ ├── ctype_ascii.result │ ├── ctype_big5.result │ ├── ctype_binary.result │ ├── ctype_collate.result │ ├── ctype_cp1250_ch.result │ ├── ctype_cp1251.result │ ├── ctype_cp932.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_ujis.result │ ├── ctype_ujis_ucs2.result │ ├── ctype_utf16.result │ ├── ctype_utf16_def.result │ ├── ctype_utf16_uca.result │ ├── ctype_utf16le.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 │ ├── ctype_utf8mb4_uca.result │ ├── date_formats.result │ ├── ddl_i18n_koi8r.result │ ├── ddl_i18n_utf8.result │ ├── deadlock_innodb.result │ ├── debug_sync.result │ ├── debug_sync2.result │ ├── default.result │ ├── delayed.result │ ├── delete.result │ ├── deprecated_features.result │ ├── derived.result │ ├── dirty_close.result │ ├── disabled_replication.result │ ├── disconnect_on_expired_password_default.result │ ├── disconnect_on_expired_password_off.result │ ├── distinct.result │ ├── drop-no_root.result │ ├── drop.result │ ├── drop_debug.result │ ├── ds_mrr-big.result │ ├── dynamic_tracing.result │ ├── empty_table.result │ ├── endspace.result │ ├── eq_range_idx_stat.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 │ ├── explain_json_all.result │ ├── explain_json_none.result │ ├── file_contents.result │ ├── filesort_debug.result │ ├── fix_priv_tables.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_distinct.result │ ├── fulltext_left_join.result │ ├── fulltext_multi.result │ ├── fulltext_order_by.result │ ├── fulltext_plugin.result │ ├── fulltext_update.result │ ├── fulltext_var.result │ ├── func_aes.result │ ├── func_aes_cfb1.result │ ├── func_aes_cfb128.result │ ├── func_aes_cfb8.result │ ├── func_aes_misc.result │ ├── func_aes_ofb.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_group_innodb_16k.result │ ├── func_if.result │ ├── func_in_all.result │ ├── func_in_icp.result │ ├── func_in_icp_mrr.result │ ├── func_in_mrr.result │ ├── func_in_mrr_cost.result │ ├── func_in_none.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_timestamp.result │ ├── func_weight_string.result │ ├── function_defaults.result │ ├── function_defaults_notembedded.result │ ├── gcc296.result │ ├── get_diagnostics.result │ ├── gis-debug.result │ ├── gis-precise.result │ ├── gis-rt-precise.result │ ├── gis-rtree.result │ ├── gis.result │ ├── grant.result │ ├── grant2.result │ ├── grant3.result │ ├── grant4.result │ ├── grant_cache.result │ ├── grant_explain_non_select.result │ ├── grant_lowercase_fs.result │ ├── greedy_optimizer.result │ ├── greedy_search.result │ ├── group_by.result │ ├── group_min_max.result │ ├── group_min_max_innodb.result │ ├── handler_innodb.result │ ├── handler_myisam.result │ ├── handler_read_last.result │ ├── have_big5.require │ ├── have_binlog_format_mixed.require │ ├── have_binlog_format_row.require │ ├── have_binlog_format_statement.require │ ├── have_binlog_rows_query.require │ ├── have_compress.require │ ├── have_cp1250_ch.require │ ├── have_cp1251.require │ ├── have_cp866.require │ ├── have_cp932.require │ ├── have_crypt.require │ ├── have_debug.require │ ├── have_debug_sync.require │ ├── have_eucjpms.require │ ├── have_euckr.require │ ├── have_gb2312.require │ ├── have_gbk.require │ ├── have_geometry.require │ ├── have_koi8r.require │ ├── have_latin2_ch.require │ ├── have_local_infile.require │ ├── have_log_bin.require │ ├── have_met_timezone.require │ ├── have_moscow_leap_timezone.require │ ├── have_mysql_upgrade.result │ ├── have_ndb_extra.require │ ├── have_ndbapi_examples.require │ ├── have_nodebug.require │ ├── have_optimizer_switch.require │ ├── have_outfile.require │ ├── have_partition.require │ ├── have_perror.require │ ├── have_profiling.require │ ├── have_query_cache.require │ ├── have_sjis.require │ ├── have_ssl.require │ ├── have_ssl_is_yes_or_disabled_only.require │ ├── have_symlink.require │ ├── have_tis620.require │ ├── have_ucs2.require │ ├── have_ujis.require │ ├── have_utf16.require │ ├── have_utf32.require │ ├── have_utf8.require │ ├── have_utf8mb4.require │ ├── having.result │ ├── heap.result │ ├── heap_auto_increment.result │ ├── heap_btree.result │ ├── heap_hash.result │ ├── help.result │ ├── host_cache_size_functionality.result │ ├── implicit_char_to_num_conversion.result │ ├── implicit_commit.result │ ├── index_merge_delete.result │ ├── index_merge_innodb.result │ ├── index_merge_insert-and-replace.result │ ├── index_merge_intersect_dml.result │ ├── index_merge_myisam.result │ ├── index_merge_update.result │ ├── information_schema-big.result │ ├── information_schema.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_file.result │ ├── innodb_explain_json_non_select_all.result │ ├── innodb_explain_json_non_select_none.result │ ├── innodb_explain_non_select_all.result │ ├── innodb_explain_non_select_none.result │ ├── innodb_icp.result │ ├── innodb_icp_all.result │ ├── innodb_icp_none.result │ ├── innodb_ignore_builtin.result │ ├── innodb_log_file_size_functionality.result │ ├── innodb_mrr.result │ ├── innodb_mrr_all.result │ ├── innodb_mrr_cost.result │ ├── innodb_mrr_cost_all.result │ ├── innodb_mrr_cost_icp.result │ ├── innodb_mrr_icp.result │ ├── innodb_mrr_none.result │ ├── innodb_mysql_lock.result │ ├── innodb_mysql_lock2.result │ ├── innodb_mysql_sync.result │ ├── innodb_pk_extension_off.result │ ├── innodb_pk_extension_on.result │ ├── innodb_recovery_with_upper_case_names.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_bka.result │ ├── join_cache_bka_nixbnl.result │ ├── join_cache_bkaunique.result │ ├── join_cache_bnl.result │ ├── join_cache_nojb.result │ ├── join_crash.result │ ├── join_nested.result │ ├── join_nested_bka.result │ ├── join_nested_bka_nixbnl.result │ ├── join_optimizer.result │ ├── join_outer.result │ ├── join_outer_bka.result │ ├── join_outer_bka_nixbnl.result │ ├── join_outer_innodb.result │ ├── key.result │ ├── key_cache.result │ ├── key_diff.result │ ├── key_primary.result │ ├── keywords.result │ ├── kill.result │ ├── kill_debug.result │ ├── limit.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_empty_name.result │ ├── log_errchk.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 │ ├── mdl_sync.result │ ├── merge-big.result │ ├── merge.result │ ├── merge_innodb.result │ ├── merge_mmap.result │ ├── metadata.result │ ├── mix2_myisam.result │ ├── mix2_myisam_ucs2.result │ ├── multi_plugin_load.result │ ├── multi_plugin_load_add.result │ ├── multi_plugin_load_add2.result │ ├── multi_statement.result │ ├── multi_update.result │ ├── multi_update2.result │ ├── multi_update_innodb.result │ ├── multi_update_tiny_hash.result │ ├── myisam-blob.result │ ├── myisam-system.result │ ├── myisam.result │ ├── myisam_crash_before_flush_keys.result │ ├── myisam_debug.result │ ├── myisam_explain_json_non_select_all.result │ ├── myisam_explain_json_non_select_none.result │ ├── myisam_explain_non_select_all.result │ ├── myisam_explain_non_select_none.result │ ├── myisam_icp.result │ ├── myisam_icp_all.result │ ├── myisam_icp_none.result │ ├── myisam_mrr.result │ ├── myisam_mrr_all.result │ ├── myisam_mrr_cost.result │ ├── myisam_mrr_cost_all.result │ ├── myisam_mrr_cost_icp.result │ ├── myisam_mrr_icp.result │ ├── myisam_mrr_none.result │ ├── myisam_recover.result │ ├── myisam_row_rpl.result │ ├── myisampack.result │ ├── mysql-bug41486.result │ ├── mysql-bug45236.result │ ├── mysql.result │ ├── mysql_binary_mode.result │ ├── mysql_client_test.result │ ├── mysql_client_test_embedded.result │ ├── mysql_comments.result │ ├── mysql_config_editor.result │ ├── mysql_cp932.result │ ├── mysql_embedded.result │ ├── mysql_embedded_client_test.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.result │ ├── mysqlbinlog_debug.result │ ├── mysqlbinlog_mixed_or_statment.result │ ├── mysqlbinlog_raw_mode.result │ ├── mysqlbinlog_raw_mode_win.result │ ├── mysqlbinlog_row_big.result │ ├── mysqlcheck.result │ ├── mysqld--defaults-file.result │ ├── mysqld--help-notwin.result │ ├── mysqld--help-win.result │ ├── mysqldump-compat.result │ ├── mysqldump-max.result │ ├── mysqldump-no-binlog.result │ ├── mysqldump.result │ ├── mysqldump_restore.result │ ├── mysqlhotcopy_archive.result │ ├── mysqlhotcopy_myisam.result │ ├── mysqlimport.result │ ├── mysqlshow.result │ ├── mysqlslap.result │ ├── mysqltest.result │ ├── named_pipe.result │ ├── ndb_default_cluster.require │ ├── negation_elimination.result │ ├── no-threads.result │ ├── no_binlog.result │ ├── not_embedded.require │ ├── not_embedded_server.result │ ├── not_ndb.require │ ├── not_openssl.require │ ├── not_partition.result │ ├── not_ssl.require │ ├── not_true.require │ ├── not_valgrind.require │ ├── not_windows.require │ ├── null.result │ ├── null_key_all.result │ ├── null_key_icp.result │ ├── null_key_none.result │ ├── odbc.result │ ├── olap.result │ ├── one_thread_per_connection.require │ ├── openssl.require │ ├── openssl_1.result │ ├── optimizer_bug12837084.result │ ├── optimizer_debug_sync.result │ ├── optimizer_switch.result │ ├── order_by_all.result │ ├── order_by_icp_mrr.result │ ├── order_by_none.result │ ├── order_by_sortkey.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_archive.result │ ├── partition_binlog.result │ ├── partition_binlog_stmt.result │ ├── partition_blackhole.result │ ├── partition_bug18198.result │ ├── partition_cache.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_exchange.result │ ├── partition_explicit_prune.result │ ├── partition_federated.result │ ├── partition_grant.result │ ├── partition_hash.result │ ├── partition_index_innodb.result │ ├── partition_index_myisam.result │ ├── partition_innodb.result │ ├── partition_innodb_plugin.result │ ├── partition_innodb_semi_consistent.result │ ├── partition_innodb_stmt.result │ ├── partition_innodb_tablespace.result │ ├── partition_key_cache.result │ ├── partition_list.result │ ├── partition_locking.result │ ├── partition_locking_4.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_auth_sha256.result │ ├── plugin_auth_sha256_2.result │ ├── plugin_auth_sha256_server_default.result │ ├── plugin_auth_sha256_server_default_tls.result │ ├── plugin_auth_sha256_tls.result │ ├── plugin_load.result │ ├── plugin_load_option.result │ ├── plugin_not_embedded.result │ ├── preload.result │ ├── profiling.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 │ ├── python_with_json.require │ ├── query_cache.result │ ├── query_cache_28249.result │ ├── query_cache_debug.result │ ├── query_cache_disabled.result │ ├── query_cache_merge.result │ ├── query_cache_notembedded.result │ ├── query_cache_ps_no_prot.result │ ├── query_cache_ps_ps_prot.result │ ├── query_cache_size_functionality.result │ ├── query_cache_type_functionality.result │ ├── query_cache_with_views.result │ ├── range_all.result │ ├── range_icp.result │ ├── range_icp_mrr.result │ ├── range_mrr.result │ ├── range_mrr_cost.result │ ├── range_none.result │ ├── read_many_rows_innodb.result │ ├── read_only.result │ ├── read_only_innodb.result │ ├── rename.result │ ├── renamedb.result │ ├── repair.result │ ├── replace.result │ ├── rewrite_general_log.result │ ├── rewrite_slow_log.result │ ├── rollback.result │ ├── round.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_all.result │ ├── select_all_bka.result │ ├── select_all_bka_nixbnl.result │ ├── select_found.result │ ├── select_icp_mrr.result │ ├── select_icp_mrr_bka.result │ ├── select_icp_mrr_bka_nixbnl.result │ ├── select_none.result │ ├── select_none_bka.result │ ├── select_none_bka_nixbnl.result │ ├── select_safe.result │ ├── server_id.require │ ├── server_id1.require │ ├── server_uuid.result │ ├── server_uuid_embedded.result │ ├── shm.result │ ├── show_check.result │ ├── show_processlist.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 │ ├── sort_buffer_size_functionality.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_notembedded.result │ ├── sp_stress_case.result │ ├── sp_sync.result │ ├── sp_trans.result │ ├── sp_trans_log.result │ ├── sp_validation.result │ ├── sql_mode.result │ ├── ssl-big.result │ ├── ssl-crl-revoked-crl.result │ ├── ssl-sha512.result │ ├── ssl.result │ ├── ssl_8k_key.result │ ├── ssl_and_innodb.result │ ├── ssl_cipher.result │ ├── ssl_compress.result │ ├── ssl_connect.result │ ├── ssl_crl.result │ ├── ssl_crl_clients-valid.result │ ├── ssl_crl_clients.result │ ├── ssl_crl_clients_valid.result │ ├── ssl_crl_crlpath.result │ ├── status.result │ ├── status2.result │ ├── status_bug17954.result │ ├── status_debug.result │ ├── strict.result │ ├── strict_autoinc_1myisam.result │ ├── strict_autoinc_2innodb.result │ ├── strict_autoinc_3heap.result │ ├── subquery_all.result │ ├── subquery_all_bka.result │ ├── subquery_all_bka_nixbnl.result │ ├── subquery_mat.result │ ├── subquery_mat_all.result │ ├── subquery_mat_none.result │ ├── subquery_nomat_nosj.result │ ├── subquery_nomat_nosj_bka.result │ ├── subquery_nomat_nosj_bka_nixbnl.result │ ├── subquery_none.result │ ├── subquery_none_bka.result │ ├── subquery_none_bka_nixbnl.result │ ├── subquery_sj_all.result │ ├── subquery_sj_all_bka.result │ ├── subquery_sj_all_bka_nixbnl.result │ ├── subquery_sj_all_bkaunique.result │ ├── subquery_sj_dupsweed.result │ ├── subquery_sj_dupsweed_bka.result │ ├── subquery_sj_dupsweed_bka_nixbnl.result │ ├── subquery_sj_dupsweed_bkaunique.result │ ├── subquery_sj_firstmatch.result │ ├── subquery_sj_firstmatch_bka.result │ ├── subquery_sj_firstmatch_bka_nixbnl.result │ ├── subquery_sj_firstmatch_bkaunique.result │ ├── subquery_sj_innodb_all.result │ ├── subquery_sj_innodb_all_bka.result │ ├── subquery_sj_innodb_all_bka_nixbnl.result │ ├── subquery_sj_innodb_all_bkaunique.result │ ├── subquery_sj_innodb_none.result │ ├── subquery_sj_innodb_none_bka.result │ ├── subquery_sj_innodb_none_bka_nixbnl.result │ ├── subquery_sj_innodb_none_bkaunique.result │ ├── subquery_sj_loosescan.result │ ├── subquery_sj_loosescan_bka.result │ ├── subquery_sj_loosescan_bka_nixbnl.result │ ├── subquery_sj_loosescan_bkaunique.result │ ├── subquery_sj_mat.result │ ├── subquery_sj_mat_bka.result │ ├── subquery_sj_mat_bka_nixbnl.result │ ├── subquery_sj_mat_bkaunique.result │ ├── subquery_sj_mat_nosj.result │ ├── subquery_sj_none.result │ ├── subquery_sj_none_bka.result │ ├── subquery_sj_none_bka_nixbnl.result │ ├── subquery_sj_none_bkaunique.result │ ├── subselect_debug.result │ ├── subselect_gis.result │ ├── subselect_innodb.result │ ├── subselect_notembedded.result │ ├── sum_distinct-big.result │ ├── sum_distinct.result │ ├── symlink.result │ ├── symlink_windows.result │ ├── synchronization.result │ ├── sysdate_is_now.result │ ├── system_mysql_db.result │ ├── system_mysql_db_refs.result │ ├── table_definition_cache_functionality.result │ ├── table_open_cache_functionality.result │ ├── tablelock.result │ ├── tablespace.result │ ├── temp_pool.result │ ├── temp_table.result │ ├── temporal_literal.result │ ├── testdb_only.require │ ├── thread_cache_size_functionality.result │ ├── timezone.result │ ├── timezone2.result │ ├── timezone3.result │ ├── timezone4.result │ ├── timezone_grant.result │ ├── trans_read_only.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_decimal.result │ ├── type_enum.result │ ├── type_float.result │ ├── type_nchar.result │ ├── type_newdecimal-big.result │ ├── type_newdecimal.result │ ├── type_ranges.result │ ├── type_set.result │ ├── type_temporal_fractional.result │ ├── type_temporal_upgrade.result │ ├── type_time.result │ ├── type_timestamp.result │ ├── type_timestamp_explicit.result │ ├── type_uint.result │ ├── type_varchar.result │ ├── type_year.result │ ├── udf.result │ ├── udf_skip_grants.result │ ├── union.result │ ├── unsafe_binlog_innodb.result │ ├── update.result │ ├── upgrade.result │ ├── user_limits.result │ ├── user_var-binlog.result │ ├── user_var.result │ ├── validate_password_plugin.result │ ├── varbinary.result │ ├── variables-big.result │ ├── variables-notembedded.result │ ├── variables.result │ ├── variables_community.result │ ├── variables_debug.result │ ├── view.result │ ├── view_alias.result │ ├── view_grant.result │ ├── wait_timeout.result │ ├── warnings.result │ ├── warnings_engine_disabled.result │ ├── windows.require │ ├── windows.result │ ├── wl6219-csv.result │ ├── wl6219-innodb.result │ ├── wl6219-memory.result │ ├── wl6219-merge.result │ ├── wl6219-myisam.result │ ├── wl6219-upgrade.result │ ├── wl6301_1_not_windows.result │ ├── wl6301_2_not_windows.result │ ├── wl6301_3.result │ ├── wl6443_deprecation.result │ ├── xa.result │ └── xml.result ├── std_data │ ├── .mylogin.cnf │ ├── 14897.frm │ ├── 55_temporal.MYD │ ├── 55_temporal.MYI │ ├── 55_temporal.frm │ ├── Index.xml │ ├── Moscow_leap │ ├── bad_gis_data.dat │ ├── binlog_savepoint.000001 │ ├── binlog_transaction.000001 │ ├── binlog_transaction_with_GTID.000001 │ ├── binlog_transaction_with_anonymous_GTID.000001 │ ├── bug15328.cnf │ ├── bug16266.000001 │ ├── bug17532932.MYD │ ├── bug17532932.MYI │ ├── bug17532932.frm │ ├── 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 │ ├── bug47205.frm │ ├── bug48265.frm │ ├── bug48449.frm │ ├── bug48633.ARM │ ├── bug48633.ARZ │ ├── bug48633.frm │ ├── bug49823.CSM │ ├── bug49823.CSV │ ├── bug49823.frm │ ├── charset_utf8.txt │ ├── checkDBI_DBD-mysql.pl │ ├── cluster_7022_table.MYD │ ├── cluster_7022_table.MYI │ ├── cluster_7022_table.frm │ ├── corrupt-relay-bin.000624 │ ├── corrupt_t1#P#p1.MYI │ ├── corrupt_t1.MYI │ ├── crl-certificate-readme.txt │ ├── crl-client-revoked.crl │ ├── crldir │ │ └── ab8a3803.r0 │ ├── 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 │ ├── loaddata_dq.dat │ ├── loaddata_pair.dat │ ├── loaddata_utf8.dat │ ├── loadxml.dat │ ├── loadxml2.dat │ ├── master-bin.000001 │ ├── numbers.txt │ ├── old-format-relay-log-win.info │ ├── old-format-relay-log.info │ ├── old_table-323.frm │ ├── onerow.xml │ ├── parts │ │ ├── part_supported_sql_funcs_int_ch1.inc │ │ ├── part_supported_sql_funcs_int_date.inc │ │ ├── part_supported_sql_funcs_int_float.inc │ │ ├── part_supported_sql_funcs_int_int.inc │ │ ├── part_supported_sql_funcs_int_time.inc │ │ ├── t1.frm │ │ ├── t1TIMESTAMP.frm │ │ ├── t1_blackhole.frm │ │ ├── t1_blackhole.par │ │ ├── t1_will_crash#P#p1_first_1024.MYD │ │ ├── t1_will_crash#P#p2.MYD │ │ ├── t1_will_crash#P#p2.MYI │ │ ├── t1_will_crash#P#p3.MYI │ │ ├── t1_will_crash#P#p4.MYI │ │ ├── t1_will_crash#P#p6.MYD │ │ ├── t1_will_crash#P#p6_2.MYD │ │ └── t1_will_crash#P#p6_3.MYD │ ├── rpl_bug28618.dat │ ├── rpl_loaddata.dat │ ├── rpl_loaddata2.dat │ ├── rpl_mixed.dat │ ├── rpl_timezone.dat │ ├── rpl_timezone2.dat │ ├── slave-relay-bin_linux.index │ ├── slave-relay-bin_win.index │ ├── system_tap.stp │ ├── trunc_binlog.000001 │ ├── vchar.frm │ ├── warnings_loaddata.dat │ ├── wl6219_41.MYD │ ├── wl6219_41.MYI │ ├── wl6219_41.frm │ ├── wl6219_55.MYD │ ├── wl6219_55.MYI │ ├── wl6219_55.frm │ ├── wl6219_55_innodb.frm │ ├── words.dat │ └── words2.dat ├── suite │ ├── auth_sec │ │ ├── include │ │ │ ├── have_openssl.inc │ │ │ ├── have_sha256_rsa_auth.inc │ │ │ ├── have_ssl.inc │ │ │ ├── have_ssl_communication.inc │ │ │ ├── mysql_upgrade_preparation.inc │ │ │ ├── not_embedded.inc │ │ │ ├── not_openssl.inc │ │ │ ├── not_sha256_rsa_auth.inc │ │ │ └── not_ssl.inc │ │ ├── r │ │ │ ├── access_credential_control.result │ │ │ ├── have_mysql_upgrade.result │ │ │ ├── have_ssl.require │ │ │ ├── key_value_auth.result │ │ │ ├── mysql_native_plugin.result │ │ │ ├── mysql_no_login.result │ │ │ ├── mysql_old_passwords.result │ │ │ ├── mysql_old_plugin.result │ │ │ ├── mysql_sha256_plugin.result │ │ │ ├── not_embedded.require │ │ │ ├── not_openssl.require │ │ │ ├── not_ssl.require │ │ │ ├── openssl.require │ │ │ ├── password_expired.result │ │ │ ├── server_withoutssl_client_withoutssl.result │ │ │ ├── server_withoutssl_client_withssl.result │ │ │ ├── server_withssl_client_withoutssl.result │ │ │ └── server_withssl_client_withssl.result │ │ └── t │ │ │ ├── access_credential_control-master.opt │ │ │ ├── access_credential_control.test │ │ │ ├── key_value_auth-master.opt │ │ │ ├── key_value_auth.test │ │ │ ├── key_value_auth.test_old │ │ │ ├── mysql_native_plugin.test │ │ │ ├── mysql_no_login-master.opt │ │ │ ├── mysql_no_login.test │ │ │ ├── mysql_old_passwords-master.opt │ │ │ ├── mysql_old_passwords.test │ │ │ ├── mysql_old_plugin.test │ │ │ ├── mysql_old_plugin.test_old │ │ │ ├── mysql_sha256_plugin-master.opt │ │ │ ├── mysql_sha256_plugin.test │ │ │ ├── password_expired-master.opt │ │ │ ├── password_expired.test │ │ │ ├── server_withoutssl_client_withoutssl.test │ │ │ ├── server_withoutssl_client_withssl.test │ │ │ ├── server_withssl_client_withoutssl-master.opt │ │ │ ├── server_withssl_client_withoutssl.test │ │ │ ├── server_withssl_client_withssl-master.opt │ │ │ └── server_withssl_client_withssl.test │ ├── binlog │ │ ├── combinations │ │ ├── r │ │ │ ├── binlog_base64_flag.result │ │ │ ├── binlog_bug23533.result │ │ │ ├── binlog_bug36391.result │ │ │ ├── binlog_checksum.result │ │ │ ├── binlog_crash_safe_master_checksum.result │ │ │ ├── binlog_database.result │ │ │ ├── binlog_delete_and_flush_index.result │ │ │ ├── binlog_drop_if_exists.result │ │ │ ├── binlog_enforce_gtid_consistency.result │ │ │ ├── binlog_error_action.result │ │ │ ├── binlog_format_switch_in_tmp_table.result │ │ │ ├── binlog_grant.result │ │ │ ├── binlog_gtid_cache.result │ │ │ ├── binlog_gtid_errors.result │ │ │ ├── binlog_gtid_implicit_commit.result │ │ │ ├── binlog_gtid_innodb.result │ │ │ ├── binlog_gtid_mysqlbinlog_row.result │ │ │ ├── binlog_gtid_mysqlbinlog_row_innodb.result │ │ │ ├── binlog_gtid_mysqlbinlog_row_myisam.result │ │ │ ├── binlog_gtid_mysqlbinlog_start_stop.result │ │ │ ├── binlog_gtid_row_ctype_ucs.result │ │ │ ├── binlog_gtid_simple_recovery.result │ │ │ ├── binlog_gtid_stm_ctype_ucs.result │ │ │ ├── binlog_gtid_utils.result │ │ │ ├── binlog_hexdump.result │ │ │ ├── binlog_implicit_commit.result │ │ │ ├── binlog_incident.result │ │ │ ├── binlog_incident_ignore.result │ │ │ ├── binlog_index.result │ │ │ ├── binlog_innodb.result │ │ │ ├── binlog_innodb_row.result │ │ │ ├── binlog_killed.result │ │ │ ├── binlog_killed_simulate.result │ │ │ ├── binlog_max_extension.result │ │ │ ├── binlog_mixed_cache_stat.result │ │ │ ├── binlog_mixed_load_data.result │ │ │ ├── binlog_multi_engine.result │ │ │ ├── binlog_mysqlbinlog-cp932.result │ │ │ ├── binlog_mysqlbinlog_base64.result │ │ │ ├── binlog_mysqlbinlog_concat.result │ │ │ ├── binlog_mysqlbinlog_filter.result │ │ │ ├── binlog_mysqlbinlog_row.result │ │ │ ├── binlog_mysqlbinlog_row_innodb.result │ │ │ ├── binlog_mysqlbinlog_row_myisam.result │ │ │ ├── binlog_mysqlbinlog_row_trans.result │ │ │ ├── binlog_mysqlbinlog_start_stop.result │ │ │ ├── binlog_mysqlbinlog_start_stop_slave_server_id.result │ │ │ ├── binlog_old_versions.result │ │ │ ├── binlog_query_filter_rules.result │ │ │ ├── binlog_reset_master.result │ │ │ ├── binlog_rewrite.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_verbose.result │ │ │ ├── binlog_row_query_log_events.result │ │ │ ├── binlog_server_id.result │ │ │ ├── binlog_server_start_options.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_kill.result │ │ │ ├── binlog_truncate_myisam.result │ │ │ ├── binlog_trx_empty_assertions.result │ │ │ ├── binlog_unsafe.result │ │ │ ├── binlog_variables_log_bin.result │ │ │ ├── binlog_variables_log_bin_index.result │ │ │ ├── binlog_variables_relay_log.result │ │ │ ├── binlog_variables_relay_log_index.result │ │ │ ├── binlog_write_error.result │ │ │ └── binlog_xa_handling.result │ │ ├── std_data │ │ │ ├── binlog_old_version_4_1.000001 │ │ │ ├── bug11747887-bin.000003 │ │ │ ├── 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 │ │ │ ├── ver_trunk_row_v2.001 │ │ │ ├── write-full-row.binlog │ │ │ └── write-partial-row.binlog │ │ └── t │ │ │ ├── binlog_base64_flag.test │ │ │ ├── binlog_bug23533.test │ │ │ ├── binlog_bug36391-master.opt │ │ │ ├── binlog_bug36391.test │ │ │ ├── binlog_checksum.test │ │ │ ├── binlog_crash_safe_master_checksum-master.opt │ │ │ ├── binlog_crash_safe_master_checksum.test │ │ │ ├── binlog_database.test │ │ │ ├── binlog_delete_and_flush_index.test │ │ │ ├── binlog_drop_if_exists.test │ │ │ ├── binlog_enforce_gtid_consistency.test │ │ │ ├── binlog_error_action.test │ │ │ ├── binlog_format_switch_in_tmp_table.test │ │ │ ├── binlog_grant.test │ │ │ ├── binlog_gtid_cache-master.opt │ │ │ ├── binlog_gtid_cache.test │ │ │ ├── binlog_gtid_errors-master.opt │ │ │ ├── binlog_gtid_errors.test │ │ │ ├── binlog_gtid_implicit_commit.test │ │ │ ├── binlog_gtid_innodb.test │ │ │ ├── binlog_gtid_mysqlbinlog_row.test │ │ │ ├── binlog_gtid_mysqlbinlog_row_innodb.test │ │ │ ├── binlog_gtid_mysqlbinlog_row_myisam.test │ │ │ ├── binlog_gtid_mysqlbinlog_start_stop.test │ │ │ ├── binlog_gtid_row_ctype_ucs.test │ │ │ ├── binlog_gtid_simple_recovery.test │ │ │ ├── binlog_gtid_stm_ctype_ucs.test │ │ │ ├── binlog_gtid_utils.test │ │ │ ├── binlog_hexdump.test │ │ │ ├── binlog_implicit_commit.test │ │ │ ├── binlog_incident-master.opt │ │ │ ├── binlog_incident.test │ │ │ ├── binlog_incident_ignore-master.opt │ │ │ ├── binlog_incident_ignore.test │ │ │ ├── binlog_index-master.opt │ │ │ ├── binlog_index.test │ │ │ ├── binlog_innodb.test │ │ │ ├── binlog_innodb_row.test │ │ │ ├── binlog_killed.test │ │ │ ├── binlog_killed_simulate-master.opt │ │ │ ├── binlog_killed_simulate.test │ │ │ ├── binlog_max_extension.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_mysqlbinlog_base64.test │ │ │ ├── binlog_mysqlbinlog_concat.test │ │ │ ├── binlog_mysqlbinlog_filter.test │ │ │ ├── binlog_mysqlbinlog_row.test │ │ │ ├── binlog_mysqlbinlog_row_innodb.test │ │ │ ├── binlog_mysqlbinlog_row_myisam.test │ │ │ ├── binlog_mysqlbinlog_row_trans.test │ │ │ ├── binlog_mysqlbinlog_start_stop.test │ │ │ ├── binlog_mysqlbinlog_start_stop_slave_server_id.test │ │ │ ├── binlog_old_versions.test │ │ │ ├── binlog_query_filter_rules-master.opt │ │ │ ├── binlog_query_filter_rules.test │ │ │ ├── binlog_reset_master.test │ │ │ ├── binlog_rewrite.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_verbose.test │ │ │ ├── binlog_row_query_log_events.test │ │ │ ├── binlog_server_id.test │ │ │ ├── binlog_server_start_options.test │ │ │ ├── binlog_sf.test │ │ │ ├── binlog_simplified_binlog_gtid_recovery-master.opt │ │ │ ├── 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_kill.test │ │ │ ├── binlog_truncate_myisam.test │ │ │ ├── binlog_unsafe-master.opt │ │ │ ├── binlog_unsafe.test │ │ │ ├── binlog_variables_log_bin-master.opt │ │ │ ├── binlog_variables_log_bin.test │ │ │ ├── binlog_variables_log_bin_index-master.opt │ │ │ ├── binlog_variables_log_bin_index.test │ │ │ ├── binlog_variables_relay_log-master.opt │ │ │ ├── binlog_variables_relay_log.test │ │ │ ├── binlog_variables_relay_log_index-master.opt │ │ │ ├── binlog_variables_relay_log_index.test │ │ │ ├── binlog_write_error.test │ │ │ ├── binlog_xa_handling.test │ │ │ └── disabled.def │ ├── engines │ │ ├── README │ │ ├── funcs │ │ │ ├── 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.cnf │ │ │ │ ├── crash_manytables_number.test │ │ │ │ ├── crash_manytables_string.cnf │ │ │ │ ├── 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 │ │ │ │ ├── disabled.def │ │ │ │ ├── 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-master.opt │ │ │ │ ├── rpl_dual_pos_advance.test │ │ │ │ ├── rpl_empty_master_crash-master.opt │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── disabled.def │ │ │ │ ├── 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 │ │ ├── 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_35333.result │ │ ├── federated_bug_35333.test │ │ ├── federated_debug-master.opt │ │ ├── federated_debug.result │ │ ├── federated_debug.test │ │ ├── federated_innodb-slave.opt │ │ ├── federated_innodb.result │ │ ├── federated_innodb.test │ │ ├── federated_plugin-master.opt │ │ ├── federated_plugin.result │ │ ├── federated_plugin.test │ │ ├── federated_server.result │ │ ├── federated_server.test │ │ ├── federated_transactions-slave.opt │ │ ├── federated_transactions.result │ │ ├── federated_transactions.test │ │ ├── include │ │ │ ├── federated.inc │ │ │ ├── federated_cleanup.inc │ │ │ └── have_federated_db.inc │ │ └── my.cnf │ ├── 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 │ │ ├── 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.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_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 │ │ │ ├── disabled.def │ │ │ ├── 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-master.opt │ │ │ ├── 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.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_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-master.opt │ │ │ ├── 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-master.opt │ │ │ ├── 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 │ │ │ └── suite.opt │ │ ├── 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 │ │ ├── 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 │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── innodb_charset.test │ │ │ ├── memory_charset.test │ │ │ ├── myisam_charset.test │ │ │ └── suite.opt │ ├── innodb │ │ ├── include │ │ │ ├── checksum_not_strict.inc │ │ │ ├── import.inc │ │ │ ├── innodb_dict.inc │ │ │ ├── innodb_stats.inc │ │ │ ├── innodb_stats_table_flag.inc │ │ │ └── innodb_stats_table_flag_analyze.inc │ │ ├── r │ │ │ ├── add_foreign_key.result │ │ │ ├── blob-update-debug.result │ │ │ ├── blob_redo.result │ │ │ ├── checksum.result │ │ │ ├── create-index.result │ │ │ ├── dropdb.result │ │ │ ├── foreign_key.result │ │ │ ├── import.result │ │ │ ├── index_tree_operation.result │ │ │ ├── innodb-2byte-collation.result │ │ │ ├── innodb-ac-non-locking-select.result │ │ │ ├── innodb-alter-autoinc.result │ │ │ ├── innodb-alter-debug.result │ │ │ ├── innodb-alter-discard.result │ │ │ ├── innodb-alter-nullable.result │ │ │ ├── innodb-alter-tempfile.result │ │ │ ├── innodb-alter.result │ │ │ ├── innodb-analyze.result │ │ │ ├── innodb-autoinc-18274.result │ │ │ ├── innodb-autoinc-44030.result │ │ │ ├── innodb-autoinc-56228.result │ │ │ ├── innodb-autoinc-optimize.result │ │ │ ├── innodb-autoinc.result │ │ │ ├── innodb-blob.result │ │ │ ├── innodb-bug-14068765.result │ │ │ ├── innodb-bug-14084530.result │ │ │ ├── innodb-bug12552164.result │ │ │ ├── innodb-bug14219515.result │ │ │ ├── innodb-change-buffer-recovery.result │ │ │ ├── innodb-consistent.result │ │ │ ├── innodb-double-write.result │ │ │ ├── innodb-index-debug.result │ │ │ ├── innodb-index-online-delete.result │ │ │ ├── innodb-index-online-fk.result │ │ │ ├── innodb-index-online-purge.result │ │ │ ├── innodb-index-online.result │ │ │ ├── innodb-index.result │ │ │ ├── innodb-index_ucs2.result │ │ │ ├── innodb-lock.result │ │ │ ├── innodb-log-file-size-1.result │ │ │ ├── innodb-log-file-size.result │ │ │ ├── innodb-multiple-tablespaces.result │ │ │ ├── innodb-read-view.result │ │ │ ├── innodb-replace.result │ │ │ ├── innodb-semi-consistent.result │ │ │ ├── innodb-status-output.result │ │ │ ├── innodb-system-table-view.result │ │ │ ├── innodb-table-online.result │ │ │ ├── innodb-tablespace.result │ │ │ ├── innodb-timeout.result │ │ │ ├── innodb-truncate.result │ │ │ ├── innodb-ucs2.result │ │ │ ├── innodb-update-insert.result │ │ │ ├── innodb-use-sys-malloc.result │ │ │ ├── innodb-wl5522-1.result │ │ │ ├── innodb-wl5522-debug.result │ │ │ ├── innodb-wl5522.result │ │ │ ├── innodb-wl5980-alter.result │ │ │ ├── innodb-wl5980-debug.result │ │ │ ├── innodb-wl5980-discard.result │ │ │ ├── innodb-wl5980-linux.result │ │ │ ├── innodb-wl5980-windows.result │ │ │ ├── innodb-wl6445-1.result │ │ │ ├── innodb-wl6445-2.result │ │ │ ├── innodb-wl6445.result │ │ │ ├── innodb.result │ │ │ ├── innodb_autoinc_lock_mode_zero.result │ │ │ ├── innodb_blob_unrecoverable_crash.result │ │ │ ├── innodb_buffer_pool_load.result │ │ │ ├── innodb_bug-13628249.result │ │ │ ├── innodb_bug11754376.result │ │ │ ├── innodb_bug11766634.result │ │ │ ├── innodb_bug11789106.result │ │ │ ├── innodb_bug11933790.result │ │ │ ├── innodb_bug12400341.result │ │ │ ├── innodb_bug12429573.result │ │ │ ├── innodb_bug12661768.result │ │ │ ├── innodb_bug13635833.result │ │ │ ├── innodb_bug13867871.result │ │ │ ├── innodb_bug14006907.result │ │ │ ├── innodb_bug14007109.result │ │ │ ├── innodb_bug14007649.result │ │ │ ├── innodb_bug14147491.result │ │ │ ├── innodb_bug14169459.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_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_bug53046.result │ │ │ ├── innodb_bug53290.result │ │ │ ├── innodb_bug53592.result │ │ │ ├── innodb_bug53674.result │ │ │ ├── innodb_bug53756.result │ │ │ ├── innodb_bug54044.result │ │ │ ├── innodb_bug56143.result │ │ │ ├── innodb_bug56716.result │ │ │ ├── innodb_bug56947.result │ │ │ ├── innodb_bug57252.result │ │ │ ├── innodb_bug57255.result │ │ │ ├── innodb_bug57904.result │ │ │ ├── innodb_bug59307.result │ │ │ ├── innodb_bug59410.result │ │ │ ├── innodb_bug59641.result │ │ │ ├── innodb_bug59733.result │ │ │ ├── innodb_bug60049.result │ │ │ ├── innodb_bug60196.result │ │ │ ├── innodb_bug60229.result │ │ │ ├── innodb_bug70867.result │ │ │ ├── innodb_corrupt_bit.result │ │ │ ├── innodb_ctype_ldml.result │ │ │ ├── innodb_file_format.result │ │ │ ├── innodb_gis.result │ │ │ ├── innodb_i_s_innodb_locks.result │ │ │ ├── innodb_i_s_innodb_trx.result │ │ │ ├── innodb_information_schema_buffer.result │ │ │ ├── innodb_lock_wait_timeout_1.result │ │ │ ├── innodb_misc1.result │ │ │ ├── innodb_multi_update.result │ │ │ ├── innodb_mysql.result │ │ │ ├── innodb_mysql_rbk.result │ │ │ ├── innodb_notembedded.result │ │ │ ├── innodb_page_size_func.result │ │ │ ├── innodb_prefix_index_restart_server.result │ │ │ ├── innodb_replace.result │ │ │ ├── innodb_stats.result │ │ │ ├── innodb_stats_auto_recalc.result │ │ │ ├── innodb_stats_auto_recalc_ddl.result │ │ │ ├── innodb_stats_auto_recalc_lots.result │ │ │ ├── innodb_stats_auto_recalc_on_nonexistent.result │ │ │ ├── innodb_stats_create_on_corrupted.result │ │ │ ├── innodb_stats_create_table.result │ │ │ ├── innodb_stats_drop_locked.result │ │ │ ├── innodb_stats_external_pages.result │ │ │ ├── innodb_stats_fetch.result │ │ │ ├── innodb_stats_fetch_corrupted.result │ │ │ ├── innodb_stats_fetch_nonexistent.result │ │ │ ├── innodb_stats_flag_global_off.result │ │ │ ├── innodb_stats_flag_global_on.result │ │ │ ├── innodb_stats_rename_table.result │ │ │ ├── innodb_stats_rename_table_if_exists.result │ │ │ ├── innodb_stats_sample_pages.result │ │ │ ├── innodb_stats_table_flag_auto_recalc.result │ │ │ ├── innodb_stats_table_flag_sample_pages.result │ │ │ ├── innodb_timeout_rollback.result │ │ │ ├── innodb_trx_weight.result │ │ │ ├── innodb_upd_stats_if_needed_not_inited.result │ │ │ ├── innodb_ut_format_name.result │ │ │ ├── insert_debug.result │ │ │ ├── monitor.result │ │ │ ├── monitor_debug.result │ │ │ ├── sp_temp_table.result │ │ │ ├── strict_checksum.result │ │ │ ├── strict_mode.result │ │ │ └── xa_recovery.result │ │ └── t │ │ │ ├── add_foreign_key.test │ │ │ ├── blob-update-debug.test │ │ │ ├── blob_redo-master.opt │ │ │ ├── blob_redo.test │ │ │ ├── checksum.test │ │ │ ├── create-index.test │ │ │ ├── disabled.def │ │ │ ├── dropdb.test │ │ │ ├── foreign_key.test │ │ │ ├── import.test │ │ │ ├── index_tree_operation.test │ │ │ ├── innodb-2byte-collation-master.opt │ │ │ ├── innodb-2byte-collation.test │ │ │ ├── innodb-ac-non-locking-select.test │ │ │ ├── innodb-alter-autoinc.test │ │ │ ├── innodb-alter-debug.test │ │ │ ├── innodb-alter-discard.test │ │ │ ├── innodb-alter-nullable.test │ │ │ ├── innodb-alter-tempfile.test │ │ │ ├── innodb-alter.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-master.opt │ │ │ ├── innodb-autoinc-optimize.test │ │ │ ├── innodb-autoinc.test │ │ │ ├── innodb-blob.test │ │ │ ├── innodb-bug-14068765.test │ │ │ ├── innodb-bug-14084530.test │ │ │ ├── innodb-bug12552164.test │ │ │ ├── innodb-bug14219515.test │ │ │ ├── innodb-change-buffer-recovery-master.opt │ │ │ ├── innodb-change-buffer-recovery.test │ │ │ ├── innodb-consistent-master.opt │ │ │ ├── innodb-consistent.test │ │ │ ├── innodb-double-write.test │ │ │ ├── innodb-index-debug.test │ │ │ ├── innodb-index-online-delete.test │ │ │ ├── innodb-index-online-fk.test │ │ │ ├── innodb-index-online-master.opt │ │ │ ├── innodb-index-online-purge.test │ │ │ ├── innodb-index-online.test │ │ │ ├── innodb-index.test │ │ │ ├── innodb-index_ucs2.test │ │ │ ├── innodb-lock.test │ │ │ ├── innodb-log-file-size-1.test │ │ │ ├── innodb-log-file-size.test │ │ │ ├── innodb-master.opt │ │ │ ├── innodb-multiple-tablespaces.test │ │ │ ├── innodb-read-view.test │ │ │ ├── innodb-replace.test │ │ │ ├── innodb-semi-consistent-master.opt │ │ │ ├── innodb-semi-consistent.test │ │ │ ├── innodb-status-output.test │ │ │ ├── innodb-system-table-view.test │ │ │ ├── innodb-table-online-master.opt │ │ │ ├── innodb-table-online.test │ │ │ ├── innodb-tablespace.test │ │ │ ├── innodb-timeout.test │ │ │ ├── innodb-truncate.test │ │ │ ├── innodb-ucs2.test │ │ │ ├── innodb-update-insert.test │ │ │ ├── innodb-use-sys-malloc-master.opt │ │ │ ├── innodb-use-sys-malloc.test │ │ │ ├── innodb-wl5522-1.test │ │ │ ├── innodb-wl5522-debug.test │ │ │ ├── innodb-wl5522.test │ │ │ ├── innodb-wl5980-alter.test │ │ │ ├── innodb-wl5980-debug.test │ │ │ ├── innodb-wl5980-discard.test │ │ │ ├── innodb-wl5980-linux.test │ │ │ ├── innodb-wl5980-windows.test │ │ │ ├── innodb-wl6445-1.test │ │ │ ├── innodb-wl6445-2.test │ │ │ ├── innodb-wl6445.test │ │ │ ├── innodb.test │ │ │ ├── innodb_autoinc_lock_mode_zero-master.opt │ │ │ ├── innodb_autoinc_lock_mode_zero.test │ │ │ ├── innodb_blob_unrecoverable_crash.test │ │ │ ├── innodb_buffer_pool_load-master.opt │ │ │ ├── innodb_buffer_pool_load.test │ │ │ ├── innodb_bug-13628249.test │ │ │ ├── innodb_bug11754376.test │ │ │ ├── innodb_bug11766634-master.opt │ │ │ ├── innodb_bug11766634.test │ │ │ ├── innodb_bug11789106.test │ │ │ ├── innodb_bug11933790.test │ │ │ ├── innodb_bug12400341-master.opt │ │ │ ├── innodb_bug12400341.test │ │ │ ├── innodb_bug12429573.test │ │ │ ├── innodb_bug12661768.test │ │ │ ├── innodb_bug13635833.test │ │ │ ├── innodb_bug13867871.test │ │ │ ├── innodb_bug14006907.test │ │ │ ├── innodb_bug14007109.test │ │ │ ├── innodb_bug14007649.test │ │ │ ├── innodb_bug14147491-master.opt │ │ │ ├── innodb_bug14147491.test │ │ │ ├── innodb_bug14169459.test │ │ │ ├── innodb_bug14676111.test │ │ │ ├── innodb_bug14704286.test │ │ │ ├── innodb_bug21704.test │ │ │ ├── innodb_bug30423.test │ │ │ ├── innodb_bug30919-master.opt │ │ │ ├── innodb_bug30919.test │ │ │ ├── innodb_bug34053.test │ │ │ ├── innodb_bug34300.test │ │ │ ├── innodb_bug35220.test │ │ │ ├── innodb_bug38231.test │ │ │ ├── innodb_bug39438-master.opt │ │ │ ├── innodb_bug39438.test │ │ │ ├── innodb_bug40360.test │ │ │ ├── innodb_bug40565.test │ │ │ ├── innodb_bug41904.test │ │ │ ├── innodb_bug42101-nonzero-master.opt │ │ │ ├── innodb_bug42101-nonzero.test │ │ │ ├── innodb_bug42101.test │ │ │ ├── innodb_bug42419.test │ │ │ ├── innodb_bug44032.test │ │ │ ├── innodb_bug44369.test │ │ │ ├── innodb_bug44571.test │ │ │ ├── innodb_bug45357.test │ │ │ ├── innodb_bug46000.test │ │ │ ├── innodb_bug46676.test │ │ │ ├── innodb_bug47167-master.opt │ │ │ ├── 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_bug53046.test │ │ │ ├── innodb_bug53290.test │ │ │ ├── innodb_bug53592.test │ │ │ ├── innodb_bug53674-master.opt │ │ │ ├── innodb_bug53674.test │ │ │ ├── innodb_bug53756-master.opt │ │ │ ├── innodb_bug53756.test │ │ │ ├── innodb_bug54044.test │ │ │ ├── innodb_bug56143.test │ │ │ ├── innodb_bug56716.test │ │ │ ├── innodb_bug56947.test │ │ │ ├── innodb_bug57252.test │ │ │ ├── innodb_bug57255.test │ │ │ ├── innodb_bug57904.test │ │ │ ├── innodb_bug59307.test │ │ │ ├── innodb_bug59410.test │ │ │ ├── innodb_bug59641.test │ │ │ ├── innodb_bug59733.test │ │ │ ├── innodb_bug60049-master.opt │ │ │ ├── innodb_bug60049.test │ │ │ ├── innodb_bug60196-master.opt │ │ │ ├── innodb_bug60196.test │ │ │ ├── innodb_bug60229-master.opt │ │ │ ├── innodb_bug60229.test │ │ │ ├── innodb_bug70867.test │ │ │ ├── innodb_corrupt_bit.test │ │ │ ├── innodb_ctype_ldml-master.opt │ │ │ ├── innodb_ctype_ldml.test │ │ │ ├── innodb_file_format-master.opt │ │ │ ├── innodb_file_format.test │ │ │ ├── innodb_gis.test │ │ │ ├── innodb_i_s_innodb_locks.test │ │ │ ├── innodb_i_s_innodb_trx.test │ │ │ ├── innodb_information_schema_buffer.test │ │ │ ├── innodb_lock_wait_timeout_1-master.opt │ │ │ ├── innodb_lock_wait_timeout_1.test │ │ │ ├── innodb_misc1-master.opt │ │ │ ├── innodb_misc1.test │ │ │ ├── innodb_multi_update.test │ │ │ ├── innodb_mysql-master.opt │ │ │ ├── innodb_mysql.test │ │ │ ├── innodb_mysql_rbk-master.opt │ │ │ ├── innodb_mysql_rbk.test │ │ │ ├── innodb_notembedded.test │ │ │ ├── innodb_page_size_func.test │ │ │ ├── innodb_prefix_index_restart_server.test │ │ │ ├── innodb_replace.test │ │ │ ├── innodb_stats.test │ │ │ ├── innodb_stats_auto_recalc.test │ │ │ ├── innodb_stats_auto_recalc_ddl.test │ │ │ ├── innodb_stats_auto_recalc_lots.test │ │ │ ├── innodb_stats_auto_recalc_on_nonexistent.test │ │ │ ├── innodb_stats_create_on_corrupted.test │ │ │ ├── innodb_stats_create_table.test │ │ │ ├── innodb_stats_drop_locked.test │ │ │ ├── innodb_stats_external_pages.test │ │ │ ├── innodb_stats_fetch.test │ │ │ ├── innodb_stats_fetch_corrupted.test │ │ │ ├── innodb_stats_fetch_nonexistent.test │ │ │ ├── innodb_stats_flag_global_off-master.opt │ │ │ ├── innodb_stats_flag_global_off.test │ │ │ ├── innodb_stats_flag_global_on-master.opt │ │ │ ├── innodb_stats_flag_global_on.test │ │ │ ├── innodb_stats_rename_table.test │ │ │ ├── innodb_stats_rename_table_if_exists.test │ │ │ ├── innodb_stats_sample_pages.test │ │ │ ├── innodb_stats_table_flag_auto_recalc.test │ │ │ ├── innodb_stats_table_flag_sample_pages.test │ │ │ ├── innodb_timeout_rollback-master.opt │ │ │ ├── innodb_timeout_rollback.test │ │ │ ├── innodb_trx_weight.test │ │ │ ├── innodb_upd_stats_if_needed_not_inited.test │ │ │ ├── innodb_ut_format_name.test │ │ │ ├── insert_debug.test │ │ │ ├── monitor.test │ │ │ ├── monitor_debug.test │ │ │ ├── portability_wl5980_linux.zip │ │ │ ├── portability_wl5980_windows.zip │ │ │ ├── sp_temp_table.test │ │ │ ├── strict_checksum.test │ │ │ ├── strict_mode.test │ │ │ └── xa_recovery.test │ ├── innodb_fts │ │ ├── r │ │ │ ├── fts_compatibility.result │ │ │ ├── fts_compatibility_win.result │ │ │ ├── fulltext.result │ │ │ ├── fulltext2.result │ │ │ ├── fulltext3.result │ │ │ ├── fulltext_cache.result │ │ │ ├── fulltext_distinct.result │ │ │ ├── fulltext_left_join.result │ │ │ ├── fulltext_misc.result │ │ │ ├── fulltext_multi.result │ │ │ ├── fulltext_order_by.result │ │ │ ├── fulltext_update.result │ │ │ ├── fulltext_var.result │ │ │ ├── innobase_drop_fts_index_table.result │ │ │ ├── innodb-fts-basic.result │ │ │ ├── innodb-fts-ddl.result │ │ │ ├── innodb-fts-fic.result │ │ │ ├── innodb-fts-stopword.result │ │ │ ├── innodb_fts_index_table.result │ │ │ ├── innodb_fts_large_records.result │ │ │ ├── innodb_fts_misc.result │ │ │ ├── innodb_fts_misc_1.result │ │ │ ├── innodb_fts_misc_debug.result │ │ │ ├── innodb_fts_multiple_index.result │ │ │ ├── innodb_fts_opt.result │ │ │ ├── innodb_fts_plugin.result │ │ │ ├── innodb_fts_proximity.result │ │ │ ├── innodb_fts_result_cache_limit.result │ │ │ ├── innodb_fts_savepoint.result │ │ │ ├── innodb_fts_stopword_charset.result │ │ │ ├── innodb_fts_transaction.result │ │ │ ├── phrase.result │ │ │ └── subexpr.result │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── fts_compatibility.test │ │ │ ├── fts_compatibility_win.test │ │ │ ├── fulltext.test │ │ │ ├── fulltext2.test │ │ │ ├── fulltext3.test │ │ │ ├── fulltext_cache.test │ │ │ ├── fulltext_distinct.test │ │ │ ├── fulltext_left_join.test │ │ │ ├── fulltext_misc.test │ │ │ ├── fulltext_multi.test │ │ │ ├── fulltext_order_by.test │ │ │ ├── fulltext_plugin-master.opt │ │ │ ├── fulltext_update.test │ │ │ ├── fulltext_var.test │ │ │ ├── innobase_drop_fts_index_table.test │ │ │ ├── innodb-fts-basic.test │ │ │ ├── innodb-fts-ddl.test │ │ │ ├── innodb-fts-fic.test │ │ │ ├── innodb-fts-stopword.test │ │ │ ├── innodb_fts_index_table.test │ │ │ ├── innodb_fts_large_records.test │ │ │ ├── innodb_fts_misc.test │ │ │ ├── innodb_fts_misc_1.test │ │ │ ├── innodb_fts_misc_debug.test │ │ │ ├── innodb_fts_multiple_index.test │ │ │ ├── innodb_fts_opt.test │ │ │ ├── innodb_fts_plugin.test │ │ │ ├── innodb_fts_proximity.test │ │ │ ├── innodb_fts_result_cache_limit.test │ │ │ ├── innodb_fts_savepoint.test │ │ │ ├── innodb_fts_stopword_charset.test │ │ │ ├── innodb_fts_transaction.test │ │ │ ├── phrase.test │ │ │ └── subexpr.test │ ├── innodb_stress │ │ ├── include │ │ │ └── innodb_stress.inc │ │ ├── r │ │ │ ├── innodb_bigstress.result │ │ │ ├── innodb_bigstress_blob.result │ │ │ ├── innodb_bigstress_blob_nocompress.result │ │ │ ├── innodb_bigstress_crash.result │ │ │ ├── innodb_bigstress_crash_blob.result │ │ │ ├── innodb_bigstress_crash_blob_nocompress.result │ │ │ ├── innodb_bigstress_crash_nocompress.result │ │ │ ├── innodb_bigstress_nocompress.result │ │ │ ├── innodb_hugestress.result │ │ │ ├── innodb_hugestress_blob.result │ │ │ ├── innodb_hugestress_blob_nocompress.result │ │ │ ├── innodb_hugestress_crash.result │ │ │ ├── innodb_hugestress_crash_blob.result │ │ │ ├── innodb_hugestress_crash_blob_nocompress.result │ │ │ ├── innodb_hugestress_crash_nocompress.result │ │ │ ├── innodb_hugestress_nocompress.result │ │ │ ├── innodb_stress.result │ │ │ ├── innodb_stress_blob.result │ │ │ ├── innodb_stress_blob_nocompress.result │ │ │ ├── innodb_stress_crash.result │ │ │ ├── innodb_stress_crash_blob.result │ │ │ ├── innodb_stress_crash_blob_nocompress.result │ │ │ ├── innodb_stress_crash_nocompress.result │ │ │ └── innodb_stress_nocompress.result │ │ └── t │ │ │ ├── Readme │ │ │ ├── innodb_bigstress-master.opt │ │ │ ├── innodb_bigstress-slave.opt │ │ │ ├── innodb_bigstress.test │ │ │ ├── innodb_bigstress_blob-master.opt │ │ │ ├── innodb_bigstress_blob-slave.opt │ │ │ ├── innodb_bigstress_blob.test │ │ │ ├── innodb_bigstress_blob_nocompress-master.opt │ │ │ ├── innodb_bigstress_blob_nocompress-slave.opt │ │ │ ├── innodb_bigstress_blob_nocompress.test │ │ │ ├── innodb_bigstress_crash-master.opt │ │ │ ├── innodb_bigstress_crash-slave.opt │ │ │ ├── innodb_bigstress_crash.test │ │ │ ├── innodb_bigstress_crash_blob-master.opt │ │ │ ├── innodb_bigstress_crash_blob-slave.opt │ │ │ ├── innodb_bigstress_crash_blob.test │ │ │ ├── innodb_bigstress_crash_blob_nocompress-master.opt │ │ │ ├── innodb_bigstress_crash_blob_nocompress-slave.opt │ │ │ ├── innodb_bigstress_crash_blob_nocompress.test │ │ │ ├── innodb_bigstress_crash_nocompress-master.opt │ │ │ ├── innodb_bigstress_crash_nocompress-slave.opt │ │ │ ├── innodb_bigstress_crash_nocompress.test │ │ │ ├── innodb_bigstress_nocompress-master.opt │ │ │ ├── innodb_bigstress_nocompress-slave.opt │ │ │ ├── innodb_bigstress_nocompress.test │ │ │ ├── innodb_hugestress-master.opt │ │ │ ├── innodb_hugestress-slave.opt │ │ │ ├── innodb_hugestress.test │ │ │ ├── innodb_hugestress_blob-master.opt │ │ │ ├── innodb_hugestress_blob-slave.opt │ │ │ ├── innodb_hugestress_blob.test │ │ │ ├── innodb_hugestress_blob_nocompress-master.opt │ │ │ ├── innodb_hugestress_blob_nocompress-slave.opt │ │ │ ├── innodb_hugestress_blob_nocompress.test │ │ │ ├── innodb_hugestress_crash-master.opt │ │ │ ├── innodb_hugestress_crash-slave.opt │ │ │ ├── innodb_hugestress_crash.test │ │ │ ├── innodb_hugestress_crash_blob-master.opt │ │ │ ├── innodb_hugestress_crash_blob-slave.opt │ │ │ ├── innodb_hugestress_crash_blob.test │ │ │ ├── innodb_hugestress_crash_blob_nocompress-master.opt │ │ │ ├── innodb_hugestress_crash_blob_nocompress-slave.opt │ │ │ ├── innodb_hugestress_crash_blob_nocompress.test │ │ │ ├── innodb_hugestress_crash_nocompress-master.opt │ │ │ ├── innodb_hugestress_crash_nocompress-slave.opt │ │ │ ├── innodb_hugestress_crash_nocompress.test │ │ │ ├── innodb_hugestress_nocompress-master.opt │ │ │ ├── innodb_hugestress_nocompress-slave.opt │ │ │ ├── innodb_hugestress_nocompress.test │ │ │ ├── innodb_stress-master.opt │ │ │ ├── innodb_stress-slave.opt │ │ │ ├── innodb_stress.test │ │ │ ├── innodb_stress_blob-master.opt │ │ │ ├── innodb_stress_blob-slave.opt │ │ │ ├── innodb_stress_blob.test │ │ │ ├── innodb_stress_blob_nocompress-master.opt │ │ │ ├── innodb_stress_blob_nocompress-slave.opt │ │ │ ├── innodb_stress_blob_nocompress.test │ │ │ ├── innodb_stress_crash-master.opt │ │ │ ├── innodb_stress_crash-slave.opt │ │ │ ├── innodb_stress_crash.test │ │ │ ├── innodb_stress_crash_blob-master.opt │ │ │ ├── innodb_stress_crash_blob-slave.opt │ │ │ ├── innodb_stress_crash_blob.test │ │ │ ├── innodb_stress_crash_blob_nocompress-master.opt │ │ │ ├── innodb_stress_crash_blob_nocompress-slave.opt │ │ │ ├── innodb_stress_crash_blob_nocompress.test │ │ │ ├── innodb_stress_crash_nocompress-master.opt │ │ │ ├── innodb_stress_crash_nocompress-slave.opt │ │ │ ├── innodb_stress_crash_nocompress.test │ │ │ ├── innodb_stress_nocompress-master.opt │ │ │ ├── innodb_stress_nocompress-slave.opt │ │ │ ├── innodb_stress_nocompress.test │ │ │ └── load_generator.py │ ├── innodb_zip │ │ ├── include │ │ │ ├── innodb_create_tab_indx.inc │ │ │ ├── innodb_fetch_records.inc │ │ │ ├── innodb_load_data.inc │ │ │ ├── innodb_stats_comp_index.inc │ │ │ └── innodb_stats_restart.inc │ │ ├── r │ │ │ ├── innodb-create-options.result │ │ │ ├── innodb-restart.result │ │ │ ├── innodb-wl5522-debug-zip.result │ │ │ ├── innodb-wl5522-zip.result │ │ │ ├── innodb-zip.result │ │ │ ├── innodb_16k.result │ │ │ ├── innodb_4k.result │ │ │ ├── innodb_8k.result │ │ │ ├── innodb_bug36169.result │ │ │ ├── innodb_bug36172.result │ │ │ ├── innodb_bug52745.result │ │ │ ├── innodb_bug53591.result │ │ │ ├── innodb_bug56680.result │ │ │ ├── innodb_cmp_drop_table.result │ │ │ ├── innodb_cmp_per_index.result │ │ │ ├── innodb_index_large_prefix.result │ │ │ ├── innodb_index_large_prefix_4k.result │ │ │ ├── innodb_index_large_prefix_8k.result │ │ │ ├── innodb_prefix_index_liftedlimit.result │ │ │ └── innodb_wl6347_comp_indx_stat.result │ │ └── t │ │ │ ├── innodb-create-options.test │ │ │ ├── innodb-restart.test │ │ │ ├── innodb-wl5522-debug-zip.test │ │ │ ├── innodb-wl5522-zip.test │ │ │ ├── innodb-zip.test │ │ │ ├── innodb_16k.test │ │ │ ├── innodb_4k.test │ │ │ ├── innodb_8k.test │ │ │ ├── innodb_bug36169.test │ │ │ ├── innodb_bug36172.test │ │ │ ├── innodb_bug52745.test │ │ │ ├── innodb_bug53591.test │ │ │ ├── innodb_bug56680.test │ │ │ ├── innodb_cmp_drop_table-master.opt │ │ │ ├── innodb_cmp_drop_table.test │ │ │ ├── innodb_cmp_per_index.test │ │ │ ├── innodb_index_large_prefix.test │ │ │ ├── innodb_index_large_prefix_4k.test │ │ │ ├── innodb_index_large_prefix_8k.test │ │ │ ├── innodb_prefix_index_liftedlimit.test │ │ │ └── innodb_wl6347_comp_indx_stat.test │ ├── jp │ │ ├── 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 │ │ │ ├── disabled.def │ │ │ ├── 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 │ ├── ndb │ │ ├── backups │ │ │ ├── 51 │ │ │ │ ├── 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 │ │ │ ├── 51_d2_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 │ │ │ ├── 51_d2_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 │ │ │ ├── 51_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 │ │ │ ├── 51_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 │ │ │ ├── 51_dd │ │ │ │ ├── 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 │ │ │ ├── 51_undolog_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 │ │ │ ├── 51_undolog_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 │ │ │ ├── before_native_default │ │ │ │ ├── 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 │ │ │ ├── bug54613 │ │ │ │ └── BACKUP-2.2.ctl │ │ │ ├── hashmap │ │ │ │ └── BACKUP-1.2.ctl │ │ │ └── packed │ │ │ │ ├── BACKUP-1-0.2.Data │ │ │ │ ├── BACKUP-1.2.ctl │ │ │ │ └── BACKUP-1.2.log │ │ ├── bug12712109.ini │ │ ├── bug49400.ini │ │ ├── bug56185.ini │ │ ├── data │ │ │ ├── table_data10000.dat │ │ │ └── table_data100000.dat │ │ ├── include │ │ │ ├── have_clusterj.inc │ │ │ ├── have_clusterj_jpa.inc │ │ │ ├── have_connectorj.inc │ │ │ ├── have_java.inc │ │ │ ├── have_junit.inc │ │ │ ├── have_ndbjtie_junit.inc │ │ │ ├── have_openjpa.inc │ │ │ ├── memory_usage.inc │ │ │ ├── ndb_add_node.cnf │ │ │ ├── ndb_add_node_mysqld.cnf │ │ │ ├── ndb_desc_print.inc │ │ │ ├── ndb_execute_count.inc │ │ │ ├── ndb_info.inc │ │ │ ├── ndb_init_execute_count.inc │ │ │ ├── ndb_init_scan_counts.inc │ │ │ ├── ndb_scan_counts.inc │ │ │ ├── ndb_share_check_shares.inc │ │ │ ├── restart_cluster.inc │ │ │ ├── restart_cluster_rolling.inc │ │ │ ├── restart_node.inc │ │ │ ├── restart_random_node.inc │ │ │ ├── run_java.inc │ │ │ └── run_ndbapitest.inc │ │ ├── my.cnf │ │ ├── ndb_config_config.ini │ │ ├── ndb_config_mycnf1.cnf │ │ ├── ndb_config_mycnf2.cnf │ │ ├── ndb_config_threadconfig.ini │ │ ├── r │ │ │ ├── bug36547.result │ │ │ ├── loaddata_autocom_ndb.result │ │ │ ├── ndb_add_partition.result │ │ │ ├── ndb_alter_table.result │ │ │ ├── ndb_alter_table2.result │ │ │ ├── ndb_alter_table3.result │ │ │ ├── ndb_alter_table_backup.result │ │ │ ├── ndb_alter_table_error.result │ │ │ ├── ndb_alter_table_online.result │ │ │ ├── ndb_alter_table_online2.result │ │ │ ├── ndb_alter_table_online_multi.result │ │ │ ├── ndb_auto_increment.result │ │ │ ├── ndb_autoinc.result │ │ │ ├── ndb_basic.result │ │ │ ├── ndb_bitfield.result │ │ │ ├── ndb_blob.result │ │ │ ├── ndb_blob_big.result │ │ │ ├── ndb_blob_partition.result │ │ │ ├── ndb_bug26793.result │ │ │ ├── ndb_bug31477.result │ │ │ ├── ndb_bug31754.result │ │ │ ├── ndb_bulk_delete.result │ │ │ ├── ndb_cache.result │ │ │ ├── ndb_cache2.result │ │ │ ├── ndb_cache_multi.result │ │ │ ├── ndb_cache_multi2.result │ │ │ ├── ndb_cache_trans.result │ │ │ ├── ndb_charset.result │ │ │ ├── ndb_column_properties.result │ │ │ ├── ndb_condition_pushdown.result │ │ │ ├── ndb_config.result │ │ │ ├── ndb_config2.result │ │ │ ├── ndb_create_table.result │ │ │ ├── ndb_cursor.result │ │ │ ├── ndb_database.result │ │ │ ├── ndb_dbug_lock.result │ │ │ ├── ndb_dbug_tc_select.result │ │ │ ├── ndb_dd_alter.result │ │ │ ├── ndb_dd_basic.result │ │ │ ├── ndb_dd_bug12581213.result │ │ │ ├── ndb_dd_ddl.result │ │ │ ├── ndb_dd_disk2memory.result │ │ │ ├── ndb_dd_dump.result │ │ │ ├── ndb_dd_restore_compat.result │ │ │ ├── ndb_dd_sql_features.result │ │ │ ├── ndb_ddl_open_trans.result │ │ │ ├── ndb_disconnect_ddl.result │ │ │ ├── ndb_discover_db.result │ │ │ ├── ndb_dist_priv.result │ │ │ ├── ndb_gis.result │ │ │ ├── ndb_global_schema_lock.result │ │ │ ├── ndb_global_schema_lock_error.result │ │ │ ├── ndb_grant.result │ │ │ ├── ndb_hidden_pk.result │ │ │ ├── ndb_index.result │ │ │ ├── ndb_index_ordered.result │ │ │ ├── ndb_index_stat.result │ │ │ ├── ndb_index_unique.result │ │ │ ├── ndb_insert.result │ │ │ ├── ndb_join_pushdown.result │ │ │ ├── ndb_limit.result │ │ │ ├── ndb_load.result │ │ │ ├── ndb_loaddatalocal.result │ │ │ ├── ndb_lock.result │ │ │ ├── ndb_lock_table.result │ │ │ ├── ndb_mgm.result │ │ │ ├── ndb_minmax.result │ │ │ ├── ndb_multi.result │ │ │ ├── ndb_multi_row.result │ │ │ ├── ndb_native_default_support.result │ │ │ ├── ndb_optimize_table.result │ │ │ ├── ndb_optimized_node_selection.result │ │ │ ├── ndb_partition_error.result │ │ │ ├── ndb_partition_error2.result │ │ │ ├── ndb_partition_hash.result │ │ │ ├── ndb_partition_key.result │ │ │ ├── ndb_partition_list.result │ │ │ ├── ndb_partition_range.result │ │ │ ├── ndb_read_multi_range.result │ │ │ ├── ndb_reconnect.result │ │ │ ├── ndb_rename.result │ │ │ ├── ndb_replace.result │ │ │ ├── ndb_restore_compat_downward.result │ │ │ ├── ndb_restore_compat_endianness.result │ │ │ ├── ndb_restore_conv_lossy_charbinary.result │ │ │ ├── ndb_restore_conv_lossy_integral.result │ │ │ ├── ndb_restore_conv_padding.result │ │ │ ├── ndb_restore_conv_promotion.result │ │ │ ├── ndb_restore_discover.result │ │ │ ├── ndb_restore_misc.result │ │ │ ├── ndb_restore_print.result │ │ │ ├── ndb_restore_schema_blobs.result │ │ │ ├── ndb_restore_schema_partitions.result │ │ │ ├── ndb_restore_schema_rewrites.result │ │ │ ├── ndb_restore_schema_subsets.result │ │ │ ├── ndb_restore_schema_tolerance.result │ │ │ ├── ndb_restore_undolog.result │ │ │ ├── ndb_row_count.result │ │ │ ├── ndb_row_format.result │ │ │ ├── ndb_select_count.result │ │ │ ├── ndb_share.result │ │ │ ├── ndb_short_sigs.result │ │ │ ├── ndb_single_user.result │ │ │ ├── ndb_sp.result │ │ │ ├── ndb_sql_allow_batching.result │ │ │ ├── ndb_statistics0.result │ │ │ ├── ndb_statistics1.result │ │ │ ├── ndb_subquery.result │ │ │ ├── ndb_temporary.result │ │ │ ├── ndb_tmp_table_and_DDL.result │ │ │ ├── ndb_transaction.result │ │ │ ├── ndb_trigger.result │ │ │ ├── ndb_truncate.result │ │ │ ├── ndb_types.result │ │ │ ├── ndb_update.result │ │ │ ├── ndb_update_no_read.result │ │ │ ├── ndb_view.result │ │ │ ├── ndbapi.result │ │ │ ├── ndbinfo.result │ │ │ ├── ndbinfo_cache.result │ │ │ ├── ndbinfo_dump.result │ │ │ ├── ps_7ndb.result │ │ │ └── strict_autoinc_5ndb.result │ │ └── t │ │ │ ├── bug36547.test │ │ │ ├── clusterj.test │ │ │ ├── clusterj_jpa.test │ │ │ ├── disabled.def │ │ │ ├── have_ndb_dist_priv.inc │ │ │ ├── have_ndb_error_insert.inc │ │ │ ├── have_ndbinfo.inc │ │ │ ├── loaddata_autocom_ndb.test │ │ │ ├── ndb_add_partition.test │ │ │ ├── ndb_addnode.cnf │ │ │ ├── ndb_addnode.test │ │ │ ├── ndb_alter_table.test │ │ │ ├── ndb_alter_table2.test │ │ │ ├── ndb_alter_table3.test │ │ │ ├── ndb_alter_table_backup.test │ │ │ ├── ndb_alter_table_error.test │ │ │ ├── ndb_alter_table_online.test │ │ │ ├── ndb_alter_table_online2.test │ │ │ ├── ndb_alter_table_online_multi.test │ │ │ ├── ndb_auto_increment.test │ │ │ ├── ndb_autoinc.test │ │ │ ├── ndb_basic.test │ │ │ ├── ndb_bitfield.test │ │ │ ├── ndb_blob.test │ │ │ ├── ndb_blob_big.cnf │ │ │ ├── ndb_blob_big.test │ │ │ ├── ndb_blob_partition.test │ │ │ ├── ndb_bug26793.test │ │ │ ├── ndb_bug31477.test │ │ │ ├── ndb_bug31754.test │ │ │ ├── ndb_bulk_delete.test │ │ │ ├── ndb_cache.test │ │ │ ├── ndb_cache2.test │ │ │ ├── ndb_cache_multi.test │ │ │ ├── ndb_cache_multi2.test │ │ │ ├── ndb_cache_trans.test │ │ │ ├── ndb_charset.test │ │ │ ├── ndb_column_properties.test │ │ │ ├── ndb_condition_pushdown.test │ │ │ ├── ndb_config.test │ │ │ ├── ndb_config2.test │ │ │ ├── ndb_create_table.test │ │ │ ├── ndb_cursor.test │ │ │ ├── ndb_database.test │ │ │ ├── ndb_dbug_lock.test │ │ │ ├── ndb_dbug_tc_select.test │ │ │ ├── ndb_dbug_tc_select_1.inc │ │ │ ├── ndb_dbug_tc_select_2.inc │ │ │ ├── ndb_dbug_tc_select_3.inc │ │ │ ├── ndb_dd_alter.test │ │ │ ├── ndb_dd_basic.test │ │ │ ├── ndb_dd_bug12581213.cnf │ │ │ ├── ndb_dd_bug12581213.test │ │ │ ├── ndb_dd_ddl.test │ │ │ ├── ndb_dd_disk2memory.test │ │ │ ├── ndb_dd_dump.test │ │ │ ├── ndb_dd_restore_compat.test │ │ │ ├── ndb_dd_sql_features.test │ │ │ ├── ndb_ddl_open_trans.test │ │ │ ├── ndb_disconnect_ddl.test │ │ │ ├── ndb_discover_db-master.opt │ │ │ ├── ndb_discover_db.test │ │ │ ├── ndb_dist_priv.test │ │ │ ├── ndb_gis.test │ │ │ ├── ndb_global_schema_lock.test │ │ │ ├── ndb_global_schema_lock_error.test │ │ │ ├── ndb_grant.later │ │ │ ├── ndb_hidden_pk.test │ │ │ ├── ndb_index.test │ │ │ ├── ndb_index_ordered.test │ │ │ ├── ndb_index_stat.test │ │ │ ├── ndb_index_stat_enable.inc │ │ │ ├── ndb_index_unique.test │ │ │ ├── ndb_init_schema_locks_count.inc │ │ │ ├── ndb_insert.test │ │ │ ├── ndb_join_pushdown.test │ │ │ ├── ndb_jtie.test │ │ │ ├── ndb_limit.test │ │ │ ├── ndb_load.test │ │ │ ├── ndb_loaddatalocal.test │ │ │ ├── ndb_lock.test │ │ │ ├── ndb_lock_table.test │ │ │ ├── ndb_mgm.inc │ │ │ ├── ndb_mgm.test │ │ │ ├── ndb_minmax.test │ │ │ ├── ndb_multi.test │ │ │ ├── ndb_multi_row.test │ │ │ ├── ndb_native_default_support.test │ │ │ ├── ndb_optimize_table.test │ │ │ ├── ndb_optimized_node_selection.test │ │ │ ├── ndb_partition_error.test │ │ │ ├── ndb_partition_error2.test │ │ │ ├── ndb_partition_hash.test │ │ │ ├── ndb_partition_key.test │ │ │ ├── ndb_partition_list.test │ │ │ ├── ndb_partition_range.test │ │ │ ├── ndb_read_multi_range.test │ │ │ ├── ndb_reconnect.test │ │ │ ├── ndb_rename.test │ │ │ ├── ndb_replace.test │ │ │ ├── ndb_restart_nostart.inc │ │ │ ├── ndb_restart_start.inc │ │ │ ├── ndb_restore_compat_compression-master.opt │ │ │ ├── ndb_restore_compat_compression.test │ │ │ ├── ndb_restore_compat_downward.test │ │ │ ├── ndb_restore_compat_endianness.test │ │ │ ├── ndb_restore_conv_lossy_charbinary.test │ │ │ ├── ndb_restore_conv_lossy_integral.test │ │ │ ├── ndb_restore_conv_padding.test │ │ │ ├── ndb_restore_conv_promotion.test │ │ │ ├── ndb_restore_discover.test │ │ │ ├── ndb_restore_misc.test │ │ │ ├── ndb_restore_print.test │ │ │ ├── ndb_restore_schema_blobs.test │ │ │ ├── ndb_restore_schema_partitions.test │ │ │ ├── ndb_restore_schema_rewrites.test │ │ │ ├── ndb_restore_schema_subsets.test │ │ │ ├── ndb_restore_schema_tolerance.test │ │ │ ├── ndb_restore_undolog.test │ │ │ ├── ndb_row_count.test │ │ │ ├── ndb_row_format.test │ │ │ ├── ndb_schema_locks_count.inc │ │ │ ├── ndb_select_count.test │ │ │ ├── ndb_share.cnf │ │ │ ├── ndb_share.test │ │ │ ├── ndb_short_sigs.cnf │ │ │ ├── ndb_short_sigs.test │ │ │ ├── ndb_show_tables_result.inc │ │ │ ├── ndb_single_user-master.opt │ │ │ ├── ndb_single_user.test │ │ │ ├── ndb_sp.test │ │ │ ├── ndb_sql_allow_batching.test │ │ │ ├── ndb_statistics.inc │ │ │ ├── ndb_statistics0.test │ │ │ ├── ndb_statistics1.test │ │ │ ├── ndb_subquery.test │ │ │ ├── ndb_temporary.test │ │ │ ├── ndb_tmp_table_and_DDL.test │ │ │ ├── ndb_transaction.test │ │ │ ├── ndb_trigger.test │ │ │ ├── ndb_truncate.test │ │ │ ├── ndb_types.test │ │ │ ├── ndb_update.test │ │ │ ├── ndb_update_no_read.test │ │ │ ├── ndb_view.test │ │ │ ├── ndb_wait_nostart.inc │ │ │ ├── ndb_wait_started.inc │ │ │ ├── ndb_waiter.inc │ │ │ ├── ndbapi.test │ │ │ ├── ndbinfo.test │ │ │ ├── ndbinfo_cache.test │ │ │ ├── ndbinfo_create.inc │ │ │ ├── ndbinfo_drop.inc │ │ │ ├── ndbinfo_dump.test │ │ │ ├── ps_7ndb.test │ │ │ ├── show_attributes.inc │ │ │ ├── show_primary_keys.inc │ │ │ ├── show_varpart.inc │ │ │ ├── strict_autoinc_5ndb.test │ │ │ ├── test_mgmd.cnf │ │ │ ├── test_mgmd.test │ │ │ └── test_ndbinfo.test │ ├── ndb_big │ │ ├── bug37983.test │ │ ├── end_timer.inc │ │ ├── my.cnf │ │ ├── run_query_with_retry.inc │ │ ├── smoke.test │ │ ├── start_timer.inc │ │ └── suite.inc │ ├── ndb_binlog │ │ ├── my.cnf │ │ ├── r │ │ │ ├── ndb_binlog_basic.result │ │ │ ├── ndb_binlog_ddl_multi.result │ │ │ ├── ndb_binlog_discover.result │ │ │ ├── ndb_binlog_format.result │ │ │ ├── ndb_binlog_ignore_db.result │ │ │ ├── ndb_binlog_log_apply_status.result │ │ │ ├── ndb_binlog_log_bin.result │ │ │ ├── ndb_binlog_multi.result │ │ │ ├── ndb_binlog_restore.result │ │ │ ├── ndb_binlog_unique_epoch.result │ │ │ └── ndb_binlog_variants.result │ │ └── t │ │ │ ├── ndb_binlog_basic.test │ │ │ ├── ndb_binlog_ddl_multi.test │ │ │ ├── ndb_binlog_discover.test │ │ │ ├── ndb_binlog_format.test │ │ │ ├── ndb_binlog_get_binlog_stmts.inc │ │ │ ├── ndb_binlog_get_binlog_stmts_basic.inc │ │ │ ├── ndb_binlog_ignore_db-master.opt │ │ │ ├── ndb_binlog_ignore_db.test │ │ │ ├── ndb_binlog_log_apply_status.test │ │ │ ├── ndb_binlog_log_bin.test │ │ │ ├── ndb_binlog_multi.test │ │ │ ├── ndb_binlog_restore-master.opt │ │ │ ├── ndb_binlog_restore.test │ │ │ ├── ndb_binlog_unique_epoch.cnf │ │ │ ├── ndb_binlog_unique_epoch.test │ │ │ ├── ndb_binlog_variants.cnf │ │ │ └── ndb_binlog_variants.test │ ├── ndb_rpl │ │ ├── my.cnf │ │ ├── ndb_master-slave.inc │ │ ├── ndb_master-slave_2ch.inc │ │ ├── ndb_master-slave_2ch_end.inc │ │ ├── r │ │ │ ├── ndb_rpl_2innodb.result │ │ │ ├── ndb_rpl_2myisam.result │ │ │ ├── ndb_rpl_2ndb.result │ │ │ ├── ndb_rpl_2other.result │ │ │ ├── ndb_rpl_add_column.result │ │ │ ├── ndb_rpl_apply_status.result │ │ │ ├── ndb_rpl_auto_inc.result │ │ │ ├── ndb_rpl_bank.result │ │ │ ├── ndb_rpl_basic.result │ │ │ ├── ndb_rpl_binlog_format_errors.result │ │ │ ├── ndb_rpl_bitfield.result │ │ │ ├── ndb_rpl_blob.result │ │ │ ├── ndb_rpl_break_3_chain.result │ │ │ ├── ndb_rpl_bug22045.result │ │ │ ├── ndb_rpl_check_for_mixed.result │ │ │ ├── ndb_rpl_circular.result │ │ │ ├── ndb_rpl_circular_2ch.result │ │ │ ├── ndb_rpl_circular_2ch_rep_status.result │ │ │ ├── ndb_rpl_circular_simplex.result │ │ │ ├── ndb_rpl_conflict.result │ │ │ ├── ndb_rpl_conflict_epoch.result │ │ │ ├── ndb_rpl_conflict_max.result │ │ │ ├── ndb_rpl_conflict_max_delete_win.result │ │ │ ├── ndb_rpl_conflict_old.result │ │ │ ├── ndb_rpl_ctype_ucs2_def.result │ │ │ ├── ndb_rpl_dd_advance.result │ │ │ ├── ndb_rpl_dd_basic.result │ │ │ ├── ndb_rpl_dd_partitions.result │ │ │ ├── ndb_rpl_do_db.result │ │ │ ├── ndb_rpl_do_table.result │ │ │ ├── ndb_rpl_empty_epoch.result │ │ │ ├── ndb_rpl_gap_event.result │ │ │ ├── ndb_rpl_idempotent.result │ │ │ ├── ndb_rpl_ignore_db.result │ │ │ ├── ndb_rpl_init_rep_status.result │ │ │ ├── ndb_rpl_innodb2ndb.result │ │ │ ├── ndb_rpl_innodb_trans.result │ │ │ ├── ndb_rpl_load.result │ │ │ ├── ndb_rpl_logging.result │ │ │ ├── ndb_rpl_mix_eng_trans.result │ │ │ ├── ndb_rpl_mix_innodb.result │ │ │ ├── ndb_rpl_mixed_tables.result │ │ │ ├── ndb_rpl_multi.result │ │ │ ├── ndb_rpl_myisam2ndb.result │ │ │ ├── ndb_rpl_ndbapi_multi.result │ │ │ ├── ndb_rpl_rep_error.result │ │ │ ├── ndb_rpl_rep_ignore.result │ │ │ ├── ndb_rpl_skip_gap_event.result │ │ │ ├── ndb_rpl_slave_lsu.result │ │ │ ├── ndb_rpl_slave_lsu_anyval.result │ │ │ ├── ndb_rpl_slave_restart.result │ │ │ ├── ndb_rpl_stm_innodb.result │ │ │ ├── ndb_rpl_sync.result │ │ │ ├── ndb_rpl_ui.result │ │ │ ├── ndb_rpl_ui2.result │ │ │ ├── ndb_rpl_ui3.result │ │ │ ├── rpl_truncate_7ndb.result │ │ │ └── rpl_truncate_7ndb_2.result │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── ndb_apply_status.frm │ │ │ ├── ndb_conflict_info.inc │ │ │ ├── ndb_conflict_info_init.inc │ │ │ ├── ndb_rpl_2innodb-master.opt │ │ │ ├── ndb_rpl_2innodb-slave.opt │ │ │ ├── ndb_rpl_2innodb.test │ │ │ ├── ndb_rpl_2multi_basic.inc │ │ │ ├── ndb_rpl_2multi_eng.inc │ │ │ ├── ndb_rpl_2myisam-master.opt │ │ │ ├── ndb_rpl_2myisam-slave.opt │ │ │ ├── ndb_rpl_2myisam.test │ │ │ ├── ndb_rpl_2ndb-slave.opt │ │ │ ├── ndb_rpl_2ndb.test │ │ │ ├── ndb_rpl_2other-slave.opt │ │ │ ├── ndb_rpl_2other.test │ │ │ ├── ndb_rpl_add_column.test │ │ │ ├── ndb_rpl_apply_status-master.opt │ │ │ ├── ndb_rpl_apply_status.test │ │ │ ├── ndb_rpl_auto_inc.test │ │ │ ├── ndb_rpl_bank.test │ │ │ ├── ndb_rpl_basic.test │ │ │ ├── ndb_rpl_binlog_format_errors-master.opt │ │ │ ├── ndb_rpl_binlog_format_errors-slave.opt │ │ │ ├── ndb_rpl_binlog_format_errors.test │ │ │ ├── ndb_rpl_bitfield.test │ │ │ ├── ndb_rpl_blob.test │ │ │ ├── ndb_rpl_break_3_chain.cnf │ │ │ ├── ndb_rpl_break_3_chain.test │ │ │ ├── ndb_rpl_bug22045.test │ │ │ ├── ndb_rpl_check_for_mixed.test │ │ │ ├── ndb_rpl_circular.test │ │ │ ├── ndb_rpl_circular_2ch.cnf │ │ │ ├── ndb_rpl_circular_2ch.test │ │ │ ├── ndb_rpl_circular_2ch_rep_status.cnf │ │ │ ├── ndb_rpl_circular_2ch_rep_status.test │ │ │ ├── ndb_rpl_circular_simplex.test │ │ │ ├── ndb_rpl_conflict.test │ │ │ ├── ndb_rpl_conflict_1.inc │ │ │ ├── ndb_rpl_conflict_epoch.cnf │ │ │ ├── ndb_rpl_conflict_epoch.test │ │ │ ├── ndb_rpl_conflict_epoch_1.inc │ │ │ ├── ndb_rpl_conflict_max-master.opt │ │ │ ├── ndb_rpl_conflict_max.test │ │ │ ├── ndb_rpl_conflict_max_delete_win-master.opt │ │ │ ├── ndb_rpl_conflict_max_delete_win.test │ │ │ ├── ndb_rpl_conflict_old-master.opt │ │ │ ├── ndb_rpl_conflict_old.test │ │ │ ├── ndb_rpl_ctype_ucs2_def-master.opt │ │ │ ├── ndb_rpl_ctype_ucs2_def.test │ │ │ ├── ndb_rpl_dd_advance.test │ │ │ ├── ndb_rpl_dd_basic.test │ │ │ ├── ndb_rpl_dd_partitions-master.opt │ │ │ ├── ndb_rpl_dd_partitions-slave.opt │ │ │ ├── ndb_rpl_dd_partitions.test │ │ │ ├── ndb_rpl_do_db-slave.opt │ │ │ ├── ndb_rpl_do_db.test │ │ │ ├── ndb_rpl_do_table-slave.opt │ │ │ ├── ndb_rpl_do_table.test │ │ │ ├── ndb_rpl_empty_epoch.test │ │ │ ├── ndb_rpl_gap_event-master.opt │ │ │ ├── ndb_rpl_gap_event.test │ │ │ ├── ndb_rpl_get_binlog_events.inc │ │ │ ├── ndb_rpl_idempotent.test │ │ │ ├── ndb_rpl_ignore_db-master.opt │ │ │ ├── ndb_rpl_ignore_db.test │ │ │ ├── ndb_rpl_init_rep_status.test │ │ │ ├── ndb_rpl_innodb2ndb-master.opt │ │ │ ├── ndb_rpl_innodb2ndb-slave.opt │ │ │ ├── ndb_rpl_innodb2ndb.test │ │ │ ├── ndb_rpl_innodb_trans-slave.opt │ │ │ ├── ndb_rpl_innodb_trans.test │ │ │ ├── ndb_rpl_load.test │ │ │ ├── ndb_rpl_logging.test │ │ │ ├── ndb_rpl_mix_eng_trans-master.opt │ │ │ ├── ndb_rpl_mix_eng_trans-slave.opt │ │ │ ├── ndb_rpl_mix_eng_trans.test │ │ │ ├── ndb_rpl_mix_innodb-master.opt │ │ │ ├── ndb_rpl_mix_innodb.test │ │ │ ├── ndb_rpl_mixed_tables-master.opt │ │ │ ├── ndb_rpl_mixed_tables-slave.opt │ │ │ ├── ndb_rpl_mixed_tables.test │ │ │ ├── ndb_rpl_multi.test │ │ │ ├── ndb_rpl_multi_binlog_update.cnf │ │ │ ├── ndb_rpl_multi_binlog_update.inc │ │ │ ├── ndb_rpl_multi_update2-slave.opt │ │ │ ├── ndb_rpl_myisam2ndb-slave.opt │ │ │ ├── ndb_rpl_myisam2ndb.test │ │ │ ├── ndb_rpl_ndbapi_multi.test │ │ │ ├── ndb_rpl_relayrotate-slave.opt │ │ │ ├── ndb_rpl_rep_error.test │ │ │ ├── ndb_rpl_rep_ignore-slave.opt │ │ │ ├── ndb_rpl_rep_ignore.test │ │ │ ├── ndb_rpl_skip_gap_event-slave.opt │ │ │ ├── ndb_rpl_skip_gap_event.test │ │ │ ├── ndb_rpl_slave_lsu.cnf │ │ │ ├── ndb_rpl_slave_lsu.test │ │ │ ├── ndb_rpl_slave_lsu_anyval.cnf │ │ │ ├── ndb_rpl_slave_lsu_anyval.test │ │ │ ├── ndb_rpl_slave_restart.test │ │ │ ├── ndb_rpl_stm_innodb-master.opt │ │ │ ├── ndb_rpl_stm_innodb.test │ │ │ ├── ndb_rpl_sync.test │ │ │ ├── ndb_rpl_ui.test │ │ │ ├── ndb_rpl_ui2.test │ │ │ ├── ndb_rpl_ui3.test │ │ │ ├── ndb_rpl_xxx_innodb.inc │ │ │ ├── rpl_truncate_7ndb.test │ │ │ ├── rpl_truncate_7ndb_2.test │ │ │ ├── select_ndb_apply_status.inc │ │ │ └── wait_schema_logging.inc │ ├── ndb_team │ │ ├── my.cnf │ │ ├── r │ │ │ ├── ndb_autodiscover.result │ │ │ ├── ndb_autodiscover2.result │ │ │ ├── ndb_autodiscover3.result │ │ │ ├── ndb_backup_print.result │ │ │ ├── ndb_dd_backuprestore.result │ │ │ └── ndb_restart.result │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── ndb_autodiscover.test │ │ │ ├── ndb_autodiscover2-master.opt │ │ │ ├── ndb_autodiscover2.test │ │ │ ├── ndb_autodiscover3-master.opt │ │ │ ├── ndb_autodiscover3.test │ │ │ ├── ndb_backup_print.test │ │ │ ├── ndb_dd_backuprestore.test │ │ │ └── ndb_restart.test │ ├── opt_trace │ │ ├── include │ │ │ ├── bugs.inc │ │ │ ├── filesort_pq.inc │ │ │ ├── general.inc │ │ │ ├── general2.inc │ │ │ ├── range.inc │ │ │ ├── security.inc │ │ │ └── subquery.inc │ │ ├── r │ │ │ ├── bugs_no_prot_all.result │ │ │ ├── bugs_no_prot_none.result │ │ │ ├── bugs_ps_prot_all.result │ │ │ ├── bugs_ps_prot_none.result │ │ │ ├── charset.result │ │ │ ├── debug.result │ │ │ ├── eq_range_statistics.result │ │ │ ├── filesort_pq.result │ │ │ ├── general2_no_prot.result │ │ │ ├── general2_ps_prot.result │ │ │ ├── general_no_prot_all.result │ │ │ ├── general_no_prot_none.result │ │ │ ├── general_ps_prot_all.result │ │ │ ├── general_ps_prot_none.result │ │ │ ├── range_no_prot.result │ │ │ ├── range_ps_prot.result │ │ │ ├── security_no_prot.result │ │ │ ├── security_ps_prot.result │ │ │ ├── subquery_no_prot.result │ │ │ ├── subquery_ps_prot.result │ │ │ └── temp_table.result │ │ ├── t │ │ │ ├── bugs_no_prot_all.test │ │ │ ├── bugs_no_prot_none.test │ │ │ ├── bugs_ps_prot_all.test │ │ │ ├── bugs_ps_prot_none.test │ │ │ ├── charset.test │ │ │ ├── debug.test │ │ │ ├── eq_range_statistics.test │ │ │ ├── filesort_pq.test │ │ │ ├── general2_no_prot.test │ │ │ ├── general2_ps_prot.test │ │ │ ├── general_no_prot_all.test │ │ │ ├── general_no_prot_none.test │ │ │ ├── general_ps_prot_all.test │ │ │ ├── general_ps_prot_none.test │ │ │ ├── range_no_prot.test │ │ │ ├── range_ps_prot.test │ │ │ ├── security_no_prot.test │ │ │ ├── security_ps_prot.test │ │ │ ├── subquery_no_prot.test │ │ │ ├── subquery_ps_prot.test │ │ │ └── temp_table.test │ │ └── validate_json.py │ ├── parts │ │ ├── inc │ │ │ ├── methods1.inc │ │ │ ├── part_blocked_sql_funcs_main.inc │ │ │ ├── part_exch_drop_tabs.inc │ │ │ ├── part_exch_qa.inc │ │ │ ├── part_exch_qa_1.inc │ │ │ ├── part_exch_qa_13.inc │ │ │ ├── part_exch_qa_4.inc │ │ │ ├── part_exch_qa_5.inc │ │ │ ├── part_exch_qa_7.inc │ │ │ ├── part_exch_qa_8.inc │ │ │ ├── part_exch_tabs.inc │ │ │ ├── part_supported_sql_funcs_delete.inc │ │ │ ├── part_supported_sql_funcs_main.inc │ │ │ ├── partition-dml-1-1-modes.inc │ │ │ ├── partition-dml-1-1.inc │ │ │ ├── partition-dml-1-10.inc │ │ │ ├── partition-dml-1-11.inc │ │ │ ├── partition-dml-1-2.inc │ │ │ ├── partition-dml-1-3.inc │ │ │ ├── partition-dml-1-4.inc │ │ │ ├── partition-dml-1-5.inc │ │ │ ├── partition-dml-1-6.inc │ │ │ ├── partition-dml-1-7.inc │ │ │ ├── partition-dml-1-8.inc │ │ │ ├── partition-dml-1-9.inc │ │ │ ├── partition-dml_cr_tab.inc │ │ │ ├── partition-dml_ins_tab.inc │ │ │ ├── partition.pre │ │ │ ├── partition_10.inc │ │ │ ├── partition_11.inc │ │ │ ├── partition_12.inc │ │ │ ├── partition_20.inc │ │ │ ├── partition_alter1_1.inc │ │ │ ├── partition_alter1_1_2.inc │ │ │ ├── partition_alter1_2.inc │ │ │ ├── partition_alter2_1.inc │ │ │ ├── partition_alter2_2.inc │ │ │ ├── partition_alter3.inc │ │ │ ├── partition_alter4.inc │ │ │ ├── partition_alter_1.inc │ │ │ ├── partition_alter_11.inc │ │ │ ├── partition_alter_13.inc │ │ │ ├── partition_alter_41.inc │ │ │ ├── partition_auto_increment.inc │ │ │ ├── partition_basic.inc │ │ │ ├── partition_basic_symlink.inc │ │ │ ├── partition_bigint.inc │ │ │ ├── partition_binary.inc │ │ │ ├── partition_bit.inc │ │ │ ├── partition_blob.inc │ │ │ ├── partition_blocked_sql_funcs.inc │ │ │ ├── partition_char.inc │ │ │ ├── partition_check.inc │ │ │ ├── partition_check_drop.inc │ │ │ ├── partition_check_read.inc │ │ │ ├── partition_check_read1.inc │ │ │ ├── partition_check_read2.inc │ │ │ ├── partition_cleanup.inc │ │ │ ├── partition_crash.inc │ │ │ ├── partition_crash_add.inc │ │ │ ├── partition_crash_change.inc │ │ │ ├── partition_crash_drop.inc │ │ │ ├── partition_crash_exchange.inc │ │ │ ├── partition_crash_t2.inc │ │ │ ├── partition_date.inc │ │ │ ├── partition_datetime.inc │ │ │ ├── partition_decimal.inc │ │ │ ├── partition_directory.inc │ │ │ ├── partition_double.inc │ │ │ ├── partition_engine.inc │ │ │ ├── partition_enum.inc │ │ │ ├── partition_exchange.inc │ │ │ ├── partition_fail.inc │ │ │ ├── partition_fail_add.inc │ │ │ ├── partition_fail_change.inc │ │ │ ├── partition_fail_drop.inc │ │ │ ├── partition_fail_exchange.inc │ │ │ ├── partition_fail_t2.inc │ │ │ ├── partition_float.inc │ │ │ ├── partition_int.inc │ │ │ ├── partition_key_16col.inc │ │ │ ├── partition_key_32col.inc │ │ │ ├── partition_key_4col.inc │ │ │ ├── partition_key_8col.inc │ │ │ ├── partition_layout.inc │ │ │ ├── partition_layout_check1.inc │ │ │ ├── partition_layout_check2.inc │ │ │ ├── partition_max_parts_hash.inc │ │ │ ├── partition_max_parts_inv.inc │ │ │ ├── partition_max_parts_key.inc │ │ │ ├── partition_max_parts_list.inc │ │ │ ├── partition_max_parts_range.inc │ │ │ ├── partition_max_sub_parts_key_list.inc │ │ │ ├── partition_max_sub_parts_key_range.inc │ │ │ ├── partition_max_sub_parts_list.inc │ │ │ ├── partition_max_sub_parts_range.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 │ │ │ └── rpl-partition-dml-1-1.inc │ │ ├── r │ │ │ ├── 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-dml-1-1-innodb-modes.result │ │ │ ├── partition-dml-1-1-innodb.result │ │ │ ├── partition-dml-1-1-myisam-modes.result │ │ │ ├── partition-dml-1-1-myisam.result │ │ │ ├── partition-dml-1-10-innodb.result │ │ │ ├── partition-dml-1-10-myisam.result │ │ │ ├── partition-dml-1-11-innodb.result │ │ │ ├── partition-dml-1-11-myisam.result │ │ │ ├── partition-dml-1-2-innodb.result │ │ │ ├── partition-dml-1-2-myisam.result │ │ │ ├── partition-dml-1-3-innodb.result │ │ │ ├── partition-dml-1-4-innodb.result │ │ │ ├── partition-dml-1-5-innodb.result │ │ │ ├── partition-dml-1-6-innodb.result │ │ │ ├── partition-dml-1-7-innodb.result │ │ │ ├── partition-dml-1-8-innodb.result │ │ │ ├── partition-dml-1-9-innodb.result │ │ │ ├── partition-dml-1-9-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_myisam.result │ │ │ ├── partition_alter2_2_1_innodb.result │ │ │ ├── partition_alter2_2_2_innodb.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_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.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_exch_innodb.result │ │ │ ├── partition_exch_myisam.result │ │ │ ├── partition_exch_myisam_innodb.result │ │ │ ├── partition_exch_qa.result │ │ │ ├── partition_exch_qa_10.result │ │ │ ├── partition_exch_qa_11.result │ │ │ ├── partition_exch_qa_12.result │ │ │ ├── partition_exch_qa_13.result │ │ │ ├── partition_exch_qa_14.result │ │ │ ├── partition_exch_qa_15.result │ │ │ ├── partition_exch_qa_1_innodb.result │ │ │ ├── partition_exch_qa_1_myisam.result │ │ │ ├── partition_exch_qa_2.result │ │ │ ├── partition_exch_qa_3.result │ │ │ ├── partition_exch_qa_4_innodb.result │ │ │ ├── partition_exch_qa_4_myisam.result │ │ │ ├── partition_exch_qa_5_innodb.result │ │ │ ├── partition_exch_qa_5_myisam.result │ │ │ ├── partition_exch_qa_6.result │ │ │ ├── partition_exch_qa_7_innodb.result │ │ │ ├── partition_exch_qa_7_myisam.result │ │ │ ├── partition_exch_qa_8_innodb.result │ │ │ ├── partition_exch_qa_8_myisam.result │ │ │ ├── partition_exchange_archive.result │ │ │ ├── partition_exchange_blackhole.result │ │ │ ├── partition_exchange_innodb.result │ │ │ ├── partition_exchange_memory.result │ │ │ ├── partition_exchange_myisam.result │ │ │ ├── partition_float_innodb.result │ │ │ ├── partition_float_myisam.result │ │ │ ├── partition_innodb_status_file.result │ │ │ ├── partition_int_innodb.result │ │ │ ├── partition_int_myisam.result │ │ │ ├── partition_max_parts_hash_innodb.result │ │ │ ├── partition_max_parts_hash_myisam.result │ │ │ ├── partition_max_parts_inv_innodb.result │ │ │ ├── partition_max_parts_inv_myisam.result │ │ │ ├── partition_max_parts_key_innodb.result │ │ │ ├── partition_max_parts_key_myisam.result │ │ │ ├── partition_max_parts_list_innodb.result │ │ │ ├── partition_max_parts_list_myisam.result │ │ │ ├── partition_max_parts_range_innodb.result │ │ │ ├── partition_max_parts_range_myisam.result │ │ │ ├── partition_max_sub_parts_key_list_innodb.result │ │ │ ├── partition_max_sub_parts_key_list_myisam.result │ │ │ ├── partition_max_sub_parts_key_range_innodb.result │ │ │ ├── partition_max_sub_parts_key_range_myisam.result │ │ │ ├── partition_max_sub_parts_list_innodb.result │ │ │ ├── partition_max_sub_parts_list_myisam.result │ │ │ ├── partition_max_sub_parts_range_innodb.result │ │ │ ├── partition_max_sub_parts_range_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_reorganize_innodb.result │ │ │ ├── partition_reorganize_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-dml-1-1-innodb.result │ │ │ ├── rpl-partition-dml-1-1-myisam.result │ │ │ └── rpl_partition.result │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── 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-dml-1-1-innodb-modes.test │ │ │ ├── partition-dml-1-1-innodb.test │ │ │ ├── partition-dml-1-1-myisam-modes.test │ │ │ ├── partition-dml-1-1-myisam.test │ │ │ ├── partition-dml-1-10-innodb.test │ │ │ ├── partition-dml-1-10-myisam.test │ │ │ ├── partition-dml-1-11-innodb.test │ │ │ ├── partition-dml-1-11-myisam.test │ │ │ ├── partition-dml-1-2-innodb.test │ │ │ ├── partition-dml-1-2-myisam.test │ │ │ ├── partition-dml-1-3-innodb.test │ │ │ ├── partition-dml-1-4-innodb.test │ │ │ ├── partition-dml-1-5-innodb.test │ │ │ ├── partition-dml-1-6-innodb.test │ │ │ ├── partition-dml-1-7-innodb.test │ │ │ ├── partition-dml-1-8-innodb.test │ │ │ ├── partition-dml-1-9-innodb.test │ │ │ ├── partition-dml-1-9-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_myisam.test │ │ │ ├── partition_alter2_2_1_innodb.test │ │ │ ├── partition_alter2_2_2_innodb.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_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.test │ │ │ ├── partition_debug_innodb-master.opt │ │ │ ├── partition_debug_innodb.test │ │ │ ├── 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_exch_innodb.test │ │ │ ├── partition_exch_myisam.test │ │ │ ├── partition_exch_myisam_innodb.test │ │ │ ├── partition_exch_qa.test │ │ │ ├── partition_exch_qa_10.test │ │ │ ├── partition_exch_qa_11.test │ │ │ ├── partition_exch_qa_12.test │ │ │ ├── partition_exch_qa_13.test │ │ │ ├── partition_exch_qa_14.test │ │ │ ├── partition_exch_qa_15.test │ │ │ ├── partition_exch_qa_1_innodb.test │ │ │ ├── partition_exch_qa_1_myisam.test │ │ │ ├── partition_exch_qa_2.test │ │ │ ├── partition_exch_qa_3.test │ │ │ ├── partition_exch_qa_4_innodb.test │ │ │ ├── partition_exch_qa_4_myisam.test │ │ │ ├── partition_exch_qa_5_innodb.test │ │ │ ├── partition_exch_qa_5_myisam.test │ │ │ ├── partition_exch_qa_6.test │ │ │ ├── partition_exch_qa_7_innodb.test │ │ │ ├── partition_exch_qa_7_myisam.test │ │ │ ├── partition_exch_qa_8_innodb.test │ │ │ ├── partition_exch_qa_8_myisam.test │ │ │ ├── partition_exchange_archive.test │ │ │ ├── partition_exchange_blackhole.test │ │ │ ├── partition_exchange_innodb.test │ │ │ ├── partition_exchange_memory.test │ │ │ ├── partition_exchange_myisam.test │ │ │ ├── partition_float_innodb.test │ │ │ ├── partition_float_myisam.test │ │ │ ├── partition_innodb_status_file-master.opt │ │ │ ├── partition_innodb_status_file.test │ │ │ ├── partition_int_innodb.test │ │ │ ├── partition_int_myisam.test │ │ │ ├── partition_max_parts_hash_innodb-master.opt │ │ │ ├── partition_max_parts_hash_innodb.test │ │ │ ├── partition_max_parts_hash_myisam-master.opt │ │ │ ├── partition_max_parts_hash_myisam.test │ │ │ ├── partition_max_parts_inv_innodb-master.opt │ │ │ ├── partition_max_parts_inv_innodb.test │ │ │ ├── partition_max_parts_inv_myisam-master.opt │ │ │ ├── partition_max_parts_inv_myisam.test │ │ │ ├── partition_max_parts_key_innodb-master.opt │ │ │ ├── partition_max_parts_key_innodb.test │ │ │ ├── partition_max_parts_key_myisam-master.opt │ │ │ ├── partition_max_parts_key_myisam.test │ │ │ ├── partition_max_parts_list_innodb-master.opt │ │ │ ├── partition_max_parts_list_innodb.test │ │ │ ├── partition_max_parts_list_myisam-master.opt │ │ │ ├── partition_max_parts_list_myisam.test │ │ │ ├── partition_max_parts_range_innodb-master.opt │ │ │ ├── partition_max_parts_range_innodb.test │ │ │ ├── partition_max_parts_range_myisam-master.opt │ │ │ ├── partition_max_parts_range_myisam.test │ │ │ ├── partition_max_sub_parts_key_list_innodb-master.opt │ │ │ ├── partition_max_sub_parts_key_list_innodb.test │ │ │ ├── partition_max_sub_parts_key_list_myisam-master.opt │ │ │ ├── partition_max_sub_parts_key_list_myisam.test │ │ │ ├── partition_max_sub_parts_key_range_innodb-master.opt │ │ │ ├── partition_max_sub_parts_key_range_innodb.test │ │ │ ├── partition_max_sub_parts_key_range_myisam-master.opt │ │ │ ├── partition_max_sub_parts_key_range_myisam.test │ │ │ ├── partition_max_sub_parts_list_innodb-master.opt │ │ │ ├── partition_max_sub_parts_list_innodb.test │ │ │ ├── partition_max_sub_parts_list_myisam-master.opt │ │ │ ├── partition_max_sub_parts_list_myisam.test │ │ │ ├── partition_max_sub_parts_range_innodb-master.opt │ │ │ ├── partition_max_sub_parts_range_innodb.test │ │ │ ├── partition_max_sub_parts_range_myisam-master.opt │ │ │ ├── partition_max_sub_parts_range_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_reorganize_innodb.test │ │ │ ├── partition_reorganize_myisam.test │ │ │ ├── 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-dml-1-1-innodb.test │ │ │ ├── rpl-partition-dml-1-1-myisam.test │ │ │ └── rpl_partition.test │ ├── perfschema │ │ ├── include │ │ │ ├── binlog_edge_common.inc │ │ │ ├── binlog_ok_common.inc │ │ │ ├── cleanup_helper.inc │ │ │ ├── connection_cleanup.inc │ │ │ ├── connection_load.inc │ │ │ ├── connection_setup.inc │ │ │ ├── digest_cleanup.inc │ │ │ ├── digest_execution.inc │ │ │ ├── digest_setup.inc │ │ │ ├── disable_instruments.inc │ │ │ ├── enable_instruments.inc │ │ │ ├── event_aggregate_cleanup.inc │ │ │ ├── event_aggregate_load.inc │ │ │ ├── event_aggregate_setup.inc │ │ │ ├── have_aligned_memory.inc │ │ │ ├── hostcache_dump.inc │ │ │ ├── hostcache_set_state.inc │ │ │ ├── privilege.inc │ │ │ ├── rpl_statements_truncate.inc │ │ │ ├── schema.inc │ │ │ ├── setup_helper.inc │ │ │ ├── sizing_auto.inc │ │ │ ├── socket_check1.inc │ │ │ ├── socket_event.inc │ │ │ ├── socket_event_dbg.inc │ │ │ ├── socket_ipv6.inc │ │ │ ├── socket_summary_check.inc │ │ │ ├── socket_summary_check_dbg.inc │ │ │ ├── stage_cleanup.inc │ │ │ ├── stage_setup.inc │ │ │ ├── start_server_common.inc │ │ │ ├── table_aggregate_cleanup.inc │ │ │ ├── table_aggregate_load.inc │ │ │ ├── table_aggregate_setup.inc │ │ │ ├── table_io_basic_dml.inc │ │ │ ├── table_io_cleanup_helper.inc │ │ │ ├── table_io_result_helper.inc │ │ │ ├── table_io_setup_helper.inc │ │ │ ├── upgrade_check.inc │ │ │ ├── wait_for_pfs_thread_count.inc │ │ │ └── wait_till_sleep.inc │ │ ├── r │ │ │ ├── aggregate.result │ │ │ ├── all_tests.result │ │ │ ├── bad_option_1.result │ │ │ ├── bad_option_2.result │ │ │ ├── bad_option_3.result │ │ │ ├── bad_option_4.result │ │ │ ├── bad_option_5.result │ │ │ ├── binlog_edge_mix.result │ │ │ ├── binlog_edge_row.result │ │ │ ├── binlog_edge_stmt.result │ │ │ ├── binlog_ok_mix.result │ │ │ ├── binlog_ok_row.result │ │ │ ├── binlog_ok_stmt.result │ │ │ ├── checksum.result │ │ │ ├── cnf_option.result │ │ │ ├── column_privilege.result │ │ │ ├── connect_attrs.result │ │ │ ├── connection.result │ │ │ ├── connection_3a.result │ │ │ ├── connection_3a_3u.result │ │ │ ├── connection_3u.result │ │ │ ├── csv_table_io.result │ │ │ ├── ddl_accounts.result │ │ │ ├── ddl_cond_instances.result │ │ │ ├── ddl_esgs_by_account_by_event_name.result │ │ │ ├── ddl_esgs_by_host_by_event_name.result │ │ │ ├── ddl_esgs_by_thread_by_event_name.result │ │ │ ├── ddl_esgs_by_user_by_event_name.result │ │ │ ├── ddl_esgs_global_by_event_name.result │ │ │ ├── ddl_esms_by_account_by_event_name.result │ │ │ ├── ddl_esms_by_digest.result │ │ │ ├── ddl_esms_by_host_by_event_name.result │ │ │ ├── ddl_esms_by_thread_by_event_name.result │ │ │ ├── ddl_esms_by_user_by_event_name.result │ │ │ ├── ddl_esms_global_by_event_name.result │ │ │ ├── ddl_events_stages_current.result │ │ │ ├── ddl_events_stages_history.result │ │ │ ├── ddl_events_stages_history_long.result │ │ │ ├── ddl_events_statements_current.result │ │ │ ├── ddl_events_statements_history.result │ │ │ ├── ddl_events_statements_history_long.result │ │ │ ├── ddl_events_waits_current.result │ │ │ ├── ddl_events_waits_history.result │ │ │ ├── ddl_events_waits_history_long.result │ │ │ ├── ddl_ews_by_account_by_event_name.result │ │ │ ├── ddl_ews_by_host_by_event_name.result │ │ │ ├── ddl_ews_by_instance.result │ │ │ ├── ddl_ews_by_thread_by_event_name.result │ │ │ ├── ddl_ews_by_user_by_event_name.result │ │ │ ├── ddl_ews_global_by_event_name.result │ │ │ ├── ddl_file_instances.result │ │ │ ├── ddl_fs_by_event_name.result │ │ │ ├── ddl_fs_by_instance.result │ │ │ ├── ddl_host_cache.result │ │ │ ├── ddl_hosts.result │ │ │ ├── ddl_mutex_instances.result │ │ │ ├── ddl_os_global_by_type.result │ │ │ ├── ddl_performance_timers.result │ │ │ ├── ddl_rwlock_instances.result │ │ │ ├── ddl_session_account_connect_attrs.result │ │ │ ├── ddl_session_connect_attrs.result │ │ │ ├── ddl_setup_actors.result │ │ │ ├── ddl_setup_consumers.result │ │ │ ├── ddl_setup_instruments.result │ │ │ ├── ddl_setup_objects.result │ │ │ ├── ddl_setup_timers.result │ │ │ ├── ddl_socket_instances.result │ │ │ ├── ddl_socket_summary_by_event_name.result │ │ │ ├── ddl_socket_summary_by_instance.result │ │ │ ├── ddl_threads.result │ │ │ ├── ddl_tiws_by_index_usage.result │ │ │ ├── ddl_tiws_by_table.result │ │ │ ├── ddl_tlws_by_table.result │ │ │ ├── ddl_users.result │ │ │ ├── digest_null_literal.result │ │ │ ├── digest_table_full.result │ │ │ ├── dml_accounts.result │ │ │ ├── dml_cond_instances.result │ │ │ ├── dml_esgs_by_account_by_event_name.result │ │ │ ├── dml_esgs_by_host_by_event_name.result │ │ │ ├── dml_esgs_by_thread_by_event_name.result │ │ │ ├── dml_esgs_by_user_by_event_name.result │ │ │ ├── dml_esgs_global_by_event_name.result │ │ │ ├── dml_esms_by_account_by_event_name.result │ │ │ ├── dml_esms_by_digest.result │ │ │ ├── dml_esms_by_host_by_event_name.result │ │ │ ├── dml_esms_by_thread_by_event_name.result │ │ │ ├── dml_esms_by_user_by_event_name.result │ │ │ ├── dml_esms_global_by_event_name.result │ │ │ ├── dml_events_stages_current.result │ │ │ ├── dml_events_stages_history.result │ │ │ ├── dml_events_stages_history_long.result │ │ │ ├── dml_events_statements_current.result │ │ │ ├── dml_events_statements_history.result │ │ │ ├── dml_events_statements_history_long.result │ │ │ ├── dml_events_waits_current.result │ │ │ ├── dml_events_waits_history.result │ │ │ ├── dml_events_waits_history_long.result │ │ │ ├── dml_ews_by_account_by_event_name.result │ │ │ ├── dml_ews_by_host_by_event_name.result │ │ │ ├── dml_ews_by_instance.result │ │ │ ├── dml_ews_by_thread_by_event_name.result │ │ │ ├── dml_ews_by_user_by_event_name.result │ │ │ ├── dml_ews_global_by_event_name.result │ │ │ ├── dml_file_instances.result │ │ │ ├── dml_fs_by_event_name.result │ │ │ ├── dml_fs_by_instance.result │ │ │ ├── dml_handler.result │ │ │ ├── dml_host_cache.result │ │ │ ├── dml_hosts.result │ │ │ ├── dml_mutex_instances.result │ │ │ ├── dml_os_global_by_type.result │ │ │ ├── dml_performance_timers.result │ │ │ ├── dml_rwlock_instances.result │ │ │ ├── dml_session_account_connect_attrs.result │ │ │ ├── dml_session_connect_attrs.result │ │ │ ├── dml_setup_actors.result │ │ │ ├── dml_setup_consumers.result │ │ │ ├── dml_setup_instruments.result │ │ │ ├── dml_setup_objects.result │ │ │ ├── dml_setup_timers.result │ │ │ ├── dml_socket_instances.result │ │ │ ├── dml_socket_summary_by_event_name.result │ │ │ ├── dml_socket_summary_by_instance.result │ │ │ ├── dml_threads.result │ │ │ ├── dml_tiws_by_index_usage.result │ │ │ ├── dml_tiws_by_table.result │ │ │ ├── dml_tlws_by_table.result │ │ │ ├── dml_users.result │ │ │ ├── event_aggregate.result │ │ │ ├── event_aggregate_no_a.result │ │ │ ├── event_aggregate_no_a_no_h.result │ │ │ ├── event_aggregate_no_a_no_u.result │ │ │ ├── event_aggregate_no_a_no_u_no_h.result │ │ │ ├── event_aggregate_no_h.result │ │ │ ├── event_aggregate_no_u.result │ │ │ ├── event_aggregate_no_u_no_h.result │ │ │ ├── func_file_io.result │ │ │ ├── func_mutex.result │ │ │ ├── global_read_lock.result │ │ │ ├── hostcache_ipv4_addrinfo_again_allow.result │ │ │ ├── hostcache_ipv4_addrinfo_again_deny.result │ │ │ ├── hostcache_ipv4_addrinfo_bad_allow.result │ │ │ ├── hostcache_ipv4_addrinfo_bad_deny.result │ │ │ ├── hostcache_ipv4_addrinfo_good_allow.result │ │ │ ├── hostcache_ipv4_addrinfo_good_deny.result │ │ │ ├── hostcache_ipv4_addrinfo_noname_allow.result │ │ │ ├── hostcache_ipv4_addrinfo_noname_deny.result │ │ │ ├── hostcache_ipv4_auth_plugin.result │ │ │ ├── hostcache_ipv4_blocked.result │ │ │ ├── hostcache_ipv4_format.result │ │ │ ├── hostcache_ipv4_max_con.result │ │ │ ├── hostcache_ipv4_nameinfo_again_allow.result │ │ │ ├── hostcache_ipv4_nameinfo_again_deny.result │ │ │ ├── hostcache_ipv4_nameinfo_noname_allow.result │ │ │ ├── hostcache_ipv4_nameinfo_noname_deny.result │ │ │ ├── hostcache_ipv4_passwd.result │ │ │ ├── hostcache_ipv4_ssl.result │ │ │ ├── hostcache_ipv6_addrinfo_again_allow.result │ │ │ ├── hostcache_ipv6_addrinfo_again_deny.result │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow.result │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny.result │ │ │ ├── hostcache_ipv6_addrinfo_good_allow.result │ │ │ ├── hostcache_ipv6_addrinfo_good_deny.result │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow.result │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny.result │ │ │ ├── hostcache_ipv6_auth_plugin.result │ │ │ ├── hostcache_ipv6_blocked.result │ │ │ ├── hostcache_ipv6_max_con.result │ │ │ ├── hostcache_ipv6_nameinfo_again_allow.result │ │ │ ├── hostcache_ipv6_nameinfo_again_deny.result │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow.result │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny.result │ │ │ ├── hostcache_ipv6_passwd.result │ │ │ ├── hostcache_ipv6_ssl.result │ │ │ ├── hostcache_peer_addr.result │ │ │ ├── indexed_table_io.result │ │ │ ├── information_schema.result │ │ │ ├── innodb_table_io.result │ │ │ ├── memory_table_io.result │ │ │ ├── merge_table_io.result │ │ │ ├── misc.result │ │ │ ├── multi_table_io.result │ │ │ ├── myisam_file_io.result │ │ │ ├── myisam_table_io.result │ │ │ ├── nesting.result │ │ │ ├── no_threads.result │ │ │ ├── one_thread_per_con.result │ │ │ ├── ortho_iter.result │ │ │ ├── part_table_io.result │ │ │ ├── pfs_upgrade_event.result │ │ │ ├── pfs_upgrade_func.result │ │ │ ├── pfs_upgrade_proc.result │ │ │ ├── pfs_upgrade_table.result │ │ │ ├── pfs_upgrade_view.result │ │ │ ├── privilege.result │ │ │ ├── privilege_table_io.result │ │ │ ├── query_cache.result │ │ │ ├── read_only.result │ │ │ ├── relaylog.result │ │ │ ├── rollback_table_io.result │ │ │ ├── rpl_gtid_func.result │ │ │ ├── rpl_statements.result │ │ │ ├── schema.result │ │ │ ├── selects.result │ │ │ ├── server_init.result │ │ │ ├── setup_actors.result │ │ │ ├── setup_consumers_defaults.result │ │ │ ├── setup_instruments_defaults.result │ │ │ ├── setup_objects.result │ │ │ ├── short_option_1.result │ │ │ ├── short_option_2.result │ │ │ ├── sizing_default.result │ │ │ ├── sizing_growth.result │ │ │ ├── sizing_high.result │ │ │ ├── sizing_low.result │ │ │ ├── sizing_med.result │ │ │ ├── sizing_off.result │ │ │ ├── socket_connect.result │ │ │ ├── socket_instances_func.result │ │ │ ├── socket_instances_func_win.result │ │ │ ├── socket_summary_by_event_name_func.result │ │ │ ├── socket_summary_by_instance_func.result │ │ │ ├── socket_summary_by_instance_func_win.result │ │ │ ├── stage_mdl_function.result │ │ │ ├── stage_mdl_global.result │ │ │ ├── stage_mdl_procedure.result │ │ │ ├── stage_mdl_table.result │ │ │ ├── start_server_disable_idle.result │ │ │ ├── start_server_disable_stages.result │ │ │ ├── start_server_disable_statements.result │ │ │ ├── start_server_disable_waits.result │ │ │ ├── start_server_innodb.result │ │ │ ├── start_server_low_digest.result │ │ │ ├── start_server_no_account.result │ │ │ ├── start_server_no_cond_class.result │ │ │ ├── start_server_no_cond_inst.result │ │ │ ├── start_server_no_digests.result │ │ │ ├── start_server_no_file_class.result │ │ │ ├── start_server_no_file_inst.result │ │ │ ├── start_server_no_host.result │ │ │ ├── start_server_no_mutex_class.result │ │ │ ├── start_server_no_mutex_inst.result │ │ │ ├── start_server_no_rwlock_class.result │ │ │ ├── start_server_no_rwlock_inst.result │ │ │ ├── start_server_no_setup_actors.result │ │ │ ├── start_server_no_setup_objects.result │ │ │ ├── start_server_no_socket_class.result │ │ │ ├── start_server_no_socket_inst.result │ │ │ ├── start_server_no_stage_class.result │ │ │ ├── start_server_no_stages_history.result │ │ │ ├── start_server_no_stages_history_long.result │ │ │ ├── start_server_no_statement_class.result │ │ │ ├── start_server_no_statements_history.result │ │ │ ├── start_server_no_statements_history_long.result │ │ │ ├── start_server_no_table_hdl.result │ │ │ ├── start_server_no_table_inst.result │ │ │ ├── start_server_no_thread_class.result │ │ │ ├── start_server_no_thread_inst.result │ │ │ ├── start_server_no_user.result │ │ │ ├── start_server_no_waits_history.result │ │ │ ├── start_server_no_waits_history_long.result │ │ │ ├── start_server_nothing.result │ │ │ ├── start_server_off.result │ │ │ ├── start_server_on.result │ │ │ ├── statement_digest.result │ │ │ ├── statement_digest_charset.result │ │ │ ├── statement_digest_consumers.result │ │ │ ├── statement_digest_consumers2.result │ │ │ ├── statement_digest_long_query.result │ │ │ ├── table_aggregate_global_2u_2t.result │ │ │ ├── table_aggregate_global_2u_3t.result │ │ │ ├── table_aggregate_global_4u_2t.result │ │ │ ├── table_aggregate_global_4u_3t.result │ │ │ ├── table_aggregate_hist_2u_2t.result │ │ │ ├── table_aggregate_hist_2u_3t.result │ │ │ ├── table_aggregate_hist_4u_2t.result │ │ │ ├── table_aggregate_hist_4u_3t.result │ │ │ ├── table_aggregate_off.result │ │ │ ├── table_aggregate_thread_2u_2t.result │ │ │ ├── table_aggregate_thread_2u_3t.result │ │ │ ├── table_aggregate_thread_4u_2t.result │ │ │ ├── table_aggregate_thread_4u_3t.result │ │ │ ├── table_io_aggregate_global_2u_2t.result │ │ │ ├── table_io_aggregate_global_2u_3t.result │ │ │ ├── table_io_aggregate_global_4u_2t.result │ │ │ ├── table_io_aggregate_global_4u_3t.result │ │ │ ├── table_io_aggregate_hist_2u_2t.result │ │ │ ├── table_io_aggregate_hist_2u_3t.result │ │ │ ├── table_io_aggregate_hist_4u_2t.result │ │ │ ├── table_io_aggregate_hist_4u_3t.result │ │ │ ├── table_io_aggregate_thread_2u_2t.result │ │ │ ├── table_io_aggregate_thread_2u_3t.result │ │ │ ├── table_io_aggregate_thread_4u_2t.result │ │ │ ├── table_io_aggregate_thread_4u_3t.result │ │ │ ├── table_lock_aggregate_global_2u_2t.result │ │ │ ├── table_lock_aggregate_global_2u_3t.result │ │ │ ├── table_lock_aggregate_global_4u_2t.result │ │ │ ├── table_lock_aggregate_global_4u_3t.result │ │ │ ├── table_lock_aggregate_hist_2u_2t.result │ │ │ ├── table_lock_aggregate_hist_2u_3t.result │ │ │ ├── table_lock_aggregate_hist_4u_2t.result │ │ │ ├── table_lock_aggregate_hist_4u_3t.result │ │ │ ├── table_lock_aggregate_thread_2u_2t.result │ │ │ ├── table_lock_aggregate_thread_2u_3t.result │ │ │ ├── table_lock_aggregate_thread_4u_2t.result │ │ │ ├── table_lock_aggregate_thread_4u_3t.result │ │ │ ├── table_schema.result │ │ │ ├── tampered_perfschema_table1.result │ │ │ ├── temp_table_io.result │ │ │ ├── thread_cache.result │ │ │ ├── threads_innodb.result │ │ │ ├── threads_insert_delayed.result │ │ │ ├── threads_mysql.result │ │ │ ├── trigger_table_io.result │ │ │ ├── unary_digest.result │ │ │ └── view_table_io.result │ │ └── t │ │ │ ├── aggregate.test │ │ │ ├── all_tests.test │ │ │ ├── bad_option_1.test │ │ │ ├── bad_option_2.test │ │ │ ├── bad_option_3.test │ │ │ ├── bad_option_4.test │ │ │ ├── bad_option_5.test │ │ │ ├── binlog_edge_mix-master.opt │ │ │ ├── binlog_edge_mix.test │ │ │ ├── binlog_edge_row-master.opt │ │ │ ├── binlog_edge_row.test │ │ │ ├── binlog_edge_stmt-master.opt │ │ │ ├── binlog_edge_stmt.test │ │ │ ├── binlog_ok_mix-master.opt │ │ │ ├── binlog_ok_mix.test │ │ │ ├── binlog_ok_row-master.opt │ │ │ ├── binlog_ok_row.test │ │ │ ├── binlog_ok_stmt-master.opt │ │ │ ├── binlog_ok_stmt.test │ │ │ ├── checksum.test │ │ │ ├── cnf_option.cnf │ │ │ ├── cnf_option.test │ │ │ ├── column_privilege.test │ │ │ ├── connect_attrs.test │ │ │ ├── connection.test │ │ │ ├── connection_3a-master.opt │ │ │ ├── connection_3a.test │ │ │ ├── connection_3a_3u-master.opt │ │ │ ├── connection_3a_3u.test │ │ │ ├── connection_3u-master.opt │ │ │ ├── connection_3u.test │ │ │ ├── csv_table_io.test │ │ │ ├── ddl_accounts.test │ │ │ ├── ddl_cond_instances.test │ │ │ ├── ddl_esgs_by_account_by_event_name.test │ │ │ ├── ddl_esgs_by_host_by_event_name.test │ │ │ ├── ddl_esgs_by_thread_by_event_name.test │ │ │ ├── ddl_esgs_by_user_by_event_name.test │ │ │ ├── ddl_esgs_global_by_event_name.test │ │ │ ├── ddl_esms_by_account_by_event_name.test │ │ │ ├── ddl_esms_by_digest.test │ │ │ ├── ddl_esms_by_host_by_event_name.test │ │ │ ├── ddl_esms_by_thread_by_event_name.test │ │ │ ├── ddl_esms_by_user_by_event_name.test │ │ │ ├── ddl_esms_global_by_event_name.test │ │ │ ├── ddl_events_stages_current.test │ │ │ ├── ddl_events_stages_history.test │ │ │ ├── ddl_events_stages_history_long.test │ │ │ ├── ddl_events_statements_current.test │ │ │ ├── ddl_events_statements_history.test │ │ │ ├── ddl_events_statements_history_long.test │ │ │ ├── ddl_events_waits_current.test │ │ │ ├── ddl_events_waits_history.test │ │ │ ├── ddl_events_waits_history_long.test │ │ │ ├── ddl_ews_by_account_by_event_name.test │ │ │ ├── ddl_ews_by_host_by_event_name.test │ │ │ ├── ddl_ews_by_instance.test │ │ │ ├── ddl_ews_by_thread_by_event_name.test │ │ │ ├── ddl_ews_by_user_by_event_name.test │ │ │ ├── ddl_ews_global_by_event_name.test │ │ │ ├── ddl_file_instances.test │ │ │ ├── ddl_fs_by_event_name.test │ │ │ ├── ddl_fs_by_instance.test │ │ │ ├── ddl_host_cache.test │ │ │ ├── ddl_hosts.test │ │ │ ├── ddl_mutex_instances.test │ │ │ ├── ddl_os_global_by_type.test │ │ │ ├── ddl_performance_timers.test │ │ │ ├── ddl_rwlock_instances.test │ │ │ ├── ddl_session_account_connect_attrs.test │ │ │ ├── ddl_session_connect_attrs.test │ │ │ ├── ddl_setup_actors.test │ │ │ ├── ddl_setup_consumers.test │ │ │ ├── ddl_setup_instruments.test │ │ │ ├── ddl_setup_objects.test │ │ │ ├── ddl_setup_timers.test │ │ │ ├── ddl_socket_instances.test │ │ │ ├── ddl_socket_summary_by_event_name.test │ │ │ ├── ddl_socket_summary_by_instance.test │ │ │ ├── ddl_threads.test │ │ │ ├── ddl_tiws_by_index_usage.test │ │ │ ├── ddl_tiws_by_table.test │ │ │ ├── ddl_tlws_by_table.test │ │ │ ├── ddl_users.test │ │ │ ├── digest_null_literal.test │ │ │ ├── digest_table_full-master.opt │ │ │ ├── digest_table_full.test │ │ │ ├── disabled.def │ │ │ ├── dml_accounts.test │ │ │ ├── dml_cond_instances.test │ │ │ ├── dml_esgs_by_account_by_event_name.test │ │ │ ├── dml_esgs_by_host_by_event_name.test │ │ │ ├── dml_esgs_by_thread_by_event_name.test │ │ │ ├── dml_esgs_by_user_by_event_name.test │ │ │ ├── dml_esgs_global_by_event_name.test │ │ │ ├── dml_esms_by_account_by_event_name.test │ │ │ ├── dml_esms_by_digest.test │ │ │ ├── dml_esms_by_host_by_event_name.test │ │ │ ├── dml_esms_by_thread_by_event_name.test │ │ │ ├── dml_esms_by_user_by_event_name.test │ │ │ ├── dml_esms_global_by_event_name.test │ │ │ ├── dml_events_stages_current.test │ │ │ ├── dml_events_stages_history.test │ │ │ ├── dml_events_stages_history_long.test │ │ │ ├── dml_events_statements_current.test │ │ │ ├── dml_events_statements_history.test │ │ │ ├── dml_events_statements_history_long.test │ │ │ ├── dml_events_waits_current.test │ │ │ ├── dml_events_waits_history.test │ │ │ ├── dml_events_waits_history_long.test │ │ │ ├── dml_ews_by_account_by_event_name.test │ │ │ ├── dml_ews_by_host_by_event_name.test │ │ │ ├── dml_ews_by_instance.test │ │ │ ├── dml_ews_by_thread_by_event_name.test │ │ │ ├── dml_ews_by_user_by_event_name.test │ │ │ ├── dml_ews_global_by_event_name.test │ │ │ ├── dml_file_instances.test │ │ │ ├── dml_fs_by_event_name.test │ │ │ ├── dml_fs_by_instance.test │ │ │ ├── dml_handler.test │ │ │ ├── dml_host_cache.test │ │ │ ├── dml_hosts.test │ │ │ ├── dml_mutex_instances.test │ │ │ ├── dml_os_global_by_type.test │ │ │ ├── dml_performance_timers.test │ │ │ ├── dml_rwlock_instances.test │ │ │ ├── dml_session_account_connect_attrs.test │ │ │ ├── dml_session_connect_attrs.test │ │ │ ├── dml_setup_actors.test │ │ │ ├── dml_setup_consumers.test │ │ │ ├── dml_setup_instruments.test │ │ │ ├── dml_setup_objects.test │ │ │ ├── dml_setup_timers.test │ │ │ ├── dml_socket_instances.test │ │ │ ├── dml_socket_summary_by_event_name.test │ │ │ ├── dml_socket_summary_by_instance.test │ │ │ ├── dml_threads.test │ │ │ ├── dml_tiws_by_index_usage.test │ │ │ ├── dml_tiws_by_table.test │ │ │ ├── dml_tlws_by_table.test │ │ │ ├── dml_users.test │ │ │ ├── event_aggregate-master.opt │ │ │ ├── event_aggregate.test │ │ │ ├── event_aggregate_no_a-master.opt │ │ │ ├── event_aggregate_no_a.test │ │ │ ├── event_aggregate_no_a_no_h-master.opt │ │ │ ├── event_aggregate_no_a_no_h.test │ │ │ ├── event_aggregate_no_a_no_u-master.opt │ │ │ ├── event_aggregate_no_a_no_u.test │ │ │ ├── event_aggregate_no_a_no_u_no_h-master.opt │ │ │ ├── event_aggregate_no_a_no_u_no_h.test │ │ │ ├── event_aggregate_no_h-master.opt │ │ │ ├── event_aggregate_no_h.test │ │ │ ├── event_aggregate_no_u-master.opt │ │ │ ├── event_aggregate_no_u.test │ │ │ ├── event_aggregate_no_u_no_h-master.opt │ │ │ ├── event_aggregate_no_u_no_h.test │ │ │ ├── func_file_io.test │ │ │ ├── func_mutex.test │ │ │ ├── global_read_lock.test │ │ │ ├── hostcache_ipv4_addrinfo_again_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_again_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_bad_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_bad_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_good_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_good_deny.test │ │ │ ├── hostcache_ipv4_addrinfo_noname_allow.test │ │ │ ├── hostcache_ipv4_addrinfo_noname_deny.test │ │ │ ├── hostcache_ipv4_auth_plugin-master.opt │ │ │ ├── hostcache_ipv4_auth_plugin.test │ │ │ ├── hostcache_ipv4_blocked.test │ │ │ ├── hostcache_ipv4_format.test │ │ │ ├── hostcache_ipv4_max_con.test │ │ │ ├── hostcache_ipv4_nameinfo_again_allow.test │ │ │ ├── hostcache_ipv4_nameinfo_again_deny.test │ │ │ ├── hostcache_ipv4_nameinfo_noname_allow.test │ │ │ ├── hostcache_ipv4_nameinfo_noname_deny.test │ │ │ ├── hostcache_ipv4_passwd.test │ │ │ ├── hostcache_ipv4_ssl.test │ │ │ ├── hostcache_ipv6_addrinfo_again_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_again_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_again_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_again_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_bad_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_bad_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_good_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_good_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_good_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_good_deny.test │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_noname_allow.test │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny-master.opt │ │ │ ├── hostcache_ipv6_addrinfo_noname_deny.test │ │ │ ├── hostcache_ipv6_auth_plugin-master.opt │ │ │ ├── hostcache_ipv6_auth_plugin.test │ │ │ ├── hostcache_ipv6_blocked-master.opt │ │ │ ├── hostcache_ipv6_blocked.test │ │ │ ├── hostcache_ipv6_max_con-master.opt │ │ │ ├── hostcache_ipv6_max_con.test │ │ │ ├── hostcache_ipv6_nameinfo_again_allow-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_again_allow.test │ │ │ ├── hostcache_ipv6_nameinfo_again_deny-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_again_deny.test │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_noname_allow.test │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny-master.opt │ │ │ ├── hostcache_ipv6_nameinfo_noname_deny.test │ │ │ ├── hostcache_ipv6_passwd-master.opt │ │ │ ├── hostcache_ipv6_passwd.test │ │ │ ├── hostcache_ipv6_ssl-master.opt │ │ │ ├── hostcache_ipv6_ssl.test │ │ │ ├── hostcache_peer_addr.test │ │ │ ├── indexed_table_io.test │ │ │ ├── information_schema.test │ │ │ ├── innodb_table_io.test │ │ │ ├── memory_table_io.test │ │ │ ├── merge_table_io.test │ │ │ ├── misc.test │ │ │ ├── multi_table_io.test │ │ │ ├── myisam_file_io.opt │ │ │ ├── myisam_file_io.test │ │ │ ├── myisam_table_io.test │ │ │ ├── nesting.test │ │ │ ├── no_threads-master.opt │ │ │ ├── no_threads.test │ │ │ ├── one_thread_per_con-master.opt │ │ │ ├── one_thread_per_con.test │ │ │ ├── ortho_iter.test │ │ │ ├── part_table_io.test │ │ │ ├── pfs_upgrade_event.test │ │ │ ├── pfs_upgrade_func.test │ │ │ ├── pfs_upgrade_proc.test │ │ │ ├── pfs_upgrade_table.test │ │ │ ├── pfs_upgrade_view.test │ │ │ ├── pool_of_threads-master.opt │ │ │ ├── privilege.test │ │ │ ├── privilege_table_io.test │ │ │ ├── query_cache-master.opt │ │ │ ├── query_cache.test │ │ │ ├── read_only.test │ │ │ ├── relaylog-slave.opt │ │ │ ├── relaylog.test │ │ │ ├── rollback_table_io.test │ │ │ ├── rpl_gtid_func.test │ │ │ ├── rpl_statements-master.opt │ │ │ ├── rpl_statements-slave.opt │ │ │ ├── rpl_statements.test │ │ │ ├── schema.test │ │ │ ├── selects-master.opt │ │ │ ├── selects.test │ │ │ ├── server_init.test │ │ │ ├── setup_actors.test │ │ │ ├── setup_consumers_defaults-master.opt │ │ │ ├── setup_consumers_defaults.test │ │ │ ├── setup_instruments_defaults-master.opt │ │ │ ├── setup_instruments_defaults.test │ │ │ ├── setup_objects.test │ │ │ ├── short_option_1-master.opt │ │ │ ├── short_option_1.test │ │ │ ├── short_option_2-master.opt │ │ │ ├── short_option_2.test │ │ │ ├── sizing_default.cnf │ │ │ ├── sizing_default.test │ │ │ ├── sizing_growth-master.opt │ │ │ ├── sizing_growth.test │ │ │ ├── sizing_high.cnf │ │ │ ├── sizing_high.test │ │ │ ├── sizing_low.cnf │ │ │ ├── sizing_low.test │ │ │ ├── sizing_med.cnf │ │ │ ├── sizing_med.test │ │ │ ├── sizing_off.cnf │ │ │ ├── sizing_off.test │ │ │ ├── socket_connect.test │ │ │ ├── socket_instances_func-master.opt │ │ │ ├── socket_instances_func.test │ │ │ ├── socket_instances_func_win-master.opt │ │ │ ├── socket_instances_func_win.test │ │ │ ├── socket_summary_by_event_name_func.test │ │ │ ├── socket_summary_by_instance_func.test │ │ │ ├── socket_summary_by_instance_func_win.test │ │ │ ├── stage_mdl_function.test │ │ │ ├── stage_mdl_global-master.opt │ │ │ ├── stage_mdl_global.test │ │ │ ├── stage_mdl_procedure.test │ │ │ ├── stage_mdl_table.test │ │ │ ├── start_server_disable_idle-master.opt │ │ │ ├── start_server_disable_idle.test │ │ │ ├── start_server_disable_stages-master.opt │ │ │ ├── start_server_disable_stages.test │ │ │ ├── start_server_disable_statements-master.opt │ │ │ ├── start_server_disable_statements.test │ │ │ ├── start_server_disable_waits-master.opt │ │ │ ├── start_server_disable_waits.test │ │ │ ├── start_server_innodb-master.opt │ │ │ ├── start_server_innodb.test │ │ │ ├── start_server_low_digest-master.opt │ │ │ ├── start_server_low_digest.test │ │ │ ├── start_server_no_account-master.opt │ │ │ ├── start_server_no_account.test │ │ │ ├── start_server_no_cond_class-master.opt │ │ │ ├── start_server_no_cond_class.test │ │ │ ├── start_server_no_cond_inst-master.opt │ │ │ ├── start_server_no_cond_inst.test │ │ │ ├── start_server_no_digests-master.opt │ │ │ ├── start_server_no_digests.test │ │ │ ├── start_server_no_file_class-master.opt │ │ │ ├── start_server_no_file_class.test │ │ │ ├── start_server_no_file_inst-master.opt │ │ │ ├── start_server_no_file_inst.test │ │ │ ├── start_server_no_host-master.opt │ │ │ ├── start_server_no_host.test │ │ │ ├── start_server_no_mutex_class-master.opt │ │ │ ├── start_server_no_mutex_class.test │ │ │ ├── start_server_no_mutex_inst-master.opt │ │ │ ├── start_server_no_mutex_inst.test │ │ │ ├── start_server_no_rwlock_class-master.opt │ │ │ ├── start_server_no_rwlock_class.test │ │ │ ├── start_server_no_rwlock_inst-master.opt │ │ │ ├── start_server_no_rwlock_inst.test │ │ │ ├── start_server_no_setup_actors-master.opt │ │ │ ├── start_server_no_setup_actors.test │ │ │ ├── start_server_no_setup_objects-master.opt │ │ │ ├── start_server_no_setup_objects.test │ │ │ ├── start_server_no_socket_class-master.opt │ │ │ ├── start_server_no_socket_class.test │ │ │ ├── start_server_no_socket_inst-master.opt │ │ │ ├── start_server_no_socket_inst.test │ │ │ ├── start_server_no_stage_class-master.opt │ │ │ ├── start_server_no_stage_class.test │ │ │ ├── start_server_no_stages_history-master.opt │ │ │ ├── start_server_no_stages_history.test │ │ │ ├── start_server_no_stages_history_long-master.opt │ │ │ ├── start_server_no_stages_history_long.test │ │ │ ├── start_server_no_statement_class-master.opt │ │ │ ├── start_server_no_statement_class.test │ │ │ ├── start_server_no_statements_history-master.opt │ │ │ ├── start_server_no_statements_history.test │ │ │ ├── start_server_no_statements_history_long-master.opt │ │ │ ├── start_server_no_statements_history_long.test │ │ │ ├── start_server_no_table_hdl-master.opt │ │ │ ├── start_server_no_table_hdl.test │ │ │ ├── start_server_no_table_inst-master.opt │ │ │ ├── start_server_no_table_inst.test │ │ │ ├── start_server_no_thread_class-master.opt │ │ │ ├── start_server_no_thread_class.test │ │ │ ├── start_server_no_thread_inst-master.opt │ │ │ ├── start_server_no_thread_inst.test │ │ │ ├── start_server_no_user-master.opt │ │ │ ├── start_server_no_user.test │ │ │ ├── start_server_no_waits_history-master.opt │ │ │ ├── start_server_no_waits_history.test │ │ │ ├── start_server_no_waits_history_long-master.opt │ │ │ ├── start_server_no_waits_history_long.test │ │ │ ├── start_server_nothing-master.opt │ │ │ ├── start_server_nothing.test │ │ │ ├── start_server_off-master.opt │ │ │ ├── start_server_off.test │ │ │ ├── start_server_on-master.opt │ │ │ ├── start_server_on.test │ │ │ ├── statement_digest.test │ │ │ ├── statement_digest_charset.test │ │ │ ├── statement_digest_consumers-master.opt │ │ │ ├── statement_digest_consumers.test │ │ │ ├── statement_digest_consumers2-master.opt │ │ │ ├── statement_digest_consumers2.test │ │ │ ├── statement_digest_long_query-master.opt │ │ │ ├── statement_digest_long_query.test │ │ │ ├── table_aggregate_global_2u_2t.test │ │ │ ├── table_aggregate_global_2u_3t.test │ │ │ ├── table_aggregate_global_4u_2t.test │ │ │ ├── table_aggregate_global_4u_3t.test │ │ │ ├── table_aggregate_hist_2u_2t.test │ │ │ ├── table_aggregate_hist_2u_3t.test │ │ │ ├── table_aggregate_hist_4u_2t.test │ │ │ ├── table_aggregate_hist_4u_3t.test │ │ │ ├── table_aggregate_off.test │ │ │ ├── table_aggregate_thread_2u_2t.test │ │ │ ├── table_aggregate_thread_2u_3t.test │ │ │ ├── table_aggregate_thread_4u_2t.test │ │ │ ├── table_aggregate_thread_4u_3t.test │ │ │ ├── table_io_aggregate_global_2u_2t.test │ │ │ ├── table_io_aggregate_global_2u_3t.test │ │ │ ├── table_io_aggregate_global_4u_2t.test │ │ │ ├── table_io_aggregate_global_4u_3t.test │ │ │ ├── table_io_aggregate_hist_2u_2t.test │ │ │ ├── table_io_aggregate_hist_2u_3t.test │ │ │ ├── table_io_aggregate_hist_4u_2t.test │ │ │ ├── table_io_aggregate_hist_4u_3t.test │ │ │ ├── table_io_aggregate_thread_2u_2t.test │ │ │ ├── table_io_aggregate_thread_2u_3t.test │ │ │ ├── table_io_aggregate_thread_4u_2t.test │ │ │ ├── table_io_aggregate_thread_4u_3t.test │ │ │ ├── table_lock_aggregate_global_2u_2t.test │ │ │ ├── table_lock_aggregate_global_2u_3t.test │ │ │ ├── table_lock_aggregate_global_4u_2t.test │ │ │ ├── table_lock_aggregate_global_4u_3t.test │ │ │ ├── table_lock_aggregate_hist_2u_2t.test │ │ │ ├── table_lock_aggregate_hist_2u_3t.test │ │ │ ├── table_lock_aggregate_hist_4u_2t.test │ │ │ ├── table_lock_aggregate_hist_4u_3t.test │ │ │ ├── table_lock_aggregate_thread_2u_2t.test │ │ │ ├── table_lock_aggregate_thread_2u_3t.test │ │ │ ├── table_lock_aggregate_thread_4u_2t.test │ │ │ ├── table_lock_aggregate_thread_4u_3t.test │ │ │ ├── table_schema.test │ │ │ ├── tampered_perfschema_table1-master.opt │ │ │ ├── tampered_perfschema_table1.test │ │ │ ├── temp_table_io.test │ │ │ ├── thread_cache-master.opt │ │ │ ├── thread_cache.test │ │ │ ├── threads_innodb.test │ │ │ ├── threads_insert_delayed.test │ │ │ ├── threads_mysql-master.opt │ │ │ ├── threads_mysql.test │ │ │ ├── trigger_table_io.test │ │ │ ├── unary_digest.test │ │ │ └── view_table_io.test │ ├── perfschema_stress │ │ ├── README │ │ ├── include │ │ │ └── settings.inc │ │ ├── r │ │ │ ├── modify.result │ │ │ ├── read.result │ │ │ └── work.result │ │ ├── stress_init.txt │ │ ├── stress_tests.txt │ │ └── t │ │ │ ├── modify.test │ │ │ ├── read.test │ │ │ ├── setup.test │ │ │ └── work.test │ ├── rpl │ │ ├── README │ │ ├── combinations │ │ ├── extension │ │ │ ├── README │ │ │ ├── README.bhs │ │ │ ├── README.checksum │ │ │ ├── bhs.pl │ │ │ ├── bhs │ │ │ │ ├── default.rules │ │ │ │ ├── disabled.def │ │ │ │ ├── master-slave-bhs.inc │ │ │ │ ├── master-slave.inc │ │ │ │ ├── my.cnf │ │ │ │ ├── rpl_1slave_base.cnf │ │ │ │ └── update_test_cases │ │ │ └── checksum.pl │ │ ├── include │ │ │ ├── rpl_mixed_check_db.inc │ │ │ ├── rpl_mixed_check_event.inc │ │ │ ├── rpl_mixed_check_select.inc │ │ │ ├── rpl_mixed_check_table.inc │ │ │ ├── rpl_mixed_check_user.inc │ │ │ ├── rpl_mixed_check_view.inc │ │ │ ├── rpl_mixed_clear_tables.inc │ │ │ ├── rpl_mixed_ddl.inc │ │ │ ├── rpl_mixed_dml.inc │ │ │ ├── rpl_mixed_show_binlog_format.inc │ │ │ └── rpl_partition.inc │ │ ├── my.cnf │ │ ├── r │ │ │ ├── rpl000001.a.result │ │ │ ├── rpl000001.b.result │ │ │ ├── rpl_000010.result │ │ │ ├── rpl_000011.result │ │ │ ├── rpl_000013.result │ │ │ ├── rpl_000017.result │ │ │ ├── rpl_4threads_deadlock.result │ │ │ ├── rpl_DML_error.result │ │ │ ├── rpl_EE_err.result │ │ │ ├── rpl_LD_INFILE.result │ │ │ ├── rpl_alter.result │ │ │ ├── rpl_alter_db.result │ │ │ ├── rpl_alter_repository.result │ │ │ ├── rpl_apply_binlog_with_anonymous_gtid.result │ │ │ ├── rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.result │ │ │ ├── rpl_apply_binlog_with_gtid_when_gtid_mode_off.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_avoid_temporal_upgrade.result │ │ │ ├── rpl_begin_commit_rollback.result │ │ │ ├── rpl_binlog_corruption.result │ │ │ ├── rpl_binlog_errors.result │ │ │ ├── rpl_binlog_gcommit_options.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_change_master.result │ │ │ ├── rpl_change_master_crash_safe.result │ │ │ ├── rpl_change_master_dbug.result │ │ │ ├── rpl_charset.result │ │ │ ├── rpl_charset_sjis.result │ │ │ ├── rpl_check_gtid.result │ │ │ ├── rpl_checksum.result │ │ │ ├── rpl_checksum_cache.result │ │ │ ├── rpl_checksum_undef.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_crash_safe_master.result │ │ │ ├── rpl_create_database.result │ │ │ ├── rpl_create_drop_temp_table.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_delayed_slave.result │ │ │ ├── rpl_delete_no_where.result │ │ │ ├── rpl_do_db_filter.result │ │ │ ├── rpl_do_grant.result │ │ │ ├── rpl_do_table_filter_insensitive.result │ │ │ ├── rpl_do_table_filter_sensitive.result │ │ │ ├── rpl_drop.result │ │ │ ├── rpl_drop_db.result │ │ │ ├── rpl_drop_db_fail.result │ │ │ ├── rpl_drop_temp.result │ │ │ ├── rpl_drop_temp_gtid.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_extra_row_data.result │ │ │ ├── rpl_failed_optimize.result │ │ │ ├── rpl_filter_database.result │ │ │ ├── rpl_filter_tables_not_exist.result │ │ │ ├── rpl_filter_warnings.result │ │ │ ├── rpl_flush_logs.result │ │ │ ├── rpl_flushlog_loop.result │ │ │ ├── rpl_foreign_key_innodb.result │ │ │ ├── rpl_free_items.result │ │ │ ├── rpl_function_defaults.result │ │ │ ├── rpl_general_log.result │ │ │ ├── rpl_geometry.result │ │ │ ├── rpl_get_lock.result │ │ │ ├── rpl_get_master_version_and_clock.result │ │ │ ├── rpl_grant.result │ │ │ ├── rpl_grant_plugin.result │ │ │ ├── rpl_group_commit_deadlock.result │ │ │ ├── rpl_gtid_binary_log_as_relay_log.result │ │ │ ├── rpl_gtid_binlog_errors.result │ │ │ ├── rpl_gtid_do_table_filter_insensitive.result │ │ │ ├── rpl_gtid_do_table_filter_sensitive.result │ │ │ ├── rpl_gtid_drop_table.result │ │ │ ├── rpl_gtid_empty_transaction.result │ │ │ ├── rpl_gtid_execution.result │ │ │ ├── rpl_gtid_failover.result │ │ │ ├── rpl_gtid_heartbeat_2slave.result │ │ │ ├── rpl_gtid_ignore_table_filter_insensitive.result │ │ │ ├── rpl_gtid_ignore_table_filter_sensitive.result │ │ │ ├── rpl_gtid_loaddata_s.result │ │ │ ├── rpl_gtid_mode.result │ │ │ ├── rpl_gtid_mode_off_new_master.result │ │ │ ├── rpl_gtid_mode_on_new_master.result │ │ │ ├── rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.result │ │ │ ├── rpl_gtid_parallel.result │ │ │ ├── rpl_gtid_purged_fail_to_connect.result │ │ │ ├── rpl_gtid_purged_maintained.result │ │ │ ├── rpl_gtid_replay_relaylog.result │ │ │ ├── rpl_gtid_row_event_max_size.result │ │ │ ├── rpl_gtid_row_show_relaylog_events.result │ │ │ ├── rpl_gtid_server_sighup.result │ │ │ ├── rpl_gtid_sql_until_before_after.result │ │ │ ├── rpl_gtid_stm_insert_delayed.result │ │ │ ├── rpl_gtid_stm_mix_show_relaylog_events.result │ │ │ ├── rpl_gtid_stress_failover.result │ │ │ ├── rpl_gtid_validate_slave_gtids.result │ │ │ ├── rpl_gtids_restart_slave_io_lost_trx.result │ │ │ ├── rpl_heartbeat.result │ │ │ ├── rpl_heartbeat_2slaves.result │ │ │ ├── rpl_heartbeat_basic.result │ │ │ ├── rpl_heartbeat_ssl.result │ │ │ ├── rpl_idempotency.result │ │ │ ├── rpl_ignore_db_filter.result │ │ │ ├── rpl_ignore_grant.result │ │ │ ├── rpl_ignore_revoke.result │ │ │ ├── rpl_ignore_table.result │ │ │ ├── rpl_ignore_table_filter_insensitive.result │ │ │ ├── rpl_ignore_table_filter_sensitive.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_id.result │ │ │ ├── rpl_insert_id_pk.result │ │ │ ├── rpl_insert_ignore.result │ │ │ ├── rpl_insert_on_update.result │ │ │ ├── rpl_invoked_features.result │ │ │ ├── rpl_ip_mix.result │ │ │ ├── rpl_ip_mix2.result │ │ │ ├── rpl_ipv4_as_ipv6.result │ │ │ ├── rpl_ipv6.result │ │ │ ├── rpl_kill_query.result │ │ │ ├── rpl_killed_ddl.result │ │ │ ├── rpl_known_bugs_detection.result │ │ │ ├── rpl_lcase_tblnames_rewrite_db.result │ │ │ ├── rpl_loaddata.result │ │ │ ├── rpl_loaddata_charset.result │ │ │ ├── rpl_loaddata_fatal.result │ │ │ ├── rpl_loaddata_m.result │ │ │ ├── rpl_loaddata_map.result │ │ │ ├── rpl_loaddata_s.result │ │ │ ├── rpl_loaddata_simple.result │ │ │ ├── rpl_loaddata_symlink.result │ │ │ ├── rpl_loaddatalocal.result │ │ │ ├── rpl_loadfile.result │ │ │ ├── rpl_locale.result │ │ │ ├── rpl_log_pos.result │ │ │ ├── rpl_lost_events_on_rotate.result │ │ │ ├── rpl_low_slave_net_time_out.result │ │ │ ├── rpl_manual_change_index_file.result │ │ │ ├── rpl_many_optimize.result │ │ │ ├── rpl_master_connection.result │ │ │ ├── rpl_master_pos_wait.result │ │ │ ├── rpl_migration_crash_safe.result │ │ │ ├── rpl_misc_functions.result │ │ │ ├── rpl_mix_found_rows.result │ │ │ ├── rpl_mix_insert_delayed.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_mts_debug.result │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_off.result │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_on.result │ │ │ ├── rpl_mts_gtids_restart_slave_io_lost_trx.result │ │ │ ├── rpl_mts_slave_hang_with_partial_trx.result │ │ │ ├── rpl_mts_stop_slave.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_mysqlbinlog_gtid_on.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.result │ │ │ ├── rpl_parallel_change_master.result │ │ │ ├── rpl_parallel_conf_limits.result │ │ │ ├── rpl_parallel_conflicts.result │ │ │ ├── rpl_parallel_ddl.result │ │ │ ├── rpl_parallel_fallback.result │ │ │ ├── rpl_parallel_innodb.result │ │ │ ├── rpl_parallel_load_data.result │ │ │ ├── rpl_parallel_multi_db.result │ │ │ ├── rpl_parallel_seconds_behind_master.result │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.result │ │ │ ├── rpl_parallel_start_stop.result │ │ │ ├── rpl_parallel_switch_sequential.result │ │ │ ├── rpl_parallel_temp_query.result │ │ │ ├── rpl_parallel_worker_error.result │ │ │ ├── rpl_partition_archive.result │ │ │ ├── rpl_partition_innodb.result │ │ │ ├── rpl_partition_memory.result │ │ │ ├── rpl_partition_myisam.result │ │ │ ├── rpl_plugin_load.result │ │ │ ├── rpl_ps.result │ │ │ ├── rpl_rbr_to_sbr.result │ │ │ ├── rpl_read_old_relay_log_info.result │ │ │ ├── rpl_read_only.result │ │ │ ├── rpl_recovery_empty_sqlthd_pos.result │ │ │ ├── rpl_recovery_replicate_same_server_id.result │ │ │ ├── rpl_relay_space_innodb.result │ │ │ ├── rpl_relay_space_myisam.result │ │ │ ├── rpl_relayrotate.result │ │ │ ├── rpl_relayspace.result │ │ │ ├── rpl_replicate_do.result │ │ │ ├── rpl_replicate_event_after_sync_stage.result │ │ │ ├── rpl_replicate_ignore_db.result │ │ │ ├── rpl_replicate_rewrite_db.result │ │ │ ├── rpl_report.result │ │ │ ├── rpl_report_port.result │ │ │ ├── rpl_rewrite_db_filter.result │ │ │ ├── rpl_rewrt_db.result │ │ │ ├── rpl_rotate_gtid.result │ │ │ ├── rpl_rotate_logs.result │ │ │ ├── rpl_rotate_purge_deadlock.result │ │ │ ├── rpl_rotate_row_trans.result │ │ │ ├── rpl_row_001.result │ │ │ ├── rpl_row_4_bytes.result │ │ │ ├── rpl_row_NOW.result │ │ │ ├── rpl_row_USER.result │ │ │ ├── rpl_row_UUID.result │ │ │ ├── rpl_row_basic_11bugs.result │ │ │ ├── rpl_row_basic_2myisam.result │ │ │ ├── rpl_row_basic_3innodb.result │ │ │ ├── rpl_row_basic_8partition.result │ │ │ ├── rpl_row_basic_allow_batching.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_corrupt.result │ │ │ ├── rpl_row_corruption.result │ │ │ ├── rpl_row_crash_safe.result │ │ │ ├── rpl_row_create_select.result │ │ │ ├── rpl_row_create_table.result │ │ │ ├── rpl_row_delayed_ins.result │ │ │ ├── rpl_row_drop.result │ │ │ ├── rpl_row_drop_create_temp_table.result │ │ │ ├── rpl_row_err_ignoredtable.result │ │ │ ├── rpl_row_event_max_size.result │ │ │ ├── rpl_row_find_row.result │ │ │ ├── rpl_row_flsh_tbls.result │ │ │ ├── rpl_row_func001.result │ │ │ ├── rpl_row_func002.result │ │ │ ├── rpl_row_func003.result │ │ │ ├── rpl_row_hash_scan.result │ │ │ ├── rpl_row_hash_scan_sanity.result │ │ │ ├── rpl_row_idempotency.result │ │ │ ├── rpl_row_ignorable_event.result │ │ │ ├── rpl_row_img_blobs.result │ │ │ ├── rpl_row_img_eng_full.result │ │ │ ├── rpl_row_img_eng_min.result │ │ │ ├── rpl_row_img_eng_noblob.result │ │ │ ├── rpl_row_img_idx_full.result │ │ │ ├── rpl_row_img_idx_min.result │ │ │ ├── rpl_row_img_idx_noblob.result │ │ │ ├── rpl_row_img_misc.result │ │ │ ├── rpl_row_img_sanity.result │ │ │ ├── rpl_row_implicit_commit_binlog.result │ │ │ ├── rpl_row_inexist_tbl.result │ │ │ ├── rpl_row_insert_delayed.result │ │ │ ├── rpl_row_lcase_tblnames.result │ │ │ ├── rpl_row_loaddata_concurrent.result │ │ │ ├── rpl_row_loaddata_m.result │ │ │ ├── rpl_row_log.result │ │ │ ├── rpl_row_log_innodb.result │ │ │ ├── rpl_row_max_relay_size.result │ │ │ ├── rpl_row_merge_engine.result │ │ │ ├── rpl_row_mixing_engines.result │ │ │ ├── rpl_row_mts_crash_safe.result │ │ │ ├── rpl_row_mts_rec_crash_safe.result │ │ │ ├── rpl_row_mts_show_relaylog_events.result │ │ │ ├── rpl_row_multi_query.result │ │ │ ├── rpl_row_mysqlbinlog.result │ │ │ ├── rpl_row_rec_comp_innodb.result │ │ │ ├── rpl_row_rec_comp_myisam.result │ │ │ ├── rpl_row_record_find_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_sbm_previous_gtid_event.result │ │ │ ├── rpl_seconds_behind_master.result │ │ │ ├── rpl_semi_sync.result │ │ │ ├── rpl_semi_sync_deadlock.result │ │ │ ├── rpl_semi_sync_event.result │ │ │ ├── rpl_semi_sync_future_logpos.result │ │ │ ├── rpl_semi_sync_group_commit_deadlock.result │ │ │ ├── rpl_semi_sync_non_group_commit_deadlock.result │ │ │ ├── rpl_semi_sync_shutdown_hang.result │ │ │ ├── rpl_semi_sync_uninstall_plugin.result │ │ │ ├── rpl_sequential.result │ │ │ ├── rpl_server_id1.result │ │ │ ├── rpl_server_id2.result │ │ │ ├── rpl_server_id_ignore.result │ │ │ ├── rpl_server_uuid.result │ │ │ ├── rpl_session_var.result │ │ │ ├── rpl_set_charset.result │ │ │ ├── rpl_set_null_innodb.result │ │ │ ├── rpl_set_null_myisam.result │ │ │ ├── rpl_show_errors.result │ │ │ ├── rpl_show_master_info_file.result │ │ │ ├── rpl_show_slave_hosts.result │ │ │ ├── rpl_show_slave_running.result │ │ │ ├── rpl_show_slave_status_deadlock.result │ │ │ ├── rpl_skip_ddl_errors_cli.result │ │ │ ├── rpl_skip_error.result │ │ │ ├── rpl_skip_incident.result │ │ │ ├── rpl_skip_slave_err_warnings.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_start.result │ │ │ ├── rpl_slave_status.result │ │ │ ├── rpl_slow_query_log.result │ │ │ ├── rpl_sp.result │ │ │ ├── rpl_sp004.result │ │ │ ├── rpl_sp_effects.result │ │ │ ├── rpl_sp_privileges.result │ │ │ ├── rpl_spec_variables.result │ │ │ ├── rpl_special_charset.result │ │ │ ├── rpl_sporadic_master.result │ │ │ ├── rpl_sql_thread_killed_waiting_commit_lock.result │ │ │ ├── rpl_ssl.result │ │ │ ├── rpl_ssl1.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_insert_delayed.result │ │ │ ├── rpl_stm_lcase_tblnames.result │ │ │ ├── rpl_stm_loaddata_concurrent.result │ │ │ ├── rpl_stm_loadfile.result │ │ │ ├── rpl_stm_log.result │ │ │ ├── rpl_stm_max_relay_size.result │ │ │ ├── rpl_stm_mix_mts_show_relaylog_events.result │ │ │ ├── rpl_stm_mix_show_relaylog_events.result │ │ │ ├── rpl_stm_mixed_crash_safe.result │ │ │ ├── rpl_stm_mixed_mts_crash_safe.result │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe.result │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_checksum.result │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_small.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_until_pos_middle_gtid.result │ │ │ ├── rpl_stm_user_variables.result │ │ │ ├── rpl_stop_slave.result │ │ │ ├── rpl_switch_stm_row_mixed.result │ │ │ ├── rpl_sync.result │ │ │ ├── rpl_temp_table.result │ │ │ ├── rpl_temp_table_mix_row.result │ │ │ ├── rpl_temporal_fractional.result │ │ │ ├── rpl_temporary.result │ │ │ ├── rpl_temporary_errors.result │ │ │ ├── rpl_test_framework.result │ │ │ ├── rpl_timestamp_upgrage_55.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_unknown_ignorable_event.result │ │ │ ├── rpl_user.result │ │ │ ├── rpl_user_variables.result │ │ │ ├── rpl_variables.result │ │ │ ├── rpl_variables_stm.result │ │ │ ├── rpl_view.result │ │ │ └── rpl_view_multi.result │ │ ├── rpl_1slave_base.cnf │ │ └── t │ │ │ ├── disabled.def │ │ │ ├── rpl_000010-slave.opt │ │ │ ├── rpl_000010.test │ │ │ ├── rpl_000011.test │ │ │ ├── rpl_000013.test │ │ │ ├── rpl_000017.test │ │ │ ├── rpl_4threads_deadlock.test │ │ │ ├── rpl_DML_error.test │ │ │ ├── rpl_EE_err.test │ │ │ ├── rpl_LD_INFILE.test │ │ │ ├── rpl_alter.test │ │ │ ├── rpl_alter_db.test │ │ │ ├── rpl_alter_repository.test │ │ │ ├── rpl_apply_binlog_with_anonymous_gtid.test │ │ │ ├── rpl_apply_binlog_with_anonymous_gtid_when_gtid_mode_on.test │ │ │ ├── rpl_apply_binlog_with_gtid_when_gtid_mode_off.test │ │ │ ├── rpl_auto_increment-master.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_avoid_temporal_upgrade.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_gcommit_options-master.opt │ │ │ ├── rpl_binlog_gcommit_options.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-master.opt │ │ │ ├── rpl_bug33931.test │ │ │ ├── rpl_bug37426.test │ │ │ ├── rpl_bug38694-slave.opt │ │ │ ├── rpl_bug38694.test │ │ │ ├── rpl_bug41902-slave.opt │ │ │ ├── rpl_bug41902.test │ │ │ ├── rpl_change_master.test │ │ │ ├── rpl_change_master_crash_safe-slave.opt │ │ │ ├── rpl_change_master_crash_safe.test │ │ │ ├── rpl_change_master_dbug.test │ │ │ ├── rpl_charset.test │ │ │ ├── rpl_charset_sjis.test │ │ │ ├── rpl_check_gtid.test │ │ │ ├── rpl_checksum-master.opt │ │ │ ├── rpl_checksum.test │ │ │ ├── rpl_checksum_cache.test │ │ │ ├── rpl_checksum_undef.test │ │ │ ├── rpl_circular_for_4_hosts-master.opt │ │ │ ├── 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_crash_safe_master.test │ │ │ ├── rpl_create_database-master.opt │ │ │ ├── rpl_create_database-slave.opt │ │ │ ├── rpl_create_database.test │ │ │ ├── rpl_create_drop_temp_table.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-master.opt │ │ │ ├── rpl_current_user.cnf │ │ │ ├── rpl_current_user.test │ │ │ ├── rpl_ddl.test │ │ │ ├── rpl_deadlock_innodb-slave.opt │ │ │ ├── rpl_deadlock_innodb.test │ │ │ ├── rpl_delayed_slave.test │ │ │ ├── rpl_delete_no_where.test │ │ │ ├── rpl_do_db_filter-slave.opt │ │ │ ├── rpl_do_db_filter.test │ │ │ ├── rpl_do_grant.test │ │ │ ├── rpl_do_table_filter_insensitive-master.opt │ │ │ ├── rpl_do_table_filter_insensitive-slave.opt │ │ │ ├── rpl_do_table_filter_insensitive.test │ │ │ ├── rpl_do_table_filter_sensitive-master.opt │ │ │ ├── rpl_do_table_filter_sensitive-slave.opt │ │ │ ├── rpl_do_table_filter_sensitive.test │ │ │ ├── rpl_drop.test │ │ │ ├── rpl_drop_db.test │ │ │ ├── rpl_drop_db_fail.test │ │ │ ├── rpl_drop_temp-slave.opt │ │ │ ├── rpl_drop_temp.test │ │ │ ├── rpl_drop_temp_gtid.test │ │ │ ├── rpl_drop_view.test │ │ │ ├── rpl_dual_pos_advance-master.opt │ │ │ ├── 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_extra_row_data-master.opt │ │ │ ├── rpl_extra_row_data-slave.opt │ │ │ ├── rpl_extra_row_data.test │ │ │ ├── rpl_failed_optimize.test │ │ │ ├── rpl_filter_database-slave.opt │ │ │ ├── rpl_filter_database.test │ │ │ ├── rpl_filter_tables_not_exist-slave.opt │ │ │ ├── rpl_filter_tables_not_exist.test │ │ │ ├── rpl_filter_warnings-slave.opt │ │ │ ├── rpl_filter_warnings.test │ │ │ ├── rpl_flush_logs-master.opt │ │ │ ├── rpl_flush_logs.test │ │ │ ├── rpl_flushlog_loop-master.opt │ │ │ ├── rpl_flushlog_loop-slave.opt │ │ │ ├── rpl_flushlog_loop.test │ │ │ ├── rpl_foreign_key_innodb.test │ │ │ ├── rpl_free_items-slave.opt │ │ │ ├── rpl_free_items.test │ │ │ ├── rpl_function_defaults.test │ │ │ ├── rpl_general_log.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_grant_plugin-master.opt │ │ │ ├── rpl_grant_plugin-slave.opt │ │ │ ├── rpl_grant_plugin.test │ │ │ ├── rpl_group_commit_deadlock.test │ │ │ ├── rpl_gtid_binary_log_as_relay_log.test │ │ │ ├── rpl_gtid_binlog_errors-master.opt │ │ │ ├── rpl_gtid_binlog_errors.test │ │ │ ├── rpl_gtid_do_table_filter_insensitive-master.opt │ │ │ ├── rpl_gtid_do_table_filter_insensitive-slave.opt │ │ │ ├── rpl_gtid_do_table_filter_insensitive.test │ │ │ ├── rpl_gtid_do_table_filter_sensitive-master.opt │ │ │ ├── rpl_gtid_do_table_filter_sensitive-slave.opt │ │ │ ├── rpl_gtid_do_table_filter_sensitive.test │ │ │ ├── rpl_gtid_drop_table.cnf │ │ │ ├── rpl_gtid_drop_table.test │ │ │ ├── rpl_gtid_empty_transaction.cnf │ │ │ ├── rpl_gtid_empty_transaction.test │ │ │ ├── rpl_gtid_execution-master.opt │ │ │ ├── rpl_gtid_execution-slave.opt │ │ │ ├── rpl_gtid_execution.test │ │ │ ├── rpl_gtid_failover.cnf │ │ │ ├── rpl_gtid_failover.test │ │ │ ├── rpl_gtid_heartbeat_2slave.cnf │ │ │ ├── rpl_gtid_heartbeat_2slave.test │ │ │ ├── rpl_gtid_ignore_table_filter_insensitive-master.opt │ │ │ ├── rpl_gtid_ignore_table_filter_insensitive-slave.opt │ │ │ ├── rpl_gtid_ignore_table_filter_insensitive.test │ │ │ ├── rpl_gtid_ignore_table_filter_sensitive-master.opt │ │ │ ├── rpl_gtid_ignore_table_filter_sensitive-slave.opt │ │ │ ├── rpl_gtid_ignore_table_filter_sensitive.test │ │ │ ├── rpl_gtid_loaddata_s-slave.opt │ │ │ ├── rpl_gtid_loaddata_s.test │ │ │ ├── rpl_gtid_mode.test │ │ │ ├── rpl_gtid_mode_off_new_master.test │ │ │ ├── rpl_gtid_mode_on_new_master.test │ │ │ ├── rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-master.opt │ │ │ ├── rpl_gtid_mts_relay_log_recovery_auto_pos_on_off-slave.opt │ │ │ ├── rpl_gtid_mts_relay_log_recovery_auto_pos_on_off.test │ │ │ ├── rpl_gtid_parallel.test │ │ │ ├── rpl_gtid_purged_fail_to_connect-master.opt │ │ │ ├── rpl_gtid_purged_fail_to_connect-slave.opt │ │ │ ├── rpl_gtid_purged_fail_to_connect.test │ │ │ ├── rpl_gtid_purged_maintained.test │ │ │ ├── rpl_gtid_replay_relaylog.test │ │ │ ├── rpl_gtid_row_event_max_size-master.opt │ │ │ ├── rpl_gtid_row_event_max_size-slave.opt │ │ │ ├── rpl_gtid_row_event_max_size.test │ │ │ ├── rpl_gtid_row_show_relaylog_events.test │ │ │ ├── rpl_gtid_server_sighup.test │ │ │ ├── rpl_gtid_sql_until_before_after.test │ │ │ ├── rpl_gtid_stm_insert_delayed.test │ │ │ ├── rpl_gtid_stm_mix_show_relaylog_events.test │ │ │ ├── rpl_gtid_stress_failover.cnf │ │ │ ├── rpl_gtid_stress_failover.test │ │ │ ├── rpl_gtid_validate_slave_gtids.test │ │ │ ├── rpl_gtids_restart_slave_io_lost_trx.test │ │ │ ├── rpl_heartbeat-master.opt │ │ │ ├── rpl_heartbeat.test │ │ │ ├── rpl_heartbeat_2slaves.cnf │ │ │ ├── rpl_heartbeat_2slaves.test │ │ │ ├── rpl_heartbeat_basic.cnf │ │ │ ├── rpl_heartbeat_basic.test │ │ │ ├── rpl_heartbeat_ssl.test │ │ │ ├── rpl_idempotency.test │ │ │ ├── rpl_ignore_db_filter-master.opt │ │ │ ├── rpl_ignore_db_filter-slave.opt │ │ │ ├── rpl_ignore_db_filter.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_filter_insensitive-master.opt │ │ │ ├── rpl_ignore_table_filter_insensitive-slave.opt │ │ │ ├── rpl_ignore_table_filter_insensitive.test │ │ │ ├── rpl_ignore_table_filter_sensitive-master.opt │ │ │ ├── rpl_ignore_table_filter_sensitive-slave.opt │ │ │ ├── rpl_ignore_table_filter_sensitive.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_id-master.opt │ │ │ ├── rpl_insert_id-slave.opt │ │ │ ├── rpl_insert_id.test │ │ │ ├── rpl_insert_id_pk.test │ │ │ ├── rpl_insert_ignore.test │ │ │ ├── rpl_insert_on_update.test │ │ │ ├── rpl_invoked_features-master.opt │ │ │ ├── rpl_invoked_features.test │ │ │ ├── rpl_ip_mix-master.opt │ │ │ ├── rpl_ip_mix.cnf │ │ │ ├── rpl_ip_mix.test │ │ │ ├── rpl_ip_mix2-master.opt │ │ │ ├── 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_kill_query-slave.opt │ │ │ ├── rpl_kill_query.test │ │ │ ├── rpl_killed_ddl-master.opt │ │ │ ├── rpl_killed_ddl.test │ │ │ ├── rpl_known_bugs_detection-master.opt │ │ │ ├── rpl_known_bugs_detection.test │ │ │ ├── rpl_lcase_tblnames_rewrite_db-slave.opt │ │ │ ├── rpl_lcase_tblnames_rewrite_db.test │ │ │ ├── rpl_loaddata.test │ │ │ ├── rpl_loaddata_charset.test │ │ │ ├── rpl_loaddata_fatal-slave.opt │ │ │ ├── rpl_loaddata_fatal.test │ │ │ ├── rpl_loaddata_m-master.opt │ │ │ ├── rpl_loaddata_m.test │ │ │ ├── rpl_loaddata_map-master.opt │ │ │ ├── rpl_loaddata_map-slave.opt │ │ │ ├── rpl_loaddata_map.test │ │ │ ├── rpl_loaddata_s-slave.opt │ │ │ ├── rpl_loaddata_s.test │ │ │ ├── rpl_loaddata_simple.test │ │ │ ├── rpl_loaddata_symlink-master.opt │ │ │ ├── rpl_loaddata_symlink-master.sh │ │ │ ├── rpl_loaddata_symlink-slave.opt │ │ │ ├── rpl_loaddata_symlink-slave.sh │ │ │ ├── rpl_loaddata_symlink.test │ │ │ ├── rpl_loaddatalocal.test │ │ │ ├── rpl_loadfile.test │ │ │ ├── rpl_locale.test │ │ │ ├── rpl_log_pos.test │ │ │ ├── rpl_lost_events_on_rotate.test │ │ │ ├── rpl_low_slave_net_time_out.test │ │ │ ├── rpl_manual_change_index_file.test │ │ │ ├── rpl_many_optimize.test │ │ │ ├── rpl_master_connection-master.opt │ │ │ ├── rpl_master_connection-slave.opt │ │ │ ├── rpl_master_connection.test │ │ │ ├── rpl_master_pos_wait.test │ │ │ ├── rpl_migration_crash_safe.test │ │ │ ├── rpl_misc_functions-slave.sh │ │ │ ├── rpl_misc_functions.test │ │ │ ├── rpl_mix_found_rows-master.opt │ │ │ ├── rpl_mix_found_rows.test │ │ │ ├── rpl_mix_insert_delayed.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-master.opt │ │ │ ├── rpl_mixed_implicit_commit_binlog-slave.opt │ │ │ ├── rpl_mixed_implicit_commit_binlog.test │ │ │ ├── rpl_mixed_mixing_engines.test │ │ │ ├── rpl_mixed_row_innodb-master.opt │ │ │ ├── rpl_mts_debug-slave.opt │ │ │ ├── rpl_mts_debug.test │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_off-slave.opt │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_off.test │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_on-slave.opt │ │ │ ├── rpl_mts_execute_partial_trx_with_auto_pos_on.test │ │ │ ├── rpl_mts_gtids_restart_slave_io_lost_trx-slave.opt │ │ │ ├── rpl_mts_gtids_restart_slave_io_lost_trx.test │ │ │ ├── rpl_mts_slave_hang_with_partial_trx-slave.opt │ │ │ ├── rpl_mts_slave_hang_with_partial_trx.test │ │ │ ├── rpl_mts_stop_slave-slave.opt │ │ │ ├── rpl_mts_stop_slave.test │ │ │ ├── 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_mysqlbinlog_gtid_on.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-master.opt │ │ │ ├── rpl_parallel-slave.opt │ │ │ ├── rpl_parallel.test │ │ │ ├── rpl_parallel_change_master-slave.opt │ │ │ ├── rpl_parallel_change_master.test │ │ │ ├── rpl_parallel_conf_limits-slave.opt │ │ │ ├── rpl_parallel_conf_limits.test │ │ │ ├── rpl_parallel_conflicts-slave.opt │ │ │ ├── rpl_parallel_conflicts.test │ │ │ ├── rpl_parallel_ddl-slave.opt │ │ │ ├── rpl_parallel_ddl.test │ │ │ ├── rpl_parallel_innodb-master.opt │ │ │ ├── rpl_parallel_innodb-slave.opt │ │ │ ├── rpl_parallel_innodb.test │ │ │ ├── rpl_parallel_load_data-slave.opt │ │ │ ├── rpl_parallel_load_data.test │ │ │ ├── rpl_parallel_multi_db-master.opt │ │ │ ├── rpl_parallel_multi_db-slave.opt │ │ │ ├── rpl_parallel_multi_db.test │ │ │ ├── rpl_parallel_seconds_behind_master-slave.opt │ │ │ ├── rpl_parallel_seconds_behind_master.test │ │ │ ├── rpl_parallel_show_binlog_events_purge_logs.test │ │ │ ├── rpl_parallel_start_stop-slave.opt │ │ │ ├── rpl_parallel_start_stop.test │ │ │ ├── rpl_parallel_switch_sequential-slave.opt │ │ │ ├── rpl_parallel_switch_sequential.test │ │ │ ├── rpl_parallel_temp_query-slave.opt │ │ │ ├── rpl_parallel_temp_query.test │ │ │ ├── rpl_parallel_worker_error.test │ │ │ ├── rpl_partition_archive.test │ │ │ ├── rpl_partition_innodb-master.opt │ │ │ ├── rpl_partition_innodb.test │ │ │ ├── rpl_partition_memory.test │ │ │ ├── rpl_partition_myisam.test │ │ │ ├── rpl_plugin_load-master.opt │ │ │ ├── rpl_plugin_load-slave.opt │ │ │ ├── rpl_plugin_load.test │ │ │ ├── rpl_ps.test │ │ │ ├── rpl_rbr_to_sbr.test │ │ │ ├── rpl_read_old_relay_log_info.test │ │ │ ├── rpl_read_only.test │ │ │ ├── rpl_recovery_empty_sqlthd_pos-slave.opt │ │ │ ├── rpl_recovery_empty_sqlthd_pos.test │ │ │ ├── rpl_recovery_replicate_same_server_id-slave.opt │ │ │ ├── rpl_recovery_replicate_same_server_id.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_event_after_sync_stage.test │ │ │ ├── rpl_replicate_ignore_db-slave.opt │ │ │ ├── rpl_replicate_ignore_db.test │ │ │ ├── rpl_replicate_rewrite_db.test │ │ │ ├── rpl_report-slave.opt │ │ │ ├── rpl_report.test │ │ │ ├── rpl_report_port-master.opt │ │ │ ├── rpl_report_port.test │ │ │ ├── rpl_rewrite_db_filter-master.opt │ │ │ ├── rpl_rewrite_db_filter-slave.opt │ │ │ ├── rpl_rewrite_db_filter.test │ │ │ ├── rpl_rewrt_db-slave.opt │ │ │ ├── rpl_rewrt_db.test │ │ │ ├── rpl_rotate_gtid.test │ │ │ ├── rpl_rotate_logs.cnf │ │ │ ├── rpl_rotate_logs.test │ │ │ ├── rpl_rotate_purge_deadlock-master.opt │ │ │ ├── rpl_rotate_purge_deadlock.test │ │ │ ├── rpl_rotate_row_trans.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_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_basic_allow_batching.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_corrupt-master.opt │ │ │ ├── rpl_row_corrupt-slave.opt │ │ │ ├── rpl_row_corrupt.test │ │ │ ├── rpl_row_corruption-slave.opt │ │ │ ├── rpl_row_corruption.test │ │ │ ├── rpl_row_crash_safe-slave.opt │ │ │ ├── rpl_row_crash_safe.test │ │ │ ├── rpl_row_create_select.test │ │ │ ├── rpl_row_create_table.test │ │ │ ├── rpl_row_delayed_ins.test │ │ │ ├── rpl_row_drop.test │ │ │ ├── rpl_row_drop_create_temp_table.test │ │ │ ├── rpl_row_err_daisychain-master.opt │ │ │ ├── rpl_row_err_daisychain-slave.opt │ │ │ ├── rpl_row_event_max_size-master.opt │ │ │ ├── rpl_row_event_max_size-slave.opt │ │ │ ├── rpl_row_event_max_size.test │ │ │ ├── rpl_row_find_row.test │ │ │ ├── rpl_row_flsh_tbls.test │ │ │ ├── rpl_row_func001.test │ │ │ ├── rpl_row_func002.test │ │ │ ├── rpl_row_func003.test │ │ │ ├── rpl_row_hash_scan.test │ │ │ ├── rpl_row_hash_scan_sanity.test │ │ │ ├── rpl_row_idempotency.test │ │ │ ├── rpl_row_ignorable_event-master.opt │ │ │ ├── rpl_row_ignorable_event-slave.opt │ │ │ ├── rpl_row_ignorable_event.test │ │ │ ├── rpl_row_img.cnf │ │ │ ├── rpl_row_img_blobs.cnf │ │ │ ├── rpl_row_img_blobs.test │ │ │ ├── rpl_row_img_eng_full.cnf │ │ │ ├── rpl_row_img_eng_full.test │ │ │ ├── rpl_row_img_eng_min.cnf │ │ │ ├── rpl_row_img_eng_min.test │ │ │ ├── rpl_row_img_eng_noblob.cnf │ │ │ ├── rpl_row_img_eng_noblob.test │ │ │ ├── rpl_row_img_idx_full.cnf │ │ │ ├── rpl_row_img_idx_full.test │ │ │ ├── rpl_row_img_idx_min.cnf │ │ │ ├── rpl_row_img_idx_min.test │ │ │ ├── rpl_row_img_idx_noblob.cnf │ │ │ ├── rpl_row_img_idx_noblob.test │ │ │ ├── rpl_row_img_misc.test │ │ │ ├── rpl_row_img_sanity.test │ │ │ ├── rpl_row_implicit_commit_binlog-master.opt │ │ │ ├── rpl_row_implicit_commit_binlog-slave.opt │ │ │ ├── rpl_row_implicit_commit_binlog.test │ │ │ ├── rpl_row_inexist_tbl.test │ │ │ ├── rpl_row_insert_delayed.test │ │ │ ├── rpl_row_lcase_tblnames-slave.opt │ │ │ ├── rpl_row_lcase_tblnames.test │ │ │ ├── rpl_row_loaddata_concurrent.test │ │ │ ├── rpl_row_log-master.opt │ │ │ ├── rpl_row_log-slave.opt │ │ │ ├── rpl_row_log.test │ │ │ ├── rpl_row_log_innodb-master.opt │ │ │ ├── rpl_row_log_innodb.test │ │ │ ├── rpl_row_max_relay_size.test │ │ │ ├── rpl_row_merge_engine.test │ │ │ ├── rpl_row_mixing_engines.test │ │ │ ├── rpl_row_mts_crash_safe-slave.opt │ │ │ ├── rpl_row_mts_crash_safe.test │ │ │ ├── rpl_row_mts_rec_crash_safe-slave.opt │ │ │ ├── rpl_row_mts_rec_crash_safe.test │ │ │ ├── rpl_row_mts_show_relaylog_events.test │ │ │ ├── rpl_row_mysqlbinlog-master.opt │ │ │ ├── rpl_row_mysqlbinlog.test │ │ │ ├── rpl_row_rec_comp_innodb.test │ │ │ ├── rpl_row_rec_comp_myisam.test │ │ │ ├── rpl_row_record_find_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-master.opt │ │ │ ├── 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_sbm_previous_gtid_event-slave.opt │ │ │ ├── rpl_sbm_previous_gtid_event.test │ │ │ ├── rpl_seconds_behind_master.test │ │ │ ├── rpl_semi_sync-master.opt │ │ │ ├── rpl_semi_sync-slave.opt │ │ │ ├── rpl_semi_sync.test │ │ │ ├── rpl_semi_sync_deadlock-master.opt │ │ │ ├── rpl_semi_sync_deadlock-slave.opt │ │ │ ├── rpl_semi_sync_deadlock.test │ │ │ ├── rpl_semi_sync_event-master.opt │ │ │ ├── rpl_semi_sync_event-slave.opt │ │ │ ├── rpl_semi_sync_event.test │ │ │ ├── rpl_semi_sync_future_logpos-master.opt │ │ │ ├── rpl_semi_sync_future_logpos-slave.opt │ │ │ ├── rpl_semi_sync_future_logpos.test │ │ │ ├── rpl_semi_sync_group_commit_deadlock-master.opt │ │ │ ├── rpl_semi_sync_group_commit_deadlock-slave.opt │ │ │ ├── rpl_semi_sync_group_commit_deadlock.test │ │ │ ├── rpl_semi_sync_non_group_commit_deadlock-master.opt │ │ │ ├── rpl_semi_sync_non_group_commit_deadlock-slave.opt │ │ │ ├── rpl_semi_sync_non_group_commit_deadlock.test │ │ │ ├── rpl_semi_sync_shutdown_hang-master.opt │ │ │ ├── rpl_semi_sync_shutdown_hang-slave.opt │ │ │ ├── rpl_semi_sync_shutdown_hang.test │ │ │ ├── rpl_semi_sync_uninstall_plugin-master.opt │ │ │ ├── rpl_semi_sync_uninstall_plugin-slave.opt │ │ │ ├── rpl_semi_sync_uninstall_plugin.test │ │ │ ├── rpl_sequential-master.opt │ │ │ ├── rpl_sequential-slave.opt │ │ │ ├── rpl_sequential.test │ │ │ ├── rpl_server_id1.test │ │ │ ├── rpl_server_id2-master.opt │ │ │ ├── rpl_server_id2-slave.opt │ │ │ ├── rpl_server_id2.test │ │ │ ├── rpl_server_id_ignore-master.opt │ │ │ ├── rpl_server_id_ignore-slave.opt │ │ │ ├── rpl_server_id_ignore.test │ │ │ ├── rpl_server_uuid.cnf │ │ │ ├── rpl_server_uuid.test │ │ │ ├── rpl_session_var.test │ │ │ ├── rpl_set_charset.test │ │ │ ├── rpl_set_null_innodb.test │ │ │ ├── rpl_set_null_myisam.test │ │ │ ├── rpl_show_errors.test │ │ │ ├── rpl_show_master_info_file-master.opt │ │ │ ├── rpl_show_master_info_file.test │ │ │ ├── rpl_show_slave_hosts.cnf │ │ │ ├── rpl_show_slave_hosts.test │ │ │ ├── rpl_show_slave_running.test │ │ │ ├── rpl_show_slave_status_deadlock.test │ │ │ ├── rpl_skip_ddl_errors_cli-slave.opt │ │ │ ├── rpl_skip_ddl_errors_cli.test │ │ │ ├── rpl_skip_error-slave.opt │ │ │ ├── rpl_skip_error.test │ │ │ ├── rpl_skip_incident-master.opt │ │ │ ├── rpl_skip_incident-slave.opt │ │ │ ├── rpl_skip_incident.test │ │ │ ├── rpl_skip_slave_err_warnings-slave.opt │ │ │ ├── rpl_skip_slave_err_warnings.test │ │ │ ├── rpl_slave_grp_exec.test │ │ │ ├── rpl_slave_load_in.test │ │ │ ├── rpl_slave_load_remove_tmpfile.test │ │ │ ├── rpl_slave_load_tmpdir_not_exist-master.opt │ │ │ ├── rpl_slave_load_tmpdir_not_exist-slave.opt │ │ │ ├── rpl_slave_load_tmpdir_not_exist.test │ │ │ ├── rpl_slave_skip.test │ │ │ ├── rpl_slave_start.test │ │ │ ├── rpl_slave_status.test │ │ │ ├── rpl_slow_query_log-slave.opt │ │ │ ├── rpl_slow_query_log.test │ │ │ ├── rpl_sp-master.opt │ │ │ ├── rpl_sp-slave.opt │ │ │ ├── rpl_sp.test │ │ │ ├── rpl_sp004.test │ │ │ ├── rpl_sp_effects-master.opt │ │ │ ├── rpl_sp_effects-slave.opt │ │ │ ├── rpl_sp_effects.test │ │ │ ├── rpl_sp_privileges.test │ │ │ ├── rpl_spec_variables-slave.opt │ │ │ ├── rpl_spec_variables.test │ │ │ ├── rpl_special_charset-master.opt │ │ │ ├── rpl_special_charset-slave.opt │ │ │ ├── rpl_special_charset.test │ │ │ ├── rpl_sporadic_master-master.opt │ │ │ ├── rpl_sporadic_master.test │ │ │ ├── rpl_sql_thread_killed_waiting_commit_lock-slave.opt │ │ │ ├── rpl_sql_thread_killed_waiting_commit_lock.test │ │ │ ├── rpl_ssl.test │ │ │ ├── rpl_ssl1.test │ │ │ ├── rpl_stm_000001.test │ │ │ ├── rpl_stm_EE_err2.test │ │ │ ├── rpl_stm_auto_increment_bug33029.test │ │ │ ├── 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-master.opt │ │ │ ├── rpl_stm_implicit_commit_binlog-slave.opt │ │ │ ├── rpl_stm_implicit_commit_binlog.test │ │ │ ├── rpl_stm_innodb.test │ │ │ ├── rpl_stm_insert_delayed.test │ │ │ ├── rpl_stm_lcase_tblnames-slave.opt │ │ │ ├── rpl_stm_lcase_tblnames.test │ │ │ ├── rpl_stm_loaddata_concurrent.test │ │ │ ├── rpl_stm_loadfile.test │ │ │ ├── rpl_stm_log-master.opt │ │ │ ├── rpl_stm_log-slave.opt │ │ │ ├── rpl_stm_log.test │ │ │ ├── rpl_stm_max_relay_size.test │ │ │ ├── rpl_stm_mix_mts_show_relaylog_events.test │ │ │ ├── rpl_stm_mix_show_relaylog_events.test │ │ │ ├── rpl_stm_mixed_crash_safe-slave.opt │ │ │ ├── rpl_stm_mixed_crash_safe.test │ │ │ ├── rpl_stm_mixed_mts_crash_safe-slave.opt │ │ │ ├── rpl_stm_mixed_mts_crash_safe.test │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe-slave.opt │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe.test │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_checksum.test │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt │ │ │ ├── rpl_stm_mixed_mts_rec_crash_safe_small.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_until_pos_middle_gtid.test │ │ │ ├── rpl_stm_user_variables.test │ │ │ ├── rpl_stop_slave.test │ │ │ ├── rpl_switch_stm_row_mixed-master.opt │ │ │ ├── rpl_switch_stm_row_mixed.test │ │ │ ├── rpl_sync-master.opt │ │ │ ├── rpl_sync-slave.opt │ │ │ ├── rpl_sync.test │ │ │ ├── rpl_temp_table.test │ │ │ ├── rpl_temp_table_mix_row.test │ │ │ ├── rpl_temporal_fractional.test │ │ │ ├── rpl_temporary.test │ │ │ ├── rpl_temporary_errors-slave.opt │ │ │ ├── rpl_temporary_errors.test │ │ │ ├── rpl_test_framework.cnf │ │ │ ├── rpl_test_framework.test │ │ │ ├── rpl_timestamp_upgrage_55.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-master.opt │ │ │ ├── rpl_typeconv-slave.opt │ │ │ ├── rpl_typeconv.test │ │ │ ├── rpl_typeconv_innodb.test │ │ │ ├── rpl_udf-master.opt │ │ │ ├── rpl_udf-slave.opt │ │ │ ├── rpl_udf.test │ │ │ ├── rpl_unknown_ignorable_event.test │ │ │ ├── rpl_user.test │ │ │ ├── rpl_user_variables.test │ │ │ ├── rpl_variables.test │ │ │ ├── rpl_variables_stm.test │ │ │ ├── rpl_view.test │ │ │ └── rpl_view_multi.test │ ├── rpl_ndb │ │ ├── my.cnf │ │ ├── r │ │ │ ├── rpl_ndb_UUID.result │ │ │ ├── rpl_ndb_blob2.result │ │ │ ├── rpl_ndb_commit_afterflush.result │ │ │ ├── rpl_ndb_ddl.result │ │ │ ├── rpl_ndb_delete_nowhere.result │ │ │ ├── rpl_ndb_dist_priv.result │ │ │ ├── rpl_ndb_extra_col_master.result │ │ │ ├── rpl_ndb_extra_col_slave.result │ │ │ ├── rpl_ndb_func003.result │ │ │ ├── rpl_ndb_insert_ignore.result │ │ │ ├── rpl_ndb_mixed_implicit_commit_binlog.result │ │ │ ├── rpl_ndb_multi_update2.result │ │ │ ├── rpl_ndb_multi_update3.result │ │ │ ├── rpl_ndb_relayrotate.result │ │ │ ├── rpl_ndb_row_001.result │ │ │ ├── rpl_ndb_row_basic.result │ │ │ ├── rpl_ndb_row_implicit_commit_binlog.result │ │ │ ├── rpl_ndb_set_null.result │ │ │ ├── rpl_ndb_sp003.result │ │ │ ├── rpl_ndb_sp006.result │ │ │ ├── rpl_ndb_trig004.result │ │ │ ├── rpl_ndb_typeconv_all.result │ │ │ ├── rpl_ndb_typeconv_lossy.result │ │ │ ├── rpl_ndb_typeconv_nonlossy.result │ │ │ └── rpl_ndb_typeconv_strict.result │ │ └── t │ │ │ ├── check_conversions.inc │ │ │ ├── disabled.def │ │ │ ├── rpl_ndb_UUID.test │ │ │ ├── rpl_ndb_blob2.test │ │ │ ├── rpl_ndb_commit_afterflush.test │ │ │ ├── rpl_ndb_ddl.test │ │ │ ├── rpl_ndb_delete_nowhere.test │ │ │ ├── rpl_ndb_dist_priv.test │ │ │ ├── rpl_ndb_extra_col_master.test │ │ │ ├── rpl_ndb_extra_col_slave.test │ │ │ ├── rpl_ndb_func003.test │ │ │ ├── rpl_ndb_insert_ignore.test │ │ │ ├── rpl_ndb_mixed_implicit_commit_binlog.test │ │ │ ├── rpl_ndb_multi_update2.test │ │ │ ├── rpl_ndb_multi_update3.test │ │ │ ├── rpl_ndb_relayrotate.test │ │ │ ├── rpl_ndb_row_001.test │ │ │ ├── rpl_ndb_row_basic.test │ │ │ ├── rpl_ndb_row_implicit_commit_binlog.test │ │ │ ├── rpl_ndb_set_null.test │ │ │ ├── rpl_ndb_sp003.test │ │ │ ├── rpl_ndb_sp006.test │ │ │ ├── rpl_ndb_stm_innodb-slave.opt │ │ │ ├── rpl_ndb_trig004.test │ │ │ ├── rpl_ndb_typeconv_all.test │ │ │ ├── rpl_ndb_typeconv_lossy.test │ │ │ ├── rpl_ndb_typeconv_nonlossy.test │ │ │ └── rpl_ndb_typeconv_strict.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 │ │ ├── inc │ │ ├── autocommit_func2.inc │ │ ├── bin_relay_log_basename_index.inc │ │ ├── binlog_cache_size_basic.inc │ │ ├── binlog_stmt_cache_size_basic.inc │ │ ├── bulk_insert_buffer_size_basic.inc │ │ ├── charset_basic.inc │ │ ├── collation_basic.inc │ │ ├── delayed_insert_limit_basic.inc │ │ ├── delayed_queue_size_basic.inc │ │ ├── join_buffer_size_basic.inc │ │ ├── key_cache_age_threshold_basic.inc │ │ ├── log_warnings_basic.inc │ │ ├── max_connect_errors_basic.inc │ │ ├── max_seeks_for_key_basic.inc │ │ ├── max_tmp_tables_basic.inc │ │ ├── max_write_lock_count_basic.inc │ │ ├── min_examined_row_limit_basic.inc │ │ ├── multi_range_count_basic.inc │ │ ├── myisam_max_sort_file_size_basic.inc │ │ ├── myisam_repair_threads_basic.inc │ │ ├── myisam_sort_buffer_size_basic.inc │ │ ├── net_retry_count_basic.inc │ │ ├── query_alloc_block_size_basic.inc │ │ ├── query_cache_limit_basic.inc │ │ ├── query_cache_min_res_unit_basic.inc │ │ ├── query_cache_size_basic.inc │ │ ├── range_alloc_block_size_basic.inc │ │ ├── slave_transaction_retries_basic.inc │ │ └── sort_buffer_size_basic.inc │ │ ├── r │ │ ├── all_vars.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 │ │ ├── avoid_temporal_upgrade_basic.result │ │ ├── back_log_basic.result │ │ ├── basedir_basic.result │ │ ├── big_tables_basic.result │ │ ├── bind_address_basic.result │ │ ├── binlog_cache_size_basic_32.result │ │ ├── binlog_cache_size_basic_64.result │ │ ├── binlog_checksum_basic.result │ │ ├── binlog_direct_non_transactional_updates_basic.result │ │ ├── binlog_error_action_basic.result │ │ ├── binlog_format_basic.result │ │ ├── binlog_gtid_simple_recovery_basic.result │ │ ├── binlog_max_flush_queue_time_basic.result │ │ ├── binlog_order_commits_basic.result │ │ ├── binlog_row_image_basic.result │ │ ├── binlog_rows_query_log_events_basic.result │ │ ├── binlog_stmt_cache_size_basic_32.result │ │ ├── binlog_stmt_cache_size_basic_64.result │ │ ├── binlogging_impossible_mode_basic.result │ │ ├── block_encryption_mode_basic.result │ │ ├── bulk_insert_buffer_size_basic_32.result │ │ ├── bulk_insert_buffer_size_basic_64.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 │ │ ├── core_file_basic.result │ │ ├── datadir_basic.result │ │ ├── date_format_basic.result │ │ ├── datetime_format_basic.result │ │ ├── debug_basic.result │ │ ├── debug_sync_basic.result │ │ ├── default_storage_engine_basic.result │ │ ├── default_tmp_storage_engine_basic.result │ │ ├── default_week_format_basic.result │ │ ├── default_week_format_func.result │ │ ├── delay_key_write_basic.result │ │ ├── delay_key_write_func.result │ │ ├── delayed_insert_limit_basic_32.result │ │ ├── delayed_insert_limit_basic_64.result │ │ ├── delayed_insert_limit_func.result │ │ ├── delayed_insert_timeout_basic.result │ │ ├── delayed_queue_size_basic_32.result │ │ ├── delayed_queue_size_basic_64.result │ │ ├── disconnect_on_expired_password_basic.result │ │ ├── div_precision_increment_basic.result │ │ ├── div_precision_increment_func.result │ │ ├── end_markers_in_json_basic.result │ │ ├── enforce_gtid_consistency_basic.result │ │ ├── eq_range_index_dive_limit_basic.result │ │ ├── error_count_basic.result │ │ ├── event_scheduler_basic.result │ │ ├── expire_logs_days_basic.result │ │ ├── explicit_defaults_for_timestamp_basic.result │ │ ├── external_user_basic.result │ │ ├── flush_basic.result │ │ ├── flush_time_basic.result │ │ ├── foreign_key_checks_basic.result │ │ ├── foreign_key_checks_func.result │ │ ├── ft_boolean_syntax_basic.result │ │ ├── ft_boolean_syntax_func.result │ │ ├── ft_max_word_len_basic.result │ │ ├── ft_min_word_len_basic.result │ │ ├── ft_query_expansion_limit_basic.result │ │ ├── ft_stopword_file_basic.result │ │ ├── general_log_basic.result │ │ ├── general_log_file_basic.result │ │ ├── general_log_file_func.result │ │ ├── general_log_func.result │ │ ├── group_concat_max_len_basic.result │ │ ├── group_concat_max_len_func.result │ │ ├── gtid_executed_basic.result │ │ ├── gtid_mode_basic.result │ │ ├── gtid_next_basic.result │ │ ├── gtid_owned_basic.result │ │ ├── gtid_purged_basic.result │ │ ├── have_compress_basic.result │ │ ├── have_crypt_basic.result │ │ ├── have_dynamic_loading_basic.result │ │ ├── have_geometry_basic.result │ │ ├── have_openssl_basic.result │ │ ├── have_profiling_basic.result │ │ ├── have_query_cache_basic.result │ │ ├── have_rtree_keys_basic.result │ │ ├── have_ssl_basic.result │ │ ├── have_symlink_basic.result │ │ ├── host_cache_size_basic.result │ │ ├── hostname_basic.result │ │ ├── identity_basic.result │ │ ├── identity_func.result │ │ ├── ignore_builtin_innodb_basic.result │ │ ├── ignore_db_dirs_basic.result │ │ ├── init_connect_basic.result │ │ ├── init_file_basic.result │ │ ├── init_slave_basic.result │ │ ├── innodb_adaptive_flushing_basic.result │ │ ├── innodb_adaptive_flushing_lwm_basic.result │ │ ├── innodb_adaptive_hash_index_basic.result │ │ ├── innodb_adaptive_max_sleep_delay_basic.result │ │ ├── innodb_additional_mem_pool_size_basic.result │ │ ├── innodb_api_bk_commit_interval_basic.result │ │ ├── innodb_api_disable_rowlock_basic.result │ │ ├── innodb_api_enable_binlog_basic.result │ │ ├── innodb_api_enable_mdl_basic.result │ │ ├── innodb_api_trx_level_basic.result │ │ ├── innodb_autoextend_increment_basic.result │ │ ├── innodb_autoinc_lock_mode_basic.result │ │ ├── innodb_autoinc_lock_mode_func.result │ │ ├── innodb_buf_flush_list_now_basic.result │ │ ├── innodb_buffer_pool_dump_at_shutdown_basic.result │ │ ├── innodb_buffer_pool_dump_now_basic.result │ │ ├── innodb_buffer_pool_evict_basic.result │ │ ├── innodb_buffer_pool_filename_basic.result │ │ ├── innodb_buffer_pool_instances_basic.result │ │ ├── innodb_buffer_pool_load_abort_basic.result │ │ ├── innodb_buffer_pool_load_at_startup_basic.result │ │ ├── innodb_buffer_pool_load_now_basic.result │ │ ├── innodb_buffer_pool_size_basic.result │ │ ├── innodb_change_buffer_max_size_basic.result │ │ ├── innodb_change_buffering_basic.result │ │ ├── innodb_change_buffering_debug_basic.result │ │ ├── innodb_checksum_algorithm_basic.result │ │ ├── innodb_checksums_basic.result │ │ ├── innodb_cmp_per_index_enabled_basic.result │ │ ├── innodb_commit_concurrency_basic.result │ │ ├── innodb_compression_failure_threshold_pct_basic.result │ │ ├── innodb_compression_level_basic.result │ │ ├── innodb_compression_pad_pct_max_basic.result │ │ ├── innodb_concurrency_tickets_basic.result │ │ ├── innodb_data_file_path_basic.result │ │ ├── innodb_data_home_dir_basic.result │ │ ├── innodb_disable_background_merge_basic.result │ │ ├── innodb_disable_sort_file_cache_basic.result │ │ ├── innodb_doublewrite_basic.result │ │ ├── innodb_doublewrite_batch_size_basic.result │ │ ├── innodb_fast_shutdown_basic.result │ │ ├── innodb_fil_make_page_dirty_debug_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_log_at_timeout_basic.result │ │ ├── innodb_flush_log_at_trx_commit_basic.result │ │ ├── innodb_flush_method_basic.result │ │ ├── innodb_flush_neighbors_basic.result │ │ ├── innodb_flushing_avg_loops_basic.result │ │ ├── innodb_force_load_corrupted_basic.result │ │ ├── innodb_force_recovery_basic.result │ │ ├── innodb_force_recovery_crash_basic.result │ │ ├── innodb_ft_aux_table_basic.result │ │ ├── innodb_ft_cache_size_basic.result │ │ ├── innodb_ft_enable_diag_print_basic.result │ │ ├── innodb_ft_enable_stopword_basic.result │ │ ├── innodb_ft_max_token_size_basic.result │ │ ├── innodb_ft_min_token_size_basic.result │ │ ├── innodb_ft_num_word_optimize_basic.result │ │ ├── innodb_ft_result_cache_limit_basic.result │ │ ├── innodb_ft_server_stopword_table_basic.result │ │ ├── innodb_ft_sort_pll_degree_basic.result │ │ ├── innodb_ft_total_cache_size_basic.result │ │ ├── innodb_ft_user_stopword_table_basic.result │ │ ├── innodb_io_capacity_basic.result │ │ ├── innodb_io_capacity_max_basic.result │ │ ├── innodb_large_prefix_basic.result │ │ ├── innodb_limit_optimistic_insert_debug_basic.result │ │ ├── innodb_lock_wait_timeout_basic.result │ │ ├── innodb_locks_unsafe_for_binlog_basic.result │ │ ├── innodb_log_buffer_size_basic.result │ │ ├── innodb_log_checkpoint_now_basic.result │ │ ├── innodb_log_compressed_pages_basic.result │ │ ├── innodb_log_file_size_basic.result │ │ ├── innodb_log_files_in_group_basic.result │ │ ├── innodb_log_group_home_dir_basic.result │ │ ├── innodb_lru_scan_depth_basic.result │ │ ├── innodb_max_dirty_pages_pct_basic.result │ │ ├── innodb_max_dirty_pages_pct_func.result │ │ ├── innodb_max_dirty_pages_pct_lwm_basic.result │ │ ├── innodb_max_purge_lag_basic.result │ │ ├── innodb_max_purge_lag_delay_basic.result │ │ ├── innodb_mirrored_log_groups_basic.result │ │ ├── innodb_monitor_disable_basic.result │ │ ├── innodb_monitor_enable_basic.result │ │ ├── innodb_monitor_reset_all_basic.result │ │ ├── innodb_monitor_reset_basic.result │ │ ├── innodb_old_blocks_pct_basic.result │ │ ├── innodb_old_blocks_time_basic.result │ │ ├── innodb_online_alter_log_max_size_basic.result │ │ ├── innodb_open_files_basic.result │ │ ├── innodb_optimize_fulltext_only_basic.result │ │ ├── innodb_page_hash_locks_basic.result │ │ ├── innodb_page_size_basic.result │ │ ├── innodb_print_all_deadlocks_basic.result │ │ ├── innodb_purge_batch_size_basic.result │ │ ├── innodb_purge_run_now_basic.result │ │ ├── innodb_purge_stop_now_basic.result │ │ ├── innodb_purge_threads_basic.result │ │ ├── innodb_random_read_ahead_basic.result │ │ ├── innodb_read_ahead_threshold_basic.result │ │ ├── innodb_read_io_threads_basic.result │ │ ├── innodb_read_only_basic.result │ │ ├── innodb_replication_delay_basic.result │ │ ├── innodb_rollback_on_timeout_basic.result │ │ ├── innodb_rollback_segments_basic.result │ │ ├── innodb_saved_page_number_debug_basic.result │ │ ├── innodb_sort_buffer_size_basic.result │ │ ├── innodb_spin_wait_delay_basic.result │ │ ├── innodb_stats_auto_recalc_basic.result │ │ ├── innodb_stats_method_basic.result │ │ ├── innodb_stats_on_metadata_basic.result │ │ ├── innodb_stats_persistent_basic.result │ │ ├── innodb_stats_persistent_sample_pages_basic.result │ │ ├── innodb_stats_sample_pages_basic.result │ │ ├── innodb_stats_transient_sample_pages_basic.result │ │ ├── innodb_status_output_basic.result │ │ ├── innodb_status_output_locks_basic.result │ │ ├── innodb_strict_mode_basic.result │ │ ├── innodb_support_xa_basic.result │ │ ├── innodb_support_xa_func.result │ │ ├── innodb_sync_array_size_basic.result │ │ ├── innodb_sync_spin_loops_basic.result │ │ ├── innodb_table_locks_basic.result │ │ ├── innodb_table_locks_func.result │ │ ├── innodb_thread_concurrency_basic.result │ │ ├── innodb_thread_sleep_delay_basic.result │ │ ├── innodb_trx_purge_view_update_only_debug_basic.result │ │ ├── innodb_trx_rseg_n_slots_debug_basic.result │ │ ├── innodb_undo_directory_basic.result │ │ ├── innodb_undo_logs_basic.result │ │ ├── innodb_undo_tablespaces_basic.result │ │ ├── innodb_use_native_aio_basic.result │ │ ├── innodb_use_sys_malloc_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_32.result │ │ ├── join_buffer_size_basic_64.result │ │ ├── keep_files_on_create_basic.result │ │ ├── key_buffer_size_basic.result │ │ ├── key_buffer_size_func.result │ │ ├── key_cache_age_threshold_basic_32.result │ │ ├── key_cache_age_threshold_basic_64.result │ │ ├── key_cache_block_size_basic.result │ │ ├── key_cache_division_limit_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_bin_basename_basic.result │ │ ├── log_bin_basic.result │ │ ├── log_bin_index_basic.result │ │ ├── log_bin_trust_function_creators_basic.result │ │ ├── log_bin_trust_function_creators_func.result │ │ ├── log_bin_use_v1_row_events_basic.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_admin_statements_basic.result │ │ ├── log_slow_admin_statements_func.result │ │ ├── log_slow_slave_statements_basic.result │ │ ├── log_throttle_queries_not_using_indexes_basic.result │ │ ├── log_warnings_basic_32.result │ │ ├── log_warnings_basic_64.result │ │ ├── long_query_time_basic.result │ │ ├── low_priority_updates_basic.result │ │ ├── lower_case_file_system_basic.result │ │ ├── lower_case_table_names_basic.result │ │ ├── master_info_repository_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_32.result │ │ ├── max_connect_errors_basic_64.result │ │ ├── max_connections_basic.result │ │ ├── max_delayed_threads_basic.result │ │ ├── max_digest_length_basic.result │ │ ├── max_error_count_basic.result │ │ ├── max_heap_table_size_basic.result │ │ ├── max_insert_delayed_threads_basic.result │ │ ├── max_join_size_basic.result │ │ ├── max_join_size_func.result │ │ ├── max_length_for_sort_data_basic.result │ │ ├── max_prepared_stmt_count_basic.result │ │ ├── max_prepared_stmt_count_func.result │ │ ├── max_relay_log_size_basic.result │ │ ├── max_seeks_for_key_basic_32.result │ │ ├── max_seeks_for_key_basic_64.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_32.result │ │ ├── max_tmp_tables_basic_64.result │ │ ├── max_user_connections_basic.result │ │ ├── max_user_connections_func.result │ │ ├── max_write_lock_count_basic_32.result │ │ ├── max_write_lock_count_basic_64.result │ │ ├── maximum_basic.result │ │ ├── metadata_locks_cache_size_basic.result │ │ ├── metadata_locks_hash_instances_basic.result │ │ ├── min_examined_row_limit_basic_32.result │ │ ├── min_examined_row_limit_basic_64.result │ │ ├── multi_range_count_basic_32.result │ │ ├── multi_range_count_basic_64.result │ │ ├── myisam_data_pointer_size_basic.result │ │ ├── myisam_data_pointer_size_func.result │ │ ├── myisam_max_sort_file_size_basic_32.result │ │ ├── myisam_max_sort_file_size_basic_64.result │ │ ├── myisam_mmap_size_basic.result │ │ ├── myisam_recover_options_basic.result │ │ ├── myisam_repair_threads_basic_32.result │ │ ├── myisam_repair_threads_basic_64.result │ │ ├── myisam_sort_buffer_size_basic_32.result │ │ ├── myisam_sort_buffer_size_basic_64.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_32.result │ │ ├── net_retry_count_basic_64.result │ │ ├── net_write_timeout_basic.result │ │ ├── new_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_trace_basic.result │ │ ├── optimizer_trace_features_basic.result │ │ ├── optimizer_trace_limit_basic.result │ │ ├── optimizer_trace_max_mem_size_basic.result │ │ ├── optimizer_trace_offset_basic.result │ │ ├── optimizer_trace_offset_max.result │ │ ├── performance_schema_basic.result │ │ ├── pfs_accounts_size_basic.result │ │ ├── pfs_digests_size_basic.result │ │ ├── pfs_events_stages_h_size_basic.result │ │ ├── pfs_events_stages_hl_size_basic.result │ │ ├── pfs_events_statements_h_size_basic.result │ │ ├── pfs_events_statements_hl_size_basic.result │ │ ├── pfs_events_waits_h_size_basic.result │ │ ├── pfs_events_waits_hl_size_basic.result │ │ ├── pfs_hosts_size_basic.result │ │ ├── pfs_max_cond_classes_basic.result │ │ ├── pfs_max_cond_instances_basic.result │ │ ├── pfs_max_digest_length_basic.result │ │ ├── pfs_max_file_classes_basic.result │ │ ├── pfs_max_file_handles_basic.result │ │ ├── pfs_max_file_instances_basic.result │ │ ├── pfs_max_mutex_classes_basic.result │ │ ├── pfs_max_mutex_instances_basic.result │ │ ├── pfs_max_rwlock_classes_basic.result │ │ ├── pfs_max_rwlock_instances_basic.result │ │ ├── pfs_max_socket_classes_basic.result │ │ ├── pfs_max_socket_instances_basic.result │ │ ├── pfs_max_stage_classes_basic.result │ │ ├── pfs_max_statement_classes_basic.result │ │ ├── pfs_max_table_handles_basic.result │ │ ├── pfs_max_table_instances_basic.result │ │ ├── pfs_max_thread_classes_basic.result │ │ ├── pfs_max_thread_instances_basic.result │ │ ├── pfs_session_connect_attrs_size_basic.result │ │ ├── pfs_setup_actors_size_basic.result │ │ ├── pfs_setup_objects_size_basic.result │ │ ├── pfs_users_size_basic.result │ │ ├── pid_file_basic.result │ │ ├── plugin_dir_basic.result │ │ ├── port_basic.result │ │ ├── preload_buffer_size_basic.result │ │ ├── profiling_basic.result │ │ ├── profiling_h_size_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_32.result │ │ ├── query_alloc_block_size_basic_64.result │ │ ├── query_cache_limit_basic_32.result │ │ ├── query_cache_limit_basic_64.result │ │ ├── query_cache_limit_func.result │ │ ├── query_cache_min_res_unit_basic_32.result │ │ ├── query_cache_min_res_unit_basic_64.result │ │ ├── query_cache_size_basic_32.result │ │ ├── query_cache_size_basic_64.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_32.result │ │ ├── range_alloc_block_size_basic_64.result │ │ ├── read_buffer_size_basic.result │ │ ├── read_only_basic.result │ │ ├── read_only_func.result │ │ ├── read_rnd_buffer_size_basic.result │ │ ├── relay_log_basename_basic.result │ │ ├── relay_log_basic.result │ │ ├── relay_log_index_basic.result │ │ ├── relay_log_info_file_basic.result │ │ ├── relay_log_info_repository_basic.result │ │ ├── relay_log_purge_basic.result │ │ ├── relay_log_recovery_basic.result │ │ ├── relay_log_space_limit_basic.result │ │ ├── report_host_basic.result │ │ ├── report_password_basic.result │ │ ├── report_port_basic.result │ │ ├── report_user_basic.result │ │ ├── rpl_init_slave_func.result │ │ ├── rpl_max_binlog_size_func.result │ │ ├── rpl_recovery_rank_basic_32.result │ │ ├── rpl_recovery_rank_basic_64.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 │ │ ├── rpl_stop_slave_timeout_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 │ │ ├── server_id_bits_basic.result │ │ ├── server_uuid_basic.result │ │ ├── sha256_password_private_key_path_basic.result │ │ ├── sha256_password_public_key_path_basic.result │ │ ├── shared_memory_base_name_basic.result │ │ ├── shared_memory_basic.result │ │ ├── show_old_temporals_basic.result │ │ ├── simplified_binlog_gtid_recovery_basic.result │ │ ├── skip_external_locking_basic.result │ │ ├── skip_name_resolve_basic.result │ │ ├── skip_networking_basic.result │ │ ├── skip_show_database_basic.result │ │ ├── slave_allow_batching_basic.result │ │ ├── slave_checkpoint_group_basic.result │ │ ├── slave_checkpoint_period_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_parallel_workers_basic.result │ │ ├── slave_pending_jobs_size_max_basic.result │ │ ├── slave_rows_search_algorithms_basic.result │ │ ├── slave_skip_errors_basic.result │ │ ├── slave_sql_verify_checksum_basic.result │ │ ├── slave_transaction_retries_basic_32.result │ │ ├── slave_transaction_retries_basic_64.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_32.result │ │ ├── sort_buffer_size_basic_64.result │ │ ├── sql_auto_is_null_basic.result │ │ ├── sql_big_selects_basic.result │ │ ├── sql_big_selects_func.result │ │ ├── sql_buffer_result_basic.result │ │ ├── sql_buffer_result_func.result │ │ ├── sql_log_bin_basic.result │ │ ├── sql_log_off_basic.result │ │ ├── sql_log_off_func.result │ │ ├── sql_low_priority_updates_func.result │ │ ├── sql_mode_basic.result │ │ ├── sql_mode_func.result │ │ ├── sql_notes_basic.result │ │ ├── sql_notes_func.result │ │ ├── sql_quote_show_create_basic.result │ │ ├── sql_quote_show_create_func.result │ │ ├── sql_safe_updates_basic.result │ │ ├── sql_safe_updates_func.result │ │ ├── sql_select_limit_basic.result │ │ ├── sql_select_limit_func.result │ │ ├── sql_slave_skip_counter_basic.result │ │ ├── sql_warnings_basic.result │ │ ├── sql_warnings_func.result │ │ ├── ssl_ca_basic.result │ │ ├── ssl_capath_basic.result │ │ ├── ssl_cert_basic.result │ │ ├── ssl_cipher_basic.result │ │ ├── ssl_crl_basic.result │ │ ├── ssl_crlpath_basic.result │ │ ├── ssl_key_basic.result │ │ ├── storage_engine_basic.result │ │ ├── stored_program_cache_basic.result │ │ ├── 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 │ │ ├── table_open_cache_instances_basic.result │ │ ├── thread_cache_size_basic.result │ │ ├── thread_cache_size_func.result │ │ ├── thread_concurrency_basic.result │ │ ├── thread_handling_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_allow_batching_basic.result │ │ ├── transaction_prealloc_size_basic.result │ │ ├── tx_isolation_basic.result │ │ ├── tx_isolation_func.result │ │ ├── tx_read_only_basic.result │ │ ├── unique_checks_basic.result │ │ ├── updatable_views_with_limit_basic.result │ │ ├── updatable_views_with_limit_func.result │ │ ├── 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 │ │ ├── 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 │ │ ├── avoid_temporal_upgrade_basic.test │ │ ├── back_log_basic.test │ │ ├── basedir_basic.test │ │ ├── big_tables_basic.test │ │ ├── bind_address_basic.test │ │ ├── binlog_cache_size_basic_32.test │ │ ├── binlog_cache_size_basic_64.test │ │ ├── binlog_checksum_basic.test │ │ ├── binlog_direct_non_transactional_updates_basic.test │ │ ├── binlog_error_action_basic.test │ │ ├── binlog_format_basic.test │ │ ├── binlog_gtid_simple_recovery_basic.test │ │ ├── binlog_max_flush_queue_time_basic.test │ │ ├── binlog_order_commits_basic.test │ │ ├── binlog_row_image_basic.test │ │ ├── binlog_rows_query_log_events_basic.test │ │ ├── binlog_stmt_cache_size_basic_32.test │ │ ├── binlog_stmt_cache_size_basic_64.test │ │ ├── binlogging_impossible_mode_basic.test │ │ ├── block_encryption_mode_basic.test │ │ ├── bulk_insert_buffer_size_basic_32.test │ │ ├── bulk_insert_buffer_size_basic_64.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 │ │ ├── core_file_basic-master.opt │ │ ├── core_file_basic.test │ │ ├── datadir_basic.test │ │ ├── date_format_basic.test │ │ ├── datetime_format_basic.test │ │ ├── debug_basic.test │ │ ├── debug_sync_basic.test │ │ ├── default_storage_engine_basic.test │ │ ├── default_tmp_storage_engine_basic.test │ │ ├── default_week_format_basic.test │ │ ├── default_week_format_func.test │ │ ├── delay_key_write_basic.test │ │ ├── delay_key_write_func-master.opt │ │ ├── delay_key_write_func.test │ │ ├── delayed_insert_limit_basic_32.test │ │ ├── delayed_insert_limit_basic_64.test │ │ ├── delayed_insert_limit_func.test │ │ ├── delayed_insert_timeout_basic.test │ │ ├── delayed_queue_size_basic_32.test │ │ ├── delayed_queue_size_basic_64.test │ │ ├── disabled.def │ │ ├── disconnect_on_expired_password_basic.test │ │ ├── div_precision_increment_basic.test │ │ ├── div_precision_increment_func.test │ │ ├── end_markers_in_json_basic.test │ │ ├── enforce_gtid_consistency_basic.test │ │ ├── eq_range_index_dive_limit_basic.test │ │ ├── error_count_basic.test │ │ ├── event_scheduler_basic.test │ │ ├── expire_logs_days_basic.test │ │ ├── explicit_defaults_for_timestamp_basic.test │ │ ├── external_user_basic.test │ │ ├── flush_basic.test │ │ ├── flush_time_basic.test │ │ ├── foreign_key_checks_basic.test │ │ ├── foreign_key_checks_func.test │ │ ├── ft_boolean_syntax_basic.test │ │ ├── ft_boolean_syntax_func.test │ │ ├── ft_max_word_len_basic.test │ │ ├── ft_min_word_len_basic.test │ │ ├── ft_query_expansion_limit_basic.test │ │ ├── ft_stopword_file_basic.test │ │ ├── general_log_basic.test │ │ ├── general_log_file_basic-master.opt │ │ ├── general_log_file_basic.test │ │ ├── general_log_file_func-master.opt │ │ ├── general_log_file_func.test │ │ ├── general_log_func.test │ │ ├── group_concat_max_len_basic.test │ │ ├── group_concat_max_len_func.test │ │ ├── gtid_executed_basic.test │ │ ├── gtid_mode_basic.test │ │ ├── gtid_next_basic.test │ │ ├── gtid_owned_basic.test │ │ ├── gtid_purged_basic.test │ │ ├── have_compress_basic.test │ │ ├── have_crypt_basic.test │ │ ├── have_dynamic_loading_basic.test │ │ ├── have_geometry_basic.test │ │ ├── have_openssl_basic.test │ │ ├── have_profiling_basic.test │ │ ├── have_query_cache_basic.test │ │ ├── have_rtree_keys_basic.test │ │ ├── have_ssl_basic.test │ │ ├── have_symlink_basic.test │ │ ├── host_cache_size_basic-master.opt │ │ ├── host_cache_size_basic.test │ │ ├── hostname_basic.test │ │ ├── identity_basic.test │ │ ├── identity_func-master.opt │ │ ├── identity_func.test │ │ ├── ignore_builtin_innodb_basic.test │ │ ├── ignore_db_dirs_basic-master.opt │ │ ├── ignore_db_dirs_basic.test │ │ ├── init_connect_basic.test │ │ ├── init_file_basic.test │ │ ├── init_slave_basic.test │ │ ├── innodb_adaptive_flushing_basic.test │ │ ├── innodb_adaptive_flushing_lwm_basic.test │ │ ├── innodb_adaptive_hash_index_basic.test │ │ ├── innodb_adaptive_max_sleep_delay_basic.test │ │ ├── innodb_additional_mem_pool_size_basic.test │ │ ├── innodb_api_bk_commit_interval_basic.test │ │ ├── innodb_api_disable_rowlock_basic.test │ │ ├── innodb_api_enable_binlog_basic.test │ │ ├── innodb_api_enable_mdl_basic.test │ │ ├── innodb_api_trx_level_basic.test │ │ ├── innodb_autoextend_increment_basic.test │ │ ├── innodb_autoinc_lock_mode_basic.test │ │ ├── innodb_autoinc_lock_mode_func-master.opt │ │ ├── innodb_autoinc_lock_mode_func.test │ │ ├── innodb_buf_flush_list_now_basic.test │ │ ├── innodb_buffer_pool_dump_at_shutdown_basic.test │ │ ├── innodb_buffer_pool_dump_now_basic.test │ │ ├── innodb_buffer_pool_evict_basic.test │ │ ├── innodb_buffer_pool_filename_basic-master.opt │ │ ├── innodb_buffer_pool_filename_basic.test │ │ ├── innodb_buffer_pool_instances_basic.test │ │ ├── innodb_buffer_pool_load_abort_basic.test │ │ ├── innodb_buffer_pool_load_at_startup_basic.test │ │ ├── innodb_buffer_pool_load_now_basic.test │ │ ├── innodb_buffer_pool_size_basic.test │ │ ├── innodb_change_buffer_max_size_basic.test │ │ ├── innodb_change_buffering_basic.test │ │ ├── innodb_change_buffering_debug_basic.test │ │ ├── innodb_checksum_algorithm_basic.test │ │ ├── innodb_checksums_basic.test │ │ ├── innodb_cmp_per_index_enabled_basic.test │ │ ├── innodb_commit_concurrency_basic.test │ │ ├── innodb_compression_failure_threshold_pct_basic.test │ │ ├── innodb_compression_level_basic.test │ │ ├── innodb_compression_pad_pct_max_basic.test │ │ ├── innodb_concurrency_tickets_basic.test │ │ ├── innodb_data_file_path_basic.test │ │ ├── innodb_data_home_dir_basic.test │ │ ├── innodb_disable_background_merge_basic.test │ │ ├── innodb_disable_sort_file_cache_basic.test │ │ ├── innodb_doublewrite_basic.test │ │ ├── innodb_doublewrite_batch_size_basic.test │ │ ├── innodb_fast_shutdown_basic.test │ │ ├── innodb_fil_make_page_dirty_debug_basic.test │ │ ├── innodb_file_format_basic.test │ │ ├── innodb_file_format_check_basic.test │ │ ├── innodb_file_format_max_basic-master.opt │ │ ├── innodb_file_format_max_basic.test │ │ ├── innodb_file_io_threads_basic.test │ │ ├── innodb_file_per_table_basic-master.opt │ │ ├── innodb_file_per_table_basic.test │ │ ├── innodb_flush_log_at_timeout_basic.test │ │ ├── innodb_flush_log_at_trx_commit_basic.test │ │ ├── innodb_flush_method_basic.test │ │ ├── innodb_flush_neighbors_basic.test │ │ ├── innodb_flushing_avg_loops_basic.test │ │ ├── innodb_force_load_corrupted_basic.test │ │ ├── innodb_force_recovery_basic.test │ │ ├── innodb_force_recovery_crash_basic.test │ │ ├── innodb_ft_aux_table_basic.test │ │ ├── innodb_ft_cache_size_basic.test │ │ ├── innodb_ft_enable_diag_print_basic.test │ │ ├── innodb_ft_enable_stopword_basic.test │ │ ├── innodb_ft_max_token_size_basic.test │ │ ├── innodb_ft_min_token_size_basic.test │ │ ├── innodb_ft_num_word_optimize_basic.test │ │ ├── innodb_ft_result_cache_limit_basic.test │ │ ├── innodb_ft_server_stopword_table_basic.test │ │ ├── innodb_ft_sort_pll_degree_basic.test │ │ ├── innodb_ft_total_cache_size_basic.test │ │ ├── innodb_ft_user_stopword_table_basic.test │ │ ├── innodb_io_capacity_basic.test │ │ ├── innodb_io_capacity_max_basic.test │ │ ├── innodb_large_prefix_basic.test │ │ ├── innodb_limit_optimistic_insert_debug_basic.test │ │ ├── innodb_lock_wait_timeout_basic.test │ │ ├── innodb_locks_unsafe_for_binlog_basic.test │ │ ├── innodb_log_buffer_size_basic.test │ │ ├── innodb_log_checkpoint_now_basic.test │ │ ├── innodb_log_compressed_pages_basic.test │ │ ├── innodb_log_file_size_basic.test │ │ ├── innodb_log_files_in_group_basic.test │ │ ├── innodb_log_group_home_dir_basic.test │ │ ├── innodb_lru_scan_depth_basic.test │ │ ├── innodb_max_dirty_pages_pct_basic.test │ │ ├── innodb_max_dirty_pages_pct_func.test │ │ ├── innodb_max_dirty_pages_pct_lwm_basic.test │ │ ├── innodb_max_purge_lag_basic.test │ │ ├── innodb_max_purge_lag_delay_basic.test │ │ ├── innodb_mirrored_log_groups_basic.test │ │ ├── innodb_monitor_disable_basic.test │ │ ├── innodb_monitor_enable_basic.test │ │ ├── innodb_monitor_reset_all_basic.test │ │ ├── innodb_monitor_reset_basic.test │ │ ├── innodb_old_blocks_pct_basic.test │ │ ├── innodb_old_blocks_time_basic.test │ │ ├── innodb_online_alter_log_max_size_basic.test │ │ ├── innodb_open_files_basic.test │ │ ├── innodb_optimize_fulltext_only_basic.test │ │ ├── innodb_page_hash_locks_basic.test │ │ ├── innodb_page_size_basic.test │ │ ├── innodb_print_all_deadlocks_basic.test │ │ ├── innodb_purge_batch_size_basic.test │ │ ├── innodb_purge_run_now_basic.test │ │ ├── innodb_purge_stop_now_basic.test │ │ ├── innodb_purge_threads_basic.test │ │ ├── innodb_random_read_ahead_basic.test │ │ ├── innodb_read_ahead_threshold_basic.test │ │ ├── innodb_read_io_threads_basic.test │ │ ├── innodb_read_only_basic.test │ │ ├── innodb_replication_delay_basic.test │ │ ├── innodb_rollback_on_timeout_basic.test │ │ ├── innodb_rollback_segments_basic.test │ │ ├── innodb_saved_page_number_debug_basic.test │ │ ├── innodb_sort_buffer_size_basic.test │ │ ├── innodb_spin_wait_delay_basic.test │ │ ├── innodb_stats_auto_recalc_basic.test │ │ ├── innodb_stats_method_basic.test │ │ ├── innodb_stats_on_metadata_basic.test │ │ ├── innodb_stats_persistent_basic.test │ │ ├── innodb_stats_persistent_sample_pages_basic.test │ │ ├── innodb_stats_sample_pages_basic.test │ │ ├── innodb_stats_transient_sample_pages_basic.test │ │ ├── innodb_status_output_basic.test │ │ ├── innodb_status_output_locks_basic.test │ │ ├── innodb_strict_mode_basic.test │ │ ├── innodb_support_xa_basic.test │ │ ├── innodb_support_xa_func.test │ │ ├── innodb_sync_array_size_basic.test │ │ ├── innodb_sync_spin_loops_basic.test │ │ ├── innodb_table_locks_basic.test │ │ ├── innodb_table_locks_func.test │ │ ├── innodb_thread_concurrency_basic.test │ │ ├── innodb_thread_sleep_delay_basic.test │ │ ├── innodb_trx_purge_view_update_only_debug_basic.test │ │ ├── innodb_trx_rseg_n_slots_debug_basic.test │ │ ├── innodb_undo_directory_basic.test │ │ ├── innodb_undo_logs_basic.test │ │ ├── innodb_undo_tablespaces_basic.test │ │ ├── innodb_use_native_aio_basic.test │ │ ├── innodb_use_sys_malloc_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_32.test │ │ ├── join_buffer_size_basic_64.test │ │ ├── keep_files_on_create_basic.test │ │ ├── key_buffer_size_basic.test │ │ ├── key_buffer_size_func.test │ │ ├── key_cache_age_threshold_basic_32.test │ │ ├── key_cache_age_threshold_basic_64.test │ │ ├── key_cache_block_size_basic.test │ │ ├── key_cache_division_limit_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_bin_basename_basic.test │ │ ├── log_bin_basic.test │ │ ├── log_bin_index_basic.test │ │ ├── log_bin_trust_function_creators_basic.test │ │ ├── log_bin_trust_function_creators_func.test │ │ ├── log_bin_use_v1_row_events_basic.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_admin_statements_basic.test │ │ ├── log_slow_admin_statements_func.test │ │ ├── log_slow_slave_statements_basic.test │ │ ├── log_throttle_queries_not_using_indexes_basic.test │ │ ├── log_warnings_basic_32.test │ │ ├── log_warnings_basic_64.test │ │ ├── long_query_time_basic.test │ │ ├── low_priority_updates_basic.test │ │ ├── lower_case_file_system_basic.test │ │ ├── lower_case_table_names_basic.test │ │ ├── master_info_repository_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_32.test │ │ ├── max_connect_errors_basic_64.test │ │ ├── max_connections_basic.test │ │ ├── max_delayed_threads_basic.test │ │ ├── max_digest_length_basic-master.opt │ │ ├── max_digest_length_basic.test │ │ ├── max_error_count_basic.test │ │ ├── max_heap_table_size_basic.test │ │ ├── max_insert_delayed_threads_basic.test │ │ ├── max_join_size_basic.test │ │ ├── max_join_size_func.test │ │ ├── max_length_for_sort_data_basic.test │ │ ├── max_prepared_stmt_count_basic.test │ │ ├── max_prepared_stmt_count_func.test │ │ ├── max_relay_log_size_basic.test │ │ ├── max_seeks_for_key_basic_32.test │ │ ├── max_seeks_for_key_basic_64.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-master.opt │ │ ├── max_sp_recursion_depth_func.test │ │ ├── max_tmp_tables_basic_32.test │ │ ├── max_tmp_tables_basic_64.test │ │ ├── max_user_connections_basic.test │ │ ├── max_user_connections_func.test │ │ ├── max_write_lock_count_basic_32.test │ │ ├── max_write_lock_count_basic_64.test │ │ ├── maximum_basic-master.opt │ │ ├── maximum_basic.test │ │ ├── metadata_locks_cache_size_basic-master.opt │ │ ├── metadata_locks_cache_size_basic.test │ │ ├── metadata_locks_hash_instances_basic.test │ │ ├── min_examined_row_limit_basic_32.test │ │ ├── min_examined_row_limit_basic_64.test │ │ ├── multi_range_count_basic_32.test │ │ ├── multi_range_count_basic_64.test │ │ ├── myisam_data_pointer_size_basic.test │ │ ├── myisam_data_pointer_size_func.test │ │ ├── myisam_max_sort_file_size_basic_32.test │ │ ├── myisam_max_sort_file_size_basic_64.test │ │ ├── myisam_mmap_size_basic.test │ │ ├── myisam_recover_options_basic.test │ │ ├── myisam_repair_threads_basic_32.test │ │ ├── myisam_repair_threads_basic_64.test │ │ ├── myisam_sort_buffer_size_basic_32.test │ │ ├── myisam_sort_buffer_size_basic_64.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_32.test │ │ ├── net_retry_count_basic_64.test │ │ ├── net_write_timeout_basic.test │ │ ├── new_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_trace_basic.test │ │ ├── optimizer_trace_features_basic.test │ │ ├── optimizer_trace_limit_basic.test │ │ ├── optimizer_trace_max_mem_size_basic.test │ │ ├── optimizer_trace_offset_basic.test │ │ ├── optimizer_trace_offset_max-master.opt │ │ ├── optimizer_trace_offset_max.test │ │ ├── performance_schema_basic-master.opt │ │ ├── performance_schema_basic.test │ │ ├── pfs_accounts_size_basic-master.opt │ │ ├── pfs_accounts_size_basic.test │ │ ├── pfs_digests_size_basic-master.opt │ │ ├── pfs_digests_size_basic.test │ │ ├── pfs_events_stages_h_size_basic-master.opt │ │ ├── pfs_events_stages_h_size_basic.test │ │ ├── pfs_events_stages_hl_size_basic-master.opt │ │ ├── pfs_events_stages_hl_size_basic.test │ │ ├── pfs_events_statements_h_size_basic-master.opt │ │ ├── pfs_events_statements_h_size_basic.test │ │ ├── pfs_events_statements_hl_size_basic-master.opt │ │ ├── pfs_events_statements_hl_size_basic.test │ │ ├── pfs_events_waits_h_size_basic-master.opt │ │ ├── pfs_events_waits_h_size_basic.test │ │ ├── pfs_events_waits_hl_size_basic-master.opt │ │ ├── pfs_events_waits_hl_size_basic.test │ │ ├── pfs_hosts_size_basic-master.opt │ │ ├── pfs_hosts_size_basic.test │ │ ├── pfs_max_cond_classes_basic-master.opt │ │ ├── pfs_max_cond_classes_basic.test │ │ ├── pfs_max_cond_instances_basic-master.opt │ │ ├── pfs_max_cond_instances_basic.test │ │ ├── pfs_max_digest_length_basic-master.opt │ │ ├── pfs_max_digest_length_basic.test │ │ ├── pfs_max_file_classes_basic-master.opt │ │ ├── pfs_max_file_classes_basic.test │ │ ├── pfs_max_file_handles_basic-master.opt │ │ ├── pfs_max_file_handles_basic.test │ │ ├── pfs_max_file_instances_basic-master.opt │ │ ├── pfs_max_file_instances_basic.test │ │ ├── pfs_max_mutex_classes_basic-master.opt │ │ ├── pfs_max_mutex_classes_basic.test │ │ ├── pfs_max_mutex_instances_basic-master.opt │ │ ├── pfs_max_mutex_instances_basic.test │ │ ├── pfs_max_rwlock_classes_basic-master.opt │ │ ├── pfs_max_rwlock_classes_basic.test │ │ ├── pfs_max_rwlock_instances_basic-master.opt │ │ ├── pfs_max_rwlock_instances_basic.test │ │ ├── pfs_max_socket_classes_basic-master.opt │ │ ├── pfs_max_socket_classes_basic.test │ │ ├── pfs_max_socket_instances_basic-master.opt │ │ ├── pfs_max_socket_instances_basic.test │ │ ├── pfs_max_stage_classes_basic-master.opt │ │ ├── pfs_max_stage_classes_basic.test │ │ ├── pfs_max_statement_classes_basic-master.opt │ │ ├── pfs_max_statement_classes_basic.test │ │ ├── pfs_max_table_handles_basic-master.opt │ │ ├── pfs_max_table_handles_basic.test │ │ ├── pfs_max_table_instances_basic-master.opt │ │ ├── pfs_max_table_instances_basic.test │ │ ├── pfs_max_thread_classes_basic-master.opt │ │ ├── pfs_max_thread_classes_basic.test │ │ ├── pfs_max_thread_instances_basic-master.opt │ │ ├── pfs_max_thread_instances_basic.test │ │ ├── pfs_session_connect_attrs_size_basic-master.opt │ │ ├── pfs_session_connect_attrs_size_basic.test │ │ ├── pfs_setup_actors_size_basic-master.opt │ │ ├── pfs_setup_actors_size_basic.test │ │ ├── pfs_setup_objects_size_basic-master.opt │ │ ├── pfs_setup_objects_size_basic.test │ │ ├── pfs_users_size_basic-master.opt │ │ ├── pfs_users_size_basic.test │ │ ├── pid_file_basic.test │ │ ├── plugin_dir_basic-master.opt │ │ ├── plugin_dir_basic.test │ │ ├── port_basic.test │ │ ├── preload_buffer_size_basic.test │ │ ├── profiling_basic.test │ │ ├── profiling_h_size_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_32.test │ │ ├── query_alloc_block_size_basic_64.test │ │ ├── query_cache_limit_basic_32.test │ │ ├── query_cache_limit_basic_64.test │ │ ├── query_cache_limit_func-master.opt │ │ ├── query_cache_limit_func.test │ │ ├── query_cache_min_res_unit_basic_32.test │ │ ├── query_cache_min_res_unit_basic_64.test │ │ ├── query_cache_size_basic_32.test │ │ ├── query_cache_size_basic_64.test │ │ ├── query_cache_type_basic-master.opt │ │ ├── query_cache_type_basic.test │ │ ├── query_cache_type_func-master.opt │ │ ├── query_cache_type_func.test │ │ ├── query_cache_wlock_invalidate_basic.test │ │ ├── query_cache_wlock_invalidate_func-master.opt │ │ ├── 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_32.test │ │ ├── range_alloc_block_size_basic_64.test │ │ ├── read_buffer_size_basic.test │ │ ├── read_only_basic.test │ │ ├── read_only_func.test │ │ ├── read_rnd_buffer_size_basic.test │ │ ├── relay_log_basename_basic.test │ │ ├── relay_log_basic.test │ │ ├── relay_log_index_basic.test │ │ ├── relay_log_info_file_basic.test │ │ ├── relay_log_info_repository_basic.test │ │ ├── relay_log_purge_basic.test │ │ ├── relay_log_recovery_basic.test │ │ ├── relay_log_space_limit_basic.test │ │ ├── report_host_basic.test │ │ ├── report_password_basic.test │ │ ├── report_port_basic.test │ │ ├── report_user_basic.test │ │ ├── rpl_init_slave_func.test │ │ ├── rpl_max_binlog_size_func-master.opt │ │ ├── rpl_max_binlog_size_func.test │ │ ├── rpl_semi_sync_master_enabled_basic-master.opt │ │ ├── rpl_semi_sync_master_enabled_basic.test │ │ ├── rpl_semi_sync_master_timeout_basic-master.opt │ │ ├── rpl_semi_sync_master_timeout_basic.test │ │ ├── rpl_semi_sync_master_trace_level_basic-master.opt │ │ ├── rpl_semi_sync_master_trace_level_basic.test │ │ ├── rpl_semi_sync_master_wait_no_slave_basic-master.opt │ │ ├── rpl_semi_sync_master_wait_no_slave_basic.test │ │ ├── rpl_semi_sync_slave_enabled_basic-master.opt │ │ ├── rpl_semi_sync_slave_enabled_basic.test │ │ ├── rpl_semi_sync_slave_trace_level_basic-master.opt │ │ ├── rpl_semi_sync_slave_trace_level_basic.test │ │ ├── rpl_stop_slave_timeout_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 │ │ ├── server_id_bits_basic.test │ │ ├── server_uuid_basic.test │ │ ├── sha256_password_private_key_path_basic.test │ │ ├── sha256_password_public_key_path_basic.test │ │ ├── shared_memory_base_name_basic.test │ │ ├── shared_memory_basic.test │ │ ├── show_old_temporals_basic.test │ │ ├── simplified_binlog_gtid_recovery_basic.test │ │ ├── skip_external_locking_basic.test │ │ ├── skip_name_resolve_basic-master.opt │ │ ├── skip_name_resolve_basic.test │ │ ├── skip_networking_basic.test │ │ ├── skip_show_database_basic.test │ │ ├── slave_allow_batching_basic.test │ │ ├── slave_checkpoint_group_basic.test │ │ ├── slave_checkpoint_period_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_parallel_workers_basic.test │ │ ├── slave_pending_jobs_size_max_basic.test │ │ ├── slave_rows_search_algorithms_basic.test │ │ ├── slave_skip_errors_basic.test │ │ ├── slave_sql_verify_checksum_basic.test │ │ ├── slave_transaction_retries_basic_32.test │ │ ├── slave_transaction_retries_basic_64.test │ │ ├── slave_type_conversions_basic.test │ │ ├── slow_launch_time_basic.test │ │ ├── slow_launch_time_func-master.opt │ │ ├── slow_launch_time_func.test │ │ ├── slow_query_log_basic.test │ │ ├── slow_query_log_file_basic-master.opt │ │ ├── slow_query_log_file_basic.test │ │ ├── slow_query_log_file_func-master.opt │ │ ├── slow_query_log_file_func.test │ │ ├── slow_query_log_func.test │ │ ├── socket_basic.test │ │ ├── sort_buffer_size_basic_32.test │ │ ├── sort_buffer_size_basic_64.test │ │ ├── sql_auto_is_null_basic.test │ │ ├── sql_big_selects_basic.test │ │ ├── sql_big_selects_func.test │ │ ├── sql_buffer_result_basic.test │ │ ├── sql_buffer_result_func.test │ │ ├── sql_log_bin_basic.test │ │ ├── sql_log_off_basic.test │ │ ├── sql_log_off_func.test │ │ ├── sql_low_priority_updates_func.test │ │ ├── sql_mode_basic.test │ │ ├── sql_mode_func.test │ │ ├── sql_notes_basic.test │ │ ├── sql_notes_func.test │ │ ├── sql_quote_show_create_basic.test │ │ ├── sql_quote_show_create_func.test │ │ ├── sql_safe_updates_basic.test │ │ ├── sql_safe_updates_func.test │ │ ├── sql_select_limit_basic.test │ │ ├── sql_select_limit_func.test │ │ ├── sql_slave_skip_counter_basic.test │ │ ├── sql_warnings_basic.test │ │ ├── sql_warnings_func.test │ │ ├── ssl_ca_basic.test │ │ ├── ssl_capath_basic.test │ │ ├── ssl_cert_basic.test │ │ ├── ssl_cipher_basic.test │ │ ├── ssl_crl_basic.test │ │ ├── ssl_crlpath_basic.test │ │ ├── ssl_key_basic.test │ │ ├── storage_engine_basic-master.opt │ │ ├── storage_engine_basic.test │ │ ├── stored_program_cache_basic.test │ │ ├── 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 │ │ ├── table_open_cache_instances_basic.test │ │ ├── thread_cache_size_basic.test │ │ ├── thread_cache_size_func-master.opt │ │ ├── thread_cache_size_func.test │ │ ├── thread_concurrency_basic.test │ │ ├── thread_handling_basic.test │ │ ├── thread_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_allow_batching_basic.test │ │ ├── transaction_prealloc_size_basic.test │ │ ├── tx_isolation_basic.test │ │ ├── tx_isolation_func-master.opt │ │ ├── tx_isolation_func.test │ │ ├── tx_read_only_basic.test │ │ ├── unique_checks_basic.test │ │ ├── updatable_views_with_limit_basic.test │ │ ├── updatable_views_with_limit_func.test │ │ ├── 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 ├── t │ ├── 1st.test │ ├── alias.test │ ├── almost_full.test │ ├── alter_table-big.test │ ├── alter_table.test │ ├── analyze.test │ ├── ansi.test │ ├── archive-big.test │ ├── archive.test │ ├── archive_bitfield.test │ ├── archive_debug.test │ ├── archive_gis.test │ ├── archive_no_symlink-master.opt │ ├── archive_no_symlink.test │ ├── archive_plugin-master.opt │ ├── archive_plugin.test │ ├── archive_symlink.test │ ├── audit_plugin-master.opt │ ├── audit_plugin.test │ ├── auth_rpl-master.opt │ ├── auth_rpl-slave.opt │ ├── auth_rpl.test │ ├── auto_increment.test │ ├── bench_count_distinct.test │ ├── bigint.test │ ├── binary.test │ ├── blackhole.test │ ├── blackhole_plugin-master.opt │ ├── blackhole_plugin.test │ ├── bool.test │ ├── bootstrap-master.opt │ ├── bootstrap.test │ ├── bug12427262.test │ ├── bug12969156-master.opt │ ├── bug12969156.test │ ├── bug17076131-master.opt │ ├── bug17076131.test │ ├── bug33509-master.opt │ ├── bug33509.test │ ├── bug39022.test │ ├── bug46080-master.opt │ ├── bug46080.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-master.opt │ ├── cache_innodb.test │ ├── case.test │ ├── cast.test │ ├── change_user-master.opt │ ├── change_user.test │ ├── check.test │ ├── check_auto_permission.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.test │ ├── consistent_snapshot.test │ ├── constraints.test │ ├── count_distinct.test │ ├── count_distinct2-master.opt │ ├── count_distinct2.test │ ├── count_distinct3.test │ ├── create-big.test │ ├── create.test │ ├── create_not_windows.test │ ├── create_select_tmp.test │ ├── csv.test │ ├── csv_alter_table.test │ ├── csv_not_null.test │ ├── ctype_ascii.test │ ├── ctype_big5.test │ ├── ctype_binary.test │ ├── ctype_collate.test │ ├── ctype_cp1250_ch.test │ ├── ctype_cp1251.test │ ├── ctype_cp932.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_ujis.test │ ├── ctype_ujis_ucs2.test │ ├── ctype_utf16.test │ ├── ctype_utf16_def-master.opt │ ├── ctype_utf16_def.test │ ├── ctype_utf16_uca.test │ ├── ctype_utf16le.test │ ├── ctype_utf32.test │ ├── ctype_utf32_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 │ ├── ctype_utf8mb4_uca.test │ ├── date_formats-master.opt │ ├── date_formats.test │ ├── ddl_i18n_koi8r.test │ ├── ddl_i18n_utf8.test │ ├── deadlock_innodb.test │ ├── debug_sync.test │ ├── debug_sync2-master.opt │ ├── debug_sync2.test │ ├── default.test │ ├── delayed.test │ ├── delete.test │ ├── deprecated_features.test │ ├── derived.test │ ├── dirty_close.test │ ├── disabled.def │ ├── disabled_replication-master.opt │ ├── disabled_replication.test │ ├── disconnect_on_expired_password_default.test │ ├── disconnect_on_expired_password_off-master.opt │ ├── disconnect_on_expired_password_off.test │ ├── distinct.test │ ├── drop-no_root.test │ ├── drop.test │ ├── drop_debug.test │ ├── ds_mrr-big.test │ ├── dynamic_tracing.test │ ├── empty_table.test │ ├── endspace.test │ ├── eq_range_idx_stat.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 │ ├── explain_json_all.test │ ├── explain_json_none.test │ ├── file_contents.test │ ├── filesort_debug.test │ ├── fix_priv_tables.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_distinct.test │ ├── fulltext_left_join.test │ ├── fulltext_multi.test │ ├── fulltext_order_by.test │ ├── fulltext_plugin-master.opt │ ├── fulltext_plugin.test │ ├── fulltext_update.test │ ├── fulltext_var.test │ ├── func_aes.test │ ├── func_aes_cfb1.test │ ├── func_aes_cfb128.test │ ├── func_aes_cfb8.test │ ├── func_aes_misc.test │ ├── func_aes_ofb.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_group_innodb_16k.test │ ├── func_if.test │ ├── func_in_all.test │ ├── func_in_icp.test │ ├── func_in_icp_mrr.test │ ├── func_in_mrr.test │ ├── func_in_mrr_cost.test │ ├── func_in_none.test │ ├── func_isnull.test │ ├── func_like.test │ ├── func_math.test │ ├── func_misc-master.opt │ ├── 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_timestamp.test │ ├── func_weight_string.test │ ├── function_defaults.test │ ├── function_defaults_notembedded.test │ ├── gcc296.test │ ├── get_diagnostics.test │ ├── gis-debug.test │ ├── gis-precise.test │ ├── gis-rt-precise.test │ ├── gis-rtree.test │ ├── gis.test │ ├── grant.test │ ├── grant2.test │ ├── grant3-master.opt │ ├── grant3.test │ ├── grant4.test │ ├── grant_cache-master.opt │ ├── grant_cache.test │ ├── grant_explain_non_select.test │ ├── grant_lowercase_fs.test │ ├── greedy_optimizer.test │ ├── greedy_search.test │ ├── group_by.test │ ├── group_min_max.test │ ├── group_min_max_innodb.test │ ├── handler_innodb.test │ ├── handler_myisam.test │ ├── handler_read_last.test │ ├── having.test │ ├── heap.test │ ├── heap_auto_increment.test │ ├── heap_btree.test │ ├── heap_hash.test │ ├── help.test │ ├── host_cache_size_functionality.test │ ├── implicit_char_to_num_conversion.test │ ├── implicit_commit-master.opt │ ├── implicit_commit.test │ ├── index_merge_delete.test │ ├── index_merge_innodb.test │ ├── index_merge_insert-and-replace.test │ ├── index_merge_intersect_dml.test │ ├── index_merge_myisam.test │ ├── index_merge_update.test │ ├── information_schema-big.test │ ├── information_schema.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_file-master.opt │ ├── init_file.test │ ├── innodb_explain_json_non_select_all.test │ ├── innodb_explain_json_non_select_none.test │ ├── innodb_explain_non_select_all.test │ ├── innodb_explain_non_select_none.test │ ├── innodb_icp.test │ ├── innodb_icp_all.test │ ├── innodb_icp_none.test │ ├── innodb_ignore_builtin-master.opt │ ├── innodb_ignore_builtin.test │ ├── innodb_log_file_size_functionality.test │ ├── innodb_mrr-master.opt │ ├── innodb_mrr.test │ ├── innodb_mrr_all-master.opt │ ├── innodb_mrr_all.test │ ├── innodb_mrr_cost-master.opt │ ├── innodb_mrr_cost.test │ ├── innodb_mrr_cost_all-master.opt │ ├── innodb_mrr_cost_all.test │ ├── innodb_mrr_cost_icp-master.opt │ ├── innodb_mrr_cost_icp.test │ ├── innodb_mrr_icp-master.opt │ ├── innodb_mrr_icp.test │ ├── innodb_mrr_none-master.opt │ ├── innodb_mrr_none.test │ ├── innodb_mysql_lock-master.opt │ ├── innodb_mysql_lock.test │ ├── innodb_mysql_lock2.test │ ├── innodb_mysql_sync.test │ ├── innodb_pk_extension_off.test │ ├── innodb_pk_extension_on.test │ ├── innodb_recovery_with_upper_case_names-master.opt │ ├── innodb_recovery_with_upper_case_names.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_bka.test │ ├── join_cache_bka_nixbnl.test │ ├── join_cache_bkaunique.test │ ├── join_cache_bnl.test │ ├── join_cache_nojb.test │ ├── join_crash.test │ ├── join_nested.test │ ├── join_nested_bka.test │ ├── join_nested_bka_nixbnl.test │ ├── join_outer.test │ ├── join_outer_bka.test │ ├── join_outer_bka_nixbnl.test │ ├── join_outer_innodb.test │ ├── key.test │ ├── key_cache-master.opt │ ├── key_cache.test │ ├── key_diff.test │ ├── key_primary.test │ ├── keywords.test │ ├── kill.test │ ├── kill_debug.test │ ├── limit.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_empty_name.opt │ ├── log_empty_name.test │ ├── log_errchk.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 │ ├── main.lowercase_table_qcache-master.opt │ ├── mdl_sync-master.opt │ ├── mdl_sync.test │ ├── merge-big.test │ ├── merge.test │ ├── merge_innodb.test │ ├── merge_mmap-master.opt │ ├── merge_mmap.test │ ├── metadata.test │ ├── mix2_myisam-master.opt │ ├── mix2_myisam.test │ ├── mix2_myisam_ucs2.test │ ├── multi_plugin_load-master.opt │ ├── multi_plugin_load.test │ ├── multi_plugin_load_add-master.opt │ ├── multi_plugin_load_add.test │ ├── multi_plugin_load_add2-master.opt │ ├── multi_plugin_load_add2.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-blob-master.opt │ ├── myisam-blob.test │ ├── myisam-system.test │ ├── myisam.test │ ├── myisam_crash_before_flush_keys-master.opt │ ├── myisam_crash_before_flush_keys.test │ ├── myisam_debug.test │ ├── myisam_explain_json_non_select_all.test │ ├── myisam_explain_json_non_select_none.test │ ├── myisam_explain_non_select_all.test │ ├── myisam_explain_non_select_none.test │ ├── myisam_icp.test │ ├── myisam_icp_all.test │ ├── myisam_icp_none.test │ ├── myisam_mrr.test │ ├── myisam_mrr_all.test │ ├── myisam_mrr_cost.test │ ├── myisam_mrr_cost_all.test │ ├── myisam_mrr_cost_icp.test │ ├── myisam_mrr_icp.test │ ├── myisam_mrr_none.test │ ├── myisam_recover-master.opt │ ├── myisam_recover.test │ ├── myisam_row_rpl-master.opt │ ├── myisam_row_rpl-slave.opt │ ├── myisam_row_rpl.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_embedded.cnf │ ├── mysql_client_test_embedded.test │ ├── mysql_comments.sql │ ├── mysql_comments.test │ ├── mysql_config_editor.test │ ├── mysql_cp932.test │ ├── mysql_delimiter.sql │ ├── mysql_delimiter_19799.sql │ ├── mysql_delimiter_source.sql │ ├── mysql_embedded-master.opt │ ├── mysql_embedded.test │ ├── mysql_embedded_client_test.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-master.opt │ ├── mysqlbinlog.test │ ├── mysqlbinlog_debug.test │ ├── mysqlbinlog_mixed_or_statment.test │ ├── mysqlbinlog_raw_mode.test │ ├── mysqlbinlog_raw_mode_win.test │ ├── mysqlbinlog_row_big.test │ ├── mysqlcheck.test │ ├── mysqld--defaults-file.test │ ├── mysqld--help-notwin.test │ ├── mysqld--help-win.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_archive.test │ ├── mysqlhotcopy_myisam.test │ ├── mysqlimport.test │ ├── mysqlshow.test │ ├── mysqlslap.test │ ├── mysqltest.test │ ├── named_pipe-master.opt │ ├── named_pipe.test │ ├── negation_elimination.test │ ├── no-threads-master.opt │ ├── no-threads.test │ ├── no_binlog.test │ ├── not_embedded_server-master.opt │ ├── not_embedded_server.test │ ├── not_partition.test │ ├── null.test │ ├── null_key_all.test │ ├── null_key_icp.test │ ├── null_key_none.test │ ├── odbc.test │ ├── olap.test │ ├── openssl_1.test │ ├── optimizer_bug12837084.test │ ├── optimizer_debug_sync.test │ ├── optimizer_switch.test │ ├── order_by_all.test │ ├── order_by_icp_mrr.test │ ├── order_by_none.test │ ├── order_by_sortkey.test │ ├── order_fill_sortbuf-master.opt │ ├── 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.test │ ├── partition_archive.test │ ├── partition_binlog.test │ ├── partition_binlog_stmt.test │ ├── partition_blackhole.test │ ├── partition_bug18198.test │ ├── partition_cache-master.opt │ ├── partition_cache.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_exchange.test │ ├── partition_explicit_prune.test │ ├── partition_federated.test │ ├── partition_grant.test │ ├── partition_hash.test │ ├── partition_index_innodb.test │ ├── partition_index_myisam.test │ ├── partition_innodb.test │ ├── partition_innodb_plugin.test │ ├── partition_innodb_semi_consistent-master.opt │ ├── partition_innodb_semi_consistent.test │ ├── partition_innodb_stmt.test │ ├── partition_innodb_tablespace.test │ ├── partition_key_cache.test │ ├── partition_list.test │ ├── partition_locking.test │ ├── partition_locking_4.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-master.opt │ ├── plugin.test │ ├── plugin_auth-master.opt │ ├── plugin_auth.test │ ├── plugin_auth_qa-master.opt │ ├── plugin_auth_qa.test │ ├── plugin_auth_qa_1-master.opt │ ├── 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_auth_sha256-master.opt │ ├── plugin_auth_sha256.test │ ├── plugin_auth_sha256_2-master.opt │ ├── plugin_auth_sha256_2.test │ ├── plugin_auth_sha256_server_default-master.opt │ ├── plugin_auth_sha256_server_default.test │ ├── plugin_auth_sha256_server_default_tls-master.opt │ ├── plugin_auth_sha256_server_default_tls.test │ ├── plugin_auth_sha256_tls.test │ ├── plugin_load-master.opt │ ├── plugin_load.test │ ├── plugin_load_option-master.opt │ ├── plugin_load_option.test │ ├── plugin_not_embedded-master.opt │ ├── plugin_not_embedded.test │ ├── preload.test │ ├── profiling.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-master.opt │ ├── query_cache.test │ ├── query_cache_28249-master.opt │ ├── query_cache_28249.test │ ├── query_cache_debug-master.opt │ ├── query_cache_debug.test │ ├── query_cache_disabled-master.opt │ ├── query_cache_disabled.test │ ├── query_cache_merge-master.opt │ ├── query_cache_merge.test │ ├── query_cache_notembedded-master.opt │ ├── query_cache_notembedded.test │ ├── query_cache_ps_no_prot-master.opt │ ├── query_cache_ps_no_prot.test │ ├── query_cache_ps_ps_prot-master.opt │ ├── query_cache_ps_ps_prot.test │ ├── query_cache_size_functionality.test │ ├── query_cache_type_functionality.test │ ├── query_cache_with_views-master.opt │ ├── query_cache_with_views.test │ ├── range_all.test │ ├── range_icp.test │ ├── range_icp_mrr.test │ ├── range_mrr.test │ ├── range_mrr_cost.test │ ├── range_none.test │ ├── read_many_rows_innodb.test │ ├── read_only.test │ ├── read_only_innodb.test │ ├── rename.test │ ├── renamedb.test │ ├── repair.test │ ├── replace.test │ ├── rewrite_general_log.test │ ├── rewrite_slow_log.test │ ├── rollback.test │ ├── round.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_all.test │ ├── select_all_bka.test │ ├── select_all_bka_nixbnl.test │ ├── select_found.test │ ├── select_icp_mrr.test │ ├── select_icp_mrr_bka.test │ ├── select_icp_mrr_bka_nixbnl.test │ ├── select_none.test │ ├── select_none_bka.test │ ├── select_none_bka_nixbnl.test │ ├── select_safe.test │ ├── server_uuid.test │ ├── server_uuid_embedded.test │ ├── shm-master.opt │ ├── shm.test │ ├── show_check-master.opt │ ├── show_check.test │ ├── show_processlist.test │ ├── show_profile.test │ ├── signal.test │ ├── signal_code.test │ ├── signal_demo1.test │ ├── signal_demo2.test │ ├── signal_demo3-master.opt │ ├── 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 │ ├── sort_buffer_size_functionality.test │ ├── sp-big.test │ ├── sp-bugs.test │ ├── sp-code.test │ ├── sp-destruct.test │ ├── sp-dynamic.test │ ├── sp-error.test │ ├── sp-fib-master.opt │ ├── sp-fib.test │ ├── sp-lock-master.opt │ ├── sp-lock.test │ ├── sp-master.opt │ ├── sp-no-code.test │ ├── sp-prelocking-master.opt │ ├── sp-prelocking.test │ ├── sp-security.test │ ├── sp-threads.test │ ├── sp-ucs2.test │ ├── sp-vars.test │ ├── sp.test │ ├── sp_gis.test │ ├── sp_notembedded-master.opt │ ├── sp_notembedded.test │ ├── sp_stress_case.test │ ├── sp_sync.test │ ├── sp_trans.test │ ├── sp_trans_log.test │ ├── sp_validation.test │ ├── sql_mode.test │ ├── ssl-big.test │ ├── ssl-sha512-master.opt │ ├── ssl-sha512.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 │ ├── ssl_crl-master.opt │ ├── ssl_crl.test │ ├── ssl_crl_clients-master.opt │ ├── ssl_crl_clients.test │ ├── ssl_crl_clients_valid-master.opt │ ├── ssl_crl_clients_valid.test │ ├── ssl_crl_crlpath-master.opt │ ├── ssl_crl_crlpath.test │ ├── status-master.opt │ ├── status.test │ ├── status2.test │ ├── status_bug17954.test │ ├── status_debug.test │ ├── strict-master.opt │ ├── strict.test │ ├── strict_autoinc_1myisam.test │ ├── strict_autoinc_2innodb.test │ ├── strict_autoinc_3heap.test │ ├── subquery_all.test │ ├── subquery_all_bka.test │ ├── subquery_all_bka_nixbnl.test │ ├── subquery_mat.test │ ├── subquery_mat_all.test │ ├── subquery_mat_none.test │ ├── subquery_nomat_nosj.test │ ├── subquery_nomat_nosj_bka.test │ ├── subquery_nomat_nosj_bka_nixbnl.test │ ├── subquery_none.test │ ├── subquery_none_bka.test │ ├── subquery_none_bka_nixbnl.test │ ├── subquery_sj_all-master.opt │ ├── subquery_sj_all.test │ ├── subquery_sj_all_bka-master.opt │ ├── subquery_sj_all_bka.test │ ├── subquery_sj_all_bka_nixbnl-master.opt │ ├── subquery_sj_all_bka_nixbnl.test │ ├── subquery_sj_all_bkaunique-master.opt │ ├── subquery_sj_all_bkaunique.test │ ├── subquery_sj_dupsweed-master.opt │ ├── subquery_sj_dupsweed.test │ ├── subquery_sj_dupsweed_bka-master.opt │ ├── subquery_sj_dupsweed_bka.test │ ├── subquery_sj_dupsweed_bka_nixbnl-master.opt │ ├── subquery_sj_dupsweed_bka_nixbnl.test │ ├── subquery_sj_dupsweed_bkaunique-master.opt │ ├── subquery_sj_dupsweed_bkaunique.test │ ├── subquery_sj_firstmatch-master.opt │ ├── subquery_sj_firstmatch.test │ ├── subquery_sj_firstmatch_bka-master.opt │ ├── subquery_sj_firstmatch_bka.test │ ├── subquery_sj_firstmatch_bka_nixbnl.test │ ├── subquery_sj_firstmatch_bkaunique.test │ ├── subquery_sj_innodb_all.test │ ├── subquery_sj_innodb_all_bka.test │ ├── subquery_sj_innodb_all_bka_nixbnl.test │ ├── subquery_sj_innodb_all_bkaunique.test │ ├── subquery_sj_innodb_none.test │ ├── subquery_sj_innodb_none_bka.test │ ├── subquery_sj_innodb_none_bka_nixbnl.test │ ├── subquery_sj_innodb_none_bkaunique.test │ ├── subquery_sj_loosescan.test │ ├── subquery_sj_loosescan_bka.test │ ├── subquery_sj_loosescan_bka_nixbnl.test │ ├── subquery_sj_loosescan_bkaunique.test │ ├── subquery_sj_mat.test │ ├── subquery_sj_mat_bka.test │ ├── subquery_sj_mat_bka_nixbnl.test │ ├── subquery_sj_mat_bkaunique.test │ ├── subquery_sj_mat_nosj.test │ ├── subquery_sj_none.test │ ├── subquery_sj_none_bka.test │ ├── subquery_sj_none_bka_nixbnl.test │ ├── subquery_sj_none_bkaunique.test │ ├── subselect_debug.test │ ├── subselect_gis.test │ ├── subselect_innodb.test │ ├── subselect_notembedded-master.opt │ ├── subselect_notembedded.test │ ├── sum_distinct-big.test │ ├── sum_distinct.test │ ├── symlink.test │ ├── symlink_windows.test │ ├── synchronization.test │ ├── sysdate_is_now-master.opt │ ├── sysdate_is_now.test │ ├── system_mysql_db.test │ ├── system_mysql_db_fix30020-master.opt │ ├── system_mysql_db_fix40123-master.opt │ ├── system_mysql_db_fix40123.test │ ├── system_mysql_db_fix50030-master.opt │ ├── system_mysql_db_fix50030.test │ ├── system_mysql_db_fix50117-master.opt │ ├── system_mysql_db_fix50117.test │ ├── system_mysql_db_refs.test │ ├── table_definition_cache_functionality.test │ ├── table_open_cache_functionality.test │ ├── tablelock.test │ ├── tablespace.test │ ├── temp_pool-master.opt │ ├── temp_pool.test │ ├── temp_table-master.opt │ ├── temp_table.test │ ├── temporal_literal.test │ ├── timezone-master.opt │ ├── timezone.test │ ├── timezone2.test │ ├── timezone3-master.opt │ ├── timezone3.test │ ├── timezone4-master.opt │ ├── timezone4.test │ ├── timezone_grant.test │ ├── trans_read_only-master.opt │ ├── trans_read_only.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_decimal.test │ ├── type_enum.test │ ├── type_float.test │ ├── type_nchar.test │ ├── type_newdecimal-big.test │ ├── type_newdecimal.test │ ├── type_ranges.test │ ├── type_set.test │ ├── type_temporal_fractional.test │ ├── type_temporal_upgrade.test │ ├── type_time.test │ ├── type_timestamp-master.opt │ ├── type_timestamp.test │ ├── type_timestamp_explicit-master.opt │ ├── type_timestamp_explicit.test │ ├── type_uint.test │ ├── type_varchar.test │ ├── type_year.test │ ├── udf-master.opt │ ├── udf.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 │ ├── upgrade.test │ ├── user_limits.test │ ├── user_var-binlog.test │ ├── user_var.test │ ├── validate_password_plugin-master.opt │ ├── validate_password_plugin.test │ ├── varbinary.test │ ├── variables-big.test │ ├── variables-master.opt │ ├── variables-notembedded-master.opt │ ├── variables-notembedded.test │ ├── variables.test │ ├── variables_community.test │ ├── variables_debug.test │ ├── view.test │ ├── view_alias.test │ ├── view_grant.test │ ├── wait_timeout.test │ ├── warnings-master.opt │ ├── warnings.test │ ├── warnings_engine_disabled.test │ ├── windows.test │ ├── wl4435_generated.inc │ ├── wl6219-csv.test │ ├── wl6219-innodb.test │ ├── wl6219-memory.test │ ├── wl6219-merge.test │ ├── wl6219-myisam.test │ ├── wl6219-upgrade.test │ ├── wl6301_1_not_windows-master.opt │ ├── wl6301_1_not_windows.test │ ├── wl6301_2_not_windows-master.opt │ ├── wl6301_2_not_windows.test │ ├── wl6301_3-master.opt │ ├── wl6301_3.test │ ├── wl6443_deprecation-master.opt │ ├── wl6443_deprecation.test │ ├── xa.test │ └── xml.test └── valgrind.supp ├── mysys ├── CMakeLists.txt ├── ChangeLog ├── array.c ├── base64.c ├── charset-def.c ├── charset.c ├── checksum.c ├── errors.c ├── hash.c ├── lf_alloc-pin.c ├── lf_dynarray.c ├── lf_hash.c ├── list.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_alarm.c ├── my_alloc.c ├── my_atomic.c ├── my_bit.c ├── my_bitmap.c ├── my_chsize.c ├── my_compare.c ├── my_compress.c ├── my_conio.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_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_once.c ├── my_open.c ├── my_pread.c ├── my_pthread.c ├── my_quick.c ├── my_rdtsc.c ├── my_read.c ├── my_redel.c ├── my_rename.c ├── 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_wincond.c ├── my_windac.c ├── my_winerr.c ├── my_winfile.c ├── my_winthread.c ├── my_write.c ├── mysys_priv.h ├── psi_noop.c ├── ptr_cmp.c ├── queues.c ├── stacktrace.c ├── string.c ├── test_charset.c ├── test_dir.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 ├── mysys_ssl ├── CMakeLists.txt ├── crypt_genhash_impl.cc ├── my_aes.cc ├── my_aes_impl.h ├── my_aes_openssl.cc ├── my_aes_yassl.cc ├── my_default.cc ├── my_default_priv.h ├── my_getopt.cc ├── my_md5.cc ├── my_murmur3.cc ├── my_rnd.cc ├── my_sha1.cc └── my_sha2.cc ├── nohup.out ├── 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 │ ├── mysql_server_extra.wxs.in │ └── mysqlcommandlineshell.ico ├── deb-jessie │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── my.cnf │ │ ├── mysql-systemd-start │ │ └── mysql_embedded.1 │ ├── libmysqlclient-dev.dirs │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-community-bench.dirs │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.mysql.service │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.dirs │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ ├── include-binaries │ │ └── lintian-overrides │ └── watch ├── deb-precise │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── apparmor-profile │ │ ├── my.cnf │ │ └── mysql_embedded.1 │ ├── libmysqlclient-dev.dirs │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-community-bench.dirs │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.dirs │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── include-binaries │ └── watch ├── deb-trusty │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── apparmor-profile │ │ ├── my.cnf │ │ └── mysql_embedded.1 │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── include-binaries │ └── watch ├── deb-utopic │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── apparmor-profile │ │ ├── my.cnf │ │ └── mysql_embedded.1 │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── include-binaries │ └── watch ├── deb-vivid │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── apparmor-profile │ │ ├── my.cnf.fallback │ │ ├── mysql-systemd-start │ │ ├── mysql.cnf │ │ ├── mysql.conf.cnf │ │ ├── mysql_embedded.1 │ │ └── mysqld.cnf │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-common.postinst │ ├── mysql-common.postrm │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.mysql.service │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── include-binaries │ └── watch ├── deb-wheezy │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── extra │ │ ├── my.cnf │ │ └── mysql_embedded.1 │ ├── libmysqlclient-dev.dirs │ ├── libmysqlclient-dev.install │ ├── libmysqlclient-dev.lintian-overrides │ ├── libmysqlclient18.install │ ├── libmysqlclient18.lintian-overrides │ ├── libmysqld-dev.install │ ├── libmysqld-dev.lintian-overrides │ ├── mysql-client.install │ ├── mysql-client.lintian-overrides │ ├── mysql-common.dirs │ ├── mysql-common.install │ ├── mysql-common.lintian-overrides │ ├── mysql-community-bench.dirs │ ├── mysql-community-bench.install │ ├── mysql-community-bench.lintian-overrides │ ├── mysql-community-client.install │ ├── mysql-community-client.lintian-overrides │ ├── mysql-community-server.config │ ├── mysql-community-server.dirs │ ├── mysql-community-server.install │ ├── mysql-community-server.lintian-overrides │ ├── mysql-community-server.mysql.init │ ├── mysql-community-server.postinst │ ├── mysql-community-server.postrm │ ├── mysql-community-server.preinst │ ├── mysql-community-server.prerm │ ├── mysql-community-server.templates │ ├── mysql-community-source.install │ ├── mysql-community-source.lintian-overrides │ ├── mysql-community-test.dirs │ ├── mysql-community-test.install │ ├── mysql-community-test.links │ ├── mysql-community-test.lintian-overrides │ ├── mysql-server.install │ ├── mysql-server.lintian-overrides │ ├── mysql-testsuite.install │ ├── mysql-testsuite.lintian-overrides │ ├── patches │ │ ├── fix-man-page-links.patch │ │ ├── fix-mtr-search-paths.patch │ │ ├── fix-mysql_install_db.patch │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ ├── include-binaries │ │ └── lintian-overrides │ └── watch ├── rpm-docker │ ├── CMakeLists.txt │ ├── my.cnf │ └── mysql.spec.in ├── rpm-fedora │ ├── CMakeLists.txt │ ├── my.cnf │ ├── my_config.h │ ├── mysql-5.6-libmysqlclient-symbols.patch │ ├── mysql-5.6.16-mysql-install.patch │ ├── mysql-systemd-start │ ├── mysql.conf │ ├── mysql.spec.in │ ├── mysql_config.sh │ └── mysqld.service ├── rpm-oel │ ├── CMakeLists.txt │ ├── filter-provides.sh │ ├── filter-requires.sh │ ├── my.cnf │ ├── my_config.h │ ├── mysql-5.6-libmysqlclient-symbols.patch │ ├── mysql-5.6.16-mysql-install.patch │ ├── mysql-systemd-start │ ├── mysql.conf │ ├── mysql.init │ ├── mysql.spec.in │ ├── mysql_config.sh │ └── mysqld.service ├── rpm-sles │ ├── CMakeLists.txt │ ├── filter-provides.sh │ ├── filter-requires.sh │ ├── my.cnf │ ├── my_config.h │ ├── mysql-systemd-start │ ├── mysql.conf │ ├── mysql.init │ ├── mysql.spec.in │ └── mysqld.service └── solaris │ ├── CMakeLists.txt │ └── postinstall-solaris.sh ├── plugin ├── audit_null │ ├── CMakeLists.txt │ └── audit_null.c ├── auth │ ├── CMakeLists.txt │ ├── auth_socket.c │ ├── dialog.c │ ├── mysql_no_login.c │ ├── qa_auth_client.c │ ├── qa_auth_interface.c │ ├── qa_auth_server.c │ └── test_plugin.c ├── daemon_example │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NEWS │ ├── README │ ├── daemon_example.cc │ └── daemon_example.ini ├── fulltext │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NEWS │ ├── README │ └── plugin_example.c ├── innodb_memcached │ ├── CMakeLists.txt │ ├── README-innodb_memcached │ ├── daemon_memcached │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .shipit │ │ ├── CMakeLists.txt │ │ ├── HACKING │ │ ├── config_static.h │ │ ├── daemon │ │ │ ├── cache.c │ │ │ ├── cache.h │ │ │ ├── daemon.c │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── isasl.c │ │ │ ├── isasl.h │ │ │ ├── memcached.c │ │ │ ├── memcached.h │ │ │ ├── memcached_mysql.cc │ │ │ ├── memcached_mysql.h │ │ │ ├── sasl_defs.c │ │ │ ├── sasl_defs.h │ │ │ ├── solaris_priv.c │ │ │ ├── stats.c │ │ │ ├── stats.h │ │ │ ├── thread.c │ │ │ ├── topkeys.c │ │ │ └── topkeys.h │ │ ├── devtools │ │ │ ├── bench_noreply.pl │ │ │ ├── clean-whitespace.pl │ │ │ └── svn-tarballs.pl │ │ ├── doc │ │ │ ├── CONTRIBUTORS │ │ │ ├── Doxyfile │ │ │ ├── memcached.1 │ │ │ ├── protocol.txt │ │ │ └── threads.txt │ │ ├── engines │ │ │ └── default_engine │ │ │ │ ├── assoc.c │ │ │ │ ├── assoc.h │ │ │ │ ├── default_engine.c │ │ │ │ ├── default_engine.h │ │ │ │ ├── items.c │ │ │ │ ├── items.h │ │ │ │ ├── slabs.c │ │ │ │ └── slabs.h │ │ ├── extensions │ │ │ ├── daemon │ │ │ │ └── stdin_check.c │ │ │ ├── loggers │ │ │ │ ├── eventlog_logger.c │ │ │ │ └── syslog_logger.c │ │ │ ├── protocol │ │ │ │ ├── ascii_scrub.c │ │ │ │ └── example_protocol.c │ │ │ └── protocol_extension.h │ │ ├── include │ │ │ └── memcached │ │ │ │ ├── callback.h │ │ │ │ ├── config_parser.h │ │ │ │ ├── engine.h │ │ │ │ ├── engine_common.h │ │ │ │ ├── engine_testapp.h │ │ │ │ ├── extension.h │ │ │ │ ├── extension_loggers.h │ │ │ │ ├── genhash.h │ │ │ │ ├── protocol_binary.h │ │ │ │ ├── protocol_plugin.h │ │ │ │ ├── server_api.h │ │ │ │ ├── types.h │ │ │ │ ├── util.h │ │ │ │ ├── vbucket.h │ │ │ │ └── visibility.h │ │ ├── programs │ │ │ ├── engine_testapp.c │ │ │ ├── mcstat.c │ │ │ ├── mock_server.c │ │ │ ├── mock_server.h │ │ │ ├── sizes.c │ │ │ ├── testapp.c │ │ │ └── timedrun.c │ │ ├── scripts │ │ │ ├── README.damemtop │ │ │ ├── damemtop │ │ │ ├── damemtop.yaml │ │ │ ├── memcached-init │ │ │ ├── memcached-tool │ │ │ ├── memcached.sysv │ │ │ └── start-memcached │ │ ├── t │ │ │ ├── 00-startup.t │ │ │ ├── 64bit.t │ │ │ ├── binary-get.t │ │ │ ├── binary-sasl.t.in │ │ │ ├── binary.t │ │ │ ├── bogus-commands.t │ │ │ ├── cas.t │ │ │ ├── cmd_extensions.t │ │ │ ├── daemonize.t │ │ │ ├── dash-M.t │ │ │ ├── evictions.t │ │ │ ├── expirations.t │ │ │ ├── flags.t │ │ │ ├── flush-all.t │ │ │ ├── getset.t │ │ │ ├── incrdecr.t │ │ │ ├── issue_104.t │ │ │ ├── issue_108.t │ │ │ ├── issue_14.t │ │ │ ├── issue_140.t │ │ │ ├── issue_152.t │ │ │ ├── issue_163.t │ │ │ ├── issue_22.t │ │ │ ├── issue_29.t │ │ │ ├── issue_3.t │ │ │ ├── issue_41.t │ │ │ ├── issue_42.t │ │ │ ├── issue_50.t │ │ │ ├── issue_61.t │ │ │ ├── issue_67.t │ │ │ ├── issue_68.t │ │ │ ├── issue_70.t │ │ │ ├── item_size_max.t │ │ │ ├── lib │ │ │ │ └── MemcachedTest.pm │ │ │ ├── line-lengths.t │ │ │ ├── lru.t │ │ │ ├── maxconns.t │ │ │ ├── multiversioning.t │ │ │ ├── noreply.t │ │ │ ├── sasl │ │ │ │ └── memcached.conf │ │ │ ├── scrub.t │ │ │ ├── stats-detail.t │ │ │ ├── stats.t │ │ │ ├── stress-memcached.pl │ │ │ ├── topkeys.t │ │ │ ├── udp.t │ │ │ ├── unixsocket.t │ │ │ ├── verbosity.t │ │ │ └── whitespace.t │ │ ├── testsuite │ │ │ ├── basic_engine_testsuite.c │ │ │ ├── basic_engine_testsuite.h │ │ │ └── breakdancer │ │ │ │ ├── breakdancer.py │ │ │ │ ├── engine_test.py │ │ │ │ ├── suite_stubs.c │ │ │ │ └── suite_stubs.h │ │ ├── trace.h │ │ └── utilities │ │ │ ├── config_parser.c │ │ │ ├── engine_loader.c │ │ │ ├── engine_loader.h │ │ │ ├── extension_loggers.c │ │ │ ├── genhash.c │ │ │ ├── genhash_int.h │ │ │ └── util.c │ └── innodb_memcache │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── cache-src │ │ ├── assoc.c │ │ ├── assoc.h │ │ ├── default_engine.c │ │ ├── default_engine.h │ │ ├── hash.h │ │ ├── items.c │ │ ├── items.h │ │ ├── slabs.c │ │ ├── slabs.h │ │ ├── trace.h │ │ └── util.c │ │ ├── include │ │ ├── KeyPrefix.h │ │ ├── TableSpec.h │ │ ├── dbmemcache_global.h │ │ ├── debug.h │ │ ├── handler_api.h │ │ ├── hash_item_util.h │ │ ├── innodb_api.h │ │ ├── innodb_cb_api.h │ │ ├── innodb_config.h │ │ ├── innodb_engine.h │ │ └── innodb_utility.h │ │ ├── scripts │ │ └── innodb_memcached_config.sql │ │ ├── src │ │ ├── embedded_default_engine.c │ │ ├── handler_api.cc │ │ ├── hash_item_util.c │ │ ├── innodb_api.c │ │ ├── innodb_config.c │ │ ├── innodb_engine.c │ │ ├── innodb_engine_private.h │ │ └── innodb_utility.c │ │ └── util-src │ │ ├── config_parser.c │ │ └── util.c ├── password_validation │ ├── CMakeLists.txt │ └── validate_password.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 ├── 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_include.h └── utils.h ├── scripts ├── CMakeLists.txt ├── comp_sql.c ├── dheadgen.pl ├── msql2mysql.sh ├── mysql_config.pl ├── 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_secure_installation.pl.in ├── mysql_secure_installation.sh ├── mysql_security_commands.sql ├── 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 ├── share ├── aclocal │ └── mysql.m4 ├── bulgarian │ └── errmsg.sys ├── 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 │ ├── latin1.xml │ ├── latin2.xml │ ├── latin5.xml │ ├── latin7.xml │ ├── macce.xml │ ├── macroman.xml │ └── swe7.xml ├── czech │ └── errmsg.sys ├── danish │ └── errmsg.sys ├── dictionary.txt ├── dutch │ └── errmsg.sys ├── english │ └── errmsg.sys ├── errmsg-utf8.txt ├── estonian │ └── errmsg.sys ├── fill_help_tables.sql ├── french │ └── errmsg.sys ├── german │ └── errmsg.sys ├── greek │ └── errmsg.sys ├── hungarian │ └── errmsg.sys ├── innodb_memcached_config.sql ├── italian │ └── errmsg.sys ├── japanese │ └── errmsg.sys ├── korean │ └── errmsg.sys ├── mysql_security_commands.sql ├── mysql_system_tables.sql ├── mysql_system_tables_data.sql ├── mysql_test_data_timezone.sql ├── norwegian-ny │ └── errmsg.sys ├── norwegian │ └── errmsg.sys ├── polish │ └── errmsg.sys ├── portuguese │ └── errmsg.sys ├── romanian │ └── errmsg.sys ├── russian │ └── errmsg.sys ├── serbian │ └── errmsg.sys ├── slovak │ └── errmsg.sys ├── spanish │ └── errmsg.sys ├── swedish │ └── errmsg.sys └── ukrainian │ └── errmsg.sys ├── 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 ├── 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-transactions.sh ├── test-wisconsin.sh └── uname.bat ├── sql-common ├── client.c ├── client_authentication.cc ├── client_plugin.c ├── my_time.c ├── my_user.c └── pack.c ├── sql ├── CMakeLists.txt ├── abstract_query_plan.cc ├── abstract_query_plan.h ├── add_errmsg ├── binlog.cc ├── binlog.h ├── bounded_queue.h ├── client_settings.h ├── custom_conf.h ├── datadict.cc ├── datadict.h ├── db.opt ├── debug_sync.cc ├── debug_sync.h ├── delayable_insert_operation.h ├── derror.cc ├── derror.h ├── des_key_file.cc ├── des_key_file.h ├── discover.cc ├── discover.h ├── dynamic_ids.cc ├── dynamic_ids.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 ├── filesort_utils.cc ├── filesort_utils.h ├── frm_crypt.cc ├── frm_crypt.h ├── gcalc_slicescan.cc ├── gcalc_slicescan.h ├── gcalc_tools.cc ├── gcalc_tools.h ├── gen_lex_hash.cc ├── gen_lex_token.cc ├── global_threads.h ├── gstream.cc ├── gstream.h ├── ha_ndb_index_stat.cc ├── ha_ndb_index_stat.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_connection.cc ├── ha_ndbcluster_connection.h ├── ha_ndbcluster_glue.h ├── ha_ndbcluster_push.cc ├── ha_ndbcluster_push.h ├── ha_ndbcluster_tables.h ├── ha_ndbinfo.cc ├── ha_ndbinfo.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 ├── item.cc ├── item.h ├── item_buff.cc ├── item_cmpfunc.cc ├── item_cmpfunc.h ├── item_create.cc ├── item_create.h ├── item_func.cc ├── item_func.h ├── item_geofunc.cc ├── item_geofunc.h ├── item_inetfunc.cc ├── item_inetfunc.h ├── item_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.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 ├── main.cc ├── mdl.cc ├── mdl.h ├── mem_root_array.h ├── merge_sort.h ├── mf_iocache.cc ├── my_decimal.cc ├── my_decimal.h ├── mysqld.cc ├── mysqld.h ├── mysqld_suffix.h ├── ndb_dist_priv_util.h ├── ndb_global_schema_lock.cc ├── ndb_global_schema_lock.h ├── ndb_global_schema_lock_guard.h ├── ndb_local_connection.cc ├── ndb_local_connection.h ├── ndb_mi.cc ├── ndb_mi.h ├── ndb_share.cc ├── ndb_share.h ├── ndb_table_guard.h ├── ndb_thd.cc ├── ndb_thd.h ├── ndb_thd_ndb.cc ├── ndb_thd_ndb.h ├── net_serv.cc ├── nt_servc.cc ├── nt_servc.h ├── opt_explain.cc ├── opt_explain.h ├── opt_explain_format.h ├── opt_explain_json.cc ├── opt_explain_json.h ├── opt_explain_traditional.cc ├── opt_explain_traditional.h ├── opt_range.cc ├── opt_range.h ├── opt_sum.cc ├── opt_trace.cc ├── opt_trace.h ├── opt_trace2server.cc ├── opt_trace_Doxyfile ├── opt_trace_context.h ├── 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 ├── replication.h ├── rpl_constants.h ├── rpl_filter.cc ├── rpl_filter.h ├── rpl_gtid.h ├── rpl_gtid_cache.cc ├── rpl_gtid_execution.cc ├── rpl_gtid_misc.cc ├── rpl_gtid_mutex_cond_array.cc ├── rpl_gtid_owned.cc ├── rpl_gtid_set.cc ├── rpl_gtid_sid_map.cc ├── rpl_gtid_specification.cc ├── rpl_gtid_state.cc ├── rpl_handler.cc ├── rpl_handler.h ├── rpl_info.cc ├── rpl_info.h ├── rpl_info_dummy.cc ├── rpl_info_dummy.h ├── rpl_info_factory.cc ├── rpl_info_factory.h ├── rpl_info_file.cc ├── rpl_info_file.h ├── rpl_info_handler.cc ├── rpl_info_handler.h ├── rpl_info_table.cc ├── rpl_info_table.h ├── rpl_info_table_access.cc ├── rpl_info_table_access.h ├── rpl_info_values.cc ├── rpl_info_values.h ├── rpl_injector.cc ├── rpl_injector.h ├── rpl_master.cc ├── rpl_master.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_rli_pdb.cc ├── rpl_rli_pdb.h ├── rpl_slave.cc ├── rpl_slave.h ├── rpl_tblmap.cc ├── rpl_tblmap.h ├── rpl_utility.cc ├── rpl_utility.h ├── scheduler.cc ├── scheduler.h ├── set_var.cc ├── set_var.h ├── share │ ├── CMakeLists.txt │ ├── charsets │ │ ├── Index.xml │ │ ├── README │ │ ├── armscii8.xml │ │ ├── ascii.xml │ │ ├── cp1250.xml │ │ ├── cp1251.xml │ │ ├── cp1256.xml │ │ ├── cp1257.xml │ │ ├── cp850.xml │ │ ├── cp852.xml │ │ ├── cp866.xml │ │ ├── dec8.xml │ │ ├── geostd8.xml │ │ ├── greek.xml │ │ ├── hebrew.xml │ │ ├── hp8.xml │ │ ├── keybcs2.xml │ │ ├── koi8r.xml │ │ ├── koi8u.xml │ │ ├── languages.html │ │ ├── latin1.xml │ │ ├── latin2.xml │ │ ├── latin5.xml │ │ ├── latin7.xml │ │ ├── macce.xml │ │ ├── macroman.xml │ │ └── swe7.xml │ ├── dictionary.txt │ └── errmsg-utf8.txt ├── signal_handler.cc ├── sp.cc ├── sp.h ├── sp_cache.cc ├── sp_cache.h ├── sp_head.cc ├── sp_head.h ├── sp_instr.cc ├── sp_instr.h ├── sp_pcontext.cc ├── sp_pcontext.h ├── sp_rcontext.cc ├── sp_rcontext.h ├── spatial.cc ├── spatial.h ├── sql_acl.cc ├── sql_acl.h ├── sql_admin.cc ├── sql_admin.h ├── sql_alloc.h ├── sql_alloc_error_handler.cc ├── 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_bootstrap.cc ├── sql_bootstrap.h ├── sql_builtin.cc.in ├── sql_cache.cc ├── sql_cache.h ├── sql_callback.h ├── sql_class.cc ├── sql_class.h ├── sql_client.cc ├── sql_cmd.h ├── sql_connect.cc ├── sql_connect.h ├── sql_const.h ├── sql_crypt.cc ├── sql_crypt.h ├── sql_cursor.cc ├── sql_cursor.h ├── sql_data_change.cc ├── sql_data_change.h ├── sql_db.cc ├── sql_db.h ├── sql_delete.cc ├── sql_delete.h ├── sql_derived.cc ├── sql_derived.h ├── sql_digest.cc ├── sql_digest.h ├── sql_digest_stream.h ├── sql_do.cc ├── sql_do.h ├── sql_error.h ├── sql_executor.cc ├── sql_executor.h ├── sql_get_diagnostics.cc ├── sql_get_diagnostics.h ├── sql_handler.cc ├── sql_handler.h ├── sql_help.cc ├── sql_help.h ├── sql_hset.h ├── sql_insert.cc ├── sql_insert.h ├── sql_join_buffer.cc ├── sql_join_buffer.h ├── sql_lex.cc ├── sql_lex.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_optimizer.cc ├── sql_optimizer.h ├── sql_parse.cc ├── sql_parse.h ├── sql_partition.cc ├── sql_partition.h ├── sql_partition_admin.cc ├── sql_partition_admin.h ├── sql_planner.cc ├── sql_planner.h ├── sql_plist.h ├── sql_plugin.cc ├── sql_plugin.h ├── sql_plugin_services.h ├── sql_prepare.h ├── sql_profile.cc ├── sql_profile.h ├── sql_reload.cc ├── sql_reload.h ├── sql_rename.cc ├── sql_rename.h ├── sql_resolver.cc ├── sql_resolver.h ├── sql_rewrite.cc ├── sql_rewrite.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_tmp_table.cc ├── sql_tmp_table.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 ├── string_service.cc ├── string_service.h ├── structs.h ├── sys_vars.cc ├── sys_vars.h ├── sys_vars_shared.h ├── table.cc ├── table.h ├── table_cache.cc ├── table_cache.h ├── table_id.h ├── thr_malloc.cc ├── thr_malloc.h ├── transaction.cc ├── transaction.h ├── tzfile.h ├── tztime.cc ├── tztime.h ├── udf_example.cc ├── uniques.cc ├── unireg.cc ├── unireg.h └── uuid.cc ├── 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 ├── federated │ ├── CMakeLists.txt │ ├── ha_federated.cc │ └── ha_federated.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 ├── innobase │ ├── CMakeLists.txt │ ├── COPYING.Google │ ├── COPYING.Percona │ ├── Doxyfile │ ├── api │ │ ├── api0api.cc │ │ └── api0misc.cc │ ├── btr │ │ ├── btr0btr.cc │ │ ├── btr0cur.cc │ │ ├── btr0pcur.cc │ │ └── btr0sea.cc │ ├── buf │ │ ├── buf0buddy.cc │ │ ├── buf0buf.cc │ │ ├── buf0checksum.cc │ │ ├── buf0dblwr.cc │ │ ├── buf0dump.cc │ │ ├── buf0flu.cc │ │ ├── buf0lru.cc │ │ └── buf0rea.cc │ ├── compile-innodb │ ├── data │ │ ├── data0data.cc │ │ └── data0type.cc │ ├── dict │ │ ├── dict0boot.cc │ │ ├── dict0crea.cc │ │ ├── dict0dict.cc │ │ ├── dict0load.cc │ │ ├── dict0mem.cc │ │ ├── dict0stats.cc │ │ └── dict0stats_bg.cc │ ├── dyn │ │ └── dyn0dyn.cc │ ├── eval │ │ ├── eval0eval.cc │ │ └── eval0proc.cc │ ├── fil │ │ └── fil0fil.cc │ ├── fsp │ │ └── fsp0fsp.cc │ ├── fts │ │ ├── Makefile.query │ │ ├── fts0ast.cc │ │ ├── fts0blex.cc │ │ ├── fts0blex.l │ │ ├── fts0config.cc │ │ ├── fts0fts.cc │ │ ├── fts0opt.cc │ │ ├── fts0pars.cc │ │ ├── fts0pars.y │ │ ├── fts0que.cc │ │ ├── fts0sql.cc │ │ ├── fts0tlex.cc │ │ ├── fts0tlex.l │ │ └── make_parser.sh │ ├── fut │ │ ├── fut0fut.cc │ │ └── fut0lst.cc │ ├── ha │ │ ├── ha0ha.cc │ │ ├── ha0storage.cc │ │ └── hash0hash.cc │ ├── ha_innodb.def │ ├── handler │ │ ├── ha_innodb.cc │ │ ├── ha_innodb.h │ │ ├── handler0alter.cc │ │ ├── i_s.cc │ │ └── i_s.h │ ├── ibuf │ │ └── ibuf0ibuf.cc │ ├── include │ │ ├── api0api.h │ │ ├── api0misc.h │ │ ├── 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 │ │ ├── buf0checksum.h │ │ ├── buf0dblwr.h │ │ ├── buf0dump.h │ │ ├── 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 │ │ ├── dict0priv.h │ │ ├── dict0priv.ic │ │ ├── dict0stats.h │ │ ├── dict0stats.ic │ │ ├── dict0stats_bg.h │ │ ├── dict0stats_bg.ic │ │ ├── dict0types.h │ │ ├── dyn0dyn.h │ │ ├── dyn0dyn.ic │ │ ├── eval0eval.h │ │ ├── eval0eval.ic │ │ ├── eval0proc.h │ │ ├── eval0proc.ic │ │ ├── fil0fil.h │ │ ├── fsp0fsp.h │ │ ├── fsp0fsp.ic │ │ ├── fsp0types.h │ │ ├── fts0ast.h │ │ ├── fts0blex.h │ │ ├── fts0fts.h │ │ ├── fts0opt.h │ │ ├── fts0pars.h │ │ ├── fts0priv.h │ │ ├── fts0priv.ic │ │ ├── fts0tlex.h │ │ ├── fts0types.h │ │ ├── fts0types.ic │ │ ├── fts0vlc.ic │ │ ├── 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 │ │ ├── os0once.h │ │ ├── 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 │ │ ├── row0ftsort.h │ │ ├── row0import.h │ │ ├── row0import.ic │ │ ├── row0ins.h │ │ ├── row0ins.ic │ │ ├── row0log.h │ │ ├── row0log.ic │ │ ├── row0merge.h │ │ ├── row0mysql.h │ │ ├── row0mysql.ic │ │ ├── row0purge.h │ │ ├── row0purge.ic │ │ ├── row0quiesce.h │ │ ├── row0quiesce.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 │ │ ├── srv0conc.h │ │ ├── srv0mon.h │ │ ├── srv0mon.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 │ │ ├── ut0counter.h │ │ ├── ut0crc32.h │ │ ├── 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.cc │ │ ├── lock0lock.cc │ │ └── lock0wait.cc │ ├── log │ │ ├── log0log.cc │ │ └── log0recv.cc │ ├── mach │ │ └── mach0data.cc │ ├── mem │ │ ├── mem0dbg.cc │ │ ├── mem0mem.cc │ │ └── mem0pool.cc │ ├── mtr │ │ ├── mtr0log.cc │ │ └── mtr0mtr.cc │ ├── os │ │ ├── os0file.cc │ │ ├── os0proc.cc │ │ ├── os0sync.cc │ │ └── os0thread.cc │ ├── page │ │ ├── page0cur.cc │ │ ├── page0page.cc │ │ └── page0zip.cc │ ├── pars │ │ ├── lexyy.cc │ │ ├── make_bison.sh │ │ ├── make_flex.sh │ │ ├── pars0grm.cc │ │ ├── pars0grm.y │ │ ├── pars0lex.l │ │ ├── pars0opt.cc │ │ ├── pars0pars.cc │ │ └── pars0sym.cc │ ├── que │ │ └── que0que.cc │ ├── read │ │ └── read0read.cc │ ├── rem │ │ ├── rem0cmp.cc │ │ └── rem0rec.cc │ ├── row │ │ ├── row0ext.cc │ │ ├── row0ftsort.cc │ │ ├── row0import.cc │ │ ├── row0ins.cc │ │ ├── row0log.cc │ │ ├── row0merge.cc │ │ ├── row0mysql.cc │ │ ├── row0purge.cc │ │ ├── row0quiesce.cc │ │ ├── row0row.cc │ │ ├── row0sel.cc │ │ ├── row0uins.cc │ │ ├── row0umod.cc │ │ ├── row0undo.cc │ │ ├── row0upd.cc │ │ └── row0vers.cc │ ├── srv │ │ ├── srv0conc.cc │ │ ├── srv0mon.cc │ │ ├── srv0srv.cc │ │ └── srv0start.cc │ ├── sync │ │ ├── sync0arr.cc │ │ ├── sync0rw.cc │ │ └── sync0sync.cc │ ├── trx │ │ ├── trx0i_s.cc │ │ ├── trx0purge.cc │ │ ├── trx0rec.cc │ │ ├── trx0roll.cc │ │ ├── trx0rseg.cc │ │ ├── trx0sys.cc │ │ ├── trx0trx.cc │ │ └── trx0undo.cc │ ├── usr │ │ └── usr0sess.cc │ └── ut │ │ ├── ut0bh.cc │ │ ├── ut0byte.cc │ │ ├── ut0crc32.cc │ │ ├── ut0dbg.cc │ │ ├── ut0list.cc │ │ ├── ut0mem.cc │ │ ├── ut0rbt.cc │ │ ├── ut0rnd.cc │ │ ├── ut0ut.cc │ │ ├── ut0vec.cc │ │ └── ut0wqueue.cc ├── myisam │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── NEWS │ ├── TODO │ ├── ft_boolean_search.c │ ├── ft_nlq_search.c │ ├── ft_parser.c │ ├── ft_static.c │ ├── ft_stopwords.c │ ├── ft_update.c │ ├── ftbench │ │ ├── Ecompare.pl │ │ ├── Ecreate.pl │ │ ├── Ereport.pl │ │ ├── README │ │ └── ft-test-run.sh │ ├── ftdefs.h │ ├── fulltext.h │ ├── ha_myisam.cc │ ├── ha_myisam.h │ ├── mi_cache.c │ ├── mi_changed.c │ ├── mi_check.c │ ├── mi_checksum.c │ ├── mi_close.c │ ├── mi_create.c │ ├── mi_dbug.c │ ├── mi_delete.c │ ├── mi_delete_all.c │ ├── mi_delete_table.c │ ├── mi_dynrec.c │ ├── mi_extra.c │ ├── mi_extrafunc.h │ ├── mi_info.c │ ├── mi_key.c │ ├── mi_keycache.c │ ├── mi_locking.c │ ├── mi_log.c │ ├── mi_open.c │ ├── mi_packrec.c │ ├── mi_page.c │ ├── mi_panic.c │ ├── mi_preload.c │ ├── mi_range.c │ ├── mi_rename.c │ ├── mi_rfirst.c │ ├── mi_rkey.c │ ├── mi_rlast.c │ ├── mi_rnext.c │ ├── mi_rnext_same.c │ ├── mi_rprev.c │ ├── mi_rrnd.c │ ├── mi_rsame.c │ ├── mi_rsamepos.c │ ├── mi_scan.c │ ├── mi_search.c │ ├── mi_static.c │ ├── mi_statrec.c │ ├── mi_test1.c │ ├── mi_test2.c │ ├── mi_test3.c │ ├── mi_test_all.sh │ ├── mi_unique.c │ ├── mi_update.c │ ├── mi_write.c │ ├── myisam_ftdump.c │ ├── myisamchk.c │ ├── myisamdef.h │ ├── myisamlog.c │ ├── myisampack.c │ ├── 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 ├── ndb │ ├── CMakeLists.txt │ ├── VERSION │ ├── clusterj │ │ ├── CMakeLists.txt │ │ ├── clusterj-api │ │ │ ├── CMakeLists.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mysql │ │ │ │ └── clusterj │ │ │ │ ├── ClusterJDatastoreException.java │ │ │ │ ├── ClusterJException.java │ │ │ │ ├── ClusterJFatalException.java │ │ │ │ ├── ClusterJFatalInternalException.java │ │ │ │ ├── ClusterJFatalUserException.java │ │ │ │ ├── ClusterJHelper.java │ │ │ │ ├── ClusterJUserException.java │ │ │ │ ├── ColumnMetadata.java │ │ │ │ ├── ColumnType.java │ │ │ │ ├── Constants.java │ │ │ │ ├── DynamicObject.java │ │ │ │ ├── DynamicObjectDelegate.java │ │ │ │ ├── LockMode.java │ │ │ │ ├── Query.java │ │ │ │ ├── Results.java │ │ │ │ ├── Session.java │ │ │ │ ├── SessionFactory.java │ │ │ │ ├── SessionFactoryService.java │ │ │ │ ├── Transaction.java │ │ │ │ ├── annotation │ │ │ │ ├── Column.java │ │ │ │ ├── Columns.java │ │ │ │ ├── Extension.java │ │ │ │ ├── Extensions.java │ │ │ │ ├── Index.java │ │ │ │ ├── Indices.java │ │ │ │ ├── Lob.java │ │ │ │ ├── NotPersistent.java │ │ │ │ ├── NullValue.java │ │ │ │ ├── PartitionKey.java │ │ │ │ ├── PersistenceCapable.java │ │ │ │ ├── PersistenceModifier.java │ │ │ │ ├── Persistent.java │ │ │ │ ├── PrimaryKey.java │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ └── query │ │ │ │ ├── Predicate.java │ │ │ │ ├── PredicateOperand.java │ │ │ │ ├── QueryBuilder.java │ │ │ │ ├── QueryDefinition.java │ │ │ │ ├── QueryDomainType.java │ │ │ │ └── package.html │ │ ├── clusterj-bindings │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── mysql │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ └── bindings │ │ │ │ │ │ ├── BlobImpl.java │ │ │ │ │ │ ├── ClusterConnectionImpl.java │ │ │ │ │ │ ├── ClusterConnectionServiceImpl.java │ │ │ │ │ │ ├── ClusterTransactionImpl.java │ │ │ │ │ │ ├── ColumnImpl.java │ │ │ │ │ │ ├── DbImpl.java │ │ │ │ │ │ ├── DictionaryImpl.java │ │ │ │ │ │ ├── IndexImpl.java │ │ │ │ │ │ ├── IndexOperationImpl.java │ │ │ │ │ │ ├── IndexScanOperationImpl.java │ │ │ │ │ │ ├── OperationImpl.java │ │ │ │ │ │ ├── ResultDataImpl.java │ │ │ │ │ │ ├── ScanFilterImpl.java │ │ │ │ │ │ ├── ScanOperationImpl.java │ │ │ │ │ │ └── TableImpl.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.mysql.clusterj.core.store.ClusterConnectionService │ │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── bindings │ │ │ │ │ └── Bundle.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── testsuite │ │ │ │ └── clusterj │ │ │ │ └── bindings │ │ │ │ ├── AutoCommitTest.java │ │ │ │ ├── BinaryTypesTest.java │ │ │ │ ├── BlobTest.java │ │ │ │ ├── CharsetTest.java │ │ │ │ ├── DateTypesTest.java │ │ │ │ ├── DatetimeTypesTest.java │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ ├── DeleteAllByClassTest.java │ │ │ │ ├── DeleteInsertTest.java │ │ │ │ ├── DomainTypeHandlerFactoryTest.java │ │ │ │ ├── FindByPrimaryKeyTest.java │ │ │ │ ├── LongLongStringPKTest.java │ │ │ │ ├── MultiplePKTest.java │ │ │ │ ├── NegativeMetadataTest.java │ │ │ │ ├── NotPersistentTest.java │ │ │ │ ├── NullValuesTest.java │ │ │ │ ├── ObjectNotFoundTest.java │ │ │ │ ├── QueryAllPrimitivesTest.java │ │ │ │ ├── QueryBtreeIndexScanTest.java │ │ │ │ ├── QueryByteArrayTypesTest.java │ │ │ │ ├── QueryDateTimeTypesTest.java │ │ │ │ ├── QueryDateTypesTest.java │ │ │ │ ├── QueryDecimalTypesTest.java │ │ │ │ ├── QueryDoubleTypesTest.java │ │ │ │ ├── QueryFloatTypesTest.java │ │ │ │ ├── QueryHashIndexScanTest.java │ │ │ │ ├── QueryPrimaryKeyTest.java │ │ │ │ ├── QueryTableScanTest.java │ │ │ │ ├── QueryTimeTypesTest.java │ │ │ │ ├── QueryTimestampTypesTest.java │ │ │ │ ├── QueryUniqueKeyTest.java │ │ │ │ ├── QueryYearTypesTest.java │ │ │ │ ├── SaveTest.java │ │ │ │ ├── SerialTransactionsTest.java │ │ │ │ ├── TimeTypesTest.java │ │ │ │ ├── TimestampTypesTest.java │ │ │ │ ├── TransactionStateTest.java │ │ │ │ └── UpdateTest.java │ │ ├── clusterj-core │ │ │ ├── CMakeLists.txt │ │ │ ├── logging.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ └── com.mysql.clusterj.SessionFactoryService │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── testsuite │ │ │ │ │ └── clusterj │ │ │ │ │ ├── AbstractClusterJCoreTest.java │ │ │ │ │ ├── NegativeClusterConnectionServicePropertyTest.java │ │ │ │ │ └── util │ │ │ │ │ ├── DoesNotImplementClusterConnectionService.java │ │ │ │ │ ├── I18NTest.java │ │ │ │ │ ├── LoggerTest.java │ │ │ │ │ ├── NoPublicConstructorClusterConnectionService.java │ │ │ │ │ └── deeper │ │ │ │ │ └── I18NDeeperTest.java │ │ │ │ └── resources │ │ │ │ └── testsuite │ │ │ │ └── clusterj │ │ │ │ └── util │ │ │ │ └── Bundle.properties │ │ ├── clusterj-jdbc │ │ │ ├── CMakeLists.txt │ │ │ ├── logging.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── antlr3 │ │ │ │ │ ├── com │ │ │ │ │ │ └── mysql │ │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ │ └── jdbc │ │ │ │ │ │ │ └── antlr │ │ │ │ │ │ │ ├── MySQL51Lexer.g │ │ │ │ │ │ │ └── MySQL51Parser.g │ │ │ │ │ └── imports │ │ │ │ │ │ └── MySQL51Functions.g │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── mysql │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ └── jdbc │ │ │ │ │ │ ├── AbstractResultSetInternalMethods.java │ │ │ │ │ │ ├── ConnectionLifecycleInterceptor.java │ │ │ │ │ │ ├── DomainFieldHandlerImpl.java │ │ │ │ │ │ ├── DomainTypeHandlerImpl.java │ │ │ │ │ │ ├── InterceptorImpl.java │ │ │ │ │ │ ├── QueryExecutionContextJDBCImpl.java │ │ │ │ │ │ ├── ResultSetInternalMethodsImpl.java │ │ │ │ │ │ ├── ResultSetInternalMethodsUpdateCount.java │ │ │ │ │ │ ├── SQLExecutor.java │ │ │ │ │ │ ├── StatementInterceptor.java │ │ │ │ │ │ ├── ValueHandlerImpl.java │ │ │ │ │ │ └── antlr │ │ │ │ │ │ ├── ANTLRNoCaseFileStream.java │ │ │ │ │ │ ├── ANTLRNoCaseStringStream.java │ │ │ │ │ │ ├── BaseErrorListener.java │ │ │ │ │ │ ├── ErrorListener.java │ │ │ │ │ │ ├── MySQLLexer.java │ │ │ │ │ │ ├── MySQLParser.java │ │ │ │ │ │ ├── QueuingErrorListener.java │ │ │ │ │ │ ├── RecognizerErrorDelegate.java │ │ │ │ │ │ └── node │ │ │ │ │ │ ├── AndNode.java │ │ │ │ │ │ ├── BetweenNode.java │ │ │ │ │ │ ├── BinaryOperatorNode.java │ │ │ │ │ │ ├── BooleanOperatorNode.java │ │ │ │ │ │ ├── CommandNode.java │ │ │ │ │ │ ├── DeleteNode.java │ │ │ │ │ │ ├── EqualsNode.java │ │ │ │ │ │ ├── GreaterEqualsNode.java │ │ │ │ │ │ ├── GreaterThanNode.java │ │ │ │ │ │ ├── InsertNode.java │ │ │ │ │ │ ├── LessEqualsNode.java │ │ │ │ │ │ ├── LessThanNode.java │ │ │ │ │ │ ├── Node.java │ │ │ │ │ │ ├── NotNode.java │ │ │ │ │ │ ├── OrNode.java │ │ │ │ │ │ ├── ParensNode.java │ │ │ │ │ │ ├── PlaceholderNode.java │ │ │ │ │ │ ├── PredicateNode.java │ │ │ │ │ │ ├── SelectNode.java │ │ │ │ │ │ └── WhereNode.java │ │ │ │ └── resources │ │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── jdbc │ │ │ │ │ └── Bundle.properties │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── jdbctest │ │ │ │ │ ├── BadConnectionLifecycleInterceptor.java │ │ │ │ │ ├── BatchDeleteQueryAllPrimitivesTest.java │ │ │ │ │ ├── BatchTest.java │ │ │ │ │ ├── BigIntegerTypesTest.java │ │ │ │ │ ├── CoordinatedTransactionIdVariableTest.java │ │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ │ ├── DeleteQueryAllPrimitivesTest.java │ │ │ │ │ ├── JDBCQueryTest.java │ │ │ │ │ ├── NegativeBadConnectionLifecycleInterceptorTest.java │ │ │ │ │ ├── NegativeMissingConnectionLifecycleInterceptorTest.java │ │ │ │ │ └── NegativeMissingStatementInterceptorTest.java │ │ │ │ └── resources │ │ │ │ ├── bad-connection-bad-connection-lifecycle-interceptor.properties │ │ │ │ ├── bad-connection-no-connection-lifecycle-interceptor.properties │ │ │ │ ├── bad-connection-no-statement-interceptor.properties │ │ │ │ └── clusterj.properties │ │ ├── clusterj-jpatest │ │ │ ├── CMakeLists.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── jpatest │ │ │ │ │ ├── AbstractJPABaseTest.java │ │ │ │ │ ├── BigIntegerTypesTest.java │ │ │ │ │ ├── BlobTest.java │ │ │ │ │ ├── ClobTest.java │ │ │ │ │ ├── DateAsSqlDateTest.java │ │ │ │ │ ├── DateAsUtilDateTest.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTest.java │ │ │ │ │ ├── DatetimeAsUtilDateTest.java │ │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ │ ├── Driver.java │ │ │ │ │ ├── EmbeddedTest.java │ │ │ │ │ ├── Ignore.java │ │ │ │ │ ├── JpaLoad.java │ │ │ │ │ ├── LazyTest.java │ │ │ │ │ ├── PersistenceTestCase.java │ │ │ │ │ ├── SingleEMFTestCase.java │ │ │ │ │ ├── SingleEMTestCase.java │ │ │ │ │ ├── SlowTest.java │ │ │ │ │ ├── TimeAsSqlTimeTest.java │ │ │ │ │ ├── TimeAsUtilDateTest.java │ │ │ │ │ ├── TimestampAsSqlTimestampTest.java │ │ │ │ │ ├── TimestampAsUtilDateTest.java │ │ │ │ │ └── model │ │ │ │ │ ├── A.java │ │ │ │ │ ├── B0.java │ │ │ │ │ ├── BigIntegerTypes.java │ │ │ │ │ ├── BlobTypes.java │ │ │ │ │ ├── ClobTypes.java │ │ │ │ │ ├── DateAsSqlDateTypes.java │ │ │ │ │ ├── DateAsUtilDateTypes.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTypes.java │ │ │ │ │ ├── DatetimeAsUtilDateTypes.java │ │ │ │ │ ├── DecimalTypes.java │ │ │ │ │ ├── Embedded.java │ │ │ │ │ ├── Embedding.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── IdBase.java │ │ │ │ │ ├── LazyEmployee.java │ │ │ │ │ ├── LongIntStringConstants.java │ │ │ │ │ ├── LongIntStringFKOneOne.java │ │ │ │ │ ├── LongIntStringOid.java │ │ │ │ │ ├── LongIntStringPKOneOne.java │ │ │ │ │ ├── LongLongStringConstants.java │ │ │ │ │ ├── LongLongStringFKManyOne.java │ │ │ │ │ ├── LongLongStringOid.java │ │ │ │ │ ├── LongLongStringPK.java │ │ │ │ │ ├── LongLongStringPKOneMany.java │ │ │ │ │ ├── TimeAsSqlTimeTypes.java │ │ │ │ │ ├── TimeAsUtilDateTypes.java │ │ │ │ │ ├── TimestampAsSqlTimestampTypes.java │ │ │ │ │ └── TimestampAsUtilDateTypes.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── persistence.xml │ │ ├── clusterj-openjpa │ │ │ ├── CMakeLists.txt │ │ │ ├── crundOpenjpaClusterj.properties │ │ │ ├── crundOpenjpaMysql.properties │ │ │ ├── crundRun.properties │ │ │ ├── logging.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── mysql │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ └── openjpa │ │ │ │ │ │ ├── NdbOpenJPABrokerFactory.java │ │ │ │ │ │ ├── NdbOpenJPAConfiguration.java │ │ │ │ │ │ ├── NdbOpenJPAConfigurationImpl.java │ │ │ │ │ │ ├── NdbOpenJPADomainFieldHandlerImpl.java │ │ │ │ │ │ ├── NdbOpenJPADomainTypeHandlerImpl.java │ │ │ │ │ │ ├── NdbOpenJPAProductDerivation.java │ │ │ │ │ │ ├── NdbOpenJPAResult.java │ │ │ │ │ │ ├── NdbOpenJPAStoreManager.java │ │ │ │ │ │ ├── NdbOpenJPAStoreQuery.java │ │ │ │ │ │ ├── NdbOpenJPAUtility.java │ │ │ │ │ │ └── NdbOpenJPAValueHandler.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── org.apache.openjpa.lib.conf.ProductDerivation │ │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── openjpa │ │ │ │ │ └── Bundle.properties │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── openjpatest │ │ │ │ │ ├── BasicTest.java │ │ │ │ │ ├── BigIntegerTypesTest.java │ │ │ │ │ ├── BlobTest.java │ │ │ │ │ ├── ClobTest.java │ │ │ │ │ ├── CrundTest.java │ │ │ │ │ ├── DateAsSqlDateTest.java │ │ │ │ │ ├── DateAsUtilDateTest.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTest.java │ │ │ │ │ ├── DatetimeAsUtilDateTest.java │ │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ │ ├── EmbeddedTest.java │ │ │ │ │ ├── LazyTest.java │ │ │ │ │ ├── LongIntStringPKOneOneTest.java │ │ │ │ │ ├── LongLongStringPKOneManyTest.java │ │ │ │ │ ├── LongLongStringPKTest.java │ │ │ │ │ ├── OneToManyRelationshipTest.java │ │ │ │ │ ├── TestBadPersistenceUnitNoConnectString.java │ │ │ │ │ ├── TimeAsSqlTimeTest.java │ │ │ │ │ ├── TimeAsUtilDateTest.java │ │ │ │ │ ├── TimestampAsSqlTimestampTest.java │ │ │ │ │ └── TimestampAsUtilDateTest.java │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── persistence.xml │ │ ├── clusterj-test │ │ │ ├── CMakeLists.txt │ │ │ ├── logging.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ ├── regression │ │ │ │ │ └── Bug54619.java │ │ │ │ └── testsuite │ │ │ │ │ └── clusterj │ │ │ │ │ ├── AbstractClusterJModelTest.java │ │ │ │ │ ├── AbstractClusterJTest.java │ │ │ │ │ ├── AbstractQueryTest.java │ │ │ │ │ ├── AllTests.java │ │ │ │ │ ├── AutoCommitTest.java │ │ │ │ │ ├── BigIntegerTypesTest.java │ │ │ │ │ ├── BinaryPKTest.java │ │ │ │ │ ├── BinaryTypesTest.java │ │ │ │ │ ├── BitTypesTest.java │ │ │ │ │ ├── BlobTest.java │ │ │ │ │ ├── CharsetTest.java │ │ │ │ │ ├── ConnectionPoolTest.java │ │ │ │ │ ├── CoordinatedTransactionIdVariableTest.java │ │ │ │ │ ├── DateAsSqlDateTypesTest.java │ │ │ │ │ ├── DateAsUtilDateTypesTest.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTypesTest.java │ │ │ │ │ ├── DatetimeAsUtilDateTypesTest.java │ │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ │ ├── DefaultConnectValuesTest.java │ │ │ │ │ ├── DeleteAllByClassTest.java │ │ │ │ │ ├── DeleteInsertTest.java │ │ │ │ │ ├── DeleteQueryAllPrimitivesTest.java │ │ │ │ │ ├── DomainTypeHandlerFactoryTest.java │ │ │ │ │ ├── DynamicBinaryPKTest.java │ │ │ │ │ ├── DynamicObjectTest.java │ │ │ │ │ ├── FindByPrimaryKey2Test.java │ │ │ │ │ ├── FindByPrimaryKeyTest.java │ │ │ │ │ ├── HashOnlyLongIntStringPKTest.java │ │ │ │ │ ├── LoadTest.java │ │ │ │ │ ├── LongIntStringPKTest.java │ │ │ │ │ ├── LongLongStringPKTest.java │ │ │ │ │ ├── LongvarbinaryPKTest.java │ │ │ │ │ ├── MultiplePKTest.java │ │ │ │ │ ├── MultithreadedFindTest.java │ │ │ │ │ ├── MultithreadedTest.java │ │ │ │ │ ├── NegativeMetadataTest.java │ │ │ │ │ ├── NotPersistentTest.java │ │ │ │ │ ├── NullValuesTest.java │ │ │ │ │ ├── ObjectNotFoundTest.java │ │ │ │ │ ├── PartitionKeyTest.java │ │ │ │ │ ├── QueryAllPrimitivesTest.java │ │ │ │ │ ├── QueryBigIntegerTypesTest.java │ │ │ │ │ ├── QueryBtreeIndexScanTest.java │ │ │ │ │ ├── QueryByteArrayTypesTest.java │ │ │ │ │ ├── QueryDateAsSqlDateTypesTest.java │ │ │ │ │ ├── QueryDateAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryDatetimeAsSqlTimestampTypesTest.java │ │ │ │ │ ├── QueryDatetimeAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryDecimalTypesTest.java │ │ │ │ │ ├── QueryDoubleTypesTest.java │ │ │ │ │ ├── QueryExplainTest.java │ │ │ │ │ ├── QueryExtraConditionsTest.java │ │ │ │ │ ├── QueryFloatTypesTest.java │ │ │ │ │ ├── QueryHashIndexScanTest.java │ │ │ │ │ ├── QueryInTest.java │ │ │ │ │ ├── QueryLikeByteArrayTypesTest.java │ │ │ │ │ ├── QueryLikeTest.java │ │ │ │ │ ├── QueryMultiColumnIndexInTest.java │ │ │ │ │ ├── QueryMultipleParameterTest.java │ │ │ │ │ ├── QueryNotNullTest.java │ │ │ │ │ ├── QueryNotTest.java │ │ │ │ │ ├── QueryNullTest.java │ │ │ │ │ ├── QueryOrTest.java │ │ │ │ │ ├── QueryPrimaryKeyTest.java │ │ │ │ │ ├── QueryStringTypesTest.java │ │ │ │ │ ├── QueryTableScanTest.java │ │ │ │ │ ├── QueryTimeAsSqlTimeTypesTest.java │ │ │ │ │ ├── QueryTimeAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryTimestampAsSqlTimestampTypesTest.java │ │ │ │ │ ├── QueryTimestampAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryUniqueKeyTest.java │ │ │ │ │ ├── QueryYearTypesTest.java │ │ │ │ │ ├── SaveTest.java │ │ │ │ │ ├── SerialTransactionsTest.java │ │ │ │ │ ├── TimeAsSqlTimeTypesTest.java │ │ │ │ │ ├── TimeAsUtilDateTypesTest.java │ │ │ │ │ ├── TimestampAsSqlTimestampTypesTest.java │ │ │ │ │ ├── TimestampAsUtilDateTypesTest.java │ │ │ │ │ ├── TransactionStateTest.java │ │ │ │ │ ├── UpdateTest.java │ │ │ │ │ ├── VarbinaryPKTest.java │ │ │ │ │ ├── VarbinaryTypesTest.java │ │ │ │ │ ├── VarcharStringLengthTest.java │ │ │ │ │ ├── domaintypehandler │ │ │ │ │ └── CrazyDomainTypeHandlerFactoryImpl.java │ │ │ │ │ └── model │ │ │ │ │ ├── AllPrimitives.java │ │ │ │ │ ├── BadEmployeeNoPrimaryKeyAnnotationOnClass.java │ │ │ │ │ ├── BadEmployeePrimaryKeyAnnotationColumnAndColumns.java │ │ │ │ │ ├── BadEmployeePrimaryKeyAnnotationNoColumnOrColumns.java │ │ │ │ │ ├── BadEmployeePrimaryKeyAnnotationOnClassMisspelledField.java │ │ │ │ │ ├── BadEmployeeWrongPrimaryKeyAnnotationOnClass.java │ │ │ │ │ ├── BadIndexDuplicateColumn.java │ │ │ │ │ ├── BadIndexDuplicateIndexName.java │ │ │ │ │ ├── BadIndexMissingColumn.java │ │ │ │ │ ├── BigIntegerTypes.java │ │ │ │ │ ├── BinaryPK.java │ │ │ │ │ ├── BinaryTypes.java │ │ │ │ │ ├── BitTypes.java │ │ │ │ │ ├── BlobTypes.java │ │ │ │ │ ├── ByteArrayTypes.java │ │ │ │ │ ├── CharsetBig5.java │ │ │ │ │ ├── CharsetLatin1.java │ │ │ │ │ ├── CharsetModel.java │ │ │ │ │ ├── CharsetSjis.java │ │ │ │ │ ├── CharsetUtf8.java │ │ │ │ │ ├── CrazyDelegate.java │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── DateAsSqlDateTypes.java │ │ │ │ │ ├── DateAsUtilDateTypes.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTypes.java │ │ │ │ │ ├── DatetimeAsUtilDateTypes.java │ │ │ │ │ ├── DecimalTypes.java │ │ │ │ │ ├── Dn2id.java │ │ │ │ │ ├── DoubleTypes.java │ │ │ │ │ ├── DynamicPK.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Employee2.java │ │ │ │ │ ├── FloatTypes.java │ │ │ │ │ ├── HashOnlyLongIntStringPK.java │ │ │ │ │ ├── IdBase.java │ │ │ │ │ ├── IndexesRUs.java │ │ │ │ │ ├── LongIntStringIndex.java │ │ │ │ │ ├── LongIntStringPK.java │ │ │ │ │ ├── LongLongStringPK.java │ │ │ │ │ ├── LongvarbinaryPK.java │ │ │ │ │ ├── NotPersistentTypes.java │ │ │ │ │ ├── NullValues.java │ │ │ │ │ ├── Order.java │ │ │ │ │ ├── OrderLine.java │ │ │ │ │ ├── StringTypes.java │ │ │ │ │ ├── ThrowNullPointerException.java │ │ │ │ │ ├── TimeAsSqlTimeTypes.java │ │ │ │ │ ├── TimeAsUtilDateTypes.java │ │ │ │ │ ├── TimestampAsSqlTimestampTypes.java │ │ │ │ │ ├── TimestampAsUtilDateTypes.java │ │ │ │ │ ├── VarbinaryPK.java │ │ │ │ │ ├── VarbinaryTypes.java │ │ │ │ │ └── YearTypes.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── com.mysql.clusterj.core.spi.DomainTypeHandlerFactory │ │ │ │ └── schema.sql │ │ ├── clusterj-tie │ │ │ ├── CMakeLists.txt │ │ │ ├── logging.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── mysql │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ └── tie │ │ │ │ │ │ ├── BlobImpl.java │ │ │ │ │ │ ├── ClusterConnectionImpl.java │ │ │ │ │ │ ├── ClusterConnectionServiceImpl.java │ │ │ │ │ │ ├── ClusterTransactionImpl.java │ │ │ │ │ │ ├── ColumnImpl.java │ │ │ │ │ │ ├── DbImpl.java │ │ │ │ │ │ ├── DictionaryImpl.java │ │ │ │ │ │ ├── IndexImpl.java │ │ │ │ │ │ ├── IndexOperationImpl.java │ │ │ │ │ │ ├── IndexScanOperationImpl.java │ │ │ │ │ │ ├── KeyPart.java │ │ │ │ │ │ ├── OperationImpl.java │ │ │ │ │ │ ├── PartitionKeyImpl.java │ │ │ │ │ │ ├── ResultDataImpl.java │ │ │ │ │ │ ├── ScanFilterImpl.java │ │ │ │ │ │ ├── ScanOperationImpl.java │ │ │ │ │ │ ├── ScanResultDataImpl.java │ │ │ │ │ │ ├── TableImpl.java │ │ │ │ │ │ └── Utility.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.mysql.clusterj.core.store.ClusterConnectionService │ │ │ │ │ └── com │ │ │ │ │ └── mysql │ │ │ │ │ └── clusterj │ │ │ │ │ └── tie │ │ │ │ │ └── Bundle.properties │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── mysql │ │ │ │ │ │ └── clusterj │ │ │ │ │ │ └── tie │ │ │ │ │ │ └── UtilityTest.java │ │ │ │ └── testsuite │ │ │ │ │ └── clusterj │ │ │ │ │ └── tie │ │ │ │ │ ├── AutoCommitTest.java │ │ │ │ │ ├── BigIntegerTypesTest.java │ │ │ │ │ ├── BinaryPKTest.java │ │ │ │ │ ├── BinaryTypesTest.java │ │ │ │ │ ├── BitTypesTest.java │ │ │ │ │ ├── BlobTest.java │ │ │ │ │ ├── Bug54619Test.java │ │ │ │ │ ├── CharsetTest.java │ │ │ │ │ ├── ConnectionPoolTest.java │ │ │ │ │ ├── CoordinatedTransactionIdVariableTest.java │ │ │ │ │ ├── DateAsSqlDateTypesTest.java │ │ │ │ │ ├── DateAsUtilDateTypesTest.java │ │ │ │ │ ├── DatetimeAsSqlTimestampTypesTest.java │ │ │ │ │ ├── DatetimeAsUtilDateTypesTest.java │ │ │ │ │ ├── DecimalTypesTest.java │ │ │ │ │ ├── DefaultConnectValuesTest.java │ │ │ │ │ ├── DeleteAllByClassTest.java │ │ │ │ │ ├── DeleteInsertTest.java │ │ │ │ │ ├── DeleteQueryAllPrimitivesTest.java │ │ │ │ │ ├── DomainTypeHandlerFactoryTest.java │ │ │ │ │ ├── DynamicBinaryPKTest.java │ │ │ │ │ ├── DynamicObjectTest.java │ │ │ │ │ ├── FindByPrimaryKey2Test.java │ │ │ │ │ ├── FindByPrimaryKeyTest.java │ │ │ │ │ ├── HashOnlyLongIntStringPKTest.java │ │ │ │ │ ├── LoadTest.java │ │ │ │ │ ├── LongIntStringPKTest.java │ │ │ │ │ ├── LongLongStringPKTest.java │ │ │ │ │ ├── LongvarbinaryPKTest.java │ │ │ │ │ ├── MultiplePKTest.java │ │ │ │ │ ├── MultithreadedFindTest.java │ │ │ │ │ ├── MultithreadedTest.java │ │ │ │ │ ├── NegativeMetadataTest.java │ │ │ │ │ ├── NotPersistentTest.java │ │ │ │ │ ├── NullValuesTest.java │ │ │ │ │ ├── ObjectNotFoundTest.java │ │ │ │ │ ├── PartitionKeyTest.java │ │ │ │ │ ├── QueryAllPrimitivesTest.java │ │ │ │ │ ├── QueryBigIntegerTypesTest.java │ │ │ │ │ ├── QueryBtreeIndexScanTest.java │ │ │ │ │ ├── QueryByteArrayTypesTest.java │ │ │ │ │ ├── QueryDateAsSqlDateTypesTest.java │ │ │ │ │ ├── QueryDateAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryDatetimeAsSqlTimestampTypesTest.java │ │ │ │ │ ├── QueryDatetimeAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryDecimalTypesTest.java │ │ │ │ │ ├── QueryDoubleTypesTest.java │ │ │ │ │ ├── QueryExplainTest.java │ │ │ │ │ ├── QueryExtraConditionsTest.java │ │ │ │ │ ├── QueryFloatTypesTest.java │ │ │ │ │ ├── QueryHashIndexScanTest.java │ │ │ │ │ ├── QueryInTest.java │ │ │ │ │ ├── QueryLikeByteArrayTypesTest.java │ │ │ │ │ ├── QueryLikeTest.java │ │ │ │ │ ├── QueryMultiColumnIndexInTest.java │ │ │ │ │ ├── QueryMultipleParameterTest.java │ │ │ │ │ ├── QueryNotNullTest.java │ │ │ │ │ ├── QueryNotTest.java │ │ │ │ │ ├── QueryNullTest.java │ │ │ │ │ ├── QueryOrTest.java │ │ │ │ │ ├── QueryPrimaryKeyTest.java │ │ │ │ │ ├── QueryStringTypesTest.java │ │ │ │ │ ├── QueryTableScanTest.java │ │ │ │ │ ├── QueryTimeAsSqlTimeTypesTest.java │ │ │ │ │ ├── QueryTimeAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryTimestampAsSqlTimestampTypesTest.java │ │ │ │ │ ├── QueryTimestampAsUtilDateTypesTest.java │ │ │ │ │ ├── QueryUniqueKeyTest.java │ │ │ │ │ ├── QueryYearTypesTest.java │ │ │ │ │ ├── SaveTest.java │ │ │ │ │ ├── SerialTransactionsTest.java │ │ │ │ │ ├── TimeAsSqlTimeTypesTest.java │ │ │ │ │ ├── TimeAsUtilDateTypesTest.java │ │ │ │ │ ├── TimestampAsSqlTimestampTypesTest.java │ │ │ │ │ ├── TimestampAsUtilDateTypesTest.java │ │ │ │ │ ├── TransactionStateTest.java │ │ │ │ │ ├── UpdateTest.java │ │ │ │ │ ├── VarbinaryPKTest.java │ │ │ │ │ ├── VarbinaryTypesTest.java │ │ │ │ │ └── VarcharStringLengthTest.java │ │ │ │ └── resources │ │ │ │ └── clusterj.properties │ │ └── pom.xml │ ├── cmake │ │ ├── ndb_require_variable.cmake │ │ └── os │ │ │ ├── Windows.cmake │ │ │ └── WindowsCache.cmake │ ├── compile-cluster │ ├── config │ │ ├── type_JAVA.cmake │ │ ├── type_kernel.cmake │ │ ├── type_mgmapiclient.cmake │ │ ├── type_ndbapiclient.cmake │ │ ├── type_ndbapitest.cmake │ │ ├── type_ndbapitools.cmake │ │ └── type_util.cmake │ ├── 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 │ │ ├── README │ │ ├── doxygen │ │ │ ├── Doxyfile.mgmapi │ │ │ ├── Doxyfile.ndb │ │ │ ├── Doxyfile.ndbapi │ │ │ ├── Doxyfile.odbc │ │ │ ├── Doxyfile.test │ │ │ ├── postdoxy.pl │ │ │ └── predoxy.pl │ │ └── wl2077.txt │ ├── include │ │ ├── CMakeLists.txt │ │ ├── debugger │ │ │ ├── DebuggerNames.hpp │ │ │ ├── EventLogger.hpp │ │ │ └── SignalLoggerManager.hpp │ │ ├── kernel │ │ │ ├── AttributeDescriptor.hpp │ │ │ ├── AttributeHeader.hpp │ │ │ ├── AttributeList.hpp │ │ │ ├── BlockNumbers.h │ │ │ ├── GlobalSignalNumbers.h │ │ │ ├── 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 │ │ │ │ ├── AllocMem.hpp │ │ │ │ ├── AllocNodeId.hpp │ │ │ │ ├── AlterIndx.hpp │ │ │ │ ├── AlterIndxImpl.hpp │ │ │ │ ├── AlterTab.hpp │ │ │ │ ├── AlterTable.hpp │ │ │ │ ├── ApiBroadcast.hpp │ │ │ │ ├── ApiRegSignalData.hpp │ │ │ │ ├── ApiVersion.hpp │ │ │ │ ├── ArbitSignalData.hpp │ │ │ │ ├── AttrInfo.hpp │ │ │ │ ├── BackupContinueB.hpp │ │ │ │ ├── BackupImpl.hpp │ │ │ │ ├── BackupLockTab.hpp │ │ │ │ ├── BackupSignalData.hpp │ │ │ │ ├── BlockCommitOrd.hpp │ │ │ │ ├── BuildIndx.hpp │ │ │ │ ├── BuildIndxImpl.hpp │ │ │ │ ├── CallbackSignal.hpp │ │ │ │ ├── CheckNodeGroups.hpp │ │ │ │ ├── CloseComReqConf.hpp │ │ │ │ ├── CmInit.hpp │ │ │ │ ├── CmRegSignalData.hpp │ │ │ │ ├── CmvmiCfgConf.hpp │ │ │ │ ├── CntrMasterConf.hpp │ │ │ │ ├── CntrMasterReq.hpp │ │ │ │ ├── CntrStart.hpp │ │ │ │ ├── ConfigChange.hpp │ │ │ │ ├── ConfigParamId.hpp │ │ │ │ ├── ContinueFragmented.hpp │ │ │ │ ├── CopyActive.hpp │ │ │ │ ├── CopyData.hpp │ │ │ │ ├── CopyFrag.hpp │ │ │ │ ├── CopyGCIReq.hpp │ │ │ │ ├── CreateEvnt.hpp │ │ │ │ ├── CreateFilegroup.hpp │ │ │ │ ├── CreateFilegroupImpl.hpp │ │ │ │ ├── CreateFragmentation.hpp │ │ │ │ ├── CreateHashMap.hpp │ │ │ │ ├── CreateIndx.hpp │ │ │ │ ├── CreateIndxImpl.hpp │ │ │ │ ├── CreateNodegroup.hpp │ │ │ │ ├── CreateNodegroupImpl.hpp │ │ │ │ ├── CreateObj.hpp │ │ │ │ ├── CreateTab.hpp │ │ │ │ ├── CreateTable.hpp │ │ │ │ ├── CreateTrig.hpp │ │ │ │ ├── CreateTrigImpl.hpp │ │ │ │ ├── DataFileOrd.hpp │ │ │ │ ├── DbinfoScan.hpp │ │ │ │ ├── DbspjErr.hpp │ │ │ │ ├── DiAddTab.hpp │ │ │ │ ├── DiGetNodes.hpp │ │ │ │ ├── DictLock.hpp │ │ │ │ ├── DictObjOp.hpp │ │ │ │ ├── DictSchemaInfo.hpp │ │ │ │ ├── DictSignal.hpp │ │ │ │ ├── DictSizeAltReq.hpp │ │ │ │ ├── DictStart.hpp │ │ │ │ ├── DictTabInfo.hpp │ │ │ │ ├── DictTakeover.hpp │ │ │ │ ├── DihAddFrag.hpp │ │ │ │ ├── DihContinueB.hpp │ │ │ │ ├── DihFragCount.hpp │ │ │ │ ├── DihGetTabInfo.hpp │ │ │ │ ├── DihRestart.hpp │ │ │ │ ├── DihScanTab.hpp │ │ │ │ ├── DihSizeAltReq.hpp │ │ │ │ ├── DihStartTab.hpp │ │ │ │ ├── DihSwitchReplica.hpp │ │ │ │ ├── DisconnectRep.hpp │ │ │ │ ├── DropFilegroup.hpp │ │ │ │ ├── DropFilegroupImpl.hpp │ │ │ │ ├── DropIndx.hpp │ │ │ │ ├── DropIndxImpl.hpp │ │ │ │ ├── DropNodegroup.hpp │ │ │ │ ├── DropNodegroupImpl.hpp │ │ │ │ ├── DropObj.hpp │ │ │ │ ├── DropTab.hpp │ │ │ │ ├── DropTabFile.hpp │ │ │ │ ├── DropTable.hpp │ │ │ │ ├── DropTrig.hpp │ │ │ │ ├── DropTrigImpl.hpp │ │ │ │ ├── DumpStateOrd.hpp │ │ │ │ ├── EmptyLcp.hpp │ │ │ │ ├── EnableCom.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 │ │ │ │ ├── GCP.hpp │ │ │ │ ├── GetConfig.hpp │ │ │ │ ├── GetTabInfo.hpp │ │ │ │ ├── GetTableId.hpp │ │ │ │ ├── HashMapImpl.hpp │ │ │ │ ├── HotSpareRep.hpp │ │ │ │ ├── IndexStatSignal.hpp │ │ │ │ ├── IndxAttrInfo.hpp │ │ │ │ ├── IndxKeyInfo.hpp │ │ │ │ ├── InvalidateNodeLCPConf.hpp │ │ │ │ ├── InvalidateNodeLCPReq.hpp │ │ │ │ ├── KeyInfo.hpp │ │ │ │ ├── LCP.hpp │ │ │ │ ├── LgmanContinueB.hpp │ │ │ │ ├── ListTables.hpp │ │ │ │ ├── LocalRouteOrd.hpp │ │ │ │ ├── LqhFrag.hpp │ │ │ │ ├── LqhKey.hpp │ │ │ │ ├── LqhSizeAltReq.hpp │ │ │ │ ├── LqhTransConf.hpp │ │ │ │ ├── LqhTransReq.hpp │ │ │ │ ├── MasterGCP.hpp │ │ │ │ ├── MasterLCP.hpp │ │ │ │ ├── NFCompleteRep.hpp │ │ │ │ ├── NdbSttor.hpp │ │ │ │ ├── NdbfsContinueB.hpp │ │ │ │ ├── NextScan.hpp │ │ │ │ ├── NodeFailRep.hpp │ │ │ │ ├── NodePing.hpp │ │ │ │ ├── NodeStateSignalData.hpp │ │ │ │ ├── PackedSignal.hpp │ │ │ │ ├── PgmanContinueB.hpp │ │ │ │ ├── PrepDropTab.hpp │ │ │ │ ├── PrepFailReqRef.hpp │ │ │ │ ├── QueryTree.hpp │ │ │ │ ├── ReadConfig.hpp │ │ │ │ ├── ReadNodesConf.hpp │ │ │ │ ├── RelTabMem.hpp │ │ │ │ ├── ReleasePages.hpp │ │ │ │ ├── RestoreContinueB.hpp │ │ │ │ ├── RestoreImpl.hpp │ │ │ │ ├── ResumeReq.hpp │ │ │ │ ├── RouteOrd.hpp │ │ │ │ ├── ScanFrag.hpp │ │ │ │ ├── ScanTab.hpp │ │ │ │ ├── SchemaTrans.hpp │ │ │ │ ├── SchemaTransImpl.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 │ │ │ │ ├── StopForCrash.hpp │ │ │ │ ├── StopMe.hpp │ │ │ │ ├── StopPerm.hpp │ │ │ │ ├── StopReq.hpp │ │ │ │ ├── SumaImpl.hpp │ │ │ │ ├── Sync.hpp │ │ │ │ ├── SystemError.hpp │ │ │ │ ├── TabCommit.hpp │ │ │ │ ├── TakeOver.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 │ │ │ │ ├── Upgrade.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 │ │ ├── ndb_config.h.in │ │ ├── ndb_constants.h │ │ ├── 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 │ │ │ ├── NdbInterpretedCode.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 │ │ │ ├── NdbDir.hpp │ │ │ ├── NdbEnv.h │ │ │ ├── NdbHost.h │ │ │ ├── NdbMain.h │ │ │ ├── NdbMem.h │ │ │ ├── NdbMutex.h │ │ │ ├── NdbNuma.h │ │ │ ├── NdbSleep.h │ │ │ ├── NdbTCP.h │ │ │ ├── NdbThread.h │ │ │ ├── NdbTick.h │ │ │ ├── ndb_daemon.h │ │ │ ├── ndb_prefetch.h │ │ │ ├── ndb_socket.h │ │ │ ├── ndb_socket_poller.h │ │ │ ├── ndb_socket_posix.h │ │ │ └── ndb_socket_win32.h │ │ ├── transporter │ │ │ ├── TransporterCallback.hpp │ │ │ ├── TransporterDefinitions.hpp │ │ │ └── TransporterRegistry.hpp │ │ └── util │ │ │ ├── BaseString.hpp │ │ │ ├── Bitmask.hpp │ │ │ ├── ConfigValues.hpp │ │ │ ├── File.hpp │ │ │ ├── HashMap.hpp │ │ │ ├── InputStream.hpp │ │ │ ├── NdbAutoPtr.hpp │ │ │ ├── NdbOut.hpp │ │ │ ├── NdbPack.hpp │ │ │ ├── NdbSqlUtil.hpp │ │ │ ├── NdbTap.hpp │ │ │ ├── NdbTypesUtil.hpp │ │ │ ├── OutputStream.hpp │ │ │ ├── Parser.hpp │ │ │ ├── Properties.hpp │ │ │ ├── SimpleProperties.hpp │ │ │ ├── SocketAuthenticator.hpp │ │ │ ├── SocketClient.hpp │ │ │ ├── SocketServer.hpp │ │ │ ├── SparseBitmask.hpp │ │ │ ├── UtilBuffer.hpp │ │ │ ├── Vector.hpp │ │ │ ├── basestring_vsnprintf.h │ │ │ ├── md5_hash.hpp │ │ │ ├── ndb_base64.h │ │ │ ├── ndb_opts.h │ │ │ ├── ndb_rand.h │ │ │ ├── ndbzio.h │ │ │ ├── random.h │ │ │ ├── socket_io.h │ │ │ ├── uucode.h │ │ │ └── version.h │ ├── ndb_configure.cmake │ ├── ndbapi-examples │ │ ├── mgmapi_logevent │ │ │ └── main.cpp │ │ ├── mgmapi_logevent2 │ │ │ └── main.cpp │ │ ├── ndbapi_async │ │ │ ├── ndbapi_async.cpp │ │ │ └── readme.txt │ │ ├── ndbapi_async1 │ │ │ └── ndbapi_async1.cpp │ │ ├── ndbapi_blob │ │ │ └── ndbapi_blob.cpp │ │ ├── ndbapi_blob_ndbrecord │ │ │ └── main.cpp │ │ ├── ndbapi_event │ │ │ └── ndbapi_event.cpp │ │ ├── ndbapi_multi_cursor │ │ │ └── main.cpp │ │ ├── ndbapi_recattr_vs_record │ │ │ └── main.cpp │ │ ├── ndbapi_retries │ │ │ └── ndbapi_retries.cpp │ │ ├── ndbapi_s_i_ndbrecord │ │ │ └── main.cpp │ │ ├── ndbapi_scan │ │ │ ├── ndbapi_scan.cpp │ │ │ └── readme.txt │ │ ├── ndbapi_simple │ │ │ └── ndbapi_simple.cpp │ │ ├── ndbapi_simple_dual │ │ │ └── main.cpp │ │ └── ndbapi_simple_index │ │ │ └── main.cpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── debugger │ │ │ │ ├── BlockNames.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DebuggerNames.cpp │ │ │ │ ├── EventLogger.cpp │ │ │ │ ├── SignalLoggerManager.cpp │ │ │ │ └── signaldata │ │ │ │ │ ├── AccLock.cpp │ │ │ │ │ ├── AlterIndx.cpp │ │ │ │ │ ├── AlterIndxImpl.cpp │ │ │ │ │ ├── AlterTab.cpp │ │ │ │ │ ├── AlterTable.cpp │ │ │ │ │ ├── ApiVersion.cpp │ │ │ │ │ ├── BackupImpl.cpp │ │ │ │ │ ├── BackupSignalData.cpp │ │ │ │ │ ├── BuildIndx.cpp │ │ │ │ │ ├── BuildIndxImpl.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CloseComReqConf.cpp │ │ │ │ │ ├── CntrStart.cpp │ │ │ │ │ ├── ContinueB.cpp │ │ │ │ │ ├── CopyGCI.cpp │ │ │ │ │ ├── CreateEvnt.cpp │ │ │ │ │ ├── CreateFragmentation.cpp │ │ │ │ │ ├── CreateIndx.cpp │ │ │ │ │ ├── CreateIndxImpl.cpp │ │ │ │ │ ├── CreateTab.cpp │ │ │ │ │ ├── CreateTable.cpp │ │ │ │ │ ├── CreateTrig.cpp │ │ │ │ │ ├── CreateTrigImpl.cpp │ │ │ │ │ ├── DbinfoScan.cpp │ │ │ │ │ ├── DictTabInfo.cpp │ │ │ │ │ ├── DihContinueB.cpp │ │ │ │ │ ├── DihSwitchReplicaReq.cpp │ │ │ │ │ ├── DisconnectRep.cpp │ │ │ │ │ ├── DropIndx.cpp │ │ │ │ │ ├── DropIndxImpl.cpp │ │ │ │ │ ├── DropTab.cpp │ │ │ │ │ ├── DropTable.cpp │ │ │ │ │ ├── DropTrig.cpp │ │ │ │ │ ├── DropTrigImpl.cpp │ │ │ │ │ ├── FailRep.cpp │ │ │ │ │ ├── FireTrigOrd.cpp │ │ │ │ │ ├── FsAppendReq.cpp │ │ │ │ │ ├── FsCloseReq.cpp │ │ │ │ │ ├── FsConf.cpp │ │ │ │ │ ├── FsOpenReq.cpp │ │ │ │ │ ├── FsReadWriteReq.cpp │ │ │ │ │ ├── FsRef.cpp │ │ │ │ │ ├── GCP.cpp │ │ │ │ │ ├── GetConfig.cpp │ │ │ │ │ ├── GetTabInfo.cpp │ │ │ │ │ ├── IndexStatSignal.cpp │ │ │ │ │ ├── IndxAttrInfo.cpp │ │ │ │ │ ├── IndxKeyInfo.cpp │ │ │ │ │ ├── LCP.cpp │ │ │ │ │ ├── LocalRouteOrd.cpp │ │ │ │ │ ├── LqhFrag.cpp │ │ │ │ │ ├── LqhKey.cpp │ │ │ │ │ ├── LqhTrans.cpp │ │ │ │ │ ├── MasterLCP.cpp │ │ │ │ │ ├── NFCompleteRep.cpp │ │ │ │ │ ├── NdbSttor.cpp │ │ │ │ │ ├── NdbfsContinueB.cpp │ │ │ │ │ ├── NodePing.cpp │ │ │ │ │ ├── PackedSignal.cpp │ │ │ │ │ ├── PrepDropTab.cpp │ │ │ │ │ ├── PrepFailReqRef.cpp │ │ │ │ │ ├── ReadNodesConf.cpp │ │ │ │ │ ├── ScanFrag.cpp │ │ │ │ │ ├── ScanTab.cpp │ │ │ │ │ ├── SchemaTrans.cpp │ │ │ │ │ ├── SchemaTransImpl.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 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConsoleLogHandler.cpp │ │ │ │ ├── EventLogHandler.cpp │ │ │ │ ├── EventLogHandler.hpp │ │ │ │ ├── FileLogHandler.cpp │ │ │ │ ├── LogHandler.cpp │ │ │ │ ├── LogHandlerList.cpp │ │ │ │ ├── LogHandlerList.hpp │ │ │ │ ├── Logger.cpp │ │ │ │ ├── SysLogHandler.cpp │ │ │ │ ├── message.h │ │ │ │ ├── message.mc │ │ │ │ └── message.rc │ │ │ ├── mgmcommon │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConfigRetriever.cpp │ │ │ │ ├── IPCConfig.cpp │ │ │ │ └── printConfig │ │ │ │ │ └── printConfig.cpp │ │ │ ├── portlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── NdbCondition.c │ │ │ │ ├── NdbConfig.c │ │ │ │ ├── NdbDir.cpp │ │ │ │ ├── NdbEnv.c │ │ │ │ ├── NdbHost.c │ │ │ │ ├── NdbMem.c │ │ │ │ ├── NdbMutex.c │ │ │ │ ├── NdbNuma.cpp │ │ │ │ ├── NdbPortLibTest.cpp │ │ │ │ ├── NdbTCP.cpp │ │ │ │ ├── NdbThread.c │ │ │ │ ├── NdbTick.c │ │ │ │ ├── memtest.c │ │ │ │ ├── mmstest.cpp │ │ │ │ ├── munmaptest.cpp │ │ │ │ ├── ndb_daemon.cc │ │ │ │ └── ndb_socket.cpp │ │ │ ├── transporter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Loopback_Transporter.cpp │ │ │ │ ├── Loopback_Transporter.hpp │ │ │ │ ├── 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 │ │ │ │ ├── TCP_Transporter.cpp │ │ │ │ ├── TCP_Transporter.hpp │ │ │ │ ├── Transporter.cpp │ │ │ │ ├── Transporter.hpp │ │ │ │ ├── TransporterInternalDefinitions.hpp │ │ │ │ ├── TransporterRegistry.cpp │ │ │ │ ├── basictest │ │ │ │ │ └── basicTransporterTest.cpp │ │ │ │ ├── buddy.cpp │ │ │ │ ├── buddy.hpp │ │ │ │ ├── failoverSCI │ │ │ │ │ └── failoverSCI.cpp │ │ │ │ ├── perftest │ │ │ │ │ └── perfTransporterTest.cpp │ │ │ │ ├── priotest │ │ │ │ │ ├── prioSCI │ │ │ │ │ │ └── prioSCI.cpp │ │ │ │ │ ├── prioSHM │ │ │ │ │ │ └── prioSHM.cpp │ │ │ │ │ ├── prioTCP │ │ │ │ │ │ └── prioTCP.cpp │ │ │ │ │ ├── prioTransporterTest.cpp │ │ │ │ │ └── prioTransporterTest.hpp │ │ │ │ └── trp.txt │ │ │ └── util │ │ │ │ ├── BaseString.cpp │ │ │ │ ├── Bitmask.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConfigValues.cpp │ │ │ │ ├── File.cpp │ │ │ │ ├── HashMap.cpp │ │ │ │ ├── InputStream.cpp │ │ │ │ ├── NdbOut.cpp │ │ │ │ ├── NdbPack.cpp │ │ │ │ ├── NdbSqlUtil.cpp │ │ │ │ ├── OutputStream.cpp │ │ │ │ ├── Parser.cpp │ │ │ │ ├── Properties.cpp │ │ │ │ ├── SimpleProperties.cpp │ │ │ │ ├── SocketAuthenticator.cpp │ │ │ │ ├── SocketClient.cpp │ │ │ │ ├── SocketServer.cpp │ │ │ │ ├── SparseBitmask.cpp │ │ │ │ ├── Vector.cpp │ │ │ │ ├── basestring_vsnprintf.c │ │ │ │ ├── md5_hash.cpp │ │ │ │ ├── ndb_init.cpp │ │ │ │ ├── ndb_opts.c │ │ │ │ ├── ndb_rand.c │ │ │ │ ├── ndb_show_compat.cpp │ │ │ │ ├── ndbzio.c │ │ │ │ ├── parse_mask.hpp │ │ │ │ ├── random.c │ │ │ │ ├── require.c │ │ │ │ ├── socket_io.cpp │ │ │ │ ├── strdup.c │ │ │ │ ├── testConfigValues │ │ │ │ └── testConfigValues.cpp │ │ │ │ ├── testProperties │ │ │ │ └── testProperties.cpp │ │ │ │ ├── testSimpleProperties │ │ │ │ └── sp_test.cpp │ │ │ │ ├── uucode.c │ │ │ │ └── version.cpp │ │ ├── cw │ │ │ └── cpcd │ │ │ │ ├── APIService.cpp │ │ │ │ ├── APIService.hpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CPCD.cpp │ │ │ │ ├── CPCD.hpp │ │ │ │ ├── Monitor.cpp │ │ │ │ ├── Process.cpp │ │ │ │ ├── common.cpp │ │ │ │ ├── common.hpp │ │ │ │ └── main.cpp │ │ ├── kernel │ │ │ ├── CMakeLists.txt │ │ │ ├── SimBlockList.cpp │ │ │ ├── angel.cpp │ │ │ ├── angel.hpp │ │ │ ├── blocks │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ERROR_codes.txt │ │ │ │ ├── LocalProxy.cpp │ │ │ │ ├── LocalProxy.hpp │ │ │ │ ├── NodeRestart.new.txt │ │ │ │ ├── NodeRestart.txt │ │ │ │ ├── OptNR.txt │ │ │ │ ├── PgmanProxy.cpp │ │ │ │ ├── PgmanProxy.hpp │ │ │ │ ├── RestoreProxy.cpp │ │ │ │ ├── RestoreProxy.hpp │ │ │ │ ├── Start.txt │ │ │ │ ├── SystemRestart.new.txt │ │ │ │ ├── SystemRestart.txt │ │ │ │ ├── backup │ │ │ │ │ ├── Backup.cpp │ │ │ │ │ ├── Backup.hpp │ │ │ │ │ ├── Backup.txt │ │ │ │ │ ├── BackupFormat.hpp │ │ │ │ │ ├── BackupInit.cpp │ │ │ │ │ ├── BackupProxy.cpp │ │ │ │ │ ├── BackupProxy.hpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FsBuffer.hpp │ │ │ │ │ └── read.cpp │ │ │ │ ├── cmvmi │ │ │ │ │ ├── Cmvmi.cpp │ │ │ │ │ └── Cmvmi.hpp │ │ │ │ ├── dbacc │ │ │ │ │ ├── Dbacc.hpp │ │ │ │ │ ├── DbaccInit.cpp │ │ │ │ │ ├── DbaccMain.cpp │ │ │ │ │ ├── DbaccProxy.cpp │ │ │ │ │ └── DbaccProxy.hpp │ │ │ │ ├── dbdict │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CreateIndex.txt │ │ │ │ │ ├── CreateTable.new.txt │ │ │ │ │ ├── CreateTable.txt │ │ │ │ │ ├── Dbdict.cpp │ │ │ │ │ ├── Dbdict.hpp │ │ │ │ │ ├── Dbdict.txt │ │ │ │ │ ├── DictLock.txt │ │ │ │ │ ├── DropTable.txt │ │ │ │ │ ├── Event.txt │ │ │ │ │ ├── MasterTakeover.txt │ │ │ │ │ ├── Master_AddTable.sfl │ │ │ │ │ ├── SchemaFile.hpp │ │ │ │ │ ├── Slave_AddTable.sfl │ │ │ │ │ ├── printSchemaFile.cpp │ │ │ │ │ └── wl3600.txt │ │ │ │ ├── dbdih │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Dbdih.hpp │ │ │ │ │ ├── DbdihInit.cpp │ │ │ │ │ ├── DbdihMain.cpp │ │ │ │ │ ├── LCP.txt │ │ │ │ │ ├── Sysfile.hpp │ │ │ │ │ └── printSysfile.cpp │ │ │ │ ├── dbinfo │ │ │ │ │ ├── Dbinfo.cpp │ │ │ │ │ ├── Dbinfo.hpp │ │ │ │ │ └── DbinfoScan.txt │ │ │ │ ├── dblqh │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Dblqh.hpp │ │ │ │ │ ├── DblqhCommon.cpp │ │ │ │ │ ├── DblqhCommon.hpp │ │ │ │ │ ├── DblqhInit.cpp │ │ │ │ │ ├── DblqhMain.cpp │ │ │ │ │ ├── DblqhProxy.cpp │ │ │ │ │ ├── DblqhProxy.hpp │ │ │ │ │ └── redoLogReader │ │ │ │ │ │ ├── reader.cpp │ │ │ │ │ │ ├── records.cpp │ │ │ │ │ │ └── records.hpp │ │ │ │ ├── dbspj │ │ │ │ │ ├── Dbspj.hpp │ │ │ │ │ ├── DbspjInit.cpp │ │ │ │ │ ├── DbspjMain.cpp │ │ │ │ │ ├── DbspjProxy.cpp │ │ │ │ │ └── DbspjProxy.hpp │ │ │ │ ├── dbtc │ │ │ │ │ ├── Dbtc.hpp │ │ │ │ │ ├── DbtcInit.cpp │ │ │ │ │ ├── DbtcMain.cpp │ │ │ │ │ ├── DbtcProxy.cpp │ │ │ │ │ └── DbtcProxy.hpp │ │ │ │ ├── dbtup │ │ │ │ │ ├── AttributeOffset.hpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Dbtup.hpp │ │ │ │ │ ├── DbtupAbort.cpp │ │ │ │ │ ├── DbtupBuffer.cpp │ │ │ │ │ ├── DbtupClient.cpp │ │ │ │ │ ├── DbtupCommit.cpp │ │ │ │ │ ├── DbtupDebug.cpp │ │ │ │ │ ├── DbtupDiskAlloc.cpp │ │ │ │ │ ├── DbtupExecQuery.cpp │ │ │ │ │ ├── DbtupFixAlloc.cpp │ │ │ │ │ ├── DbtupGen.cpp │ │ │ │ │ ├── DbtupIndex.cpp │ │ │ │ │ ├── DbtupMeta.cpp │ │ │ │ │ ├── DbtupPagMan.cpp │ │ │ │ │ ├── DbtupPageMap.cpp │ │ │ │ │ ├── DbtupProxy.cpp │ │ │ │ │ ├── DbtupProxy.hpp │ │ │ │ │ ├── DbtupRoutines.cpp │ │ │ │ │ ├── DbtupScan.cpp │ │ │ │ │ ├── DbtupStoredProcDef.cpp │ │ │ │ │ ├── DbtupTabDesMan.cpp │ │ │ │ │ ├── DbtupTrigger.cpp │ │ │ │ │ ├── DbtupVarAlloc.cpp │ │ │ │ │ ├── Notes.txt │ │ │ │ │ ├── Undo_buffer.cpp │ │ │ │ │ ├── Undo_buffer.hpp │ │ │ │ │ ├── test_dynbm.c │ │ │ │ │ ├── test_varpage.cpp │ │ │ │ │ ├── tuppage.cpp │ │ │ │ │ └── tuppage.hpp │ │ │ │ ├── dbtux │ │ │ │ │ ├── Dbtux.hpp │ │ │ │ │ ├── DbtuxBuild.cpp │ │ │ │ │ ├── DbtuxCmp.cpp │ │ │ │ │ ├── DbtuxDebug.cpp │ │ │ │ │ ├── DbtuxGen.cpp │ │ │ │ │ ├── DbtuxMaint.cpp │ │ │ │ │ ├── DbtuxMeta.cpp │ │ │ │ │ ├── DbtuxNode.cpp │ │ │ │ │ ├── DbtuxProxy.cpp │ │ │ │ │ ├── DbtuxProxy.hpp │ │ │ │ │ ├── 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 │ │ │ │ │ ├── AsyncIoThread.cpp │ │ │ │ │ ├── AsyncIoThread.hpp │ │ │ │ │ ├── Filename.cpp │ │ │ │ │ ├── Filename.hpp │ │ │ │ │ ├── MemoryChannel.cpp │ │ │ │ │ ├── MemoryChannel.hpp │ │ │ │ │ ├── MemoryChannelTest │ │ │ │ │ │ └── MemoryChannelTest.cpp │ │ │ │ │ ├── Ndbfs.cpp │ │ │ │ │ ├── Ndbfs.hpp │ │ │ │ │ ├── OpenFiles.hpp │ │ │ │ │ ├── Pool.hpp │ │ │ │ │ ├── PosixAsyncFile.cpp │ │ │ │ │ ├── PosixAsyncFile.hpp │ │ │ │ │ ├── VoidFs.cpp │ │ │ │ │ ├── Win32AsyncFile.cpp │ │ │ │ │ └── Win32AsyncFile.hpp │ │ │ │ ├── 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 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ErrorHandlingMacros.hpp │ │ │ │ ├── ErrorReporter.cpp │ │ │ │ ├── ErrorReporter.hpp │ │ │ │ ├── TimeModule.cpp │ │ │ │ ├── TimeModule.hpp │ │ │ │ └── ndbd_exit_codes.c │ │ │ ├── main.cpp │ │ │ ├── ndbd.cpp │ │ │ ├── ndbd.hpp │ │ │ └── vm │ │ │ │ ├── ArenaPool.cpp │ │ │ │ ├── ArenaPool.hpp │ │ │ │ ├── Array.hpp │ │ │ │ ├── ArrayPool.hpp │ │ │ │ ├── CArray.hpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Callback.hpp │ │ │ │ ├── ClusterConfiguration.cpp │ │ │ │ ├── ClusterConfiguration.hpp │ │ │ │ ├── Configuration.cpp │ │ │ │ ├── Configuration.hpp │ │ │ │ ├── DLCFifoList.hpp │ │ │ │ ├── DLCHashTable.hpp │ │ │ │ ├── DLFifoList.hpp │ │ │ │ ├── DLHashTable.hpp │ │ │ │ ├── DLHashTable2.hpp │ │ │ │ ├── DLList.hpp │ │ │ │ ├── DataBuffer.hpp │ │ │ │ ├── DataBuffer2.hpp │ │ │ │ ├── DynArr256.cpp │ │ │ │ ├── DynArr256.hpp │ │ │ │ ├── Emulator.cpp │ │ │ │ ├── Emulator.hpp │ │ │ │ ├── FastScheduler.cpp │ │ │ │ ├── FastScheduler.hpp │ │ │ │ ├── GlobalData.cpp │ │ │ │ ├── GlobalData.hpp │ │ │ │ ├── KeyDescriptor.hpp │ │ │ │ ├── KeyTable.hpp │ │ │ │ ├── KeyTable2.hpp │ │ │ │ ├── KeyTable2Ref.hpp │ │ │ │ ├── LinearPool.hpp │ │ │ │ ├── LockQueue.cpp │ │ │ │ ├── LockQueue.hpp │ │ │ │ ├── LongSignal.cpp │ │ │ │ ├── LongSignal.hpp │ │ │ │ ├── LongSignalImpl.hpp │ │ │ │ ├── LongSignal_mt.cpp │ │ │ │ ├── LongSignal_nonmt.cpp │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── Mutex.hpp │ │ │ │ ├── NdbSeqLock.hpp │ │ │ │ ├── NdbdSuperPool.cpp │ │ │ │ ├── NdbdSuperPool.hpp │ │ │ │ ├── Ndbinfo.cpp │ │ │ │ ├── Ndbinfo.hpp │ │ │ │ ├── NdbinfoTables.cpp │ │ │ │ ├── Pool.cpp │ │ │ │ ├── Pool.hpp │ │ │ │ ├── Prio.hpp │ │ │ │ ├── RWPool.cpp │ │ │ │ ├── RWPool.hpp │ │ │ │ ├── RequestTracker.hpp │ │ │ │ ├── Rope.cpp │ │ │ │ ├── Rope.hpp │ │ │ │ ├── SLFifoList.hpp │ │ │ │ ├── SLList.hpp │ │ │ │ ├── SafeCounter.cpp │ │ │ │ ├── SafeCounter.hpp │ │ │ │ ├── SafeMutex.cpp │ │ │ │ ├── SafeMutex.hpp │ │ │ │ ├── SectionReader.cpp │ │ │ │ ├── SectionReader.hpp │ │ │ │ ├── SignalCounter.hpp │ │ │ │ ├── SimBlockList.hpp │ │ │ │ ├── SimplePropertiesSection.cpp │ │ │ │ ├── SimplePropertiesSection_mt.cpp │ │ │ │ ├── SimplePropertiesSection_nonmt.cpp │ │ │ │ ├── SimulatedBlock.cpp │ │ │ │ ├── SimulatedBlock.hpp │ │ │ │ ├── SimulatedBlock_mt.cpp │ │ │ │ ├── SimulatedBlock_nonmt.cpp │ │ │ │ ├── SuperPool.cpp │ │ │ │ ├── SuperPool.hpp │ │ │ │ ├── ThreadConfig.cpp │ │ │ │ ├── ThreadConfig.hpp │ │ │ │ ├── TimeQueue.cpp │ │ │ │ ├── TimeQueue.hpp │ │ │ │ ├── TransporterCallback.cpp │ │ │ │ ├── TransporterCallbackKernel.hpp │ │ │ │ ├── TransporterCallback_mt.cpp │ │ │ │ ├── TransporterCallback_nonmt.cpp │ │ │ │ ├── VMSignal.cpp │ │ │ │ ├── VMSignal.hpp │ │ │ │ ├── WOPool.cpp │ │ │ │ ├── WOPool.hpp │ │ │ │ ├── WaitQueue.hpp │ │ │ │ ├── WatchDog.cpp │ │ │ │ ├── WatchDog.hpp │ │ │ │ ├── bench_pool.cpp │ │ │ │ ├── dummy_mt.cpp │ │ │ │ ├── dummy_nonmt.cpp │ │ │ │ ├── mem.txt │ │ │ │ ├── mt-asm.h │ │ │ │ ├── mt.cpp │ │ │ │ ├── mt.hpp │ │ │ │ ├── mt_thr_config.cpp │ │ │ │ ├── mt_thr_config.hpp │ │ │ │ ├── ndbd_malloc.cpp │ │ │ │ ├── ndbd_malloc.hpp │ │ │ │ ├── ndbd_malloc_impl.cpp │ │ │ │ ├── ndbd_malloc_impl.hpp │ │ │ │ ├── pc.hpp │ │ │ │ ├── testCopy │ │ │ │ ├── rr.cpp │ │ │ │ └── testCopy.cpp │ │ │ │ ├── testDataBuffer │ │ │ │ └── testDataBuffer.cpp │ │ │ │ ├── testLongSig │ │ │ │ └── testLongSig.cpp │ │ │ │ ├── testSimplePropertiesSection │ │ │ │ └── test.cpp │ │ │ │ └── testSuperPool.cpp │ │ ├── mgmapi │ │ │ ├── CMakeLists.txt │ │ │ ├── LocalConfig.cpp │ │ │ ├── LocalConfig.hpp │ │ │ ├── mgmapi.cpp │ │ │ ├── mgmapi_configuration.cpp │ │ │ ├── mgmapi_configuration.hpp │ │ │ ├── mgmapi_error.c │ │ │ ├── mgmapi_internal.h │ │ │ ├── ndb_logevent.cpp │ │ │ ├── ndb_logevent.hpp │ │ │ └── test │ │ │ │ ├── keso.c │ │ │ │ └── mgmSrvApi.cpp │ │ ├── mgmclient │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandInterpreter.cpp │ │ │ ├── main.cpp │ │ │ ├── ndb_mgmclient.hpp │ │ │ └── test_cpcd │ │ │ │ └── test_cpcd.cpp │ │ ├── mgmsrv │ │ │ ├── CMakeLists.txt │ │ │ ├── Config.cpp │ │ │ ├── Config.hpp │ │ │ ├── ConfigInfo.cpp │ │ │ ├── ConfigInfo.hpp │ │ │ ├── ConfigManager.cpp │ │ │ ├── ConfigManager.hpp │ │ │ ├── ConfigSubscriber.hpp │ │ │ ├── Defragger.hpp │ │ │ ├── ERROR_codes.txt │ │ │ ├── InitConfigFileParser.cpp │ │ │ ├── InitConfigFileParser.hpp │ │ │ ├── MgmtSrvr.cpp │ │ │ ├── MgmtSrvr.hpp │ │ │ ├── MgmtThread.hpp │ │ │ ├── Services.cpp │ │ │ ├── Services.hpp │ │ │ ├── main.cpp │ │ │ ├── mkconfig │ │ │ │ └── mkconfig.cpp │ │ │ ├── ndb_mgmd_error.h │ │ │ └── testConfig.cpp │ │ ├── ndbapi │ │ │ ├── API.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ClusterMgr.cpp │ │ │ ├── ClusterMgr.hpp │ │ │ ├── DictCache.cpp │ │ │ ├── DictCache.hpp │ │ │ ├── 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 │ │ │ ├── NdbIndexStatFrmData.cpp │ │ │ ├── NdbIndexStatImpl.cpp │ │ │ ├── NdbIndexStatImpl.hpp │ │ │ ├── NdbInfo.cpp │ │ │ ├── NdbInfo.hpp │ │ │ ├── NdbInfoRecAttr.hpp │ │ │ ├── NdbInfoScanOperation.cpp │ │ │ ├── NdbInfoScanOperation.hpp │ │ │ ├── NdbInterpretedCode.cpp │ │ │ ├── NdbLinHash.hpp │ │ │ ├── NdbOperation.cpp │ │ │ ├── NdbOperationDefine.cpp │ │ │ ├── NdbOperationExec.cpp │ │ │ ├── NdbOperationInt.cpp │ │ │ ├── NdbOperationScan.cpp │ │ │ ├── NdbOperationSearch.cpp │ │ │ ├── NdbPool.cpp │ │ │ ├── NdbPoolImpl.cpp │ │ │ ├── NdbPoolImpl.hpp │ │ │ ├── NdbQueryBuilder.cpp │ │ │ ├── NdbQueryBuilder.hpp │ │ │ ├── NdbQueryBuilderImpl.hpp │ │ │ ├── NdbQueryOperation.cpp │ │ │ ├── NdbQueryOperation.hpp │ │ │ ├── NdbQueryOperationImpl.hpp │ │ │ ├── NdbRecAttr.cpp │ │ │ ├── NdbReceiver.cpp │ │ │ ├── NdbRecord.hpp │ │ │ ├── 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.cpp │ │ │ ├── ndb_internal.hpp │ │ │ ├── ndberror.c │ │ │ ├── ndberror_check.cpp │ │ │ ├── trp_buffer.cpp │ │ │ ├── trp_buffer.hpp │ │ │ ├── trp_client.cpp │ │ │ ├── trp_client.hpp │ │ │ ├── trp_node.cpp │ │ │ └── trp_node.hpp │ │ └── ndbjtie │ │ │ ├── CMakeLists.txt │ │ │ ├── HOWTO.txt │ │ │ ├── MysqlUtilsWrapper.hpp │ │ │ ├── NdbApiWrapper.hpp │ │ │ ├── README.txt │ │ │ ├── com │ │ │ └── mysql │ │ │ │ └── ndbjtie │ │ │ │ ├── mgmapi │ │ │ │ └── MGMAPI.java │ │ │ │ ├── mysql │ │ │ │ ├── CharsetMap.java │ │ │ │ ├── CharsetMapConst.java │ │ │ │ └── Utils.java │ │ │ │ └── ndbapi │ │ │ │ ├── NDBAPI.java │ │ │ │ ├── Ndb.java │ │ │ │ ├── NdbBlob.java │ │ │ │ ├── NdbBlobConst.java │ │ │ │ ├── NdbConst.java │ │ │ │ ├── NdbDictionary.java │ │ │ │ ├── NdbError.java │ │ │ │ ├── NdbErrorConst.java │ │ │ │ ├── NdbEventOperation.java │ │ │ │ ├── NdbEventOperationConst.java │ │ │ │ ├── NdbIndexOperation.java │ │ │ │ ├── NdbIndexOperationConst.java │ │ │ │ ├── NdbIndexScanOperation.java │ │ │ │ ├── NdbIndexScanOperationConst.java │ │ │ │ ├── NdbInterpretedCode.java │ │ │ │ ├── NdbInterpretedCodeConst.java │ │ │ │ ├── NdbLockHandle.java │ │ │ │ ├── NdbLockHandleConst.java │ │ │ │ ├── NdbOperation.java │ │ │ │ ├── NdbOperationConst.java │ │ │ │ ├── NdbRecAttr.java │ │ │ │ ├── NdbRecAttrConst.java │ │ │ │ ├── NdbRecord.java │ │ │ │ ├── NdbRecordConst.java │ │ │ │ ├── NdbScanFilter.java │ │ │ │ ├── NdbScanFilterConst.java │ │ │ │ ├── NdbScanOperation.java │ │ │ │ ├── NdbScanOperationConst.java │ │ │ │ ├── NdbTransaction.java │ │ │ │ ├── NdbTransactionConst.java │ │ │ │ ├── Ndb_cluster_connection.java │ │ │ │ ├── Ndb_cluster_connectionConst.java │ │ │ │ └── issues.txt │ │ │ ├── jtie │ │ │ ├── CMakeLists.txt │ │ │ ├── com │ │ │ │ └── mysql │ │ │ │ │ └── jtie │ │ │ │ │ ├── ArrayWrapper.java │ │ │ │ │ └── Wrapper.java │ │ │ ├── jtie.hpp │ │ │ ├── jtie_gcalls.hpp │ │ │ ├── jtie_lib.hpp │ │ │ ├── jtie_stdint.h │ │ │ ├── jtie_tconv.hpp │ │ │ ├── jtie_tconv_array_impl.hpp │ │ │ ├── jtie_tconv_enum.hpp │ │ │ ├── jtie_tconv_enum_impl.hpp │ │ │ ├── jtie_tconv_idcache_impl.hpp │ │ │ ├── jtie_tconv_impl.hpp │ │ │ ├── jtie_tconv_impl_default.hpp │ │ │ ├── jtie_tconv_object.hpp │ │ │ ├── jtie_tconv_object_impl.hpp │ │ │ ├── jtie_tconv_ptrbybb.hpp │ │ │ ├── jtie_tconv_ptrbybb_impl.hpp │ │ │ ├── jtie_tconv_ptrbyval.hpp │ │ │ ├── jtie_tconv_ptrbyval_impl.hpp │ │ │ ├── jtie_tconv_refbybb.hpp │ │ │ ├── jtie_tconv_refbybb_impl.hpp │ │ │ ├── jtie_tconv_refbyval.hpp │ │ │ ├── jtie_tconv_refbyval_impl.hpp │ │ │ ├── jtie_tconv_string.hpp │ │ │ ├── jtie_tconv_string_impl.hpp │ │ │ ├── jtie_tconv_utils_impl.hpp │ │ │ ├── jtie_tconv_value.hpp │ │ │ ├── jtie_tconv_value_impl.hpp │ │ │ ├── jtie_tconv_vwidth.hpp │ │ │ ├── jtie_tconv_xwidth.hpp │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── myapi │ │ │ │ ├── myapi.cpp │ │ │ │ ├── myapi.hpp │ │ │ │ └── myapi_test.cpp │ │ │ │ ├── myjapi │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MyApiWrapper.hpp │ │ │ │ ├── myjapi │ │ │ │ │ ├── A.java │ │ │ │ │ ├── B0.java │ │ │ │ │ ├── B1.java │ │ │ │ │ ├── CI.java │ │ │ │ │ ├── D0.java │ │ │ │ │ ├── D1.java │ │ │ │ │ ├── D2.java │ │ │ │ │ ├── E.java │ │ │ │ │ ├── MyJapi.java │ │ │ │ │ └── MyJapiCtypes.java │ │ │ │ ├── myjapi_MyJapi.hpp │ │ │ │ ├── myjapi_MyJapiCtypes.hpp │ │ │ │ ├── myjapi_classes.hpp │ │ │ │ ├── myjapi_lib.cpp │ │ │ │ └── test │ │ │ │ │ └── MyJapiTest.java │ │ │ │ └── unload │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test │ │ │ │ └── MyLoadUnloadTest.java │ │ │ ├── mgmapi_jtie.hpp │ │ │ ├── mysql │ │ │ ├── CMakeLists.txt │ │ │ ├── CharsetMap.cpp │ │ │ ├── CharsetMap.hpp │ │ │ ├── CharsetMapImpl.cpp │ │ │ ├── CharsetMapImpl.h │ │ │ ├── decimal_utils.cpp │ │ │ ├── decimal_utils.hpp │ │ │ └── test │ │ │ │ └── mysql_utils_test.cpp │ │ │ ├── mysql_utils_jtie.hpp │ │ │ ├── ndbapi_jtie.hpp │ │ │ ├── ndbjtie_defs.hpp │ │ │ ├── ndbjtie_lib.cpp │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ └── test │ │ │ │ ├── JTieTestBase.java │ │ │ │ ├── MySqlUtilsCharsetMapTest.java │ │ │ │ ├── MySqlUtilsDecimalTest.java │ │ │ │ ├── NdbJTieLibraryLoadingTest.java │ │ │ │ └── NdbJTieSmokeTest.java │ │ │ └── utils │ │ │ ├── helpers.hpp │ │ │ └── mystdint.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── crund │ │ │ ├── INSTALL.txt │ │ │ ├── Makefile.defaults │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── _MacOS_hwprefs.txt │ │ │ ├── _dump_tx.txt │ │ │ ├── build.xml │ │ │ ├── config_samples │ │ │ │ ├── config.ini │ │ │ │ ├── config.ini.solaris │ │ │ │ ├── config.ini_commented │ │ │ │ ├── config.ini_minimal │ │ │ │ ├── crundClusterj.properties │ │ │ │ ├── crundDerby.properties │ │ │ │ ├── crundMysql.properties │ │ │ │ ├── crundNdbapi.properties │ │ │ │ ├── crundNdbj.properties │ │ │ │ ├── crundNdbjtie.properties │ │ │ │ ├── crundOpenjpaClusterj.properties │ │ │ │ ├── crundOpenjpaDerby.properties │ │ │ │ ├── crundOpenjpaMysql.properties │ │ │ │ ├── crundResult.properties │ │ │ │ ├── crundRun.properties │ │ │ │ ├── env.properties │ │ │ │ └── my.cnf │ │ │ ├── martins_little_helpers │ │ │ │ ├── README.txt │ │ │ │ └── src │ │ │ │ │ └── utils │ │ │ │ │ ├── HrtProfiler.java │ │ │ │ │ ├── HrtStopwatch.java │ │ │ │ │ ├── HrtStopwatchTest.java │ │ │ │ │ ├── JniInstrumentationTest.java │ │ │ │ │ ├── Properties.hpp │ │ │ │ │ ├── Properties_test.cpp │ │ │ │ │ ├── Properties_test.properties │ │ │ │ │ ├── helpers.hpp │ │ │ │ │ ├── hrt_gstopwatch.c │ │ │ │ │ ├── hrt_gstopwatch.h │ │ │ │ │ ├── hrt_stopwatch.c │ │ │ │ │ ├── hrt_stopwatch.h │ │ │ │ │ ├── hrt_stopwatch_test.c │ │ │ │ │ ├── hrt_utils.c │ │ │ │ │ ├── hrt_utils.h │ │ │ │ │ ├── hrt_utils_test.c │ │ │ │ │ ├── string_helpers.hpp │ │ │ │ │ ├── utils_HrtStopwatch.c │ │ │ │ │ └── utils_JniInstrumentationTest.c │ │ │ ├── process.sh │ │ │ ├── scripts │ │ │ │ ├── load_shema.sh │ │ │ │ ├── mycrund.sh │ │ │ │ ├── mycrundcxx.sh │ │ │ │ ├── mycrundjava.sh │ │ │ │ ├── mytwscxx.sh │ │ │ │ ├── mytwsjava.sh │ │ │ │ ├── restart_cluster.sh │ │ │ │ ├── restart_mysqld.sh │ │ │ │ ├── restart_ndb.sh │ │ │ │ ├── slay.sh │ │ │ │ ├── start_cluster.sh │ │ │ │ ├── start_ndb.sh │ │ │ │ ├── stop_cluster.sh │ │ │ │ ├── stop_mysqld.sh │ │ │ │ └── stop_ndb.sh │ │ │ ├── src │ │ │ │ ├── META-INF │ │ │ │ │ └── persistence.xml │ │ │ │ ├── com │ │ │ │ │ └── mysql │ │ │ │ │ │ └── cluster │ │ │ │ │ │ └── crund │ │ │ │ │ │ ├── A.java │ │ │ │ │ │ ├── B0.java │ │ │ │ │ │ ├── B1.java │ │ │ │ │ │ ├── ClusterjLoad.java │ │ │ │ │ │ ├── CrundDriver.java │ │ │ │ │ │ ├── Driver.java │ │ │ │ │ │ ├── IA.java │ │ │ │ │ │ ├── IB0.java │ │ │ │ │ │ ├── JdbcDriverTest.java │ │ │ │ │ │ ├── JdbcLoad.java │ │ │ │ │ │ ├── JpaLoad.java │ │ │ │ │ │ ├── NdbApiLoad.java │ │ │ │ │ │ ├── NdbBase.java │ │ │ │ │ │ ├── NdbJTieLoad.java │ │ │ │ │ │ ├── NdbjLoad.java │ │ │ │ │ │ └── ResultProcessor.java │ │ │ │ ├── crundndb │ │ │ │ │ ├── CrundDriver.cpp │ │ │ │ │ ├── CrundDriver.hpp │ │ │ │ │ ├── CrundNdbApiOperations.cpp │ │ │ │ │ ├── CrundNdbApiOperations.hpp │ │ │ │ │ ├── Driver.cpp │ │ │ │ │ ├── Driver.hpp │ │ │ │ │ ├── NdbApiDriver.cpp │ │ │ │ │ ├── NdbApiDriver.hpp │ │ │ │ │ └── com_mysql_cluster_crund_NdbApiLoad.cpp │ │ │ │ ├── tables_derby.sql │ │ │ │ ├── tables_mysql.sql │ │ │ │ └── tables_ora8.sql │ │ │ └── tws │ │ │ │ ├── README.txt │ │ │ │ ├── run.properties.sample │ │ │ │ ├── schema.sql │ │ │ │ ├── tws_cpp │ │ │ │ ├── Driver.cpp │ │ │ │ ├── Driver.hpp │ │ │ │ ├── NdbApiTwsDriver.cpp │ │ │ │ ├── NdbApiTwsDriver.hpp │ │ │ │ ├── README.txt │ │ │ │ ├── TwsDriver.cpp │ │ │ │ └── TwsDriver.hpp │ │ │ │ └── tws_java │ │ │ │ ├── README.txt │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ ├── nbproject │ │ │ │ ├── build-impl.xml │ │ │ │ ├── configs_sample │ │ │ │ │ ├── server-dbg.properties │ │ │ │ │ └── server-opt.properties │ │ │ │ ├── genfiles.properties │ │ │ │ ├── private_sample │ │ │ │ │ ├── config.properties │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── server-dbg.properties │ │ │ │ │ │ └── server-opt.properties │ │ │ │ │ ├── private.properties │ │ │ │ │ ├── private.xml │ │ │ │ │ └── profiler │ │ │ │ │ │ └── configurations.xml │ │ │ │ ├── profiler-build-impl.xml │ │ │ │ ├── project.properties │ │ │ │ └── project.xml │ │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── mysql │ │ │ │ └── cluster │ │ │ │ └── benchmark │ │ │ │ └── tws │ │ │ │ ├── ClusterjLoad.java │ │ │ │ ├── Driver.java │ │ │ │ ├── JdbcLoad.java │ │ │ │ ├── NdbjtieLoad.java │ │ │ │ ├── TwsDriver.java │ │ │ │ └── TwsLoad.java │ │ ├── include │ │ │ ├── AtrtClient.hpp │ │ │ ├── ConfigFactory.hpp │ │ │ ├── CpcClient.hpp │ │ │ ├── DbUtil.hpp │ │ │ ├── HugoAsynchTransactions.hpp │ │ │ ├── HugoCalculator.hpp │ │ │ ├── HugoOperations.hpp │ │ │ ├── HugoQueries.hpp │ │ │ ├── HugoQueryBuilder.hpp │ │ │ ├── HugoTransactions.hpp │ │ │ ├── NDBT.hpp │ │ │ ├── NDBT_DataSet.hpp │ │ │ ├── NDBT_DataSetTransaction.hpp │ │ │ ├── NDBT_Error.hpp │ │ │ ├── NDBT_Find.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 │ │ │ ├── NDBT_Workingdir.hpp │ │ │ ├── NdbBackup.hpp │ │ │ ├── NdbConfig.hpp │ │ │ ├── NdbMgmd.hpp │ │ │ ├── NdbMixRestarter.hpp │ │ │ ├── NdbProcess.hpp │ │ │ ├── NdbRestarter.hpp │ │ │ ├── NdbRestarts.hpp │ │ │ ├── NdbSchemaCon.hpp │ │ │ ├── NdbSchemaOp.hpp │ │ │ ├── NdbTest.hpp │ │ │ ├── NdbTimer.hpp │ │ │ ├── SocketInputStream2.hpp │ │ │ ├── SqlClient.hpp │ │ │ ├── TestNdbEventOperation.hpp │ │ │ ├── UtilTransactions.hpp │ │ │ └── getarg.h │ │ ├── ndbapi │ │ │ ├── CMakeLists.txt │ │ │ ├── InsertRecs.cpp │ │ │ ├── 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 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── 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 │ │ │ ├── ndbapi_50compat0.cpp │ │ │ ├── ndbapi_50compat1.cpp │ │ │ ├── reorg_tab.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 │ │ │ ├── testIndex.cpp │ │ │ ├── testIndexStat.cpp │ │ │ ├── testInterpreter.cpp │ │ │ ├── testLcp.cpp │ │ │ ├── testLimits.cpp │ │ │ ├── testMgm.cpp │ │ │ ├── testMgmDisconnect.c │ │ │ ├── testMgmd.cpp │ │ │ ├── testNDBT.cpp │ │ │ ├── testNativeDefault.cpp │ │ │ ├── testNdbApi.cpp │ │ │ ├── testNdbinfo.cpp │ │ │ ├── testNodeRestart.cpp │ │ │ ├── testOIBasic.cpp │ │ │ ├── testOperations.cpp │ │ │ ├── testOrderedIndex.cpp │ │ │ ├── testPartitioning.cpp │ │ │ ├── testReadPerf.cpp │ │ │ ├── testReconnect.cpp │ │ │ ├── testRestartGci.cpp │ │ │ ├── testSRBank.cpp │ │ │ ├── testScan.cpp │ │ │ ├── testScanFilter.cpp │ │ │ ├── testScanInterpreter.cpp │ │ │ ├── testScanPerf.cpp │ │ │ ├── testSingleUserMode.cpp │ │ │ ├── testSpj.cpp │ │ │ ├── testSystemRestart.cpp │ │ │ ├── testTimeout.cpp │ │ │ ├── testTransactions.cpp │ │ │ ├── testUpgrade.cpp │ │ │ ├── test_event.cpp │ │ │ ├── test_event_merge.cpp │ │ │ ├── test_event_multi_table.cpp │ │ │ └── userInterface.cpp │ │ ├── rqg │ │ │ ├── runall.sh │ │ │ ├── simple.zz │ │ │ └── spj_test.yy │ │ ├── run-test │ │ │ ├── 16node-tests.txt │ │ │ ├── ATRT_SETUP_README.txt │ │ │ ├── ATRT_USAGE_README.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── README.ATRT │ │ │ ├── atrt-analyze-result.sh │ │ │ ├── atrt-backtrace.sh │ │ │ ├── atrt-example.tgz │ │ │ ├── atrt-gather-result.sh │ │ │ ├── atrt-mysql-test-run │ │ │ ├── atrt-mysqltest │ │ │ ├── atrt-setup.sh │ │ │ ├── atrt-testBackup │ │ │ ├── atrt.hpp │ │ │ ├── autotest-boot.sh │ │ │ ├── autotest-run.sh │ │ │ ├── basic.txt │ │ │ ├── check-tests.sh │ │ │ ├── command.cpp │ │ │ ├── conf-blade08.cnf │ │ │ ├── conf-dl145a.cnf │ │ │ ├── conf-fimafeng08.cnf │ │ │ ├── conf-fimafeng09.cnf │ │ │ ├── conf-loki27.cnf │ │ │ ├── conf-ndb07.cnf │ │ │ ├── conf-ndbmaster.cnf │ │ │ ├── conf-repl.cnf │ │ │ ├── conf-techra29.cnf │ │ │ ├── conf-test.cnf │ │ │ ├── conf-tyr64.cnf │ │ │ ├── conf-upgrade.cnf │ │ │ ├── create_mtr_suites.pl │ │ │ ├── daily-basic-tests.txt │ │ │ ├── daily-devel-tests.txt │ │ │ ├── db.cpp │ │ │ ├── example-my.cnf │ │ │ ├── example.conf │ │ │ ├── files.cpp │ │ │ ├── main.cpp │ │ │ ├── make-config.sh │ │ │ ├── make-html-reports.sh │ │ │ ├── make-index.sh │ │ │ ├── mtr.cnf │ │ │ ├── ndb-autotest.sh │ │ │ ├── release-bigmem-tests.txt │ │ │ ├── setup.cpp │ │ │ ├── test-tests.txt │ │ │ ├── upgrade-boot.sh │ │ │ └── upgrade-tests.txt │ │ ├── src │ │ │ ├── AtrtClient.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CpcClient.cpp │ │ │ ├── DbUtil.cpp │ │ │ ├── HugoAsynchTransactions.cpp │ │ │ ├── HugoCalculator.cpp │ │ │ ├── HugoOperations.cpp │ │ │ ├── HugoQueries.cpp │ │ │ ├── HugoQueryBuilder.cpp │ │ │ ├── HugoTransactions.cpp │ │ │ ├── NDBT_Error.cpp │ │ │ ├── NDBT_Find.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 │ │ │ ├── NdbMixRestarter.cpp │ │ │ ├── NdbRestarter.cpp │ │ │ ├── NdbRestarts.cpp │ │ │ ├── NdbSchemaCon.cpp │ │ │ ├── NdbSchemaOp.cpp │ │ │ ├── SocketInputStream2.cpp │ │ │ ├── SqlClient.cpp │ │ │ ├── UtilTransactions.cpp │ │ │ └── getarg.c │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── connect.cpp │ │ │ ├── copy_tab.cpp │ │ │ ├── cpcc.cpp │ │ │ ├── create_index.cpp │ │ │ ├── hugoCalculator.cpp │ │ │ ├── hugoFill.cpp │ │ │ ├── hugoJoin.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 │ │ │ ├── spj_performance_test.cpp │ │ │ ├── spj_sanity_test.cpp │ │ │ ├── test_spj.cpp │ │ │ └── verify_index.cpp │ └── tools │ │ ├── CMakeLists.txt │ │ ├── HOWTO_distribute_privileges.txt │ │ ├── delete_all.cpp │ │ ├── desc.cpp │ │ ├── drop_index.cpp │ │ ├── drop_tab.cpp │ │ ├── listTables.cpp │ │ ├── ndb_config.cpp │ │ ├── ndb_dist_priv.sql │ │ ├── ndb_dump_frm_data.cpp │ │ ├── ndb_error_reporter │ │ ├── ndb_index_stat.cpp │ │ ├── ndb_size.pl │ │ ├── ndb_test_platform.cpp │ │ ├── ndbinfo_sql.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 │ │ ├── select_all.cpp │ │ ├── select_count.cpp │ │ └── waiter.cpp └── perfschema │ ├── CMakeLists.txt │ ├── cursor_by_account.cc │ ├── cursor_by_account.h │ ├── cursor_by_host.cc │ ├── cursor_by_host.h │ ├── cursor_by_thread.cc │ ├── cursor_by_thread.h │ ├── cursor_by_thread_connect_attr.cc │ ├── cursor_by_thread_connect_attr.h │ ├── cursor_by_user.cc │ ├── cursor_by_user.h │ ├── gen_pfs_lex_token.cc │ ├── ha_perfschema.cc │ ├── ha_perfschema.h │ ├── pfs.cc │ ├── pfs.h │ ├── pfs_account.cc │ ├── pfs_account.h │ ├── pfs_atomic.cc │ ├── pfs_atomic.h │ ├── pfs_autosize.cc │ ├── pfs_check.cc │ ├── pfs_column_types.h │ ├── pfs_column_values.cc │ ├── pfs_column_values.h │ ├── pfs_con_slice.cc │ ├── pfs_con_slice.h │ ├── pfs_defaults.cc │ ├── pfs_defaults.h │ ├── pfs_digest.cc │ ├── pfs_digest.h │ ├── pfs_engine_table.cc │ ├── pfs_engine_table.h │ ├── pfs_events.h │ ├── pfs_events_stages.cc │ ├── pfs_events_stages.h │ ├── pfs_events_statements.cc │ ├── pfs_events_statements.h │ ├── pfs_events_waits.cc │ ├── pfs_events_waits.h │ ├── pfs_global.cc │ ├── pfs_global.h │ ├── pfs_host.cc │ ├── pfs_host.h │ ├── pfs_instr.cc │ ├── pfs_instr.h │ ├── pfs_instr_class.cc │ ├── pfs_instr_class.h │ ├── pfs_lock.h │ ├── pfs_server.cc │ ├── pfs_server.h │ ├── pfs_setup_actor.cc │ ├── pfs_setup_actor.h │ ├── pfs_setup_object.cc │ ├── pfs_setup_object.h │ ├── pfs_stat.h │ ├── pfs_timer.cc │ ├── pfs_timer.h │ ├── pfs_user.cc │ ├── pfs_user.h │ ├── pfs_visitor.cc │ ├── pfs_visitor.h │ ├── table_accounts.cc │ ├── table_accounts.h │ ├── table_all_instr.cc │ ├── table_all_instr.h │ ├── table_esgs_by_account_by_event_name.cc │ ├── table_esgs_by_account_by_event_name.h │ ├── table_esgs_by_host_by_event_name.cc │ ├── table_esgs_by_host_by_event_name.h │ ├── table_esgs_by_thread_by_event_name.cc │ ├── table_esgs_by_thread_by_event_name.h │ ├── table_esgs_by_user_by_event_name.cc │ ├── table_esgs_by_user_by_event_name.h │ ├── table_esgs_global_by_event_name.cc │ ├── table_esgs_global_by_event_name.h │ ├── table_esms_by_account_by_event_name.cc │ ├── table_esms_by_account_by_event_name.h │ ├── table_esms_by_digest.cc │ ├── table_esms_by_digest.h │ ├── table_esms_by_host_by_event_name.cc │ ├── table_esms_by_host_by_event_name.h │ ├── table_esms_by_thread_by_event_name.cc │ ├── table_esms_by_thread_by_event_name.h │ ├── table_esms_by_user_by_event_name.cc │ ├── table_esms_by_user_by_event_name.h │ ├── table_esms_global_by_event_name.cc │ ├── table_esms_global_by_event_name.h │ ├── table_events_stages.cc │ ├── table_events_stages.h │ ├── table_events_statements.cc │ ├── table_events_statements.h │ ├── table_events_waits.cc │ ├── table_events_waits.h │ ├── table_events_waits_summary.cc │ ├── table_events_waits_summary.h │ ├── table_ews_by_account_by_event_name.cc │ ├── table_ews_by_account_by_event_name.h │ ├── table_ews_by_host_by_event_name.cc │ ├── table_ews_by_host_by_event_name.h │ ├── table_ews_by_thread_by_event_name.cc │ ├── table_ews_by_thread_by_event_name.h │ ├── table_ews_by_user_by_event_name.cc │ ├── table_ews_by_user_by_event_name.h │ ├── table_ews_global_by_event_name.cc │ ├── table_ews_global_by_event_name.h │ ├── table_file_instances.cc │ ├── table_file_instances.h │ ├── table_file_summary_by_event_name.cc │ ├── table_file_summary_by_event_name.h │ ├── table_file_summary_by_instance.cc │ ├── table_file_summary_by_instance.h │ ├── table_helper.cc │ ├── table_helper.h │ ├── table_host_cache.cc │ ├── table_host_cache.h │ ├── table_hosts.cc │ ├── table_hosts.h │ ├── table_os_global_by_type.cc │ ├── table_os_global_by_type.h │ ├── table_performance_timers.cc │ ├── table_performance_timers.h │ ├── table_session_account_connect_attrs.cc │ ├── table_session_account_connect_attrs.h │ ├── table_session_connect.cc │ ├── table_session_connect.h │ ├── table_session_connect_attrs.cc │ ├── table_session_connect_attrs.h │ ├── table_setup_actors.cc │ ├── table_setup_actors.h │ ├── table_setup_consumers.cc │ ├── table_setup_consumers.h │ ├── table_setup_instruments.cc │ ├── table_setup_instruments.h │ ├── table_setup_objects.cc │ ├── table_setup_objects.h │ ├── table_setup_timers.cc │ ├── table_setup_timers.h │ ├── table_socket_instances.cc │ ├── table_socket_instances.h │ ├── table_socket_summary_by_event_name.cc │ ├── table_socket_summary_by_event_name.h │ ├── table_socket_summary_by_instance.cc │ ├── table_socket_summary_by_instance.h │ ├── table_sync_instances.cc │ ├── table_sync_instances.h │ ├── table_threads.cc │ ├── table_threads.h │ ├── table_tiws_by_index_usage.cc │ ├── table_tiws_by_index_usage.h │ ├── table_tiws_by_table.cc │ ├── table_tiws_by_table.h │ ├── table_tlws_by_table.cc │ ├── table_tlws_by_table.h │ ├── table_users.cc │ ├── table_users.h │ └── unittest │ ├── CMakeLists.txt │ ├── conf.txt │ ├── pfs-t.cc │ ├── pfs_account-oom-t.cc │ ├── pfs_connect_attr-t.cc │ ├── pfs_host-oom-t.cc │ ├── pfs_instr-oom-t.cc │ ├── pfs_instr-t.cc │ ├── pfs_instr_class-oom-t.cc │ ├── pfs_instr_class-t.cc │ ├── pfs_misc-t.cc │ ├── pfs_server_stubs.cc │ ├── pfs_timer-t.cc │ ├── pfs_user-oom-t.cc │ ├── stub_pfs_defaults.h │ ├── stub_pfs_global.h │ └── stub_print_error.h ├── 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 ├── strmake.c ├── strmov.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 │ ├── 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 ├── compiler_warnings.supp ├── magic ├── my-default.cnf ├── my-default.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 ├── tests ├── CMakeLists.txt ├── auto_increment.tst ├── big_record.pl ├── bug25714.c ├── connect_test.c ├── deadlock_test.c ├── drop_test.pl ├── export.pl ├── fork2_test.pl ├── fork_big.pl ├── fork_big2.pl ├── function.tst ├── grant.pl ├── index_corrupt.pl ├── insert_and_repair.pl ├── insert_test.c ├── list_test.c ├── lock_test.pl ├── mail_to_db.pl ├── myisam-big-rows.tst ├── mysql_client_fw.c ├── mysql_client_test.c ├── 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 ├── CMakeLists.txt ├── 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 ├── gunit │ ├── CMakeLists.txt │ ├── alignment-t.cc │ ├── bounded_queue-t.cc │ ├── bounds_checked_array-t.cc │ ├── byteorder-t.cc │ ├── client_string-t.cc │ ├── copy_info-t.cc │ ├── cost_estimate-t.cc │ ├── create_field-t.cc │ ├── dbug-t.cc │ ├── debug_sync-t.cc │ ├── decimal-t.cc │ ├── delayable_insert_operation-t.cc │ ├── dynarray-t.cc │ ├── explain_filename-t.cc │ ├── fake_table.h │ ├── field-t.cc │ ├── field_date-t.cc │ ├── field_datetime-t.cc │ ├── field_long-t.cc │ ├── field_newdecimal-t.cc │ ├── field_temporal_utils.h │ ├── field_timestamp-t.cc │ ├── filesort_buffer-t.cc │ ├── filesort_compare-t.cc │ ├── get_diagnostics-t.cc │ ├── gunit_test_main.cc │ ├── gunit_test_main_server.cc │ ├── handler-t.cc │ ├── handler-t.h │ ├── item-t.cc │ ├── item_func_now_local-t.cc │ ├── item_param-t.cc │ ├── item_timefunc-t.cc │ ├── join_tab_sort-t.cc │ ├── like_range-t.cc │ ├── log_throttle-t.cc │ ├── make_sortkey-t.cc │ ├── mdl-t.cc │ ├── mock_create_field.h │ ├── mock_field_datetime.h │ ├── mock_field_timestamp.h │ ├── mock_field_timestampf.h │ ├── my_bitmap-t.cc │ ├── my_decimal-t.cc │ ├── my_error-t.cc │ ├── my_fileutils-t.cc │ ├── my_murmur3-t.cc │ ├── my_regex-t.cc │ ├── mysys_base64-t.cc │ ├── mysys_lf-t.cc │ ├── mysys_my_atomic-t.cc │ ├── mysys_my_malloc-t.cc │ ├── mysys_my_pwrite-t.cc │ ├── mysys_my_rdtsc-t.cc │ ├── mysys_my_vsnprintf-t.cc │ ├── mysys_my_write-t.cc │ ├── opt_range-t.cc │ ├── opt_trace-t.cc │ ├── rpl_group_set-t.cc │ ├── segfault-t.cc │ ├── sql_list-t.cc │ ├── sql_plist-t.cc │ ├── sql_string-t.cc │ ├── sql_table-t.cc │ ├── stdcxx-t.cc │ ├── string-tests.cc │ ├── strtoll-t.cc │ ├── table_cache-t.cc │ ├── tap_event_listener.cc │ ├── test_mdl_context_owner.h │ ├── test_utils.cc │ ├── test_utils.h │ ├── thr_template.cc │ ├── thread_utils-t.cc │ ├── thread_utils.cc │ ├── thread_utils.h │ └── yassl │ │ ├── CMakeLists.txt │ │ └── yassl-t.cc ├── mytap │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── t │ │ ├── CMakeLists.txt │ │ └── basic-t.c │ ├── tap.c │ └── tap.h └── unit.pl ├── vio ├── CMakeLists.txt ├── docs │ ├── COPYING.openssl │ └── TODO ├── test-ssl.c ├── test-sslclient.c ├── test-sslserver.c ├── vio.c ├── vio_priv.h ├── viopipe.c ├── vioshm.c ├── viosocket.c ├── viossl.c ├── viosslfactories.c ├── viotest-ssl.c ├── viotest-sslconnect.cc └── viotest.cc ├── waf.txt ├── win └── create_def_file.js └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/README.md -------------------------------------------------------------------------------- /mysql-5.6.26/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/.gitignore -------------------------------------------------------------------------------- /mysql-5.6.26/BUILD-CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/BUILD-CMAKE -------------------------------------------------------------------------------- /mysql-5.6.26/BUILD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/BUILD/README -------------------------------------------------------------------------------- /mysql-5.6.26/BUILD/SETUP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/BUILD/SETUP.sh -------------------------------------------------------------------------------- /mysql-5.6.26/BUILD/autorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/BUILD/autorun.sh -------------------------------------------------------------------------------- /mysql-5.6.26/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/CMakeCache.txt -------------------------------------------------------------------------------- /mysql-5.6.26/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/CMakeLists.txt -------------------------------------------------------------------------------- /mysql-5.6.26/INSTALL-BINARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/INSTALL-BINARY -------------------------------------------------------------------------------- /mysql-5.6.26/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/README -------------------------------------------------------------------------------- /mysql-5.6.26/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/VERSION -------------------------------------------------------------------------------- /mysql-5.6.26/client/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/client/echo.c -------------------------------------------------------------------------------- /mysql-5.6.26/client/mysql.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/client/mysql.cc -------------------------------------------------------------------------------- /mysql-5.6.26/cmake/cat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/cmake/cat.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/cmake/ssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/cmake/ssl.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/cmake/tags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/cmake/tags.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/cmake/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/cmake/zlib.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/config.h.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/configure.cmake -------------------------------------------------------------------------------- /mysql-5.6.26/data/auto.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/data/auto.cnf -------------------------------------------------------------------------------- /mysql-5.6.26/data/ib_logfile0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/data/ib_logfile0 -------------------------------------------------------------------------------- /mysql-5.6.26/data/ib_logfile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/data/ib_logfile1 -------------------------------------------------------------------------------- /mysql-5.6.26/data/ibdata1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/data/ibdata1 -------------------------------------------------------------------------------- /mysql-5.6.26/data/test/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/data/test/db.opt -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/dbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/dbug.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/dbug_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/dbug_long.h -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/example1.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/example2.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/example3.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/factorial.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/main.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/monty.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/monty.doc -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/my_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/my_main.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/tests-t.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/tests-t.pl -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/tests.c -------------------------------------------------------------------------------- /mysql-5.6.26/dbug/user.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/dbug/user.r -------------------------------------------------------------------------------- /mysql-5.6.26/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/docs/ChangeLog -------------------------------------------------------------------------------- /mysql-5.6.26/docs/myisam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/docs/myisam.txt -------------------------------------------------------------------------------- /mysql-5.6.26/extra/comp_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/extra/comp_err.c -------------------------------------------------------------------------------- /mysql-5.6.26/extra/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/extra/perror.c -------------------------------------------------------------------------------- /mysql-5.6.26/extra/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/extra/replace.c -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/examples/echoclient/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/lib/dummy: -------------------------------------------------------------------------------- 1 | // this is a dummy file 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/extra/yassl/testsuite/quit: -------------------------------------------------------------------------------- 1 | quit 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/base64.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/errmsg.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/hash.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/heap.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/lf.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_aes.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_bit.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_dir.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_md5.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_net.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_rnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_rnd.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_sys.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/my_xml.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/myisam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/myisam.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/mysql.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/plugin.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/queues.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/sha1.h -------------------------------------------------------------------------------- /mysql-5.6.26/include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/include/sha2.h -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/README -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/epoll.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/evdns.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/evdns.3 -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/evdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/evdns.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/evdns.h -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/event.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/event.3 -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/event.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/event.h -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/evrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/evrpc.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/evrpc.h -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/http.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/log.c -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/log.h -------------------------------------------------------------------------------- /mysql-5.6.26/libevent/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/libevent/poll.c -------------------------------------------------------------------------------- /mysql-5.6.26/libmysql/libmysql.ver.in: -------------------------------------------------------------------------------- 1 | libmysqlclient_@SHARED_LIB_MAJOR_VERSION@ { global: *; }; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/man/man1/mysql.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/man/man1/mysql.1 -------------------------------------------------------------------------------- /mysql-5.6.26/man/man1/mysql_client_test_embedded.1: -------------------------------------------------------------------------------- 1 | .so man/mysql_client_test.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/man/man1/mysqltest_embedded.1: -------------------------------------------------------------------------------- 1 | .so man/mysqltest.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/man/mysqld.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/man/mysqld.8 -------------------------------------------------------------------------------- /mysql-5.6.26/man/ndb_mgmd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/man/ndb_mgmd.8 -------------------------------------------------------------------------------- /mysql-5.6.26/man/ndbd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/man/ndbd.8 -------------------------------------------------------------------------------- /mysql-5.6.26/man/ndbmtd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/man/ndbmtd.8 -------------------------------------------------------------------------------- /mysql-5.6.26/my-new.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/my-new.cnf -------------------------------------------------------------------------------- /mysql-5.6.26/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/my.cnf -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/collections/disabled-daily.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/collections/disabled-weekly.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/include/analyze-timeout.test: -------------------------------------------------------------------------------- 1 | SHOW PROCESSLIST; 2 | 3 | exit; 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/include/mysqltest-x.inc: -------------------------------------------------------------------------------- 1 | echo Output from mysqltest-x.inc; 2 | exit; 3 | 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/include/not_as_root.inc: -------------------------------------------------------------------------------- 1 | if ($MYSQL_TEST_ROOT){ 2 | skip Not as root; 3 | } 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/include/not_parallel.inc: -------------------------------------------------------------------------------- 1 | if ($MTR_PARALLEL > 1) { 2 | --skip test requires --parallel=1 3 | } 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/big_test.require: -------------------------------------------------------------------------------- 1 | using_big_test 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/case_insensitive_file_system.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | lower_case_file_system ON 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/case_sensitive_file_system.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | lower_case_file_system OFF 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/check_var_limit.require: -------------------------------------------------------------------------------- 1 | limit 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_binlog_format_mixed.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | binlog_format MIXED 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_binlog_format_row.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | binlog_format ROW 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_binlog_format_statement.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | binlog_format STATEMENT 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_compress.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_compress YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_crypt.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_crypt YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_debug.require: -------------------------------------------------------------------------------- 1 | debug 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_debug_sync.require: -------------------------------------------------------------------------------- 1 | debug_sync 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_geometry.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_geometry YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_local_infile.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | local_infile ON 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_log_bin.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | log_bin ON 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_met_timezone.require: -------------------------------------------------------------------------------- 1 | FROM_UNIXTIME(24*3600) 2 | 1970-01-02 01:00:00 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_mysql_upgrade.result: -------------------------------------------------------------------------------- 1 | have_mysql_upgrade 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_ndb_extra.require: -------------------------------------------------------------------------------- 1 | select 1; 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_ndbapi_examples.require: -------------------------------------------------------------------------------- 1 | have_ndb_example 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_nodebug.require: -------------------------------------------------------------------------------- 1 | debug 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_optimizer_switch.require: -------------------------------------------------------------------------------- 1 | OPTIMIZER_SWITCH 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_partition.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_partitioning YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_perror.require: -------------------------------------------------------------------------------- 1 | have_perror 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_profiling.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_profiling YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_query_cache.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_query_cache YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_ssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_ssl_is_yes_or_disabled_only.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl yesordisabled 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/have_symlink.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_symlink YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/is_debug_build.require: -------------------------------------------------------------------------------- 1 | instr(version(), "debug") > 0 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/is_embedded.require: -------------------------------------------------------------------------------- 1 | have_embedded 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/mysqldump-no-binlog.result: -------------------------------------------------------------------------------- 1 | mysqldump: Error: Binlogging on server not active 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/no_binlog.result: -------------------------------------------------------------------------------- 1 | SHOW BINARY LOGS; 2 | ERROR HY000: You are not using binary logging 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_embedded.require: -------------------------------------------------------------------------------- 1 | have_embedded 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_ndb.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ndbcluster NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_openssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_openssl NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_ssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_valgrind.require: -------------------------------------------------------------------------------- 1 | using_valgrind 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/not_windows.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/openssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_openssl YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/partition_mgm_err2.result: -------------------------------------------------------------------------------- 1 | INSERT INTO t1 VALUES (15); 2 | DROP TABLE t1; 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/python_with_json.require: -------------------------------------------------------------------------------- 1 | Validation: 2 | 3 | ok at line 1 4 | 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/server_id.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | server_id 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/server_id1.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | server_id 102 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/ssl_8k_key.result: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | Ssl_cipher DHE-RSA-AES256-SHA 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/ssl_connect.result: -------------------------------------------------------------------------------- 1 | completed 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/testdb_only.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | use extern server NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/true.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/r/windows.require: -------------------------------------------------------------------------------- 1 | TRUE 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/bad_gis_data.dat: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/bug15328.cnf: -------------------------------------------------------------------------------- 1 | [mysqldump] 2 | fields-optionally-enclosed-by=" 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/bug17532932.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/bug37631.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/cluster_7022_table.MYD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/funcs_1/load_file.txt: -------------------------------------------------------------------------------- 1 | Here is content from load_file 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/loaddata_utf8.dat: -------------------------------------------------------------------------------- 1 | 一二三 2 | 四五六 3 | 七八九 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/numbers.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 5 4 | 7 5 | 11 6 | 13 7 | 17 8 | 23 9 | 29 10 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/parts/part_supported_sql_funcs_int_ch1.inc: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 9 3 | 3 3 4 | 4 8 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/std_data/rpl_loaddata.dat: -------------------------------------------------------------------------------- 1 | \N 10 2 | \N 15 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/have_mysql_upgrade.result: -------------------------------------------------------------------------------- 1 | have_mysql_upgrade 2 | 1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/have_ssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/not_embedded.require: -------------------------------------------------------------------------------- 1 | have_embedded 2 | 0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/not_openssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_openssl NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/not_ssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_ssl NO 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/r/openssl.require: -------------------------------------------------------------------------------- 1 | Variable_name Value 2 | have_openssl YES 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/auth_sec/t/mysql_no_login-master.opt: -------------------------------------------------------------------------------- 1 | $MYSQL_NO_LOGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/r/binlog_gtid_cache.result: -------------------------------------------------------------------------------- 1 | PASS 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/r/binlog_reset_master.result: -------------------------------------------------------------------------------- 1 | RESET MASTER; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_bug36391-master.opt: -------------------------------------------------------------------------------- 1 | --sql_mode=NO_BACKSLASH_ESCAPES 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_incident-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,incident_database_resync_on_replace 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_index-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_killed_simulate-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=d,simulate_kill_bug27571 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_mysqlbinlog-cp932-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=8192 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_query_filter_rules-master.opt: -------------------------------------------------------------------------------- 1 | --replicate-do-db='impossible_database' 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_row_binlog-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_row_innodb_stat-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_cache_size=32768 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_simplified_binlog_gtid_recovery-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_spurious_ddl_errors-master.opt: -------------------------------------------------------------------------------- 1 | --innodb $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_stm_binlog-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_stm_do_db-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-do-db=b42829 2 | --force-restart 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_stm_innodb_stat-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_cache_size=32768 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_stm_unsafe_warning-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=b42851 --log-error 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_truncate_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_unsafe-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT --log-output=file,table 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/binlog/t/binlog_variables_log_bin-master.opt: -------------------------------------------------------------------------------- 1 | --log-bin=other 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_less_columns.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3 4 | 4,ghi 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_more_columns.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,aa,aa 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_quote.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,'def,ghi' 3 | 3,"aa,bb" 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_unique_error1.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,ghi 4 | 3,jkl 5 | 4,opq 6 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_unique_error2.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,ghi 4 | 4,jkl 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/load_unique_error3.inc: -------------------------------------------------------------------------------- 1 | 1,abc 2 | 2,def 3 | 3,aa 4 | 4,efg 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl000010-slave.opt: -------------------------------------------------------------------------------- 1 | --disconnect-slave-event-count=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl000017-slave.opt: -------------------------------------------------------------------------------- 1 | --skip-slave-start 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_dual_pos_advance-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_empty_master_crash-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_free_items-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_ignore_grant-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_ignore_revoke-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_init_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --init-slave="set global max_connections=500" 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_loaddata_m-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_multi_delete-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_multi_update4-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=d1.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_relayspace-slave.opt: -------------------------------------------------------------------------------- 1 | --relay_log_space_limit=10 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_replicate_ignore_db-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate_ignore_db=mysqltest1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_row_inexist_tbl-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.t2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_skip_error-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-error=1053,1062,1582 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_sp-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_sp-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_sp_effects-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_sp_effects-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_variables-master.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=3,100,137,643,1752 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/funcs/t/rpl_view-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.foo 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/rr_trx/init_innodb.txt: -------------------------------------------------------------------------------- 1 | init_innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/engines/rr_trx/r/rr_c_stats.result: -------------------------------------------------------------------------------- 1 | SELECT * FROM statistics; 2 | tx_errors 3 | 0 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/federated/federated_debug-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=d,simulate_detached_thread_refresh 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/federated/federated_innodb-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/federated/federated_transactions-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_1/t/innodb_trig_1011ext-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_1/t/memory_trig_1011ext-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_1/t/myisam_trig_1011ext-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_1/t/row_count_func-master.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_1/t/suite.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv=$MYSQLTEST_VARDIR 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_2/t/disabled.def: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/funcs_2/t/suite.opt: -------------------------------------------------------------------------------- 1 | --secure-file-priv=$MYSQL_TEST_DIR 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/r/innodb_bug34053.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/r/innodb_bug35220.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/r/innodb_bug38231.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/r/innodb_bug39438.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/r/innodb_trx_weight.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb-2byte-collation-master.opt: -------------------------------------------------------------------------------- 1 | --character-sets-dir=$MYSQL_TEST_DIR/std_data/ 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb-autoinc-56228-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb-consistent-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb-semi-consistent-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_autoinc_lock_mode_zero-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-autoinc-lock-mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_buffer_pool_load-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-size=64M 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug11766634-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug39438-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-file-per-table=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug42101-nonzero-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_commit_concurrency=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug47167-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug60049-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_fast_shutdown=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug60196-master.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_bug60229-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_file_format-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_lock_wait_timeout_1-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_misc1-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_cache_size=32768 --innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_stats_flag_global_off-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-stats-persistent=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb/t/innodb_stats_flag_global_on-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-stats-persistent=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb_fts/t/fulltext_plugin-master.opt: -------------------------------------------------------------------------------- 1 | $SIMPLE_PARSER_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb_zip/r/innodb_bug36172.result: -------------------------------------------------------------------------------- 1 | SET default_storage_engine=InnoDB; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/innodb_zip/t/innodb_cmp_drop_table-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-buffer-pool-size=8M 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/jp/t/jp_enum_sjis-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/jp/t/jp_enum_ucs2-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/jp/t/jp_enum_ujis-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/jp/t/jp_enum_utf8-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/large_tests/r/lock_tables_big.result: -------------------------------------------------------------------------------- 1 | all done 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/large_tests/t/rpl_slave_net_timeout-slave.opt: -------------------------------------------------------------------------------- 1 | --net_read_timeout=5 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb/t/ndb_single_user-master.opt: -------------------------------------------------------------------------------- 1 | --ndb-cluster-connection-pool=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_binlog/t/ndb_binlog_restore-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/ndb_master-slave.inc: -------------------------------------------------------------------------------- 1 | --source include/master-slave.inc 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_2innodb-master.opt: -------------------------------------------------------------------------------- 1 | --new --ndb-log-updated-only=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_2myisam-master.opt: -------------------------------------------------------------------------------- 1 | --ndb_log_updated_only=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_2myisam-slave.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=myisam --ndbcluster=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_2ndb-slave.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=ndbcluster --log-slave-updates=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_apply_status-master.opt: -------------------------------------------------------------------------------- 1 | --replicate_ignore_db=mysql 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_binlog_format_errors-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_conflict_max-master.opt: -------------------------------------------------------------------------------- 1 | --ndb-log-update-as-write=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_conflict_max_delete_win-master.opt: -------------------------------------------------------------------------------- 1 | --ndb-log-update-as-write=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_conflict_old-master.opt: -------------------------------------------------------------------------------- 1 | --ndb-log-update-as-write=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_dd_partitions-master.opt: -------------------------------------------------------------------------------- 1 | --new=true 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_dd_partitions-slave.opt: -------------------------------------------------------------------------------- 1 | --new=true 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_do_table-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-do-table=test.t1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_gap_event-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=mysql -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_ignore_db-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=mysql 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_innodb2ndb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_innodb2ndb-slave.opt: -------------------------------------------------------------------------------- 1 | --new --default-storage-engine=ndbcluster 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_innodb_trans-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb --slave-allow-batching=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_mix_eng_trans-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_mix_eng_trans-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_mixed_tables-master.opt: -------------------------------------------------------------------------------- 1 | --innodb --ndbcluster 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_multi_update2-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=nothing.sensible 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_myisam2ndb-slave.opt: -------------------------------------------------------------------------------- 1 | --new --default-storage-engine=ndbcluster 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_rpl/t/ndb_rpl_skip_gap_event-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-errors=1590 -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/ndb_team/t/ndb_autodiscover2-master.opt: -------------------------------------------------------------------------------- 1 | --skip-external-locking 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_debug_sync_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_file_per_table=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_innodb_status_file-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-status-file=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc1_archive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc1_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc1_memory-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc1_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc2_archive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc2_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc2_memory-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_mgm_lc2_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/parts/t/partition_recover_myisam-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/r/bad_option_2.result: -------------------------------------------------------------------------------- 1 | Found: ambiguous option '--performance-schema-max_=12' 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/connection_3a-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_accounts_size=3 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/connection_3u-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_users_size=3 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/digest_table_full-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance-schema-digests-size=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/event_aggregate-master.opt: -------------------------------------------------------------------------------- 1 | --general_log 2 | --log-output=FILE 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_again_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_again_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_bad_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_good_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_good_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_addrinfo_noname_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_blocked-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_max_con-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_again_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_again_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_allow-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_nameinfo_noname_deny-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_passwd-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/hostcache_ipv6_ssl-master.opt: -------------------------------------------------------------------------------- 1 | --bind-addr=:: 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/myisam_file_io.opt: -------------------------------------------------------------------------------- 1 | --performance_schema_events_waits_history_long_size=5000 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/pool_of_threads-master.opt: -------------------------------------------------------------------------------- 1 | --loose-pool-of-threads 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/query_cache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/relaylog-slave.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/rpl_statements-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=mixed 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/rpl_statements-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=mixed 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/selects-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/short_option_2-master.opt: -------------------------------------------------------------------------------- 1 | -aW5 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/sizing_growth-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | --innodb_file_per_table=1 3 | 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/socket_instances_func-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/socket_instances_func_win-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/stage_mdl_global-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/start_server_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/start_server_low_digest-master.opt: -------------------------------------------------------------------------------- 1 | --max_digest_length=10 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/start_server_no_digests-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance-schema-digests-size=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/start_server_off-master.opt: -------------------------------------------------------------------------------- 1 | --loose-disable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/start_server_on-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/statement_digest_long_query-master.opt: -------------------------------------------------------------------------------- 1 | --thread_stack=655360 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/tampered_perfschema_table1-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,tampered_perfschema_table1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/thread_cache-master.opt: -------------------------------------------------------------------------------- 1 | --loose-performance_schema_max_thread_class=200 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema/t/threads_mysql-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | --thread_cache_size=0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/perfschema_stress/stress_init.txt: -------------------------------------------------------------------------------- 1 | setup 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/r/rpl000001.a.result: -------------------------------------------------------------------------------- 1 | n 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/r/rpl000001.b.result: -------------------------------------------------------------------------------- 1 | sum(length(word)) 2 | 71 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/r/rpl_critical_errors.result: -------------------------------------------------------------------------------- 1 | Turn on parsing to run this test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_000010-slave.opt: -------------------------------------------------------------------------------- 1 | --disconnect-slave-event-count=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_begin_commit_rollback-master.opt: -------------------------------------------------------------------------------- 1 | --innodb --binlog-ignore-db=db2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_begin_commit_rollback-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb --replicate-do-db=db1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_binlog_errors-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_bug33931-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_bug41902-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=-d,simulate_find_log_pos_error 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_change_master_crash_safe-slave.opt: -------------------------------------------------------------------------------- 1 | --master-info-repository=TABLE 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_checksum-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-checksum=CRC32 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_circular_for_4_hosts-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_concurrency_error-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-lock-wait-timeout=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_current_user-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_do_table_filter_insensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_do_table_filter_sensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_drop_temp-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=mysqltest.t2 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_dual_pos_advance-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_extra_row_data-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,extra_row_data_set 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_extra_row_data-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,extra_row_data_check 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_flush_logs-master.opt: -------------------------------------------------------------------------------- 1 | --log-error=$MYSQLTEST_VARDIR/tmp/master_log.err 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_flushlog_loop-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=1M 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_flushlog_loop-slave.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=1M 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_free_items-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_get_master_version_and_clock-slave.opt: -------------------------------------------------------------------------------- 1 | --master-retry-count=60 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_binlog_errors-master.opt: -------------------------------------------------------------------------------- 1 | --max_binlog_size=4096 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_do_table_filter_sensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_ignore_table_filter_insensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_ignore_table_filter_sensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_row_event_max_size-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=2097152 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_gtid_row_event_max_size-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=2097152 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_heartbeat-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_db_filter-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_db_filter-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-db=MYDB --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_grant-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_revoke-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-ignore-table=mysql.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_table_filter_insensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ignore_table_filter_sensitive-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_init_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --init-slave="set global max_connections=500" 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_innodb_bug28430-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_innodb_bug28430-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_insert_id-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_insert_id-slave.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_invoked_features-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ip_mix-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_ip_mix2-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_loaddata_fatal-slave.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,LOAD_DATA_INFILE_has_fatal_error 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_loaddata_m-master.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_loaddata_map-slave.opt: -------------------------------------------------------------------------------- 1 | --max_allowed_packet=8K --net-buffer-length=8K 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_loaddata_s-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog_ignore_db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mix_found_rows-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mixed_implicit_commit_binlog-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mixed_implicit_commit_binlog-slave.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mixed_row_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_off-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mts_execute_partial_trx_with_auto_pos_on-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_mts_stop_slave-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_multi_delete-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=test.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_multi_update2-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=nothing.sensible 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_multi_update4-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-wild-do-table=d1.% 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel-master.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel-slave.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_change_master-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_conf_limits-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_conflicts-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_ddl-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_load_data-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_multi_db-master.opt: -------------------------------------------------------------------------------- 1 | --thread_stack=512K --log-warnings=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_seconds_behind_master-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_switch_sequential-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_parallel_temp_query-slave.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 --slave-transaction-retries=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_partition_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_autoinc_lock_mode=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_plugin_load-master.opt: -------------------------------------------------------------------------------- 1 | $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_plugin_load-slave.opt: -------------------------------------------------------------------------------- 1 | $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_relayrotate-slave.opt: -------------------------------------------------------------------------------- 1 | --max_relay_log_size=16384 2 | --log-warnings 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_relayspace-slave.opt: -------------------------------------------------------------------------------- 1 | --relay_log_space_limit=10 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_replicate_do-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-do-table=test.t1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate_ignore_db=mysqltest1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_report_port-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_rewrite_db_filter-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_rotate_purge_deadlock-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=4k --expire-logs-days=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_corruption-slave.opt: -------------------------------------------------------------------------------- 1 | --replicate-ignore-table=test.t2_11753004_ign 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_err_daisychain-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-format=row 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_event_max_size-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=2097152 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_event_max_size-slave.opt: -------------------------------------------------------------------------------- 1 | --binlog-row-event-max-size=2097152 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_implicit_commit_binlog-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_implicit_commit_binlog-slave.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_log-master.opt: -------------------------------------------------------------------------------- 1 | --skip-external-locking 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_log-slave.opt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_mysqlbinlog-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=1040384 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_row_sp011-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sbm_previous_gtid_event-slave.opt: -------------------------------------------------------------------------------- 1 | --max_relay_log_size=4096 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | --force-restart 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_deadlock-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_deadlock-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_event-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT --max-connections=40 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_event-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_future_logpos-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_future_logpos-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_group_commit_deadlock-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_group_commit_deadlock-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_non_group_commit_deadlock-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_shutdown_hang-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_shutdown_hang-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_uninstall_plugin-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_semi_sync_uninstall_plugin-slave.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sequential-master.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sequential-slave.opt: -------------------------------------------------------------------------------- 1 | --log-warnings=0 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_server_id2-master.opt: -------------------------------------------------------------------------------- 1 | --gtid-mode=off 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_server_id_ignore-master.opt: -------------------------------------------------------------------------------- 1 | --gtid-mode=off 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_skip_error-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-error=1062 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_skip_incident-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=+d,incident_database_resync_on_replace 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_skip_incident-slave.opt: -------------------------------------------------------------------------------- 1 | --slave-skip-error=1590 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_slave_load_tmpdir_not_exist-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sp-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sp-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sp_effects-master.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sp_effects-slave.opt: -------------------------------------------------------------------------------- 1 | --log_bin_trust_function_creators=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_spec_variables-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_special_charset-master.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_special_charset-slave.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sql_thread_killed_waiting_commit_lock-slave.opt: -------------------------------------------------------------------------------- 1 | --sync-relay-log-info=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_stm_implicit_commit_binlog-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_stm_implicit_commit_binlog-slave.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_stm_log-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_stm_log-slave.opt: -------------------------------------------------------------------------------- 1 | --log-slave-updates 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-checksum=CRC32 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_switch_stm_row_mixed-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | --innodb-file-per-table=0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_timezone-master.opt: -------------------------------------------------------------------------------- 1 | --default-time-zone=Europe/Moscow 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_timezone-slave.opt: -------------------------------------------------------------------------------- 1 | --default-time-zone=Japan 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_typeconv-master.opt: -------------------------------------------------------------------------------- 1 | --testcase-timeout=40 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_typeconv-slave.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_udf-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl/t/rpl_udf-slave.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/rpl_ndb/t/rpl_ndb_stm_innodb-slave.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/r/sha256_password_private_key_path_basic.result: -------------------------------------------------------------------------------- 1 | Intentionally left empty 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/r/sha256_password_public_key_path_basic.result: -------------------------------------------------------------------------------- 1 | Intentionally left empty 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func2-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func2.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func3-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func3.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func4-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=on 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func4.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func5-master.opt: -------------------------------------------------------------------------------- 1 | --autocommit=off 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/autocommit_func5.test: -------------------------------------------------------------------------------- 1 | --source suite/sys_vars/inc/autocommit_func2.inc 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/core_file_basic-master.opt: -------------------------------------------------------------------------------- 1 | --core-file 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/delay_key_write_func-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover=BACKUP,FORCE 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/external_user_basic.test: -------------------------------------------------------------------------------- 1 | SELECT @@SESSION.EXTERNAL_USER FROM DUAL; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/host_cache_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --host-cache-size=123 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/identity_func-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/innodb_autoinc_lock_mode_func-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-autoinc-lock-mode=1 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/innodb_buffer_pool_filename_basic-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/innodb_file_format_max_basic-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/innodb_file_per_table_basic-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_file_per_table=On 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/last_insert_id_func-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/max_digest_length_basic-master.opt: -------------------------------------------------------------------------------- 1 | --max-digest-length=123 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/max_sp_recursion_depth_func-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/metadata_locks_cache_size_basic-master.opt: -------------------------------------------------------------------------------- 1 | --metadata-locks-cache-size=256 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/optimizer_trace_offset_max-master.opt: -------------------------------------------------------------------------------- 1 | --loose-maximum-optimizer-trace-offset=50 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/performance_schema_basic-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-performance-schema 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/pfs_max_digest_length_basic-master.opt: -------------------------------------------------------------------------------- 1 | --performance-schema-max-digest-length=123 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/plugin_dir_basic-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/proxy_user_basic.test: -------------------------------------------------------------------------------- 1 | SELECT @@SESSION.PROXY_USER FROM DUAL; 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/query_cache_limit_func-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/query_cache_type_basic-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/query_cache_type_func-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/query_cache_wlock_invalidate_func-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_master_enabled_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_master_timeout_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_master_trace_level_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_master_wait_no_slave_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_slave_enabled_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/rpl_semi_sync_slave_trace_level_basic-master.opt: -------------------------------------------------------------------------------- 1 | $SEMISYNC_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/secure_auth_func-master.opt: -------------------------------------------------------------------------------- 1 | --secure-auth 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/secure_file_priv-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv='' 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/secure_file_priv2-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$SECURE_LOAD_PATH 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/sha256_password_private_key_path_basic.test: -------------------------------------------------------------------------------- 1 | --echo Intentionally left empty 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/sha256_password_public_key_path_basic.test: -------------------------------------------------------------------------------- 1 | --echo Intentionally left empty 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/skip_name_resolve_basic-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/slow_launch_time_func-master.opt: -------------------------------------------------------------------------------- 1 | --thread_cache_size=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/storage_engine_basic-master.opt: -------------------------------------------------------------------------------- 1 | --innodb 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/thread_cache_size_func-master.opt: -------------------------------------------------------------------------------- 1 | --thread_cache_size=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/suite/sys_vars/t/timestamp_sysdate_is_now_func-master.opt: -------------------------------------------------------------------------------- 1 | --sysdate-is-now 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/archive_no_symlink-master.opt: -------------------------------------------------------------------------------- 1 | --skip-symbolic-links 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/archive_plugin-master.opt: -------------------------------------------------------------------------------- 1 | --plugin_dir=$ARCHIVE_PLUGIN_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/audit_plugin-master.opt: -------------------------------------------------------------------------------- 1 | $AUDIT_NULL_OPT 2 | 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/blackhole_plugin-master.opt: -------------------------------------------------------------------------------- 1 | --plugin_dir=$BLACKHOLE_PLUGIN_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/bug12969156-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$DAEMONEXAMPLE_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/bug17076131-master.opt: -------------------------------------------------------------------------------- 1 | --no-console 2 | --log-error=$MYSQLTEST_VARDIR/tmp/mysql.err 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/bug33509-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/bug46261-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/bug58669-master.opt: -------------------------------------------------------------------------------- 1 | --read-only 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/cache_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/change_user-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/concurrent_innodb_safelog-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_lock_wait_timeout=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/count_distinct2-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ctype_utf16_def-master.opt: -------------------------------------------------------------------------------- 1 | --character-set-server=utf16,latin1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ctype_utf8-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ctype_utf8mb4_innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/debug_sync2-master.opt: -------------------------------------------------------------------------------- 1 | --loose-debug-sync-timeout=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/disabled_replication-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin --server-id=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/disconnect_on_expired_password_off-master.opt: -------------------------------------------------------------------------------- 1 | --disconnect-on-expired-password=off 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/events_bugs-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/events_logs_tests-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=table,file --slow-query-log 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/events_restart-master.opt: -------------------------------------------------------------------------------- 1 | --event-scheduler 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/flush2-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/fulltext_plugin-master.opt: -------------------------------------------------------------------------------- 1 | $SIMPLE_PARSER_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/func_misc-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/grant3-master.opt: -------------------------------------------------------------------------------- 1 | --safe-user-create 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/grant_cache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/implicit_commit-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/init_connect-master.opt: -------------------------------------------------------------------------------- 1 | --init_connect="set @a='a\\0c'" 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_ignore_builtin-master.opt: -------------------------------------------------------------------------------- 1 | --ignore_builtin_innodb 2 | --server-id=0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_all-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_cost-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_cost_all-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_cost_icp-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_icp-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mrr_none-master.opt: -------------------------------------------------------------------------------- 1 | --loose-innodb_lock_wait_timeout=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_mysql_lock-master.opt: -------------------------------------------------------------------------------- 1 | --innodb_lock_wait_timeout=300 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/innodb_recovery_with_upper_case_names-master.opt: -------------------------------------------------------------------------------- 1 | --innodb-fast-shutdown=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ipv6-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lock_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lock_tables_lost_commit-master.opt: -------------------------------------------------------------------------------- 1 | --binlog-ignore-db=test 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/log_state_bug33693-master.opt: -------------------------------------------------------------------------------- 1 | --pid-file=$MYSQLTEST_VARDIR/run/mysqld.1.pid --general-log 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/log_tables-big-master.opt: -------------------------------------------------------------------------------- 1 | --slow-query-log 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/log_tables-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=table,file --slow-query-log 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lowercase_table-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lowercase_table3-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lowercase_table4-master.opt: -------------------------------------------------------------------------------- 1 | --lower-case-table-names=2 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lowercase_table_grant-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/lowercase_view-master.opt: -------------------------------------------------------------------------------- 1 | --lower_case_table_names=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/main.lowercase_table_qcache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mdl_sync-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/merge_mmap-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-use-mmap 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mix2_myisam-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/multi_update-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/multi_update2-master.opt: -------------------------------------------------------------------------------- 1 | --tmp_table_size=1024 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/multi_update_tiny_hash-master.opt: -------------------------------------------------------------------------------- 1 | --max_heap_table_size=16384 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/myisam_recover-master.opt: -------------------------------------------------------------------------------- 1 | --myisam-recover=force 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysql_delimiter_19799.sql: -------------------------------------------------------------------------------- 1 | delimiter // 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysql_plugin-master.opt: -------------------------------------------------------------------------------- 1 | --plugin-dir=$DAEMONEXAMPLE_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysqlbinlog-master.opt: -------------------------------------------------------------------------------- 1 | --max-binlog-size=4096 2 | --force-restart 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysqldump-compat.opt: -------------------------------------------------------------------------------- 1 | --loose-debug=d,4x_server_emul 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysqldump-max-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/mysqldump-no-binlog-master.opt: -------------------------------------------------------------------------------- 1 | --skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/named_pipe-master.opt: -------------------------------------------------------------------------------- 1 | --loose-enable-named-pipe 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/not_embedded_server-master.opt: -------------------------------------------------------------------------------- 1 | --force-restart 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/order_fill_sortbuf-master.opt: -------------------------------------------------------------------------------- 1 | --sort_buffer=32804 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/partition_cache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/partition_disabled-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-partition 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/partition_not_blackhole-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-blackhole 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/partition_not_windows-master.opt: -------------------------------------------------------------------------------- 1 | --symbolic-links=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/plugin-master.opt: -------------------------------------------------------------------------------- 1 | $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/plugin_auth_sha256_server_default_tls-master.opt: -------------------------------------------------------------------------------- 1 | --default_authentication_plugin=sha256_password 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/plugin_not_embedded-master.opt: -------------------------------------------------------------------------------- 1 | $EXAMPLE_PLUGIN_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ps_3innodb-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_28249-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_debug-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_disabled-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_merge-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_notembedded-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_ps_no_prot-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_ps_ps_prot-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/query_cache_with_views-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/secure_file_priv_win-master.opt: -------------------------------------------------------------------------------- 1 | --secure_file_priv=$MYSQL_TMP_DIR 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/signal_demo3-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/skip_log_bin-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-log-bin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/skip_name_resolve-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sp-fib-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sp-lock-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sp-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | --query_cache_type=1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sp-prelocking-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sp_notembedded-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/ssl_cipher-master.opt: -------------------------------------------------------------------------------- 1 | --ssl-cipher=AES128-SHA 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/status-master.opt: -------------------------------------------------------------------------------- 1 | --log-output=table,file 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/strict-master.opt: -------------------------------------------------------------------------------- 1 | --default-storage-engine=MyISAM 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_all-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_all_bka-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_all_bka_nixbnl-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_all_bkaunique-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_dupsweed-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_dupsweed_bka-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_dupsweed_bka_nixbnl-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_dupsweed_bkaunique-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_firstmatch-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subquery_sj_firstmatch_bka-master.opt: -------------------------------------------------------------------------------- 1 | --thread-stack=524288 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/subselect_notembedded-master.opt: -------------------------------------------------------------------------------- 1 | ${?PB_HOST_SPECIFIC_MYSQLD_ARGS} 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/sysdate_is_now-master.opt: -------------------------------------------------------------------------------- 1 | --sysdate-is-now 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/system_mysql_db_fix30020-master.opt: -------------------------------------------------------------------------------- 1 | --result-file=system_mysql_db 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/system_mysql_db_fix40123-master.opt: -------------------------------------------------------------------------------- 1 | --result-file=system_mysql_db 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/system_mysql_db_fix50030-master.opt: -------------------------------------------------------------------------------- 1 | --result-file=system_mysql_db 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/system_mysql_db_fix50117-master.opt: -------------------------------------------------------------------------------- 1 | --result-file=system_mysql_db 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/temp_pool-master.opt: -------------------------------------------------------------------------------- 1 | --tmpdir=$MYSQLTEST_VARDIR/tmp 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/temp_table-master.opt: -------------------------------------------------------------------------------- 1 | --tmpdir=$MYSQLTEST_VARDIR//tmp 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/timezone-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=MET 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/timezone3-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=:$MYSQL_TEST_DIR/std_data/Moscow_leap 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/timezone4-master.opt: -------------------------------------------------------------------------------- 1 | --timezone=GMT+10 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/trans_read_only-master.opt: -------------------------------------------------------------------------------- 1 | --transaction-read-only=true 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/type_timestamp-master.opt: -------------------------------------------------------------------------------- 1 | --explicit_defaults_for_timestamp=0 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/type_timestamp_explicit-master.opt: -------------------------------------------------------------------------------- 1 | --explicit_defaults_for_timestamp 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/udf-master.opt: -------------------------------------------------------------------------------- 1 | $UDF_EXAMPLE_LIB_OPT 2 | --query_cache_type=1 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/udf_skip_grants-master.opt: -------------------------------------------------------------------------------- 1 | --skip-grant-tables 2 | $UDF_EXAMPLE_LIB_OPT 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/validate_password_plugin-master.opt: -------------------------------------------------------------------------------- 1 | $VALIDATE_PASSWORD_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/variables-master.opt: -------------------------------------------------------------------------------- 1 | --query_cache_type=1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/warnings-master.opt: -------------------------------------------------------------------------------- 1 | --loose-skip-innodb 2 | --server-id=0 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/wl6301_1_not_windows-master.opt: -------------------------------------------------------------------------------- 1 | --skip-name-resolve 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysql-test/t/wl6443_deprecation-master.opt: -------------------------------------------------------------------------------- 1 | $VALIDATE_PASSWORD_OPT 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/ChangeLog -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/array.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/base64.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/charset.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/checksum.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/errors.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/hash.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/lf_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/lf_hash.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/list.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_cache.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_pack.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_path.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_qsort.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_radix.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_same.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_same.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_sort.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mf_wcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mf_wcomp.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/mulalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/mulalloc.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_alarm.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_alloc.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_bit.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_conio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_conio.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_copy.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_crc32.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_div.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_error.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_file.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_fopen.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_getwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_getwd.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_init.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_lib.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_lock.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_mess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_mess.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_mkdir.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_mmap.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_once.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_open.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_pread.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_quick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_quick.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_rdtsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_rdtsc.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_read.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_redel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_redel.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_seek.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_sleep.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_sync.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/my_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/my_write.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/psi_noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/psi_noop.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/ptr_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/ptr_cmp.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/queues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/queues.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/string.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/test_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/test_dir.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/test_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/test_xml.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/testhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/testhash.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/thr_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/thr_lock.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/tree.c -------------------------------------------------------------------------------- /mysql-5.6.26/mysys/typelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/mysys/typelib.c -------------------------------------------------------------------------------- /mysql-5.6.26/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/nohup.out -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-jessie/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-jessie/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-jessie/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-precise/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-precise/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-precise/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-trusty/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-trusty/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-trusty/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-utopic/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-utopic/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-utopic/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-vivid/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-vivid/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-vivid/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-wheezy/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-wheezy/extra/mysql_embedded.1: -------------------------------------------------------------------------------- 1 | .so man1/mysql.1 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/packaging/deb-wheezy/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/daemon_example/ChangeLog: -------------------------------------------------------------------------------- 1 | 0.1 2 | - Added 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/daemon_example/NEWS: -------------------------------------------------------------------------------- 1 | 0.1 - Tue Nov 7 12:08:03 PST 2006 2 | * Added Example to test interface 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/fulltext/AUTHORS: -------------------------------------------------------------------------------- 1 | AUTHORS file example for a plugin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/fulltext/ChangeLog: -------------------------------------------------------------------------------- 1 | ChangeLog file example for a plugin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/fulltext/NEWS: -------------------------------------------------------------------------------- 1 | NEWS file example for a plugin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/plugin/fulltext/README: -------------------------------------------------------------------------------- 1 | README file example for a plugin 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/regex/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/CHANGES -------------------------------------------------------------------------------- /mysql-5.6.26/regex/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/COPYRIGHT -------------------------------------------------------------------------------- /mysql-5.6.26/regex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/README -------------------------------------------------------------------------------- /mysql-5.6.26/regex/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/WHATSNEW -------------------------------------------------------------------------------- /mysql-5.6.26/regex/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/cclass.h -------------------------------------------------------------------------------- /mysql-5.6.26/regex/cname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/cname.h -------------------------------------------------------------------------------- /mysql-5.6.26/regex/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/debug.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/debug.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/debug.ih -------------------------------------------------------------------------------- /mysql-5.6.26/regex/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/engine.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/engine.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/engine.ih -------------------------------------------------------------------------------- /mysql-5.6.26/regex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/main.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/main.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/main.ih -------------------------------------------------------------------------------- /mysql-5.6.26/regex/my_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/my_regex.h -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regcomp.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regcomp.ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regcomp.ih -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regerror.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regex.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regex.3 -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regex.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regex.7 -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regex2.h -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regexec.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regexp.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/regfree.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/reginit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/reginit.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/split.c -------------------------------------------------------------------------------- /mysql-5.6.26/regex/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/regex/utils.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql-bench/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql-bench/README -------------------------------------------------------------------------------- /mysql-5.6.26/sql-bench/pwd.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @cd 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/sql-bench/uname.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @ver 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/sql/add_errmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/add_errmsg -------------------------------------------------------------------------------- /mysql-5.6.26/sql/binlog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/binlog.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/binlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/binlog.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/datadict.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/datadict.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/datadict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/datadict.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/db.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/db.opt -------------------------------------------------------------------------------- /mysql-5.6.26/sql/debug_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/debug_sync.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/derror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/derror.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/derror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/derror.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/discover.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/discover.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/discover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/discover.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/events.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/events.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/events.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/field.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/field.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/filesort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/filesort.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/filesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/filesort.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/frm_crypt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/frm_crypt.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/frm_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/frm_crypt.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/gstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/gstream.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/gstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/gstream.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ha_ndbinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ha_ndbinfo.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/handler.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/handler.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/hash_filo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/hash_filo.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/hash_filo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/hash_filo.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/hostname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/hostname.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/hostname.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/init.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/init.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_buff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_buff.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_func.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_func.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_row.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_row.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_row.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_sum.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/item_sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/item_sum.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/key.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/key.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/keycaches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/keycaches.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/keycaches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/keycaches.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/lex.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/lex_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/lex_symbol.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/lock.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/lock.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/log.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/log.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/log_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/log_event.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/log_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/log_event.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/main.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/mdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/mdl.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/mdl.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/merge_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/merge_sort.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/my_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/my_decimal.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/mysqld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/mysqld.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/mysqld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/mysqld.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_mi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_mi.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_mi.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_share.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_share.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_share.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_thd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_thd.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/ndb_thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/ndb_thd.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/net_serv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/net_serv.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/nt_servc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/nt_servc.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/nt_servc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/nt_servc.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/opt_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/opt_range.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/opt_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/opt_range.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/opt_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/opt_sum.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/opt_trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/opt_trace.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/opt_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/opt_trace.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/parse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/parse_file.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/password.c -------------------------------------------------------------------------------- /mysql-5.6.26/sql/plistsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/plistsort.c -------------------------------------------------------------------------------- /mysql-5.6.26/sql/procedure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/procedure.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/procedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/procedure.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/protocol.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/protocol.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/records.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/records.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/records.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/records.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_filter.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_gtid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_gtid.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_info.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_info.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_master.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_mi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_mi.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_mi.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_record.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_rli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_rli.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_rli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_rli.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/rpl_slave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/rpl_slave.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/set_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/set_var.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sp.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sp.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sp_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sp_head.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/spatial.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_acl.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_cmd.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_db.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_db.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_do.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_do.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_do.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_lex.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/sql_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/sql_udf.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/strfunc.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/structs.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/table.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/table.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/tzfile.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/tztime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/tztime.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/tztime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/tztime.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/unireg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/unireg.cc -------------------------------------------------------------------------------- /mysql-5.6.26/sql/unireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/unireg.h -------------------------------------------------------------------------------- /mysql-5.6.26/sql/uuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/sql/uuid.cc -------------------------------------------------------------------------------- /mysql-5.6.26/storage/ndb/clusterj/clusterj-jdbc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mysql-5.6.26/storage/ndb/src/common/logger/message.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 "MSG00001.bin" 3 | -------------------------------------------------------------------------------- /mysql-5.6.26/storage/ndb/test/run-test/test-tests.txt: -------------------------------------------------------------------------------- 1 | max-time: 600 2 | cmd: testBasic 3 | args: -n PkRead T1 4 | 5 | -------------------------------------------------------------------------------- /mysql-5.6.26/strings/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/strings/xml.c -------------------------------------------------------------------------------- /mysql-5.6.26/vio/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/vio/docs/TODO -------------------------------------------------------------------------------- /mysql-5.6.26/vio/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/vio/vio.c -------------------------------------------------------------------------------- /mysql-5.6.26/vio/viopipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/vio/viopipe.c -------------------------------------------------------------------------------- /mysql-5.6.26/vio/vioshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/vio/vioshm.c -------------------------------------------------------------------------------- /mysql-5.6.26/vio/viossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/vio/viossl.c -------------------------------------------------------------------------------- /mysql-5.6.26/waf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/waf.txt -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/FAQ -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/INDEX -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/README -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/crc32.c -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/crc32.h -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/gzio.c -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/trees.c -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/trees.h -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/zconf.h -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/zlib.3 -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/zlib.h -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/zutil.c -------------------------------------------------------------------------------- /mysql-5.6.26/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlashSQL/MySQL-Data-Redistribution/HEAD/mysql-5.6.26/zlib/zutil.h --------------------------------------------------------------------------------