mirror of
https://github.com/MariaDB/server.git
synced 2025-11-19 19:03:26 +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:
@@ -5904,7 +5904,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 ) ;
|
||||
|
||||
Reference in New Issue
Block a user