Commit 7438667f authored by Sergei Golubchik's avatar Sergei Golubchik

MDEV-9137 MariaDB Crash on Query Using Aria Engine

update the code to match semantics of `key` -
it's not a (char*) pointer to the buffer as in MyISAM.
parent 3d65d0db
......@@ -18,4 +18,5 @@ test.t1 check status OK
repair table t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
insert t1 (a) values ('aaaxxx'),('aaayyy');
drop table t1;
......@@ -39,5 +39,7 @@ repair table t1;
check table t1;
repair table t1;
# mi_write:
insert t1 (a) values ('aaaxxx'),('aaayyy');
drop table t1;
......@@ -665,13 +665,18 @@ static int w_search(register MARIA_HA *info, uint32 comp_flag, MARIA_KEY *key,
else
{
/* popular word. two-level tree. going down */
my_off_t root=dup_key_pos;
keyinfo= &share->ft2_keyinfo;
get_key_full_length_rdonly(off, key);
key+=off;
my_off_t root= dup_key_pos;
MARIA_KEY subkey;
get_key_full_length_rdonly(off, key->data);
subkey.keyinfo= keyinfo= &share->ft2_keyinfo;
subkey.data= key->data + off;
subkey.data_length= key->data_length - off;
subkey.ref_length= key->ref_length;
subkey.flag= key->flag;
/* we'll modify key entry 'in vivo' */
keypos-= keyinfo->keylength + page.node;
error= _ma_ck_real_write_btree(info, key, &root, comp_flag);
error= _ma_ck_real_write_btree(info, &subkey, &root, comp_flag);
_ma_dpointer(share, keypos+HA_FT_WLEN, root);
subkeys--; /* should there be underflow protection ? */
DBUG_ASSERT(subkeys < 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment