summaryrefslogtreecommitdiff
path: root/include/my_bitmap.h
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-01-17 00:18:19 +0300
committersergefp@mysql.com <>2005-01-17 00:18:19 +0300
commit6303ca7efa92013d809f14d02faf497fafbcbb78 (patch)
treede93b78186dabee5b75e9cfca5b7a7f5edd04700 /include/my_bitmap.h
parentb6d46b3c4c446be023d19f58104c3c7af2e579fe (diff)
downloadmariadb-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.h2
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