Commit b4a59e01 authored by karen.langford@oracle.com's avatar karen.langford@oracle.com Committed by Karen Langford

Bug#11867664: Fix server crashes on update with join on partitioned table.

parent 397df0ec
...@@ -4317,7 +4317,8 @@ int ha_partition::index_read_idx_map(uchar *buf, uint index, ...@@ -4317,7 +4317,8 @@ int ha_partition::index_read_idx_map(uchar *buf, uint index,
break; break;
} }
} }
m_last_part= part; if (part <= m_part_spec.end_part)
m_last_part= part;
} }
else else
{ {
...@@ -6237,7 +6238,14 @@ void ha_partition::print_error(int error, myf errflag) ...@@ -6237,7 +6238,14 @@ void ha_partition::print_error(int error, myf errflag)
{ {
/* In case m_file has not been initialized, like in bug#42438 */ /* In case m_file has not been initialized, like in bug#42438 */
if (m_file) if (m_file)
{
if (m_last_part >= m_tot_parts)
{
DBUG_ASSERT(0);
m_last_part= 0;
}
m_file[m_last_part]->print_error(error, errflag); m_file[m_last_part]->print_error(error, errflag);
}
else else
handler::print_error(error, errflag); handler::print_error(error, errflag);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment