1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug#32108 - subselect.test produces warnings files

Comment sign of -- at line begin in test files lead to warnings
from mysqltest.
  
Changed -- to #.
This commit is contained in:
istruewing@stella.local
2007-11-05 14:44:38 +01:00
parent aac68041ef
commit 2481d2c1e3

View File

@@ -2970,7 +2970,7 @@ DROP TABLE t1,t2;
CREATE TABLE t1 (a INT, b INT);
INSERT INTO t1 VALUES (1, 2), (1,3), (1,4), (2,1), (2,2);
-- returns no rows, when it should
# returns no rows, when it should
SELECT a1.a, COUNT(*) FROM t1 a1 WHERE a1.a = 1
AND EXISTS( SELECT a2.a FROM t1 a2 WHERE a2.a = a1.a)
GROUP BY a1.a;