1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fix a number of trivial test failures by updating error message:

"Unknown table tbl" is now "Unknown table database.tbl"
This commit is contained in:
Sergey Petrunya
2013-07-03 20:02:48 +04:00
parent e98bb64cbe
commit f335c36e27
21 changed files with 31 additions and 31 deletions

View File

@ -437,8 +437,8 @@ drop table t1;
#
drop table if exists `t1`,`t2`;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't2'
Note 1051 Unknown table 'test.t1'
Note 1051 Unknown table 'test.t2'
create table `t1`(`a` char(1) character set utf8)engine=innodb;
create table `t2`(`b` char(1) character set utf8)engine=memory;
select distinct (select 1 from `t2` where `a`) `d2` from `t1`;