1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-29672 Add MTR tests covering key and key segment flags and types

This commit is contained in:
Alexander Barkov
2022-09-28 18:49:09 +04:00
parent e3fdabd501
commit 1118e979c2
7 changed files with 5257 additions and 1 deletions

View File

@ -58,6 +58,7 @@
#ifdef WITH_WSREP
#include "wsrep_mysqld.h"
#endif
#include "sql_debug.h"
#ifdef __WIN__
#include <io.h>
@ -4458,6 +4459,13 @@ mysql_prepare_create_table(THD *thd, HA_CREATE_INFO *create_info,
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);
}