diff options
author | monty@mysql.com <> | 2004-03-20 12:48:14 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-20 12:48:14 +0200 |
commit | b6e5c23c26ca4980489bdb1c895f88761c8687a7 (patch) | |
tree | ba8d7c41c7c8065598199d20dacefe1297cc4f27 /mysql-test/r/derived.result | |
parent | 82c79134b0da6637d38a0589703a2d8a08596269 (diff) | |
download | mariadb-git-b6e5c23c26ca4980489bdb1c895f88761c8687a7.tar.gz |
Ensure that we use unix file format (no \r\n) for all new files
Portability fixes
Diffstat (limited to 'mysql-test/r/derived.result')
-rw-r--r-- | mysql-test/r/derived.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/derived.result b/mysql-test/r/derived.result index 7e5c519e108..f5754bb3332 100644 --- a/mysql-test/r/derived.result +++ b/mysql-test/r/derived.result @@ -271,8 +271,8 @@ delete P1.* from `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Cou select * from t1; N M 3 0 -delete P1.*,P2.* from `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N; -ERROR HY000: The target table P2 of the DELETE is not updatable +delete P1.*,p2.* from `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS p2 ON P1.N = p2.N; +ERROR HY000: The target table p2 of the DELETE is not updatable delete P1.* from `t1` AS P1 INNER JOIN (SELECT aaa FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N; ERROR 42S22: Unknown column 'aaa' in 'field list' drop table t1; |