Commit aed1485b authored by Daniel Black's avatar Daniel Black Committed by Sergei Golubchik

MDEV-9758: correct test case

parent 84b0ac67
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment