diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-11-23 17:33:40 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-12-12 20:27:36 +0100 |
commit | d137b4dbbac1ce53906ca15817334e3a4daa2655 (patch) | |
tree | 14d421c0a6327365d584942b1e9164a7ee5ca379 /mysys | |
parent | a418c9920047d5222a0d065343347312127b780f (diff) | |
download | mariadb-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 'mysys')
-rw-r--r-- | mysys/my_bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_bitmap.c b/mysys/my_bitmap.c index 0eaf1a88aa1..a0c1a23d63c 100644 --- a/mysys/my_bitmap.c +++ b/mysys/my_bitmap.c @@ -168,7 +168,7 @@ static inline uint get_first_set(my_bitmap_map value, uint word_pos) my_bool my_bitmap_init(MY_BITMAP *map, my_bitmap_map *buf, uint n_bits, - my_bool thread_safe __attribute__((unused))) + my_bool thread_safe) { DBUG_ENTER("my_bitmap_init"); if (!buf) |