mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +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
|
||||
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
|
||||
|
Reference in New Issue
Block a user