mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Proposed fix for #751
Fields in key_expr (mysql_ha_read) wasn't linked to tables. Hmm. How did it work at all?
This commit is contained in:
@@ -80,3 +80,13 @@ alter table t1 type=MyISAM;
|
||||
handler t2 read first;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
#test for #751
|
||||
#
|
||||
create table t1(a int, index(a));
|
||||
insert into t1 values (1), (2), (3);
|
||||
handler t1 open;
|
||||
--error 1054
|
||||
handler t1 read a=(W);
|
||||
drop table t1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user