13
13
along with this program; if not, write to the Free Software
14
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
20
21
Functions for easy reading of records, possible through a cache
23
#include "drizzled/error.h"
24
#include "drizzled/table.h"
25
#include "drizzled/session.h"
26
#include "drizzled/records.h"
27
#include "drizzled/optimizer/range.h"
28
#include "drizzled/internal/my_sys.h"
29
#include "drizzled/internal/iocache.h"
23
#include <drizzled/server_includes.h>
24
#include <drizzled/error.h>
26
static int rr_quick(READ_RECORD *info);
34
27
int rr_sequential(READ_RECORD *info);
35
static int rr_quick(READ_RECORD *info);
36
28
static int rr_from_tempfile(READ_RECORD *info);
37
29
static int rr_unpack_from_tempfile(READ_RECORD *info);
38
30
static int rr_unpack_from_buffer(READ_RECORD *info);
43
35
static int rr_index_first(READ_RECORD *info);
44
36
static int rr_index(READ_RECORD *info);
46
void init_read_record_idx(READ_RECORD *info,
40
Initialize READ_RECORD structure to perform full index scan (in forward
41
direction) using read_record.read_record() interface.
43
This function has been added at late stage and is used only by
44
UPDATE/DELETE. Other statements perform index scans using
45
join_read_first/next functions.
47
@param info READ_RECORD structure to initialize.
48
@param session Thread handle
49
@param table Table to be accessed
50
@param print_error If true, call table->file->print_error() if an error
51
occurs (except for end-of-records error)
52
@param idx index to scan
55
void init_read_record_idx(READ_RECORD *info, Session *, Table *table,
56
bool print_error, uint32_t idx)
53
59
memset(info, 0, sizeof(*info));
54
60
info->table= table;
55
info->cursor= table->cursor;
61
info->file= table->file;
56
62
info->record= table->record[0];
57
63
info->print_error= print_error;
59
65
table->status=0; /* And it's always found */
60
if (!table->cursor->inited)
61
table->cursor->ha_index_init(idx, 1);
66
if (!table->file->inited)
67
table->file->ha_index_init(idx, 1);
62
68
/* read_record will be changed to rr_index in rr_index_first */
63
69
info->read_record= rr_index_first;
67
void init_read_record(READ_RECORD *info,
70
optimizer::SqlSelect *select,
74
init_read_record is used to scan by using a number of different methods.
75
Which method to use is set-up in this call so that later calls to
76
the info->read_record will call the appropriate method using a function
79
There are five methods that relate completely to the sort function
80
filesort. The result of a filesort is retrieved using read_record
81
calls. The other two methods are used for normal table access.
83
The filesort will produce references to the records sorted, these
84
references can be stored in memory or in a temporary file.
86
The temporary file is normally used when the references doesn't fit into
87
a properly sized memory buffer. For most small queries the references
88
are stored in the memory buffer.
90
The temporary file is also used when performing an update where a key is
93
Methods used when ref's are in memory (using rr_from_pointers):
94
rr_unpack_from_buffer:
95
----------------------
96
This method is used when table->sort.addon_field is allocated.
97
This is allocated for most SELECT queries not involving any BLOB's.
98
In this case the records are fetched from a memory buffer.
101
Used when the above is not true, UPDATE, DELETE and so forth and
102
SELECT's involving BLOB's. It is also used when the addon_field
103
buffer is not allocated due to that its size was bigger than the
104
session variable max_length_for_sort_data.
105
In this case the record data is fetched from the handler using the
106
saved reference using the rnd_pos handler call.
108
Methods used when ref's are in a temporary file (using rr_from_tempfile)
109
rr_unpack_from_tempfile:
110
------------------------
111
Same as rr_unpack_from_buffer except that references are fetched from
112
temporary file. Should obviously not really happen other than in
113
strange configurations.
117
Same as rr_from_pointers except that references are fetched from
118
temporary file instead of from
121
This is a special variant of rr_from_tempfile that can be used for
122
handlers that is not using the HA_FAST_KEY_READ table flag. Instead
123
of reading the references one by one from the temporary file it reads
124
a set of them, sorts them and reads all of them into a buffer which
125
is then used for a number of subsequent calls to rr_from_cache.
126
It is only used for SELECT queries and a number of other conditions
129
All other accesses use either index access methods (rr_quick) or a full
130
table scan (rr_sequential).
133
rr_quick uses one of the QUICK_SELECT classes in opt_range.cc to
134
perform an index scan. There are loads of functionality hidden
135
in these quick classes. It handles all index scans of various kinds.
138
This is the most basic access method of a table using rnd_init,
139
rnd_next and rnd_end. No indexes are used.
141
void init_read_record(READ_RECORD *info,Session *session, Table *table,
143
int use_record_cache, bool print_error)
74
internal::IO_CACHE *tempfile;
76
147
memset(info, 0, sizeof(*info));
77
148
info->session=session;
78
149
info->table=table;
79
info->cursor= table->cursor;
150
info->file= table->file;
80
151
info->forms= &info->table; /* Only one table */
153
if (table->s->tmp_table == NON_TRANSACTIONAL_TMP_TABLE &&
154
!table->sort.addon_field)
155
table->file->extra(HA_EXTRA_MMAP);
82
157
if (table->sort.addon_field)
84
159
info->rec_buf= table->sort.addon_buf;
115
190
and table->sort.io_cache is read sequentially
117
192
if (!table->sort.addon_field &&
118
session->variables.read_rnd_buff_size &&
119
!(table->cursor->getEngine()->check_flag(HTON_BIT_FAST_KEY_READ)) &&
120
(table->db_stat & HA_READ_ONLY ||
121
table->reginfo.lock_type <= TL_READ_NO_INSERT) &&
122
(uint64_t) table->s->reclength* (table->cursor->stats.records+
123
table->cursor->stats.deleted) >
124
(uint64_t) MIN_FILE_LENGTH_TO_USE_ROW_CACHE &&
125
info->io_cache->end_of_file/info->ref_length * table->s->reclength >
126
(internal::my_off_t) MIN_ROWS_TO_USE_TABLE_CACHE &&
127
!table->s->blob_fields &&
193
session->variables.read_rnd_buff_size &&
194
!(table->file->ha_table_flags() & HA_FAST_KEY_READ) &&
195
(table->db_stat & HA_READ_ONLY ||
196
table->reginfo.lock_type <= TL_READ_NO_INSERT) &&
197
(uint64_t) table->s->reclength* (table->file->stats.records+
198
table->file->stats.deleted) >
199
(uint64_t) MIN_FILE_LENGTH_TO_USE_ROW_CACHE &&
200
info->io_cache->end_of_file/info->ref_length * table->s->reclength >
201
(my_off_t) MIN_ROWS_TO_USE_TABLE_CACHE &&
202
!table->s->blob_fields &&
128
203
info->ref_length <= MAX_REFLENGTH)
130
205
if (! init_rr_cache(session, info))
132
info->read_record=rr_from_cache;
207
info->read_record=rr_from_cache;
140
215
else if (table->sort.record_pointers)
142
table->cursor->ha_rnd_init(0);
217
table->file->ha_rnd_init(0);
143
218
info->cache_pos=table->sort.record_pointers;
144
info->cache_end=info->cache_pos+
219
info->cache_end=info->cache_pos+
145
220
table->sort.found_records*info->ref_length;
146
221
info->read_record= (table->sort.addon_field ?
147
222
rr_unpack_from_buffer : rr_from_pointers);
151
info->read_record= rr_sequential;
152
table->cursor->ha_rnd_init(1);
226
info->read_record=rr_sequential;
227
table->file->ha_rnd_init(1);
153
228
/* We can use record cache if we don't update dynamic length tables */
154
229
if (!table->no_cache &&
155
(use_record_cache > 0 ||
156
(int) table->reginfo.lock_type <= (int) TL_READ_WITH_SHARED_LOCKS ||
157
!(table->s->db_options_in_use & HA_OPTION_PACK_RECORD)))
158
table->cursor->extra_opt(HA_EXTRA_CACHE, session->variables.read_buff_size);
230
(use_record_cache > 0 ||
231
(int) table->reginfo.lock_type <= (int) TL_READ_HIGH_PRIORITY ||
232
!(table->s->db_options_in_use & HA_OPTION_PACK_RECORD) ||
233
(use_record_cache < 0 &&
234
!(table->file->ha_table_flags() & HA_NOT_DELETE_WITH_CACHE))))
235
table->file->extra_opt(HA_EXTRA_CACHE, session->variables.read_buff_size);
238
Do condition pushdown for UPDATE/DELETE.
239
TODO: Remove this from here as it causes two condition pushdown calls
240
when we're running a SELECT and the condition cannot be pushed down.
242
if (session->variables.engine_condition_pushdown &&
243
select && select->cond &&
244
(select->cond->used_tables() & table->map) &&
245
!table->file->pushed_cond)
246
table->file->cond_push(select->cond);
162
249
} /* init_read_record */
165
253
void end_read_record(READ_RECORD *info)
166
254
{ /* free cache if used */
425
526
if (info->cache_pos[info->error_offset])
427
shortget(error,info->cache_pos);
428
if (info->print_error)
429
info->table->print_error(error,MYF(0));
528
shortget(error,info->cache_pos);
529
if (info->print_error)
530
info->table->file->print_error(error,MYF(0));
434
memcpy(info->record,info->cache_pos, (size_t) info->table->s->reclength);
535
memcpy(info->record,info->cache_pos,
536
(size_t) info->table->s->reclength);
436
538
info->cache_pos+=info->reclength;
437
539
return ((int) error);
439
541
length=info->rec_cache_size;
440
542
rest_of_file=info->io_cache->end_of_file - my_b_tell(info->io_cache);
441
if ((internal::my_off_t) length > rest_of_file)
543
if ((my_off_t) length > rest_of_file)
442
544
length= (uint32_t) rest_of_file;
443
545
if (!length || my_b_read(info->io_cache,info->cache,length))
445
return -1; /* End of cursor */
547
return -1; /* End of file */
448
550
length/=info->ref_length;