diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-04 13:23:13 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-04 13:23:13 +0200 |
commit | 55e07d9ade51e9e969f528d903509806142f4d1e (patch) | |
tree | 7261b1dc07a0b7a5467e8ec22d676c48ae9324dd /sql/sql_table.cc | |
parent | 0333ddd3ec003225384507f30e65517d99c494b7 (diff) | |
parent | 2f70784c2aff3bcf67f89f4d8cd121e8f8c3355f (diff) | |
download | mariadb-git-55e07d9ade51e9e969f528d903509806142f4d1e.tar.gz |
Merge branch '10.8' into 10.9
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 6896bdd20b8..74b46d18625 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -63,7 +63,7 @@ #include "rpl_mi.h" #include "rpl_rli.h" #include "log.h" - +#include "sql_debug.h" #ifdef _WIN32 #include <io.h> @@ -3815,6 +3815,13 @@ without_overlaps_err: thd->mem_root)) DBUG_RETURN(TRUE); +#ifndef DBUG_OFF + DBUG_EXECUTE_IF("key", + Debug_key::print_keys(thd, "prep_create_table: ", + *key_info_buffer, *key_count); + ); +#endif + DBUG_RETURN(FALSE); } @@ -9963,7 +9970,7 @@ bool mysql_alter_table(THD *thd, const LEX_CSTRING *new_db, DEBUG_SYNC(thd, "alter_opened_table"); -#ifdef WITH_WSREP +#if defined WITH_WSREP && defined ENABLED_DEBUG_SYNC DBUG_EXECUTE_IF("sync.alter_opened_table", { const char act[]= |