1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BUG#2304 - HANDLER and tables in non-current db

This commit is contained in:
serg@serg.mylan
2004-01-13 12:31:25 +01:00
parent 18036f98ac
commit 90c6ecca93
4 changed files with 47 additions and 9 deletions

View File

@ -173,3 +173,21 @@ Unknown column 'W' in 'field list'
handler t1 read a=(a);
Wrong arguments to HANDLER ... READ
drop table t1;
create table t1 (a char(5));
insert into t1 values ("Ok");
handler t1 open as t;
handler t read first;
a
Ok
use mysql;
handler t read first;
a
Ok
handler t close;
handler test.t1 open as t;
handler t read first;
a
Ok
handler t close;
use test;
drop table t1;