diff options
author | unknown <istruewing@stella.local> | 2007-11-05 14:44:38 +0100 |
---|---|---|
committer | unknown <istruewing@stella.local> | 2007-11-05 14:44:38 +0100 |
commit | 6f12c924392e0d9ec480f60a7bcc1f6ea87e871b (patch) | |
tree | 292faa8c15be69ae2abfe8ccf88237c86cd53f02 /mysql-test/t/subselect.test | |
parent | abd6ff862251b1228f011acaf725458494a4294e (diff) | |
download | mariadb-git-6f12c924392e0d9ec480f60a7bcc1f6ea87e871b.tar.gz |
Bug#32108 - subselect.test produces warnings files
Comment sign of -- at line begin in test files lead to warnings
from mysqltest.
Changed -- to #.
mysql-test/t/subselect.test:
Bug#32108 - subselect.test produces warnings files
Changed -- to # at comment begin to avoid warnings files.
Diffstat (limited to 'mysql-test/t/subselect.test')
-rw-r--r-- | mysql-test/t/subselect.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test index d076ca6bd33..86d2aec870c 100644 --- a/mysql-test/t/subselect.test +++ b/mysql-test/t/subselect.test @@ -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; |