summaryrefslogtreecommitdiff
path: root/include/my_bitmap.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2016-11-23 17:33:40 +0100
committerSergei Golubchik <serg@mariadb.org>2016-12-12 20:27:36 +0100
commitd137b4dbbac1ce53906ca15817334e3a4daa2655 (patch)
tree14d421c0a6327365d584942b1e9164a7ee5ca379 /include/my_bitmap.h
parenta418c9920047d5222a0d065343347312127b780f (diff)
downloadmariadb-git-d137b4dbbac1ce53906ca15817334e3a4daa2655.tar.gz
MDEV-5800 MyISAM support for indexed vcols
* don't issue an error for ER_KEY_BASED_ON_GENERATED_VIRTUAL_COLUMN * support keyread on vcols * callback into the server to compute vcol values from mi_check/mi_repair * DMLs just work. Automatically.
Diffstat (limited to 'include/my_bitmap.h')
-rw-r--r--include/my_bitmap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_bitmap.h b/include/my_bitmap.h
index 9c9550e3141..3e242280be4 100644
--- a/include/my_bitmap.h
+++ b/include/my_bitmap.h
@@ -58,6 +58,7 @@ extern my_bool bitmap_is_overlapping(const MY_BITMAP *map1,
extern my_bool bitmap_test_and_set(MY_BITMAP *map, uint bitmap_bit);
extern my_bool bitmap_test_and_clear(MY_BITMAP *map, uint bitmap_bit);
extern my_bool bitmap_fast_test_and_set(MY_BITMAP *map, uint bitmap_bit);
+extern my_bool bitmap_fast_test_and_clear(MY_BITMAP *map, uint bitmap_bit);
extern my_bool bitmap_union_is_set_all(const MY_BITMAP *map1,
const MY_BITMAP *map2);
extern my_bool bitmap_exists_intersection(const MY_BITMAP **bitmap_array,