mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
BUG#2304 - HANDLER and tables in non-current db
This commit is contained in:
@@ -107,3 +107,19 @@ handler t1 read a=(W);
|
||||
handler t1 read a=(a);
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# BUG#2304
|
||||
#
|
||||
create table t1 (a char(5));
|
||||
insert into t1 values ("Ok");
|
||||
handler t1 open as t;
|
||||
handler t read first;
|
||||
use mysql;
|
||||
handler t read first;
|
||||
handler t close;
|
||||
handler test.t1 open as t;
|
||||
handler t read first;
|
||||
handler t close;
|
||||
use test;
|
||||
drop table t1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user