mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
0a5e4a0191
Updated tests: cases with bugs or which cannot be run with the cursor-protocol were excluded with "--disable_cursor_protocol"/"--enable_cursor_protocol" Fix for v.10.5
17 lines
449 B
Text
17 lines
449 B
Text
#
|
|
# MDEV-15729 Server crashes in Field::make_field upon HANDLER READ executed with PS protocol
|
|
#
|
|
create table t1 (i int);
|
|
handler test.t1 open handler_a;
|
|
flush status;
|
|
handler handler_a read first;
|
|
# handler...read must be prepared in --ps-protocol mode
|
|
--replace_result $PS_PROTOCOL OK
|
|
if($CURSOR_PROTOCOL)
|
|
{
|
|
--replace_result $CURSOR_PROTOCOL OK
|
|
}
|
|
--disable_ps_protocol
|
|
show status like 'Com_stmt_prepare%';
|
|
--enable_ps_protocol
|
|
drop table t1;
|