1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge branch '10.6' into 10.11

This commit is contained in:
Oleksandr Byelkin
2024-01-30 08:17:58 +01:00
185 changed files with 6011 additions and 1647 deletions

View File

@@ -1503,8 +1503,9 @@ bool Rows_log_event::print_verbose(IO_CACHE *file,
if (!(map= print_event_info->m_table_map.get_table(m_table_id)) ||
!(td= map->create_table_def()))
{
return (my_b_printf(file, "### Row event for unknown table #%lu",
(ulong) m_table_id));
char llbuff[22];
return (my_b_printf(file, "### Row event for unknown table #%s",
ullstr(m_table_id, llbuff)));
}
/* If the write rows event contained no values for the AI */