1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008-2009 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include "drizzled/session.h"
22
#include "drizzled/optimizer/quick_range.h"
23
#include "drizzled/optimizer/quick_range_select.h"
24
#include "drizzled/sql_bitmap.h"
25
#include "drizzled/internal/m_string.h"
34
optimizer::QuickRangeSelect::QuickRangeSelect(Session *session,
38
memory::Root *parent_alloc,
43
in_ror_merged_scan(false),
57
my_bitmap_map *bitmap= NULL;
62
key_part_info= head->key_info[index].key_part;
63
my_init_dynamic_array(&ranges, sizeof(optimizer::QuickRange*), 16, 16);
65
/* 'session' is not accessible in QuickRangeSelect::reset(). */
66
mrr_buf_size= session->variables.read_rnd_buff_size;
68
if (! no_alloc && ! parent_alloc)
70
// Allocates everything through the internal memroot
71
memory::init_sql_alloc(&alloc, session->variables.range_alloc_block_size, 0);
72
session->mem_root= &alloc;
76
memset(&alloc, 0, sizeof(alloc));
80
record= head->record[0];
81
save_read_set= head->read_set;
82
save_write_set= head->write_set;
84
/* Allocate a bitmap for used columns. Using memory::sql_alloc instead of malloc
85
simply as a "fix" to the MySQL 6.0 code that also free()s it at the
86
same time we destroy the mem_root.
89
bitmap= reinterpret_cast<my_bitmap_map*>(memory::sql_alloc(head->getShare()->column_bitmap_size));
92
column_bitmap.setBitmap(NULL);
97
column_bitmap.init(bitmap, head->getShare()->sizeFields());
102
int optimizer::QuickRangeSelect::init()
104
if (cursor->inited != Cursor::NONE)
105
cursor->ha_index_or_rnd_end();
106
return (cursor->startIndexScan(index, 1));
110
void optimizer::QuickRangeSelect::range_end()
112
if (cursor->inited != Cursor::NONE)
113
cursor->ha_index_or_rnd_end();
117
optimizer::QuickRangeSelect::~QuickRangeSelect()
121
/* cursor is NULL for CPK scan on covering ROR-intersection */
128
cursor->extra(HA_EXTRA_NO_KEYREAD);
132
cursor->ha_external_lock(current_session, F_UNLCK);
137
delete_dynamic(&ranges); /* ranges are allocated in alloc */
138
alloc.free_root(MYF(0));
140
head->column_bitmaps_set(save_read_set, save_write_set);
144
int optimizer::QuickRangeSelect::init_ror_merged_scan(bool reuse_handler)
146
Cursor *save_file= cursor, *org_file;
149
in_ror_merged_scan= 1;
152
if (init() || reset())
156
head->column_bitmaps_set(&column_bitmap, &column_bitmap);
160
/* Create a separate Cursor object for this quick select */
163
/* already have own 'Cursor' object. */
167
session= head->in_use;
168
if (! (cursor= head->cursor->clone(session->mem_root)))
171
Manually set the error flag. Note: there seems to be quite a few
172
places where a failure could cause the server to "hang" the client by
173
sending no response to a query. ATM those are not real errors because
174
the storage engine calls in question happen to never fail with the
175
existing storage engines.
177
my_error(ER_OUT_OF_RESOURCES, MYF(0));
178
/* Caller will free the memory */
182
head->column_bitmaps_set(&column_bitmap, &column_bitmap);
184
if (cursor->ha_external_lock(session, F_RDLCK))
187
if (init() || reset())
189
cursor->ha_external_lock(session, F_UNLCK);
194
last_rowid= cursor->ref;
198
We are only going to read key fields and call position() on 'cursor'
199
The following sets head->tmp_set to only use this key and then updates
200
head->read_set and head->write_set to use this bitmap.
201
The now bitmap is stored in 'column_bitmap' which is used in ::get_next()
203
org_file= head->cursor;
204
head->cursor= cursor;
205
/* We don't have to set 'head->keyread' here as the 'cursor' is unique */
206
if (! head->no_keyread)
209
head->mark_columns_used_by_index(index);
211
head->prepare_for_position();
212
head->cursor= org_file;
213
column_bitmap= *head->read_set;
214
head->column_bitmaps_set(&column_bitmap, &column_bitmap);
219
head->column_bitmaps_set(save_read_set, save_write_set);
226
void optimizer::QuickRangeSelect::save_last_pos()
228
cursor->position(record);
232
bool optimizer::QuickRangeSelect::unique_key_range() const
234
if (ranges.elements == 1)
236
optimizer::QuickRange *tmp= *((optimizer::QuickRange**)ranges.buffer);
237
if ((tmp->flag & (EQ_RANGE | NULL_RANGE)) == EQ_RANGE)
239
KeyInfo *key=head->key_info+index;
240
return ((key->flags & (HA_NOSAME)) == HA_NOSAME &&
241
key->key_length == tmp->min_length);
248
int optimizer::QuickRangeSelect::reset()
252
cur_range= (optimizer::QuickRange**) ranges.buffer;
254
if (cursor->inited == Cursor::NONE && (error= cursor->startIndexScan(index, 1)))
260
(in the past) Allocate buffer if we need one but haven't allocated it yet
261
There is a later assert in th code that hoped to catch random free() that might
264
assert(not (mrr_buf_size));
268
mrr_flags|= HA_MRR_SORTED;
270
RANGE_SEQ_IF seq_funcs= {
271
optimizer::quick_range_seq_init,
272
optimizer::quick_range_seq_next
274
error= cursor->multi_range_read_init(&seq_funcs,
282
int optimizer::QuickRangeSelect::get_next()
285
if (in_ror_merged_scan)
288
We don't need to signal the bitmap change as the bitmap is always the
289
same for this head->cursor
291
head->column_bitmaps_set(&column_bitmap, &column_bitmap);
294
int result= cursor->multi_range_read_next(&dummy);
296
if (in_ror_merged_scan)
298
/* Restore bitmaps set on entry */
299
head->column_bitmaps_set(save_read_set, save_write_set);
305
int optimizer::QuickRangeSelect::get_next_prefix(uint32_t prefix_length,
306
key_part_map keypart_map,
307
unsigned char *cur_prefix)
312
key_range start_key, end_key;
315
/* Read the next record in the same range with prefix after cur_prefix. */
316
assert(cur_prefix != 0);
317
result= cursor->index_read_map(record,
321
if (result || (cursor->compare_key(cursor->end_range) <= 0))
325
uint32_t count= ranges.elements - (cur_range - (optimizer::QuickRange**) ranges.buffer);
328
/* Ranges have already been used up before. None is left for read. */
330
return HA_ERR_END_OF_FILE;
332
last_range= *(cur_range++);
334
start_key.key= (const unsigned char*) last_range->min_key;
335
start_key.length= min(last_range->min_length, (uint16_t)prefix_length);
336
start_key.keypart_map= last_range->min_keypart_map & keypart_map;
337
start_key.flag= ((last_range->flag & NEAR_MIN) ? HA_READ_AFTER_KEY :
338
(last_range->flag & EQ_RANGE) ?
339
HA_READ_KEY_EXACT : HA_READ_KEY_OR_NEXT);
340
end_key.key= (const unsigned char*) last_range->max_key;
341
end_key.length= min(last_range->max_length, (uint16_t)prefix_length);
342
end_key.keypart_map= last_range->max_keypart_map & keypart_map;
344
We use READ_AFTER_KEY here because if we are reading on a key
345
prefix we want to find all keys with this prefix
347
end_key.flag= (last_range->flag & NEAR_MAX ? HA_READ_BEFORE_KEY :
350
result= cursor->read_range_first(last_range->min_keypart_map ? &start_key : 0,
351
last_range->max_keypart_map ? &end_key : 0,
352
test(last_range->flag & EQ_RANGE),
354
if (last_range->flag == (UNIQUE_RANGE | EQ_RANGE))
355
last_range= 0; // Stop searching
357
if (result != HA_ERR_END_OF_FILE)
359
last_range= 0; // No matching rows; go to next range
364
bool optimizer::QuickRangeSelect::row_in_ranges()
366
optimizer::QuickRange *res= NULL;
368
uint32_t max= ranges.elements - 1;
369
uint32_t mid= (max + min) / 2;
373
if (cmp_next(*(optimizer::QuickRange**)dynamic_array_ptr(&ranges, mid)))
375
/* current row value > mid->max */
380
mid= (min + max) / 2;
382
res= *(optimizer::QuickRange**)dynamic_array_ptr(&ranges, mid);
383
return (! cmp_next(res) && ! cmp_prev(res));
387
int optimizer::QuickRangeSelect::cmp_next(optimizer::QuickRange *range_arg)
389
if (range_arg->flag & NO_MAX_RANGE)
390
return 0; /* key can't be to large */
392
KEY_PART *key_part= key_parts;
393
uint32_t store_length;
395
for (unsigned char *key=range_arg->max_key, *end=key+range_arg->max_length;
397
key+= store_length, key_part++)
400
store_length= key_part->store_length;
401
if (key_part->null_bit)
405
if (! key_part->field->is_null())
409
else if (key_part->field->is_null())
411
key++; // Skip null byte
414
if ((cmp= key_part->field->key_cmp(key, key_part->length)) < 0)
419
return (range_arg->flag & NEAR_MAX) ? 1 : 0; // Exact match
423
int optimizer::QuickRangeSelect::cmp_prev(optimizer::QuickRange *range_arg)
425
if (range_arg->flag & NO_MIN_RANGE)
426
return 0; /* key can't be to small */
428
int cmp= key_cmp(key_part_info,
430
range_arg->min_length);
431
if (cmp > 0 || (cmp == 0 && (range_arg->flag & NEAR_MIN) == false))
433
return 1; // outside of range
437
void optimizer::QuickRangeSelect::add_info_string(String *str)
439
KeyInfo *key_info= head->key_info + index;
440
str->append(key_info->name);
444
void optimizer::QuickRangeSelect::add_keys_and_lengths(String *key_names,
445
String *used_lengths)
449
KeyInfo *key_info= head->key_info + index;
450
key_names->append(key_info->name);
451
length= internal::int64_t2str(max_used_key_length, buf, 10) - buf;
452
used_lengths->append(buf, length);
457
This is a hack: we inherit from QUICK_SELECT so that we can use the
458
get_next() interface, but we have to hold a pointer to the original
459
QUICK_SELECT because its data are used all over the place. What
460
should be done is to factor out the data that is needed into a base
461
class (QUICK_SELECT), and then have two subclasses (_ASC and _DESC)
462
which handle the ranges and implement the get_next() function. But
463
for now, this seems to work right at least.
465
optimizer::QuickSelectDescending::QuickSelectDescending(optimizer::QuickRangeSelect *q, uint32_t, bool *)
467
optimizer::QuickRangeSelect(*q)
469
optimizer::QuickRange **pr= (optimizer::QuickRange**) ranges.buffer;
470
optimizer::QuickRange **end_range= pr + ranges.elements;
471
for (; pr != end_range; pr++)
473
rev_ranges.push_back(*pr);
475
rev_it= rev_ranges.begin();
477
/* Remove EQ_RANGE flag for keys that are not using the full key */
478
for (vector<optimizer::QuickRange *>::iterator it= rev_ranges.begin();
479
it != rev_ranges.end();
482
optimizer::QuickRange *r= *it;
483
if ((r->flag & EQ_RANGE) &&
484
head->key_info[index].key_length != r->max_length)
489
q->dont_free= 1; // Don't free shared mem
494
int optimizer::QuickSelectDescending::get_next()
496
/* The max key is handled as follows:
497
* - if there is NO_MAX_RANGE, start at the end and move backwards
498
* - if it is an EQ_RANGE, which means that max key covers the entire
499
* key, go directly to the key and read through it (sorting backwards is
500
* same as sorting forwards)
501
* - if it is NEAR_MAX, go to the key or next, step back once, and
503
* - otherwise (not NEAR_MAX == include the key), go after the key,
504
* step back once, and move backwards
510
{ // Already read through key
511
result= ((last_range->flag & EQ_RANGE) ?
512
cursor->index_next_same(record, last_range->min_key,
513
last_range->min_length) :
514
cursor->index_prev(record));
517
if (cmp_prev(*(rev_it - 1)) == 0)
520
else if (result != HA_ERR_END_OF_FILE)
524
if (rev_it == rev_ranges.end())
526
return HA_ERR_END_OF_FILE; // All ranges used
531
if (last_range->flag & NO_MAX_RANGE) // Read last record
534
if ((local_error= cursor->index_last(record)))
535
return local_error; // Empty table
536
if (cmp_prev(last_range) == 0)
538
last_range= 0; // No match; go to next range
542
if (last_range->flag & EQ_RANGE)
544
result = cursor->index_read_map(record,
546
last_range->max_keypart_map,
551
assert(last_range->flag & NEAR_MAX ||
552
range_reads_after_key(last_range));
553
result= cursor->index_read_map(record,
555
last_range->max_keypart_map,
556
((last_range->flag & NEAR_MAX) ?
558
HA_READ_PREFIX_LAST_OR_PREV));
562
if (result != HA_ERR_KEY_NOT_FOUND && result != HA_ERR_END_OF_FILE)
564
last_range= 0; // Not found, to next range
567
if (cmp_prev(last_range) == 0)
569
if (last_range->flag == (UNIQUE_RANGE | EQ_RANGE))
570
last_range= 0; // Stop searching
571
return 0; // Found key is in range
573
last_range= 0; // To next range
579
* true if this range will require using HA_READ_AFTER_KEY
580
See comment in get_next() about this
582
bool optimizer::QuickSelectDescending::range_reads_after_key(optimizer::QuickRange *range_arg)
584
return ((range_arg->flag & (NO_MAX_RANGE | NEAR_MAX)) ||
585
! (range_arg->flag & EQ_RANGE) ||
586
head->key_info[index].key_length != range_arg->max_length) ? 1 : 0;
590
} /* namespace drizzled */