mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Had mangled the order of if()s in a previous changeset (1.1596) (not pushed),
correcting it now. Thanks Dmitri for spotting this.
This commit is contained in:
@ -5,6 +5,10 @@ set @a := connection_id() + 3;
|
||||
select @a - connection_id();
|
||||
@a - connection_id()
|
||||
3
|
||||
set @b := 1;
|
||||
select @b;
|
||||
@b
|
||||
1
|
||||
CREATE TABLE t1 ( i int not null, v int not null,index (i));
|
||||
insert into t1 values (1,1),(1,3),(2,1);
|
||||
create table t2 (i int not null, unique (i));
|
||||
|
Reference in New Issue
Block a user