summaryrefslogtreecommitdiff
path: root/sql/sql_join_cache.h
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2011-02-18 23:31:01 +0100
committerVladislav Vaintroub <wlad@montyprogram.com>2011-02-18 23:31:01 +0100
commit019256c9fc857bb89b1ca2ccc232f5ae4a67b992 (patch)
tree71ebae0cb36c1aa0045a38445da55afd17468e2c /sql/sql_join_cache.h
parente906ffcf9c951c8539700487e2bcc62e1c064dc7 (diff)
downloadmariadb-git-019256c9fc857bb89b1ca2ccc232f5ae4a67b992.tar.gz
Fix numerous warnings introduced in the last pushes on Windows
Diffstat (limited to 'sql/sql_join_cache.h')
-rw-r--r--sql/sql_join_cache.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sql/sql_join_cache.h b/sql/sql_join_cache.h
index 45aded46de4..4c1cb4454f1 100644
--- a/sql/sql_join_cache.h
+++ b/sql/sql_join_cache.h
@@ -216,13 +216,13 @@ protected:
The expected length of a record in the join buffer together with
all prefixes and postfixes
*/
- ulong avg_record_length;
+ size_t avg_record_length;
/* The expected size of the space per record in the auxiliary buffer */
- ulong avg_aux_buffer_incr;
+ size_t avg_aux_buffer_incr;
/* Expected join buffer space used for one record */
- ulong space_per_record;
+ size_t space_per_record;
/* Pointer to the beginning of the join buffer */
uchar *buff;
@@ -230,26 +230,26 @@ protected:
Size of the entire memory allocated for the join buffer.
Part of this memory may be reserved for the auxiliary buffer.
*/
- ulong buff_size;
+ size_t buff_size;
/* The minimal join buffer size when join buffer still makes sense to use */
- ulong min_buff_size;
+ size_t min_buff_size;
/* The maximum expected size if the join buffer to be used */
- ulong max_buff_size;
+ size_t max_buff_size;
/* Size of the auxiliary buffer */
- ulong aux_buff_size;
+ size_t aux_buff_size;
/* The number of records put into the join buffer */
- ulong records;
+ size_t records;
/*
The number of records in the fully refilled join buffer of
the minimal size equal to min_buff_size
*/
- ulong min_records;
+ size_t min_records;
/*
The maximum expected number of records to be put in the join buffer
at one refill
*/
- ulong max_records;
+ size_t max_records;
/*
Pointer to the current position in the join buffer.
@@ -578,7 +578,7 @@ public:
/* Get the current size of the cache join buffer */
ulong get_join_buffer_size() { return buff_size; }
/* Set the size of the cache join buffer to a new value */
- void set_join_buffer_size(ulong sz) { buff_size= sz; }
+ void set_join_buffer_size(size_t sz) { buff_size= sz; }
/* Get the minimum possible size of the cache join buffer */
virtual ulong get_min_join_buffer_size();
@@ -1259,7 +1259,7 @@ protected:
Get the number of ranges in the cache buffer passed to the MRR
interface. For each record its own range is passed.
*/
- uint get_number_of_ranges_for_mrr() { return records; }
+ uint get_number_of_ranges_for_mrr() { return (uint)records; }
/*
Setup the MRR buffer as the space between the last record put