1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +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

@@ -128,7 +128,7 @@ End of 5.0 tests
#
DROP TABLE IF EXISTS t1;
Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 'test.t1'
CREATE TABLE t1 (a VARCHAR(2) CHARSET UTF8 NOT NULL);
INSERT INTO t1 VALUES ('e'),('e'),('e-');
SELECT * FROM t1 PROCEDURE ANALYSE();