Commit 9d480f6a authored by Sergey Petrunya's avatar Sergey Petrunya

BUG#670417: Diverging results in maria-5.3-mwl128-dsmrr-cpk with join buffer

- Fixes for the second fix: take into account case where we don't need to save/restore the scan.
parent 09a84dc4
...@@ -379,14 +379,19 @@ int Mrr_ordered_index_reader::get_next(char **range_info) ...@@ -379,14 +379,19 @@ int Mrr_ordered_index_reader::get_next(char **range_info)
/* /*
Supply index reader with the O(1)space it needs for operation Supply index reader with the O(1)space it needs for scan interrupt/restore
operation
*/ */
bool Mrr_ordered_index_reader::set_temp_space(uint rowid_length, uint key_len, bool Mrr_ordered_index_reader::set_interruption_temp_buffer(uint rowid_length,
uchar **space_start, uchar *space_end) uint key_len,
uchar **space_start,
uchar *space_end)
{ {
if (space_end - *space_start <= (ptrdiff_t)(rowid_length + key_len)) if (space_end - *space_start <= (ptrdiff_t)(rowid_length + key_len))
return TRUE; return TRUE;
support_scan_interruptions= TRUE;
saved_rowid= *space_start; saved_rowid= *space_start;
*space_start += rowid_length; *space_start += rowid_length;
saved_key_tuple= *space_start; saved_key_tuple= *space_start;
...@@ -396,8 +401,16 @@ bool Mrr_ordered_index_reader::set_temp_space(uint rowid_length, uint key_len, ...@@ -396,8 +401,16 @@ bool Mrr_ordered_index_reader::set_temp_space(uint rowid_length, uint key_len,
return FALSE; return FALSE;
} }
void Mrr_ordered_index_reader::set_no_interruption_temp_buffer()
{
support_scan_interruptions= FALSE;
saved_key_tuple= saved_rowid= NULL; /* safety */
have_saved_rowid= FALSE;
}
void Mrr_ordered_index_reader::interrupt_read() void Mrr_ordered_index_reader::interrupt_read()
{ {
DBUG_ASSERT(support_scan_interruptions);
/* Save the current key value */ /* Save the current key value */
key_copy(saved_key_tuple, file->get_table()->record[0], key_copy(saved_key_tuple, file->get_table()->record[0],
&file->get_table()->key_info[file->active_index], &file->get_table()->key_info[file->active_index],
...@@ -490,7 +503,8 @@ int Mrr_ordered_index_reader::init(handler *h_arg, RANGE_SEQ_IF *seq_funcs, ...@@ -490,7 +503,8 @@ int Mrr_ordered_index_reader::init(handler *h_arg, RANGE_SEQ_IF *seq_funcs,
is_mrr_assoc= !test(mode & HA_MRR_NO_ASSOCIATION); is_mrr_assoc= !test(mode & HA_MRR_NO_ASSOCIATION);
mrr_funcs= *seq_funcs; mrr_funcs= *seq_funcs;
source_exhausted= FALSE; source_exhausted= FALSE;
bzero(saved_key_tuple, keypar.key_tuple_length); if (support_scan_interruptions)
bzero(saved_key_tuple, keypar.key_tuple_length);
have_saved_rowid= FALSE; have_saved_rowid= FALSE;
return 0; return 0;
} }
...@@ -734,7 +748,7 @@ int DsMrr_impl::dsmrr_init(handler *h_arg, RANGE_SEQ_IF *seq_funcs, ...@@ -734,7 +748,7 @@ int DsMrr_impl::dsmrr_init(handler *h_arg, RANGE_SEQ_IF *seq_funcs,
Mrr_ordered_rndpos_reader *disk_strategy= NULL; Mrr_ordered_rndpos_reader *disk_strategy= NULL;
bool do_sort_keys= FALSE; bool do_sort_keys= FALSE;
DBUG_ENTER("DsMrr_impl::dsmrr_init"); DBUG_ENTER("DsMrr_impl::dsmrr_init");
LINT_INIT(key_buff_elem_size); /* set/used when do_sort_keys==TRUE */
/* /*
index_merge may invoke a scan on an object for which dsmrr_info[_const] index_merge may invoke a scan on an object for which dsmrr_info[_const]
has not been called, so set the owner handler here as well. has not been called, so set the owner handler here as well.
...@@ -803,12 +817,14 @@ int DsMrr_impl::dsmrr_init(handler *h_arg, RANGE_SEQ_IF *seq_funcs, ...@@ -803,12 +817,14 @@ int DsMrr_impl::dsmrr_init(handler *h_arg, RANGE_SEQ_IF *seq_funcs,
/* Ordered index reader needs some space to store an index tuple */ /* Ordered index reader needs some space to store an index tuple */
if (strategy != index_strategy) if (strategy != index_strategy)
{ {
if (reader_factory.ordered_index_reader.set_temp_space(primary_file->ref_length, if (reader_factory.ordered_index_reader.
keypar.key_tuple_length, set_interruption_temp_buffer(primary_file->ref_length,
&full_buf, keypar.key_tuple_length,
full_buf_end)) &full_buf, full_buf_end))
goto use_default_impl; goto use_default_impl;
} }
else
reader_factory.ordered_index_reader.set_no_interruption_temp_buffer();
} }
if (strategy == index_strategy) if (strategy == index_strategy)
......
...@@ -270,9 +270,11 @@ public: ...@@ -270,9 +270,11 @@ public:
return (mrr_funcs.skip_index_tuple && return (mrr_funcs.skip_index_tuple &&
mrr_funcs.skip_index_tuple(mrr_iter, range_info)); mrr_funcs.skip_index_tuple(mrr_iter, range_info));
} }
bool set_interruption_temp_buffer(uint rowid_length, uint key_len,
uchar **space_start, uchar *space_end);
void set_no_interruption_temp_buffer();
bool set_temp_space(uint rowid_length, uint key_len,
uchar **space_start, uchar *space_end);
void interrupt_read(); void interrupt_read();
void resume_read(); void resume_read();
void position(); void position();
...@@ -299,6 +301,7 @@ private: ...@@ -299,6 +301,7 @@ private:
/* TRUE == reached eof when enumerating ranges */ /* TRUE == reached eof when enumerating ranges */
bool source_exhausted; bool source_exhausted;
bool support_scan_interruptions;
/* /*
Space where we save the rowid of the last record we've returned. This is Space where we save the rowid of the last record we've returned. This is
needed for the cases where index scan is interrupted by some other activity needed for the cases where index scan is interrupted by some other activity
......
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