mirror of
https://github.com/MariaDB/server.git
synced 2026-04-24 17:25:31 +02:00
Updated results after merge
This commit is contained in:
parent
5a3c12effb
commit
46bcc4753a
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue