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/rename.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/rename.result')
-rw-r--r-- | mysql-test/r/rename.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/rename.result b/mysql-test/r/rename.result index edf05d0c5d3..56137f96904 100644 --- a/mysql-test/r/rename.result +++ b/mysql-test/r/rename.result @@ -39,7 +39,7 @@ select * from t3; 3 table 3 drop table if exists t1,t2,t3,t4; Warnings: -Note 1051 Unknown table 't4' +Note 1051 Unknown table 'test.t4' CREATE TABLE t1 (a int); CREATE TABLE t3 (a int); FLUSH TABLES WITH READ LOCK; |