diff options
author | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
---|---|---|
committer | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
commit | b1cecee05509b6f8637eb13b5ad9dbf9e46aaab2 (patch) | |
tree | a8d725d2e34802763b29ee7f113e09157f8a172c /mysql-test/r/derived.result | |
parent | a35bd157733b419b042b7bb0d051840ce5383324 (diff) | |
download | mariadb-git-b1cecee05509b6f8637eb13b5ad9dbf9e46aaab2.tar.gz |
Language/consistency edits to error messages
and affected test results.
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 dd4c32403b5..7442a156816 100644 --- a/mysql-test/r/derived.result +++ b/mysql-test/r/derived.result @@ -27,7 +27,7 @@ a y SELECT a FROM (SELECT 1 FROM (SELECT 1) a HAVING a=1) b; ERROR 42S22: Unknown column 'a' in 'having clause' SELECT a,b as a FROM (SELECT '1' as a,'2' as b) b HAVING a=1; -ERROR 23000: Column: 'a' in having clause is ambiguous +ERROR 23000: Column 'a' in having clause is ambiguous SELECT a,2 as a FROM (SELECT '1' as a) b HAVING a=2; a a 1 2 @@ -204,7 +204,7 @@ x 1 create table t1 select 1 as a; select 2 as a from (select * from t1) b; -ERROR 3D000: No Database Selected +ERROR 3D000: No database selected use test; select 2 as a from (select * from t1) b; a |