mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Update test results
This commit is contained in:
@ -92,7 +92,7 @@ insert into t1 values(1);
|
|||||||
insert ignore into t1 values(1);
|
insert ignore into t1 values(1);
|
||||||
replace into t1 values(100);
|
replace into t1 values(100);
|
||||||
create table t2 (a varchar(200)) engine=blackhole;
|
create table t2 (a varchar(200)) engine=blackhole;
|
||||||
load data infile '../../std_data/words.dat' into table t2;
|
load data infile '../std_data_ln/words.dat' into table t2;
|
||||||
alter table t1 add b int;
|
alter table t1 add b int;
|
||||||
alter table t1 drop b;
|
alter table t1 drop b;
|
||||||
create table t3 like t1;
|
create table t3 like t1;
|
||||||
|
@ -30,3 +30,4 @@ flush tables with read lock;
|
|||||||
start slave;
|
start slave;
|
||||||
stop slave;
|
stop slave;
|
||||||
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
|
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
|
||||||
|
drop table t3, t4, t5;
|
||||||
|
@ -12,7 +12,7 @@ create table t1(n int not null auto_increment primary key);
|
|||||||
insert into t1 values (NULL);
|
insert into t1 values (NULL);
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (word char(20) not null);
|
create table t1 (word char(20) not null);
|
||||||
load data infile '../../std_data/words.dat' into table t1 ignore 1 lines;
|
load data infile '../std_data_ln/words.dat' into table t1 ignore 1 lines;
|
||||||
select count(*) from t1;
|
select count(*) from t1;
|
||||||
count(*)
|
count(*)
|
||||||
69
|
69
|
||||||
|
Reference in New Issue
Block a user