diff options
author | monty@mysql.com <> | 2005-02-07 18:13:57 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-02-07 18:13:57 +0200 |
commit | 32f91f48e8ac3a7ea998ec9cdf7d1c53b714250c (patch) | |
tree | 3fa14495db5e1376fa69b1a6f662a5e7afdc82da /mysql-test/r/user_var.result | |
parent | e7450d9781781666503837d748cf313e3f406f59 (diff) | |
download | mariadb-git-32f91f48e8ac3a7ea998ec9cdf7d1c53b714250c.tar.gz |
Fixed bug in HAVING when refering to RAND() through alias
(BUG 8216)
Diffstat (limited to 'mysql-test/r/user_var.result')
-rw-r--r-- | mysql-test/r/user_var.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/user_var.result b/mysql-test/r/user_var.result index 81846391795..041d1b836b7 100644 --- a/mysql-test/r/user_var.result +++ b/mysql-test/r/user_var.result @@ -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 |