mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
10.0-monty: trivial test result updates
This commit is contained in:
@ -7,7 +7,7 @@ set autocommit=0;
|
||||
use test;
|
||||
drop table if exists t1;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 't1'
|
||||
Note 1051 Unknown table 'test.t1'
|
||||
create table t1 (dummy int primary key, a int unique, b int) engine=innodb;
|
||||
insert into t1 values(1,1,1),(3,3,3),(5,5,5);
|
||||
commit;
|
||||
|
@ -1,7 +1,7 @@
|
||||
set session debug_dbug="+d,optimizer_innodb_icp";
|
||||
drop table if exists `t1`;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 't1'
|
||||
Note 1051 Unknown table 'test.t1'
|
||||
create table `t1` (`c` bigint, key(`c`),`a` int)engine=innodb;
|
||||
insert into `t1` values(2,2);
|
||||
delete `t1` from `t1` `a`, `t1` where `a`.`a`=`t1`.`c` ;
|
||||
|
Reference in New Issue
Block a user