mirror of
https://github.com/MariaDB/server.git
synced 2025-04-26 11:49:09 +03:00
update table->pos_in_table_list during prepare, just like it's done in normal execution. otherwise it'll be a dangling pointer
10 lines
196 B
Plaintext
10 lines
196 B
Plaintext
create table t1 (i int);
|
|
handler test.t1 open handler_a;
|
|
flush status;
|
|
handler handler_a read first;
|
|
i
|
|
show status like 'Com_stmt_prepare%';
|
|
Variable_name Value
|
|
Com_stmt_prepare OK
|
|
drop table t1;
|