diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-07-03 20:02:48 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-07-03 20:02:48 +0400 |
commit | f335c36e27ce28f37e44d2bd4b96bd0d7a1df55c (patch) | |
tree | 11e34c6822efe86e19ac764b654649d0b69b35f0 /mysql-test/r/subselect_no_opts.result | |
parent | e98bb64cbe8e3c46a091a317a8baea09b5e76da4 (diff) | |
download | mariadb-git-f335c36e27ce28f37e44d2bd4b96bd0d7a1df55c.tar.gz |
Fix a number of trivial test failures by updating error message:
"Unknown table tbl" is now "Unknown table database.tbl"
Diffstat (limited to 'mysql-test/r/subselect_no_opts.result')
-rw-r--r-- | mysql-test/r/subselect_no_opts.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/subselect_no_opts.result b/mysql-test/r/subselect_no_opts.result index 13467916039..dfeb4cfd161 100644 --- a/mysql-test/r/subselect_no_opts.result +++ b/mysql-test/r/subselect_no_opts.result @@ -5895,7 +5895,7 @@ CREATE TABLE t2 ( f3 int, f10 int, KEY (f10,f3)) ; INSERT IGNORE INTO t2 VALUES (NULL,NULL),(5,0); DROP TABLE IF EXISTS t3; Warnings: -Note 1051 Unknown table 't3' +Note 1051 Unknown table 'test.t3' CREATE TABLE t3 ( f3 int) ; INSERT INTO t3 VALUES (0),(0); SELECT a1.f3 AS r FROM t2 AS a1 , t1 WHERE a1.f3 < ALL ( SELECT f3 FROM t3 WHERE f3 = 1 ) ; |