summaryrefslogtreecommitdiff
path: root/mysql-test/r/user_var.result
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-07-01 15:38:11 +0300
committerunknown <monty@mashka.mysql.fi>2003-07-01 15:38:11 +0300
commit46bcc4753acc259a574ecb411de859eb1797bca1 (patch)
tree60007ef7403c82d9904dc3d90f6f44b8fc71f0f8 /mysql-test/r/user_var.result
parent5a3c12effb4a0d32bf6b77d4b19edcf1757bb823 (diff)
downloadmariadb-git-46bcc4753acc259a574ecb411de859eb1797bca1.tar.gz
Updated results after merge
Diffstat (limited to 'mysql-test/r/user_var.result')
-rw-r--r--mysql-test/r/user_var.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/user_var.result b/mysql-test/r/user_var.result
index 0d4f7b401e6..67e55acb29b 100644
--- a/mysql-test/r/user_var.result
+++ b/mysql-test/r/user_var.result
@@ -30,11 +30,15 @@ explain select * from t1 where i=@vv1;
table type possible_keys key key_len ref rows Extra
t1 ref i i 4 const 1 Using where
drop table t1,t2;
+select @a:=10, @b:=1, @a > @b, @a < @b;
@a:=10 @b:=1 @a > @b @a < @b
10 1 1 0
+select @a:="10", @b:="1", @a > @b, @a < @b;
@a:="10" @b:="1" @a > @b @a < @b
10 1 1 0
+select @a:=10, @b:=2, @a > @b, @a < @b;
@a:=10 @b:=2 @a > @b @a < @b
10 2 1 0
+select @a:="10", @b:="2", @a > @b, @a < @b;
@a:="10" @b:="2" @a > @b @a < @b
10 2 0 1