diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-07-03 20:48:41 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-07-03 20:48:41 +0400 |
commit | c7020dfd70a62dcf4297f732593205621b8b80a2 (patch) | |
tree | a819c0c519012cb7160926306e9a9447186c657d /mysql-test/r/subselect4.result | |
parent | b83c2bc68873de9e7cf12be3325373b8a8fb1780 (diff) | |
download | mariadb-git-c7020dfd70a62dcf4297f732593205621b8b80a2.tar.gz |
Fix a number of trivial test failures by updating error message:
"Unknown table tbl" is now "Unknown table database.tbl"
(part#3)
Diffstat (limited to 'mysql-test/r/subselect4.result')
-rw-r--r-- | mysql-test/r/subselect4.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/subselect4.result b/mysql-test/r/subselect4.result index 0d5209d0ec2..550de012a1c 100644 --- a/mysql-test/r/subselect4.result +++ b/mysql-test/r/subselect4.result @@ -2174,7 +2174,7 @@ FROM t1 AS alias1 ) IS NOT NULL; ERROR 21000: Subquery returns more than 1 row DROP TABLE t2; -ERROR 42S02: Unknown table 't2' +ERROR 42S02: Unknown table 'test.t2' DROP TABLE t1; # # LP BUG#1000649 EXPLAIN shows incorrectly a non-correlated constant IN subquery is correlated |