mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
3416315407
Adding debug output for key and keyseg flags at ha_myisam::open() time. So now there are three points of debug output: 1. In the very end of mysql_prepare_create_table() 2. In ha_myisam::create(), after the table2myisam() call 3. In ha_myisan::open(), after the mi_open() call mi_create(), which is is called between 2 and 3, modifies flags for some data types, so the output in 2 and 3 is different.
168 lines
4.6 KiB
C++
168 lines
4.6 KiB
C++
#ifndef SQL_DEBUG_INCLUDED
|
|
#define SQL_DEBUG_INCLUDED
|
|
/*
|
|
Copyright (c) 2022, MariaDB
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
|
|
*/
|
|
|
|
|
|
class Debug_key: public String
|
|
{
|
|
public:
|
|
Debug_key() { };
|
|
void print(THD *thd) const
|
|
{
|
|
push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
|
|
ER_UNKNOWN_ERROR, "DBUG: %.*s", length(), ptr());
|
|
}
|
|
|
|
bool append_key_type(ha_base_keytype type)
|
|
{
|
|
static const char *names[20]=
|
|
{
|
|
"END",
|
|
"TEXT",
|
|
"BINARY",
|
|
"SHORT_INT",
|
|
"LONG_INT",
|
|
"FLOAT",
|
|
"DOUBLE",
|
|
"NUM",
|
|
"USHORT_INT",
|
|
"ULONG_INT",
|
|
"LONGLONG",
|
|
"ULONGLONG",
|
|
"INT24",
|
|
"UINT24",
|
|
"INT8",
|
|
"VARTEXT1",
|
|
"VARBINARY1",
|
|
"VARTEXT2",
|
|
"VARBINARY2",
|
|
"BIT"
|
|
};
|
|
if ((uint) type >= array_elements(names))
|
|
return append("???");
|
|
return append(names[(uint) type]);
|
|
}
|
|
|
|
bool append_KEY_flag_names(ulong flags)
|
|
{
|
|
static const char *names[17]=
|
|
{
|
|
"HA_NOSAME", // 1
|
|
"HA_PACK_KEY", // 2 - used in both HA_KEYSEG and KEY/MI_KEYDEF
|
|
"HA_SPACE_PACK_USED", // 4
|
|
"HA_VAR_LENGTH_KEY", // 8
|
|
"HA_AUTO_KEY", // 16
|
|
"HA_BINARY_PACK_KEY", // 32
|
|
"HA_NULL_PART_KEY", // 64
|
|
"HA_FULLTEXT", // 128
|
|
"HA_UNIQUE_CHECK", // 256
|
|
"HA_SORT_ALLOWS_SAME", // 512
|
|
"HA_SPATIAL", // 1024
|
|
"HA_NULL_ARE_EQUAL", // 2048
|
|
"HA_USES_COMMENT", // 4096
|
|
"HA_GENERATED_KEY", // 8192
|
|
"HA_USES_PARSER", // 16384
|
|
"HA_USES_BLOCK_SIZE", // 32768
|
|
"HA_KEY_HAS_PART_KEY_SEG" // 65536
|
|
};
|
|
return append_flag32_names((uint) flags, names, array_elements(names));
|
|
}
|
|
|
|
bool append_HA_KEYSEG_flag_names(uint32 flags)
|
|
{
|
|
static const char *names[]=
|
|
{
|
|
"HA_SPACE_PACK", // 1
|
|
"HA_PACK_KEY", // 2 - used in both HA_KEYSEG and KEY/MI_KEYDEF
|
|
"HA_PART_KEY_SEG", // 4
|
|
"HA_VAR_LENGTH_PART", // 8
|
|
"HA_NULL_PART", // 16
|
|
"HA_BLOB_PART", // 32
|
|
"HA_SWAP_KEY", // 64
|
|
"HA_REVERSE_SORT", // 128
|
|
"HA_NO_SORT", // 256
|
|
"??? 512 ???", // 512
|
|
"HA_BIT_PART", // 1024
|
|
"HA_CAN_MEMCMP" // 2048
|
|
};
|
|
return append_flag32_names(flags, names, array_elements(names));
|
|
}
|
|
|
|
bool append_HA_KEYSEG_type(ha_base_keytype type)
|
|
{
|
|
return append_ulonglong(type) ||
|
|
append(' ') ||
|
|
append_key_type(type);
|
|
}
|
|
|
|
bool append_HA_KEYSEG_flags(uint32 flags)
|
|
{
|
|
return append_hex_uint32(flags) ||
|
|
append(' ') ||
|
|
append_HA_KEYSEG_flag_names(flags);
|
|
}
|
|
|
|
bool append_key(const LEX_CSTRING &name, uint32 flags)
|
|
{
|
|
return
|
|
append_name_value(Lex_cstring(STRING_WITH_LEN("name")), name, '`') ||
|
|
append(Lex_cstring(STRING_WITH_LEN(" flags="))) ||
|
|
append_hex_uint32(flags) ||
|
|
append(' ') ||
|
|
append_KEY_flag_names(flags);
|
|
}
|
|
|
|
bool append_KEY(const KEY &key)
|
|
{
|
|
return append_key(key.name, key.flags);
|
|
}
|
|
|
|
static void print_keysegs(THD *thd, const HA_KEYSEG *seg, uint count)
|
|
{
|
|
for (uint i= 0; i < count; i++)
|
|
{
|
|
Debug_key tmp;
|
|
if (!tmp.append(Lex_cstring(STRING_WITH_LEN(" seg["))) &&
|
|
!tmp.append_ulonglong(i) &&
|
|
!tmp.append(Lex_cstring(STRING_WITH_LEN("].type="))) &&
|
|
!tmp.append_HA_KEYSEG_type((ha_base_keytype) seg[i].type))
|
|
tmp.print(thd);
|
|
tmp.length(0);
|
|
if (!tmp.append(Lex_cstring(STRING_WITH_LEN(" seg["))) &&
|
|
!tmp.append_ulonglong(i) &&
|
|
!tmp.append(Lex_cstring(STRING_WITH_LEN("].flag="))) &&
|
|
!tmp.append_HA_KEYSEG_flags(seg[i].flag))
|
|
tmp.print(thd);
|
|
}
|
|
}
|
|
|
|
static void print_keys(THD *thd, const char *where,
|
|
const KEY *keys, uint key_count)
|
|
{
|
|
for (uint i= 0; i < key_count; i++)
|
|
{
|
|
Debug_key tmp;
|
|
if (!tmp.append(where) && !tmp.append_KEY(keys[i]))
|
|
tmp.print(thd);
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
#endif // SQL_DEBUG_INCLUDED
|