diff options
author | unknown <sergefp@mysql.com> | 2005-01-17 00:18:19 +0300 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-01-17 00:18:19 +0300 |
commit | abca4cd54819a102742c2455b765a5cee87e5ed0 (patch) | |
tree | de93b78186dabee5b75e9cfca5b7a7f5edd04700 /include/my_bitmap.h | |
parent | cd1715a225931f9c531c0290271e593a1ec454f7 (diff) | |
download | mariadb-git-abca4cd54819a102742c2455b765a5cee87e5ed0.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
include/my_bitmap.h:
Comments added
mysql-test/r/index_merge_innodb.result:
Test results updated
mysql-test/r/index_merge_ror_cpk.result:
Test results updated.
mysql-test/t/index_merge_innodb.test:
Drop all tables after use
sql/opt_range.cc:
Fixes in 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 |