MDEV-9758: correct test case

This commit is contained in:
Daniel Black 2016-04-29 09:22:24 +10:00 committed by Sergei Golubchik
parent 84b0ac6721
commit aed1485b99
2 changed files with 3 additions and 3 deletions

View File

@ -604,9 +604,9 @@ test.t3 NULL
Warnings:
Error 1146 Table 'test.t3' doesn't exist
alter table t1 add d int default 30, add e bigint default 300000, add f decimal(30) default 442;
checksum table t2;
checksum table t1;
Table Checksum
test.t2 3442722830
test.t1 2924214226
drop table t1,t2;
create table t1 (a int, key (a));
show keys from t1;

View File

@ -553,7 +553,7 @@ checksum table t1, t2, t3 quick;
checksum table t1, t2, t3;
checksum table t1, t2, t3 extended;
alter table t1 add d int default 30, add e bigint default 300000, add f decimal(30) default 442;
checksum table t2;
checksum table t1;
#show table status;
drop table t1,t2;