mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
- Fix compiler warning
- Better warnings
This commit is contained in:
@ -1122,7 +1122,7 @@ bool DsMrr_impl::setup_buffer_sharing(uint key_size_in_keybuf,
|
|||||||
(ulonglong2double(rowids_size) + key_buff_elem_size));
|
(ulonglong2double(rowids_size) + key_buff_elem_size));
|
||||||
|
|
||||||
size_t bytes_for_rowids=
|
size_t bytes_for_rowids=
|
||||||
round(fraction_for_rowids * (full_buf_end - full_buf));
|
(size_t)round(fraction_for_rowids * (full_buf_end - full_buf));
|
||||||
|
|
||||||
long bytes_for_keys= (full_buf_end - full_buf) - bytes_for_rowids;
|
long bytes_for_keys= (full_buf_end - full_buf) - bytes_for_rowids;
|
||||||
|
|
||||||
|
@ -346,7 +346,14 @@ private:
|
|||||||
/* TRUE <=> index_reader->refill_buffer() call has returned EOF */
|
/* TRUE <=> index_reader->refill_buffer() call has returned EOF */
|
||||||
bool index_reader_exhausted;
|
bool index_reader_exhausted;
|
||||||
|
|
||||||
|
/*
|
||||||
|
TRUE <=> We should call index_reader->refill_buffer(). This happens if
|
||||||
|
1. we've made index_reader->get_next() call which returned EOF
|
||||||
|
2. we haven't made any index_reader calls (and our first call should
|
||||||
|
be index_reader->refill_buffer(initial=TRUE)
|
||||||
|
*/
|
||||||
bool index_reader_needs_refill;
|
bool index_reader_needs_refill;
|
||||||
|
|
||||||
/* TRUE <=> need range association, buffers hold {rowid, range_id} pairs */
|
/* TRUE <=> need range association, buffers hold {rowid, range_id} pairs */
|
||||||
bool is_mrr_assoc;
|
bool is_mrr_assoc;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user