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/gis-rtree.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/gis-rtree.result')
-rw-r--r-- | mysql-test/r/gis-rtree.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/gis-rtree.result b/mysql-test/r/gis-rtree.result index 26787366358..bbb97ce0241 100644 --- a/mysql-test/r/gis-rtree.result +++ b/mysql-test/r/gis-rtree.result @@ -712,7 +712,7 @@ count(*) DROP TABLE t2; drop table if exists t1; Warnings: -Note 1051 Unknown table 't1' +Note 1051 Unknown table 'test.t1' CREATE TABLE t1 (a geometry NOT NULL, SPATIAL (a)); INSERT INTO t1 VALUES (GeomFromText("LINESTRING(100 100, 200 200, 300 300)")); INSERT INTO t1 VALUES (GeomFromText("LINESTRING(100 100, 200 200, 300 300)")); |