1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixed bug in HAVING when refering to RAND() through alias

(BUG 8216)
This commit is contained in:
monty@mysql.com
2005-02-07 18:13:57 +02:00
parent e7450d9781
commit 32f91f48e8
8 changed files with 126 additions and 29 deletions

View File

@ -109,8 +109,8 @@ select @a:=0;
select @a, @a:=@a+count(*), count(*), @a from t1 group by i;
@a @a:=@a+count(*) count(*) @a
0 1 1 0
0 2 2 0
0 3 3 0
0 3 2 0
0 6 3 0
select @a:=0;
@a:=0
0