blob: 54685f9156b8f0ac5f4ab40ef721ccff16e5349d (
plain)
1
2
3
4
5
6
7
8
9
|
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;
|