diff options
author | sergefp@mysql.com <> | 2005-01-17 00:18:19 +0300 |
---|---|---|
committer | sergefp@mysql.com <> | 2005-01-17 00:18:19 +0300 |
commit | 6303ca7efa92013d809f14d02faf497fafbcbb78 (patch) | |
tree | de93b78186dabee5b75e9cfca5b7a7f5edd04700 /include/my_bitmap.h | |
parent | b6d46b3c4c446be023d19f58104c3c7af2e579fe (diff) | |
download | mariadb-git-6303ca7efa92013d809f14d02faf497fafbcbb78.tar.gz |
Fixes in opt_range.cc: ROR plan choice code
* Removed unused parameters
* Fixed several cost calculation errors in ror_intersect_add
* Better code structure for ror_intersect_add and get_best_ror_intersect
Diffstat (limited to 'include/my_bitmap.h')
-rw-r--r-- | include/my_bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_bitmap.h b/include/my_bitmap.h index fb1c3c69563..4caa3b85456 100644 --- a/include/my_bitmap.h +++ b/include/my_bitmap.h @@ -24,7 +24,7 @@ typedef struct st_bitmap { uchar *bitmap; - uint bitmap_size; + uint bitmap_size; /* number of bytes occupied by the above */ /* mutex will be acquired for the duration of each bitmap operation if thread_safe flag in bitmap_init was set. Otherwise, we optimize by not |