diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-28 19:19:21 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-28 19:19:21 +0200 |
commit | 802705f957011aebbb03ca988080f914bf39a57e (patch) | |
tree | ef66c94bfc0bceb424a8ce8e01edf84b701cb6d2 /mysql-test/r/group_by.result | |
parent | 3284c39a1fca442cd4f803df0245e248a349bd16 (diff) | |
download | mariadb-git-802705f957011aebbb03ca988080f914bf39a57e.tar.gz |
adding mandatory aliases for derived tables as per SQL-99
doing it in sql_yacc.yy does not work
this commit contains fixes for other tests
there are fixes in subselect test which will have to be changed
once fix_fields is fixed to work with aliased derived tables
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index ead9935f824..b5a35b981db 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -1,4 +1,4 @@ -SELECT 1 FROM (SELECT 1) GROUP BY SUM(1); +SELECT 1 FROM (SELECT 1) as a GROUP BY SUM(1); Invalid use of group function drop table if exists t1,t2,t3; CREATE TABLE t1 ( |