Commit d448b52c authored by Mattias Jonsson's avatar Mattias Jonsson

merge

parents 444a081c 091e4b19
...@@ -320,7 +320,7 @@ ha_partition::~ha_partition() ...@@ -320,7 +320,7 @@ ha_partition::~ha_partition()
for (i= 0; i < m_tot_parts; i++) for (i= 0; i < m_tot_parts; i++)
delete m_file[i]; delete m_file[i];
} }
my_free(m_ordered_rec_buffer); destroy_record_priority_queue();
my_free(m_part_ids_sorted_by_num_of_records); my_free(m_part_ids_sorted_by_num_of_records);
clear_handler_file(); clear_handler_file();
...@@ -2638,7 +2638,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked) ...@@ -2638,7 +2638,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked)
{ {
char *name_buffer_ptr; char *name_buffer_ptr;
int error= HA_ERR_INITIALIZATION; int error= HA_ERR_INITIALIZATION;
uint alloc_len;
handler **file; handler **file;
char name_buff[FN_REFLEN]; char name_buff[FN_REFLEN];
bool is_not_tmp_table= (table_share->tmp_table == NO_TMP_TABLE); bool is_not_tmp_table= (table_share->tmp_table == NO_TMP_TABLE);
...@@ -2656,32 +2655,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked) ...@@ -2656,32 +2655,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked)
m_start_key.length= 0; m_start_key.length= 0;
m_rec0= table->record[0]; m_rec0= table->record[0];
m_rec_length= table_share->reclength; m_rec_length= table_share->reclength;
alloc_len= m_tot_parts * (m_rec_length + PARTITION_BYTES_IN_POS);
alloc_len+= table_share->max_key_length;
if (!m_ordered_rec_buffer)
{
if (!(m_ordered_rec_buffer= (uchar*)my_malloc(alloc_len, MYF(MY_WME))))
{
DBUG_RETURN(error);
}
{
/*
We set-up one record per partition and each record has 2 bytes in
front where the partition id is written. This is used by ordered
index_read.
We also set-up a reference to the first record for temporary use in
setting up the scan.
*/
char *ptr= (char*)m_ordered_rec_buffer;
uint i= 0;
do
{
int2store(ptr, i);
ptr+= m_rec_length + PARTITION_BYTES_IN_POS;
} while (++i < m_tot_parts);
m_start_key.key= (const uchar*)ptr;
}
}
if (!m_part_ids_sorted_by_num_of_records) if (!m_part_ids_sorted_by_num_of_records)
{ {
if (!(m_part_ids_sorted_by_num_of_records= if (!(m_part_ids_sorted_by_num_of_records=
...@@ -2711,7 +2684,7 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked) ...@@ -2711,7 +2684,7 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked)
if (m_is_clone_of) if (m_is_clone_of)
{ {
uint i; uint i, alloc_len;
DBUG_ASSERT(m_clone_mem_root); DBUG_ASSERT(m_clone_mem_root);
/* Allocate an array of handler pointers for the partitions handlers. */ /* Allocate an array of handler pointers for the partitions handlers. */
alloc_len= (m_tot_parts + 1) * sizeof(handler*); alloc_len= (m_tot_parts + 1) * sizeof(handler*);
...@@ -2787,12 +2760,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked) ...@@ -2787,12 +2760,6 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked)
being opened once. being opened once.
*/ */
clear_handler_file(); clear_handler_file();
/*
Initialize priority queue, initialized to reading forward.
*/
if ((error= init_queue(&m_queue, m_tot_parts, (uint) PARTITION_BYTES_IN_POS,
0, key_rec_cmp, (void*)this)))
goto err_handler;
/* /*
Use table_share->ha_part_data to share auto_increment_value among Use table_share->ha_part_data to share auto_increment_value among
...@@ -2917,7 +2884,7 @@ int ha_partition::close(void) ...@@ -2917,7 +2884,7 @@ int ha_partition::close(void)
DBUG_ENTER("ha_partition::close"); DBUG_ENTER("ha_partition::close");
DBUG_ASSERT(table->s == table_share); DBUG_ASSERT(table->s == table_share);
delete_queue(&m_queue); destroy_record_priority_queue();
bitmap_free(&m_bulk_insert_started); bitmap_free(&m_bulk_insert_started);
if (!m_is_clone_of) if (!m_is_clone_of)
bitmap_free(&(m_part_info->used_partitions)); bitmap_free(&(m_part_info->used_partitions));
...@@ -4213,6 +4180,78 @@ int ha_partition::rnd_pos_by_record(uchar *record) ...@@ -4213,6 +4180,78 @@ int ha_partition::rnd_pos_by_record(uchar *record)
subset of the partitions are used, then only use those partitions. subset of the partitions are used, then only use those partitions.
*/ */
/**
Setup the ordered record buffer and the priority queue.
*/
bool ha_partition::init_record_priority_queue()
{
DBUG_ENTER("ha_partition::init_record_priority_queue");
DBUG_ASSERT(!m_ordered_rec_buffer);
/*
Initialize the ordered record buffer.
*/
if (!m_ordered_rec_buffer)
{
uint map_len, alloc_len;
uint used_parts= bitmap_bits_set(&m_part_info->used_partitions);
/* Allocate record buffer for each used partition. */
alloc_len= used_parts * (m_rec_length + PARTITION_BYTES_IN_POS);
/* Allocate a key for temporary use when setting up the scan. */
alloc_len+= table_share->max_key_length;
if (!(m_ordered_rec_buffer= (uchar*)my_malloc(alloc_len, MYF(MY_WME))))
DBUG_RETURN(true);
/*
We set-up one record per partition and each record has 2 bytes in
front where the partition id is written. This is used by ordered
index_read.
We also set-up a reference to the first record for temporary use in
setting up the scan.
*/
char *ptr= (char*) m_ordered_rec_buffer;
uint16 i= 0;
do
{
if (bitmap_is_set(&m_part_info->used_partitions, i))
{
int2store(ptr, i);
ptr+= m_rec_length + PARTITION_BYTES_IN_POS;
}
} while (++i < m_tot_parts);
m_start_key.key= (const uchar*)ptr;
/* Initialize priority queue, initialized to reading forward. */
if (init_queue(&m_queue, used_parts, (uint) PARTITION_BYTES_IN_POS,
0, key_rec_cmp, (void*)m_curr_key_info))
{
my_free(m_ordered_rec_buffer);
m_ordered_rec_buffer= NULL;
DBUG_RETURN(true);
}
}
DBUG_RETURN(false);
}
/**
Destroy the ordered record buffer and the priority queue.
*/
void ha_partition::destroy_record_priority_queue()
{
DBUG_ENTER("ha_partition::destroy_record_priority_queue");
if (m_ordered_rec_buffer)
{
delete_queue(&m_queue);
my_free(m_ordered_rec_buffer);
m_ordered_rec_buffer= NULL;
}
DBUG_VOID_RETURN;
}
/* /*
Initialize handler before start of index scan Initialize handler before start of index scan
...@@ -4254,6 +4293,10 @@ int ha_partition::index_init(uint inx, bool sorted) ...@@ -4254,6 +4293,10 @@ int ha_partition::index_init(uint inx, bool sorted)
} }
else else
m_curr_key_info[1]= NULL; m_curr_key_info[1]= NULL;
if (init_record_priority_queue())
DBUG_RETURN(HA_ERR_OUT_OF_MEM);
/* /*
Some handlers only read fields as specified by the bitmap for the Some handlers only read fields as specified by the bitmap for the
read set. For partitioned handlers we always require that the read set. For partitioned handlers we always require that the
...@@ -4328,11 +4371,11 @@ int ha_partition::index_end() ...@@ -4328,11 +4371,11 @@ int ha_partition::index_end()
do do
{ {
int tmp; int tmp;
/* TODO RONM: Change to index_end() when code is stable */
if (bitmap_is_set(&(m_part_info->used_partitions), (file - m_file))) if (bitmap_is_set(&(m_part_info->used_partitions), (file - m_file)))
if ((tmp= (*file)->ha_index_end())) if ((tmp= (*file)->ha_index_end()))
error= tmp; error= tmp;
} while (*(++file)); } while (*(++file));
destroy_record_priority_queue();
DBUG_RETURN(error); DBUG_RETURN(error);
} }
...@@ -5071,6 +5114,7 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order) ...@@ -5071,6 +5114,7 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order)
uint i; uint i;
uint j= 0; uint j= 0;
bool found= FALSE; bool found= FALSE;
uchar *part_rec_buf_ptr= m_ordered_rec_buffer;
DBUG_ENTER("ha_partition::handle_ordered_index_scan"); DBUG_ENTER("ha_partition::handle_ordered_index_scan");
m_top_entry= NO_CURRENT_PART_ID; m_top_entry= NO_CURRENT_PART_ID;
...@@ -5081,7 +5125,7 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order) ...@@ -5081,7 +5125,7 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order)
{ {
if (!(bitmap_is_set(&(m_part_info->used_partitions), i))) if (!(bitmap_is_set(&(m_part_info->used_partitions), i)))
continue; continue;
uchar *rec_buf_ptr= rec_buf(i); uchar *rec_buf_ptr= part_rec_buf_ptr + PARTITION_BYTES_IN_POS;
int error; int error;
handler *file= m_file[i]; handler *file= m_file[i];
...@@ -5128,12 +5172,13 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order) ...@@ -5128,12 +5172,13 @@ int ha_partition::handle_ordered_index_scan(uchar *buf, bool reverse_order)
/* /*
Initialize queue without order first, simply insert Initialize queue without order first, simply insert
*/ */
queue_element(&m_queue, j++)= (uchar*)queue_buf(i); queue_element(&m_queue, j++)= part_rec_buf_ptr;
} }
else if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE) else if (error != HA_ERR_KEY_NOT_FOUND && error != HA_ERR_END_OF_FILE)
{ {
DBUG_RETURN(error); DBUG_RETURN(error);
} }
part_rec_buf_ptr+= m_rec_length + PARTITION_BYTES_IN_POS;
} }
if (found) if (found)
{ {
...@@ -5196,18 +5241,19 @@ int ha_partition::handle_ordered_next(uchar *buf, bool is_next_same) ...@@ -5196,18 +5241,19 @@ int ha_partition::handle_ordered_next(uchar *buf, bool is_next_same)
{ {
int error; int error;
uint part_id= m_top_entry; uint part_id= m_top_entry;
uchar *rec_buf= queue_top(&m_queue) + PARTITION_BYTES_IN_POS;
handler *file= m_file[part_id]; handler *file= m_file[part_id];
DBUG_ENTER("ha_partition::handle_ordered_next"); DBUG_ENTER("ha_partition::handle_ordered_next");
if (m_index_scan_type == partition_read_range) if (m_index_scan_type == partition_read_range)
{ {
error= file->read_range_next(); error= file->read_range_next();
memcpy(rec_buf(part_id), table->record[0], m_rec_length); memcpy(rec_buf, table->record[0], m_rec_length);
} }
else if (!is_next_same) else if (!is_next_same)
error= file->index_next(rec_buf(part_id)); error= file->index_next(rec_buf);
else else
error= file->index_next_same(rec_buf(part_id), m_start_key.key, error= file->index_next_same(rec_buf, m_start_key.key,
m_start_key.length); m_start_key.length);
if (error) if (error)
{ {
...@@ -5250,10 +5296,11 @@ int ha_partition::handle_ordered_prev(uchar *buf) ...@@ -5250,10 +5296,11 @@ int ha_partition::handle_ordered_prev(uchar *buf)
{ {
int error; int error;
uint part_id= m_top_entry; uint part_id= m_top_entry;
uchar *rec_buf= queue_top(&m_queue) + PARTITION_BYTES_IN_POS;
handler *file= m_file[part_id]; handler *file= m_file[part_id];
DBUG_ENTER("ha_partition::handle_ordered_prev"); DBUG_ENTER("ha_partition::handle_ordered_prev");
if ((error= file->index_prev(rec_buf(part_id)))) if ((error= file->index_prev(rec_buf)))
{ {
if (error == HA_ERR_END_OF_FILE) if (error == HA_ERR_END_OF_FILE)
{ {
......
...@@ -511,21 +511,13 @@ class ha_partition :public handler ...@@ -511,21 +511,13 @@ class ha_partition :public handler
virtual int read_range_next(); virtual int read_range_next();
private: private:
bool init_record_priority_queue();
void destroy_record_priority_queue();
int common_index_read(uchar * buf, bool have_start_key); int common_index_read(uchar * buf, bool have_start_key);
int common_first_last(uchar * buf); int common_first_last(uchar * buf);
int partition_scan_set_up(uchar * buf, bool idx_read_flag); int partition_scan_set_up(uchar * buf, bool idx_read_flag);
int handle_unordered_next(uchar * buf, bool next_same); int handle_unordered_next(uchar * buf, bool next_same);
int handle_unordered_scan_next_partition(uchar * buf); int handle_unordered_scan_next_partition(uchar * buf);
uchar *queue_buf(uint part_id)
{
return (m_ordered_rec_buffer +
(part_id * (m_rec_length + PARTITION_BYTES_IN_POS)));
}
uchar *rec_buf(uint part_id)
{
return (queue_buf(part_id) +
PARTITION_BYTES_IN_POS);
}
int handle_ordered_index_scan(uchar * buf, bool reverse_order); int handle_ordered_index_scan(uchar * buf, bool reverse_order);
int handle_ordered_next(uchar * buf, bool next_same); int handle_ordered_next(uchar * buf, bool next_same);
int handle_ordered_prev(uchar * buf); int handle_ordered_prev(uchar * buf);
......
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