mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-15947 ASAN heap-use-after-free in Item_ident::print or in my_strcasecmp_utf8 or unexpected ER_BAD_FIELD_ERROR upon call of stored procedure reading from versioned table
Closes #728
This commit is contained in:
committed by
Sergei Golubchik
parent
133cfe39f1
commit
b5184c7efb
@ -557,6 +557,18 @@ i
|
||||
call p(3);
|
||||
i
|
||||
1
|
||||
#
|
||||
# MDEV-15947 ASAN heap-use-after-free in Item_ident::print or in my_strcasecmp_utf8 or unexpected ER_BAD_FIELD_ERROR upon call of stored procedure reading from versioned table
|
||||
#
|
||||
create or replace table t1 (i int) with system versioning;
|
||||
create or replace procedure p() select * from t1;
|
||||
call p;
|
||||
i
|
||||
flush tables;
|
||||
call p;
|
||||
i
|
||||
call p;
|
||||
i
|
||||
drop procedure p;
|
||||
drop table t1;
|
||||
call verify_trt_dummy(34);
|
||||
|
Reference in New Issue
Block a user