mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Updated results after merge
This commit is contained in:
@ -30,11 +30,15 @@ explain select * from t1 where i=@vv1;
|
|||||||
table type possible_keys key key_len ref rows Extra
|
table type possible_keys key key_len ref rows Extra
|
||||||
t1 ref i i 4 const 1 Using where
|
t1 ref i i 4 const 1 Using where
|
||||||
drop table t1,t2;
|
drop table t1,t2;
|
||||||
|
select @a:=10, @b:=1, @a > @b, @a < @b;
|
||||||
@a:=10 @b:=1 @a > @b @a < @b
|
@a:=10 @b:=1 @a > @b @a < @b
|
||||||
10 1 1 0
|
10 1 1 0
|
||||||
|
select @a:="10", @b:="1", @a > @b, @a < @b;
|
||||||
@a:="10" @b:="1" @a > @b @a < @b
|
@a:="10" @b:="1" @a > @b @a < @b
|
||||||
10 1 1 0
|
10 1 1 0
|
||||||
|
select @a:=10, @b:=2, @a > @b, @a < @b;
|
||||||
@a:=10 @b:=2 @a > @b @a < @b
|
@a:=10 @b:=2 @a > @b @a < @b
|
||||||
10 2 1 0
|
10 2 1 0
|
||||||
|
select @a:="10", @b:="2", @a > @b, @a < @b;
|
||||||
@a:="10" @b:="2" @a > @b @a < @b
|
@a:="10" @b:="2" @a > @b @a < @b
|
||||||
10 2 0 1
|
10 2 0 1
|
||||||
|
Reference in New Issue
Block a user